-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 925 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 925 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
{
"name": "rueduphp/flaty",
"description": "Rue du PHP flat file site",
"keywords": ["php", "framework", "rueduphp"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Gérald Plusquellec",
"email": "gplusquellec@rueduphp.com",
"homepage": "http://www.rueduphp.com",
"role": "Developer"
}
],
"config": {
"preferred-install": "dist"
},
"require": {
"php": ">=7.0",
"rueduphp/octo": ">= 1.0.3"
},
"autoload": {
"psr-4": {
"App\\": "site/"
}
},
"scripts": {
"post-install-cmd": [
"chmod 0777 -R site/storage",
"chmod 0777 -R site/models"
],
"post-update-cmd": [
"chmod 0777 -R site/storage",
"chmod 0777 -R site/models"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}