Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Commit b66202b

Browse files
committed
update laravel to 5.4, add tinker package (it can be required as package now). namespace the tests
1 parent 4c182e1 commit b66202b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
"type": "project",
77
"require": {
88
"php": ">=5.6.4",
9-
"laravel/framework": "5.3.*",
10-
"lucid-arch/laravel-foundation": "5.3.*"
9+
"laravel/framework": "5.4.*",
10+
"lucid-arch/laravel-foundation": "5.3.*",
11+
"laravel/tinker": "~1.0"
1112
},
1213
"require-dev": {
1314
"fzaninotto/faker": "~1.4",
@@ -23,14 +24,10 @@
2324
],
2425
"psr-4": {
2526
"Framework\\": "app/",
26-
"App\\": "src/"
27+
"App\\": "src/",
28+
"Tests\\": "tests/"
2729
}
2830
},
29-
"autoload-dev": {
30-
"classmap": [
31-
"tests/TestCase.php"
32-
]
33-
},
3431
"scripts": {
3532
"post-root-package-install": [
3633
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
@@ -48,6 +45,9 @@
4845
]
4946
},
5047
"config": {
51-
"preferred-install": "dist"
52-
}
48+
"preferred-install": "dist",
49+
"sort-packages": true
50+
},
51+
"minimum-stability": "dev",
52+
"prefer-stable": true
5353
}

0 commit comments

Comments
 (0)