-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.23 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
{
"name": "phpbenchmarks/symlex",
"license": "proprietary",
"type": "project",
"description": "Benchmarks for Symlex",
"homepage": "https://github.com/phpbenchmarks/symlex",
"authors": [
{
"name": "Michael Mayer",
"email": "[email protected]",
"homepage": "https://liquidbytes.net/",
"role": "Developer"
},
{
"name": "Steevan BARBOYON",
"email": "[email protected]",
"homepage": "http://www.info-droid.fr",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"symlex/symlex-core": "4.2.0",
"phpbenchmarks/symlex-common": "4.1.0",
"incenteev/composer-parameter-handler": "^2.0"
},
"scripts": {
"post-composer-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"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"
}
}
}