roe-pressbooks/composer.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2019-03-25 20:31:05 +00:00
{
2019-03-25 22:02:16 +00:00
"name": "villa7/roe-pressbooks",
2019-03-25 20:31:05 +00:00
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"description": "Scaffolding for a Pressbooks plugin.",
2019-03-25 22:02:16 +00:00
"homepage": "https://github.com/villa7/roe-pressbooks",
2019-03-25 20:31:05 +00:00
"authors": [
{
"name": "Book Oven Inc.",
"email": "code@pressbooks.com",
"homepage": "https://pressbooks.org"
}
],
"keywords": ["ebooks", "publishing", "webbooks"],
"support": {
"email": "code@pressbooks.com",
"issues":
2019-03-25 22:02:16 +00:00
"https://github.com/villa7/roe-pressbooks/issues/",
"source": "https://github.com/villa7/roe-pressbooks/"
2019-03-25 20:31:05 +00:00
},
"config": {
"platform": {
"php": "7.0.29"
}
},
"require": {
"php": ">=7.0",
"composer/installers": "~1.4",
"yahnis-elsts/plugin-update-checker": "^4.4"
},
"require-dev": {
"pressbooks/coding-standards": "dev-master",
"wpreadme2markdown/wp2md": "^3.0"
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml --coverage-clover coverage.xml",
"@standards"
],
"standards": [
"vendor/bin/phpcs --standard=phpcs.ruleset.xml *.php inc/ bin/"
],
"localize": [
2019-03-25 22:02:16 +00:00
"wp-pot -s \"**/*.php\" -o languages/roe-pressbooks.pot -p \"Pressbooks\" -t \"Pressbooks (Book Oven Inc.) <code@pressbooks.com>\"",
2019-03-25 20:31:05 +00:00
"bash bin/i18n.sh"
],
"readme": ["vendor/bin/wp2md -i readme.txt -o README.md"]
}
}