-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.26 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
46
47
48
49
{
"name": "symlex/rest-api",
"license": "MIT",
"type": "project",
"description": "Example REST API application based on Symlex Core",
"homepage": "https://github.com/symlex/rest-api/",
"authors": [
{
"name": "Michael Mayer",
"email": "[email protected]",
"homepage": "https://liquidbytes.net/",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"symlex/symlex-core": "^4.1",
"incenteev/composer-parameter-handler": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"bin-dir": "bin/"
},
"scripts": {
"post-composer-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"app/clearcache",
"composer dumpautoload -o"
],
"post-install-cmd": [
"@post-composer-scripts"
],
"post-update-cmd": [
"@post-composer-scripts"
]
},
"extra": {
"incenteev-parameters": {
"file": "app/config/parameters.yml",
"dist-file": "app/config/parameters.dist.yml"
}
}
}