-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
33 lines (33 loc) · 1.05 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
{
"name": "wordpress/tumblr-importer",
"description": "Tumblr Importer is a plugin that imports posts from Tumblr into WordPress.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"require": {
"php": ">=5.6"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "*"
},
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"packages-install": "@composer install --ignore-platform-reqs --no-interaction",
"packages-update": [
"@composer clear-cache",
"@composer update --prefer-stable --no-interaction"
],
"format:php": "phpcbf --standard=./.phpcs.xml --basepath=. . -v",
"lint:php": "phpcs --runtime-set ignore_warnings_on_exit true --standard=./.phpcs.xml --basepath=. . -v"
}
}