-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.05 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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": "rueduphp/skeleton",
"description": "Rue du PHP skeleton",
"keywords": ["php", "framework", "rueduphp"],
"type": "library",
"license": "MIT",
"authors": [{
"name": "Gérald Plusquellec",
"email": "gplusquellec@rueduphp.com",
"homepage": "http://www.rueduphp.com",
"role": "Developer"
}],
"config": {
"bin-dir": "bin",
"preferred-install": "dist"
},
"require": {
"php": ">=7.0",
"rueduphp/octo": "^2"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"squizlabs/php_codesniffer": "@stable",
"sebastian/phpcpd": "@stable",
"phpmd/phpmd": "@stable",
"phing/phing": "@stable"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"chmod 0777 -R app/storage"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}