-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathcomposer.json
57 lines (57 loc) · 1.52 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
{
"name": "bruli/php-git-hooks",
"description": "Git hooks for PHP projects.",
"license": "MIT",
"keywords": [
"git",
"hook",
"quality"
],
"authors": [
{
"name": "Pablo Braulio",
"email": "brulics@gmail.com"
}
],
"type": "library",
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"PhpGitHooks": "src/"
}
},
"require": {
"php": "^7.1",
"friendsofphp/php-cs-fixer": "^2.1",
"phpunit/phpunit": "~6.0|~7.0|~8",
"squizlabs/php_codesniffer": "~3.0",
"phpmd/phpmd": "~2.6",
"symfony/dependency-injection": "~4.0",
"symfony/config": "~4.0",
"symfony/yaml": "~4.0",
"fiunchinho/phpunit-randomizer": "~3.0|~4.0",
"seld/jsonlint": "~1.5",
"bruli/ignore-files": "~1.0",
"beberlei/assert": "~2.7",
"bruli/php-value-objects": "~0.1",
"bruli/event-bus-bundle": "^0.5",
"symfony/flex": "~1.0"
},
"require-dev": {
"fzaninotto/faker": "^1.6",
"mockery/mockery": "~0.9|~1",
"composer/composer": "^1.4"
},
"config": {
"bin-dir": "bin/"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"post-install-cmd": "PhpGitHooks\\Infrastructure\\Composer\\ConfiguratorScript::buildConfig",
"post-update-cmd": "PhpGitHooks\\Infrastructure\\Composer\\ConfiguratorScript::buildConfig"
}
}