-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.35 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.35 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
{
"name": "ableplayer/ableplayer-wordpress",
"description": "Able Player Plugin for WordPress",
"keywords": ["wordpress", "html5", "video", "audio"],
"homepage": "https://github.com/ableplayer/ableplayer-wordpress",
"license": "MIT",
"authors": [{
"name": "Terrill Thompson",
"email": "test@test.com",
"homepage": "https://terrillthompson.com"
},
{
"name": "Joe Dolson",
"email": "plugins@joedolson.com",
"homepage": "https://www.joedolson.com"
}],
"type": "wordpress-plugin",
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^8.5",
"wp-coding-standards/wpcs": "^3.0.0",
"wp-phpunit/wp-phpunit": "^5.8",
"yoast/phpunit-polyfills": "^1.0",
"szepeviktor/phpstan-wordpress": "^1.1",
"phpstan/extension-installer": "^1.1"
},
"require": {
"composer/installers": "~1.0"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist",
"test": "phpunit -c phpunit.xml.dist --verbose"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}