-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "projek-xyz/slim-skeleton",
"description": "Build a simple web application on top of Slim micro framework with ease.",
"keywords": ["slim", "microframework", "skeleton", "starter"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Fery Wardiyanto",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/projek-xyz/slim-skeleton/issues",
"source": "https://github.com/projek-xyz/slim-skeleton"
},
"scripts": {
"test": "./vendor/bin/phpunit -c tests/phpunit.xml",
"post-root-package-install": "php -r \"copy('.env.txt', '.env');\""
},
"autoload": {
"psr-4": {
"App\\": "app/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/app/"
}
},
"require": {
"php": ">=5.5.0",
"projek-xyz/slim": "dev-master",
"slim/slim": "~3.5"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"config": {
"preferred-dist": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}