-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathcomposer.json
44 lines (44 loc) · 1.4 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
{
"autoload": {
"psr-4": {
"CF\\": "src/"
}
},
"description": "A Cloudflare plugin for WordPress",
"license": "BSD-3-Clause",
"name": "cloudflare/wordpress-plugin",
"type": "wordpress-plugin",
"require": {
"cloudflare/cf-ip-rewrite": "^1.0.0",
"symfony/polyfill-intl-idn": "*",
"psr/log": "^1.0"
},
"require-dev": {
"symfony/yaml": "~2.6",
"johnkary/phpunit-speedtrap": "*",
"php-mock/php-mock-phpunit": "*",
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpdocumentor/reflection-docblock": "*"
},
"scripts": {
"format": "php vendor/bin/phpcs -d date.timezone=UTC --standard=phpcs.xml",
"test": "php vendor/bin/phpunit",
"clean-crash-test": "rm -f vendor/phpunit/php-code-coverage/tests/_files/Crash.php",
"remove-php-8-symfony-polyfill-bootstraps": "rm -f vendor/symfony/polyfill-ctype/bootstrap80.php vendor/symfony/polyfill-intl-idn/bootstrap80.php vendor/symfony/polyfill-intl-normalizer/bootstrap80.php"
},
"_comment": [
"php-compatibility-install comes from https://github.com/wimg/PHPCompatibility/issues/102#issuecomment-255778195"
],
"version": "4.12.8",
"config": {
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}