-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.34 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
60
61
62
63
64
{
"name": "gitamine/gitamine",
"description": "git hooks manager",
"type": "library",
"license": "proprietary",
"require": {
"php": "^7.1.3",
"ext-iconv": "*",
"prooph/service-bus": "^6.1",
"prooph/service-bus-symfony-bundle": "^0.5",
"react/promise": "^2.5",
"symfony/console": "^4.0",
"symfony/finder": "^4.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^4.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/stopwatch": "^4.0",
"symfony/yaml": "^4.0"
},
"require-dev": {
"j13k/yaml-lint": "^1.1",
"mockery/mockery": "^1.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.2",
"symfony/dotenv": "^4.0",
"symfony/var-dumper": "^4.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Gitamine\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-apcu": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"bin": [
"gitamine"
],
"extra": {
"symfony": {
"id": "01C18WT0CW2SYQ8BPHZ8K25XXP",
"allow-contrib": false
}
}
}