forked from Xethron/Laravel-4-Generators
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
29 lines (29 loc) · 799 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "oscarafdev/laravel-4-generators",
"description": "Rapidly generate resources, migrations, models, and much more.",
"license": "MIT",
"authors": [
{
"name": "Oscar Fernandez",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"phpspec/phpspec": "^2.0",
"behat/behat": "^2.5.1",
"behat/mink": "^1.5.0",
"behat/mink-extension": "^1.2.0",
"behat/mink-goutte-driver": "^1.0.9",
"behat/mink-selenium2-driver": "^1.1.1",
"phpunit/phpunit": "^3.7"
},
"autoload": {
"psr-0": {
"Way\\Generators": "src/"
}
}
}