-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.26 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
{
"name": "akil-tech/starter-bundle-symfony",
"description": "Symfony bundle for rapidly make a bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Kone Ben Fousseni Christ",
"email": "[email protected]"
},
{
"name": "AkilTech Community",
"homepage": "https://github.com/orgs/akiltech/people"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Akiltech\\AccountingStatementsBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "Tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.5",
"brainmaestro/composer-git-hooks": "^2.8"
},
"extra": {
"hooks": {
"pre-commit": [
"echo committing as $(git config user.name)",
"composer csfix",
"./vendor/bin/phpunit",
"./vendor/bin/phpcs"
],
"pre-push": [
"php-cs-fixer fix --dry-run .",
"./vendor/bin/phpunit"
],
"post-merge": "composer install"
}
},
"scripts": {
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update",
"cghooks": "./vendor/bin/cghooks",
"csfix": "./vendor/bin/phpcbf",
"cscheck": "./vendor/bin/phpcs"
}
}