-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.01 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
44
45
46
47
{
"name": "istianxin/laravel-apollo",
"description": "Laravel Apollo Agent",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tian Xin",
"email": "upc_tianxin@foxmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.0",
"multilinguals/apollo-client": "^v0.1.2",
"laravel/framework": "^5.1 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^8.4",
"squizlabs/php_codesniffer": "^3.5",
"ext-xdebug": "*",
"orchestra/testbench": "^4.6"
},
"autoload": {
"psr-4": {
"IsTianXin\\Apollo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IsTianXin\\Apollo\\Tests\\": "tests"
}
},
"scripts": {
"post-autoload-dump": [
"@php -r \"file_exists('.git') && copy('.git-pre-commit', '.git/hooks/pre-commit') && chmod('.git/hooks/pre-commit', 0755);\""
]
},
"extra": {
"laravel": {
"providers": [
"IsTianXin\\Apollo\\ApolloServiceProvider"
]
}
}
}