-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (37 loc) · 934 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
38
{
"name": "adrosoftware/one-skeleton",
"description": "A one page application",
"type": "project",
"keywords": ["php","one page","adrorocker","ajax"],
"homepage": "https://github.com/adrosoftware/one-skeleton",
"license": "MIT",
"authors": [
{
"name": "Adro Rocker",
"email": "[email protected]",
"homepage": "https://github.com/adrorocker"
}
],
"require": {
"php": ">=5.6.4",
"vlucas/phpdotenv": "^2.2",
"slim/slim": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\""
]
}
}