-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
36 lines (36 loc) · 967 Bytes
/
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
{
"name": "pantheon-systems/rossums-universal-robots",
"description": "A demo plugin to test and showcase github actions during plugin development and release",
"type": "wordpress-plugin",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "CMS PLatform",
"email": "[email protected]"
}
],
"require-dev": {
"pantheon-systems/pantheon-wp-coding-standards": "^2.0",
"pantheon-systems/pantheon-wordpress-upstream-tests": "dev-master",
"phpunit/phpunit": "^9",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"lint": [
"@phpcs",
"@jshint"
],
"jshint": "npm run lint:js",
"phpcs": "vendor/bin/phpcs -s .",
"phpcbf": "vendor/bin/phpcbf",
"phpunit": "vendor/bin/phpunit",
"test": "@phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}