-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 1.21 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
{
"name": "joda/shopware-yellow-box",
"keywords": ["shopware", "yellowbox", "plugin"],
"description": "Yellow Box for Shopware",
"license": "MIT",
"type": "shopware-plugin",
"extra": {
"installer-name": "JodaYellowBox"
},
"replace": {
"symfony/polyfill-mbstring": "~1.0"
},
"require": {
"php" : "^7.0",
"winzou/state-machine": "^0.3",
"composer/installers": "~1.0"
},
"require-dev": {
"phpspec/phpspec": "^4.3",
"friendsofphp/php-cs-fixer": "^2.10",
"mikey179/vfsStream": "1.6.*",
"roave/security-advisories": "dev-master"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"test": "phpunit",
"test-spec": "phpspec run --format dot",
"cs-check": "php-cs-fixer fix --dry-run --allow-risky=yes -v",
"cs-fix": "php-cs-fixer fix --allow-risky=yes -v",
"preCommit": "curl -sS https://gist.githubusercontent.com/jlaute/a5c863cdea8ecb7d968c409bb6a2b559/raw/8cd08b8dcbaaf368d4dbef7e4f1779977ab6a8a5/pre-commit.sh > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"post-install-cmd": "@preCommit",
"post-update-cmd": "@preCommit"
}
}