-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 697 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 697 Bytes
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
{
"name": "bueltge/wp-rest-api-filter-items",
"description": "Removing Content From WP API Response on your request.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Inpsyde GmbH",
"email": "hello@inpsyde.com",
"homepage": "http://inpsyde.com",
"role": "Company"
}
],
"require": {
"php": ">=5.2.4",
"composer/installers": "~1.0"
},
"require-dev": {
"php": ">=5.3.3",
"phpunit/phpunit": "~4.8|~5.7"
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"pu": "@php ./vendor/bin/phpunit",
"qa": ["@pu"]
}
}