-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.83 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
50
51
52
{
"name": "mshavliuk/mshavliuk-signal-events-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle to handle process signals (kill, ctrl+c etc.)",
"keywords": ["symfony", "console", "pcntl", "cli", "bundle"],
"homepage": "https://github.com/mshavliuk/mshavliuk-signal-events-bundle",
"license": "MIT",
"support": {
"issues": "https://github.com/mshavliuk/mshavliuk-signal-events-bundle/issues"
},
"authors": [
{
"name": "Mikhail Shavliuk",
"email": "[email protected]"
}
],
"require": {
"php": "~7.1",
"ext-pcntl": "*",
"symfony/yaml": "^4.0",
"symfony/process": "^4.0",
"symfony/console": "^4.0",
"symfony/http-kernel": "^4.0",
"symfony/dependency-injection": "^4.0",
"symfony/config": "^4.0"
},
"autoload": {
"psr-4": {
"Mshavliuk\\MshavliukSignalEventsBundle\\": "src/"
},
"exclude-from-classmap": [
"/Tests/",
"/Command/"
]
},
"require-dev": {
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^0.11.8",
"phpstan/phpstan-symfony": "^0.11.6",
"phpstan/phpstan-phpunit": "^0.11.2",
"symfony/phpunit-bridge": "^4.3"
},
"scripts": {
"test": "vendor/bin/simple-phpunit --configuration phpunit.xml.dist",
"coverage": "vendor/bin/phpunit --configuration phpunit.xml.dist --coverage-html artifacts/coverage/",
"csfix": "vendor/bin/php-cs-fixer fix src/ --config=.php_cs.dist --verbose",
"analyse": "vendor/bin/phpstan analyse src/ -c phpstan.neon --no-progress --level=7 -vvv"
},
"minimum-stability": "dev",
"prefer-stable": true
}