This repository was archived by the owner on Nov 30, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.26 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "typisttech/cloudflare-wp-api",
"type": "library",
"description": "WordPress HTTP API replacement of the jamesryanbell/cloudflare package.",
"keywords": [
"api",
"wordpress",
"cloudflare"
],
"homepage": "https://github.com/TypistTech/cloudflare-wp-api",
"license": "GPL-2.0+",
"authors": [
{
"name": "Typist Tech",
"email": "cloudflare-wp-api@typist.tech",
"homepage": "https://www.typist.tech/"
},
{
"name": "Tang Rufus",
"email": "tangrufus@gmail.com",
"homepage": "https://www.typist.tech/",
"role": "Developer"
}
],
"support": {
"email": "cloudflare-wp-api@typist.tech",
"issues": "https://github.com/TypistTech/cloudflare-wp-api/issues",
"source": "https://github.com/TypistTech/cloudflare-wp-api"
},
"require": {
"php": "^7.0",
"jamesryanbell/cloudflare": "^1.10"
},
"require-dev": {
"lucatume/wp-browser": "^1.19",
"neronmoon/scriptsdev": "^0.1.1",
"php-mock/php-mock-phpunit": "^1.1",
"wp-coding-standards/wpcs": "^0.11.0"
},
"autoload": {
"psr-4": {
"Cloudflare\\": "src"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"post-install-cmd": "./bin/cfwp build",
"post-update-cmd": "./bin/cfwp build",
"check-style": "phpcs --standard=ruleset.xml --colors -p -s .",
"fix-style": "phpcbf --standard=ruleset.xml -p --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 .",
"pre-tag": [
"npm update",
"doctoc README.md",
"github_changelog_generator --no-verbose"
],
"test": "codecept run",
"test-with-coverage": "codecept run --coverage --coverage-xml --coverage-html"
},
"extra": {
"scripts-dev": {
"post-install-cmd": [
"phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
],
"post-update-cmd": [
"phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
]
}
},
"bin": [
"bin/cfwp"
]
}