-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.36 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.36 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
54
{
"name": "beapi/cloudflare-extra-purge-addon",
"description": "Automatically purges the entire Cloudflare cache when content is published or updated. Works as an addon to the official Cloudflare plugin.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Be API",
"email": "contact@beapi.fr",
"homepage": "https://beapi.fr"
}
],
"keywords": [
"wordpress",
"plugin",
"cloudflare",
"cache",
"purge",
"cdn"
],
"require": {
"php": ">=7.4",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"php": ">=7.4",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"overtrue/phplint": "^9.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^3.1",
"roave/security-advisories": "dev-latest"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Cloudflare_Extra_Purge_Addon\\": ""
}
},
"scripts": {
"cs": "./vendor/bin/phpcs",
"cb": "./vendor/bin/phpcbf",
"psalm": "./vendor/bin/psalm"
},
"support": {
"issues": "https://github.com/beapi/cloudflare-extra-purge-addon/issues",
"source": "https://github.com/beapi/cloudflare-extra-purge-addon"
}
}