-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1016 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1016 Bytes
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
{
"name": "litphp/project",
"description": "A minimal boilerplate for litphp project",
"license": "ISC",
"authors": [
{
"name": "McFog Wang",
"email": "mcfogw@gmail.com"
}
],
"require": {
"litphp/bolt": "^0.9",
"litphp/router-fast-route": "^0.9",
"litphp/runner-zend-sapi": "^0.9"
},
"autoload": {
"psr-4": {
"NewProject\\": "src/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"post-create-project-cmd": [
"NewProject\\Bootstrap::postCreateProject",
"@composer dump-autoload"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"phpstan/phpstan-shim": "^0.11.7",
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan-phpunit": "^0.11.2",
"league/climate": "^3.5"
}
}