-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 931 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
30
31
32
33
34
35
36
37
{
"name": "ajaaleixo/larastart",
"type": "library",
"description": "Larastart makes it ridiculously easy to start any API or Project using Laravel",
"keywords": ["larastart", "laravel", "api", "boilerplate", "generator"],
"homepage": "http://larastart.io",
"license": "MIT",
"authors": [{
"name": "André Aleixo",
"email": "ajaaleixo@gmail.com",
"homepage": "http://andrealeixo.com",
"role": "Lead Developer"
}],
"require": {
"php": ">=5.4",
"symfony/console": "~2.8|~3.0",
"symfony/config": "~2.8|~3.0",
"symfony/yaml": "~2.8|~3.0",
"symfony/finder": "~3.2",
"nesbot/carbon": "*",
"league/csv": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.26|^5.0"
},
"autoload": {
"psr-4": {
"Larastart\\": "src/Larastart"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Larastart\\": "tests/Larastart"
}
},
"bin": ["bin/larastart"]
}