-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.12 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
{
"name": "chiron/chiron-skeleton",
"type": "project",
"description": "A pre-configured skeleton for the Chiron microframework",
"keywords": ["chiron","skeleton","microframework","rest", "psr7", "api", "router"],
"license": "MIT",
"require": {
"php": ">=7.1.3",
"chiron/chiron": "^1.2",
"chiron/package-discovery": "^0.7",
"chiron/dotenv": "^0.2",
"chiron/logger": "^0.2",
"chiron/php-renderer": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"autoload": {
"files" : [
"app/defines.php"
],
"psr-0": { "": "app/" }
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t public/",
"test": "phpunit --colors=always"
},
"extra": {
"post-create-project-cmd": {
"copyFiles": [
{
"app/.env.example": "app/.env"
}
],
"generateApplicationKey": [
"app/.env"
]
}
}
}