-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.34 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.34 KB
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
{
"name": "automattic/newspack-ads",
"description": "Newspack Ad integrations.",
"type": "wordpress-plugin",
"require-dev": {
"composer/installers": "~2.1",
"automattic/vipwpcs": "^3.0",
"brainmaestro/composer-git-hooks": "^3.0",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"yoast/phpunit-polyfills": "^4.0",
"phpunit/phpunit": "^7.0 || ^9.5"
},
"license": "GPL-3.0-or-later",
"scripts": {
"post-install-cmd": [
"vendor/bin/cghooks add --no-lock"
],
"pre-push": "./.hooks/pre-push",
"post-update-cmd": [
"vendor/bin/cghooks update"
]
},
"extra": {
"hooks": {
"pre-commit": [
"./node_modules/.bin/lint-staged"
],
"commit-msg": [
"cat $1 | ./node_modules/.bin/newspack-scripts commitlint"
]
}
},
"require": {
"googleads/googleads-php-lib": "^71.0"
},
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"audit": {
"ignore": {
"PKSA-y2cr-5h3j-g3ys": "firebase/php-jwt advisory does not affect this package (transitive dependency of googleads-php-lib)",
"PKSA-2kqm-ps5x-s4f5": "firebase/php-jwt advisory does not affect this package (transitive dependency of googleads-php-lib)"
}
}
}
}