-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
106 lines (106 loc) · 3.76 KB
/
composer.json
File metadata and controls
106 lines (106 loc) · 3.76 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "convertkit/convertkit-wordpress",
"description": "Kit WordPress Plugin",
"type": "project",
"license": "GPLv3",
"require": {
"convertkit/convertkit-wordpress-libraries": "dev-ignore-invalid-resource-arrays"
},
"require-dev": {
"php-webdriver/webdriver": "^1.0",
"wp-coding-standards/wpcs": "^3.0.0",
"phpstan/phpstan": "^1.0 || ^2.0",
"szepeviktor/phpstan-wordpress": "^1.0 || ^2.0",
"lucatume/wp-browser": "^3.0 || ^4.0",
"gumlet/php-image-resize": "^1.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"create-release-assets": [
"php -n $(which wp) i18n make-pot . languages/convertkit.pot",
"@php .scripts/create-actions-filters-docs.php"
],
"create-pot": "php -n $(which wp) i18n make-pot . languages/convertkit.pot",
"create-dev-docs": "@php .scripts/create-actions-filters-docs.php",
"phpcs": "vendor/bin/phpcs ./ -s -v",
"phpcbf": "vendor/bin/phpcbf ./ -s -v",
"phpcs-tests": "vendor/bin/phpcs ./tests --standard=phpcs.tests.xml -s -v",
"phpcbf-tests": "vendor/bin/phpcbf ./tests --standard=phpcs.tests.xml -s -v",
"build-css": "npm run build:css",
"watch-css": "npm run watch:css",
"lint-css": "npm run lint:css",
"fix-css": "npm run fix:css",
"build-js": "npm run build:js",
"watch-js": "npm run watch:js",
"lint-js": "npm run lint:js",
"fix-js": "npm run fix:js",
"build": [
"npm run fix:css",
"npm run lint:css",
"npm run fix:js",
"npm run lint:js",
"npm run build:css",
"npm run build:js"
],
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1250M",
"php-coding-standards": "vendor/bin/phpcs ./ -s -v",
"fix-php-coding-standards": "vendor/bin/phpcbf ./ -s -v",
"php-coding-standards-on-tests": "vendor/bin/phpcs ./tests --standard=phpcs.tests.xml -s -v",
"fix-php-coding-standards-on-tests": "vendor/bin/phpcbf ./tests --standard=phpcs.tests.xml -s -v",
"css-coding-standards": "npm run lint:css",
"fix-css-coding-standards": "npm run fix:css",
"js-coding-standards": "npm run lint:js",
"fix-js-coding-standards": "npm run fix:js",
"php-static-analysis": "vendor/bin/phpstan analyse --memory-limit=1250M",
"test": [
"vendor/bin/codecept build @no_additional_args",
"vendor/bin/codecept run EndToEnd @additional_args --fail-fast"
],
"test-integration": [
"vendor/bin/codecept build @no_additional_args",
"vendor/bin/codecept run Integration @additional_args --fail-fast"
]
},
"archive": {
"exclude": [
"!vendor/*",
".circleci",
".github",
"bin",
"tests",
".distignore",
".env",
".gitignore",
".git",
".wordpress-org",
".travis.yml",
"circle.yml",
"codeception.dist.yml",
"composer.json",
"composer.lock",
"Gruntfile.js",
"log",
"log.txt",
"package.json",
"package-lock.json",
"phpcs.xml.dist",
"phpunit.xml",
"phpunit.xml.dist",
"node_modules",
"readme.md",
"tags"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": [
{
"url": "https://github.com/convertkit/convertkit-wordpress-libraries.git",
"type": "git"
}
]
}