Skip to content

Commit 4b9624f

Browse files
Merge branch 'codeception-2.1' of github.com:janhenkgerritsen/codeception-laravel5-sample into codeception-2.1
2 parents 8d04714 + 741543d commit 4b9624f

File tree

1 file changed

+41
-47
lines changed

1 file changed

+41
-47
lines changed

composer.json

+41-47
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,44 @@
11
{
2-
"name": "laravel/laravel",
3-
"description": "The Laravel Framework.",
4-
"keywords": ["framework", "laravel"],
5-
"license": "MIT",
6-
"type": "project",
7-
"repositories": [
8-
{
9-
"type": "git",
10-
"url": "https://github.com/Codeception/Codeception"
11-
}
2+
"name": "laravel/laravel",
3+
"description": "The Laravel Framework.",
4+
"keywords": ["framework", "laravel"],
5+
"license": "MIT",
6+
"type": "project",
7+
"require": {
8+
"laravel/framework": "5.2.*",
9+
"laravelcollective/html": "5.2.*",
10+
"flow/jsonpath": "^0.2.4",
11+
"fzaninotto/faker": "~1.4"
12+
},
13+
"require-dev": {
14+
"phpunit/phpunit": "~4.0",
15+
"phpspec/phpspec": "~2.1",
16+
"codeception/codeception": "2.1.x-dev",
17+
"symfony/dom-crawler": "~3.0",
18+
"symfony/css-selector": "~3.0"
19+
},
20+
"autoload": {
21+
"classmap": [
22+
"database"
1223
],
13-
"require": {
14-
"laravel/framework": "5.2.*",
15-
"laravelcollective/html": "5.2.*",
16-
"flow/jsonpath": "^0.2.4",
17-
"fzaninotto/faker": "~1.4"
18-
},
19-
"require-dev": {
20-
"phpunit/phpunit": "~4.0",
21-
"phpspec/phpspec": "~2.1",
22-
"codeception/codeception": "2.1.x-dev",
23-
"symfony/dom-crawler": "~3.0",
24-
"symfony/css-selector": "~3.0"
25-
},
26-
"autoload": {
27-
"classmap": [
28-
"database"
29-
],
30-
"psr-4": {
31-
"App\\": "app/"
32-
}
33-
},
34-
"autoload-dev": {
35-
},
36-
"scripts": {
37-
"post-install-cmd": [
38-
"php artisan clear-compiled",
39-
"php artisan optimize"
40-
],
41-
"post-update-cmd": [
42-
"php artisan clear-compiled",
43-
"php artisan optimize"
44-
],
45-
"post-create-project-cmd": [
46-
"php -r \"copy('.env.example', '.env');\"",
47-
"php artisan key:generate"
48-
]
49-
}
24+
"psr-4": {
25+
"App\\": "app/"
26+
}
27+
},
28+
"autoload-dev": {
29+
},
30+
"scripts": {
31+
"post-install-cmd": [
32+
"php artisan clear-compiled",
33+
"php artisan optimize"
34+
],
35+
"post-update-cmd": [
36+
"php artisan clear-compiled",
37+
"php artisan optimize"
38+
],
39+
"post-create-project-cmd": [
40+
"php -r \"copy('.env.example', '.env');\"",
41+
"php artisan key:generate"
42+
]
43+
}
5044
}

0 commit comments

Comments
 (0)