forked from cloudflare/Cloudflare-WordPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.2 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
{
"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",
"cloudflare/cloudflare-plugin-backend": "2.4.0",
"symfony/yaml": "~2.6"
},
"require-dev": {
"johnkary/phpunit-speedtrap": "1.0.1",
"php-mock/php-mock-phpunit": "^1.1",
"phpunit/phpunit": "5.*",
"squizlabs/php_codesniffer": "2.*",
"phpcompatibility/php-compatibility": "*",
"simplyadmire/composer-plugins": "@dev",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2",
"phpdocumentor/reflection-docblock": "^3.3.2"
},
"scripts": {
"format": "php vendor/bin/phpcs -d date.timezone=UTC --standard=phpcs.xml",
"test": "php vendor/bin/phpunit"
},
"_comment": [
"php-compatibility-install comes from https://github.com/wimg/PHPCompatibility/issues/102#issuecomment-255778195"
],
"version": "3.8.5",
"config": {
"platform": {
"php": "5.6.40"
}
}
}