-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 952 Bytes
/
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
{
"name": "dorfjungs/acf-breeze",
"description": "Object oriented configuration for ACF with an automatic Timber integration",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Davide Perozzi",
"email": "[email protected]"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.4",
"brainmaestro/composer-git-hooks": "^2.2"
},
"require": {
"stoutlogic/acf-builder": "^1.5",
"timber/timber": "^1.5"
},
"autoload": {
"psr-4": {
"AcfBreeze\\": "src"
}
},
"extra": {
"hooks": {
"pre-commit": "php ./vendor/bin/php-cs-fixer fix --verbose",
"post-commit": "php ./vendor/bin/phpunit"
}
},
"scripts": {
"post-install-cmd": "php ./vendor/bin/cghooks add --ignore-lock",
"post-update-cmd": "php ./vendor/bin/cghooks update"
}
}