-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
59 lines (59 loc) · 1.35 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
53
54
55
56
57
58
59
{
"name": "tommyseus/zend-expressive-symfony-console",
"type": "library",
"description": "This project adds a executable file to the composer bin folder to run symfony commands under a zend-expressive application environment.",
"license": "MIT",
"homepage": "https://github.com/tommyseus/zend-expressive-symfony-console",
"authors": [
{
"name": "Tommy Seus"
}
],
"keywords": [
"console",
"expressive",
"symfony",
"zendframework",
"zend-expressive",
"zf"
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1",
"psr/container": "^1.0.0",
"symfony/console": "^4.0.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10.2",
"phpunit/phpunit": "^7.0.1"
},
"autoload": {
"psr-4": {
"Seus\\Zend\\Expressive\\SymfonyConsole\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SeusTest\\Zend\\Expressive\\SymfonyConsole\\": "tests"
}
},
"bin": [
"bin/ze-sf-console"
],
"extra": {
"zf": {
"config-provider": "Seus\\Zend\\Expressive\\SymfonyConsole\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/php-cs-fixer fix --diff --dry-run --verbose --ansi",
"cs-fix": "vendor/bin/php-cs-fixer fix --verbose --ansi",
"test": "phpunit --colors=always"
}
}