-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (52 loc) · 1.04 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name" : "ludndev/resty",
"description" : "Resty , the PhP Framework For Restful APIs",
"license" : "MIT",
"type" : "project",
"keywords" : [
"framework",
"rest",
"api"
],
"authors" : [
{
"name" : "Ludndev",
"email" : "[email protected]",
"homepage" : "https://github.com/ludndev/"
}
],
"autoload" : {
"psr-4" : {
"Resty\\Providers\\" : "providers",
"Resty\\Controllers\\" : "controllers"
}
},
"autoload-dev" : {
"psr-4" : {
"Resty\\Tests\\" : "tests"
}
},
"require" : {
"phroute/phroute" : "^2.1",
"vlucas/phpdotenv" : "^3.6"
},
"require-dev" : {
"guzzlehttp/guzzle" : "^6.3",
"fzaninotto/faker" : "^1.8"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}