-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
54 lines (54 loc) · 1.19 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": "automattic/newspack-popups",
"description": "AMP-compatible popup notifications.",
"type": "wordpress-plugin",
"require-dev": {
"automattic/vipwpcs": "^3.0",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"composer/installers": "^2.0",
"brainmaestro/composer-git-hooks": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"yoast/phpunit-polyfills": "^3.0",
"phpunit/phpunit": "^7.0 || ^9.5",
"dms/phpunit-arraysubset-asserts": "^0.5.0"
},
"license": "GPL-3.0-or-later",
"scripts": {
"post-install-cmd": [
"vendor/bin/cghooks add --no-lock"
],
"post-update-cmd": [
"vendor/bin/cghooks update"
]
},
"extra": {
"hooks": {
"pre-commit": [
"./node_modules/.bin/lint-staged"
],
"pre-push": "./.hooks/pre-push",
"commit-msg": [
"cat $1 | ./node_modules/.bin/newspack-scripts commitlint"
]
}
},
"autoload": {
"classmap": [
"includes",
"includes/schemas"
]
},
"require": {
"drewm/mailchimp-api": "^2.5"
},
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}