Skip to content

Commit a97889c

Browse files
committed
Support Laravel 5.8
1 parent f8b88d1 commit a97889c

File tree

6 files changed

+23
-2553
lines changed

6 files changed

+23
-2553
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
vendor
1+
/vendor
2+
.phpunit.result.cache
3+
composer.lock

composer.json

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,24 @@
33
"description": "Laravel-specific and pure PHP helper functions.",
44
"keywords": ["laravel", "helpers", "functions", "collection"],
55
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Dmitry Ivanov",
9-
"email": "dmitry.g.ivanov@gmail.com"
10-
}
11-
],
6+
"authors": [{
7+
"name": "Dmitry Ivanov",
8+
"email": "dmitry.g.ivanov@gmail.com"
9+
}],
1210
"require": {
1311
"php": "^7.1.3",
14-
"illuminate/support": "5.7.*",
15-
"nesbot/carbon": "^1.26",
16-
"symfony/filesystem": "^4.1",
17-
"symfony/finder": "^4.1",
18-
"symfony/process": "^4.1",
19-
"symfony/var-dumper": "^4.1",
12+
"illuminate/support": "5.8.*",
13+
"nesbot/carbon": "^1.26.3 || ^2.0",
14+
"symfony/filesystem": "^4.2",
15+
"symfony/finder": "^4.2",
16+
"symfony/process": "^4.2",
17+
"symfony/var-dumper": "^4.2",
2018
"spatie/array-to-xml": "^2.7"
2119
},
2220
"require-dev": {
23-
"phpunit/phpunit": "^7.0",
21+
"phpunit/phpunit": "^7.5|^8.0",
2422
"mockery/mockery": "^1.0",
25-
"illuminated/testing-tools": "5.7.*"
23+
"illuminated/testing-tools": "5.8.*"
2624
},
2725
"autoload": {
2826
"files": ["src/autoload.php"],

0 commit comments

Comments
 (0)