forked from lumenlearning/candela-utility
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
35 lines (35 loc) · 1.1 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
{
"name": "lumenlearning/candela-utility",
"license": "GPL-2.0+",
"version": "0.4.0",
"type" : "wordpress-plugin",
"description": "Candela Utility is a plugin that extends the functionality of Pressbooks by utilizing various action and filter hooks supplied by the Pressbooks API.",
"homepage": "https://github.com/lumenlearning/candela-utility",
"authors": [
{
"name": "Lumen Learning",
"email": "dev@lumenlearning.com",
"homepage": "https://lumenlearning.com"
}
],
"support": {
"issues": "https://github.com/lumenlearning/candela-utility/issues/",
"source": "https://github.com/lumenlearning/candela-utility/"
},
"require": {
"php": ">=5.6.0",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.5",
"squizlabs/php_codesniffer": "^2.7",
"wp-coding-standards/wpcs": "^0.10"
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml",
"vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"vendor/bin/phpcs --standard=phpcs.xml --extensions=php ."
]
}
}