-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.03 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
{
"name": "symlex/stream-sampler",
"description": "Example PHP command-line application based on Symlex Core",
"license": "MIT",
"type": "project",
"homepage": "https://github.com/symlex/stream-sampler",
"require": {
"php": ">=7.1",
"symlex/symlex-core": "^4.1",
"incenteev/composer-parameter-handler": "~2.0",
"kriswallsmith/buzz": "0.15"
},
"require-dev": {
"lastzero/test-tools": "^4.2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Sampler\\": "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"
}
}
}