forked from laravel-rocket/foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.1 KB
/
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
38
39
40
41
42
43
{
"name": "laravel-rocket/foundation",
"description": "Core Components of Laravel Rocket",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Takaaki Mizuno",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"fideloper/proxy": "^4.0",
"laravel/tinker": "^1.0",
"icanboogie/inflector": "^1.4",
"maknz/slack": "^1.7",
"aws/aws-sdk-php": "~3.24",
"rainner/restful-php": "^1.0"
},
"require-dev": {
"filp/whoops": "~2.0",
"nunomaduro/collision": "~2.0",
"phpunit/phpunit": "^8.0",
"symfony/thanks": "^1.0",
"mockery/mockery": "~1.0",
"friendsofphp/php-cs-fixer": "^2.15",
"fzaninotto/faker": "^1.8",
"laravel/browser-kit-testing": "^5.1",
"maatwebsite/excel": "~3.1.0",
"laravel/laravel": "^6.0"
},
"autoload": {
"psr-4": {
"LaravelRocket\\Foundation\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests"
]
}
}