-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
55 lines (55 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "screenly/screenly-cast-for-wordpress",
"description": "WordPress plugin to enable casting of content on Screenly devices",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Screenly, Inc",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"yoast/phpunit-polyfills": "^2.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"slevomat/coding-standard": "^8.15",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"autoload": {
"classmap": [
"screenly-cast/inc/"
],
"psr-4": {
"ScreenlyCast\\": "screenly-cast/inc/"
}
},
"autoload-dev": {
"psr-4": {
"ScreenlyCast\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"prepare-test": "bash bin/install-wp-tests.sh wordpress_test root '' localhost latest",
"lint:php": "./vendor/bin/phpcs --standard=.phpcs.xml.dist .",
"lint:php:fix": "./vendor/bin/phpcbf --standard=.phpcs.xml.dist .",
"lint": [
"@lint:php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.4"
}
}
}