forked from pressbooks/pressbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.97 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "pressbooks/pressbooks",
"license": "GPL-2.0+",
"type" : "wordpress-plugin",
"description": "Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, MOBI, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.",
"homepage": "https://github.com/pressbooks/pressbooks",
"authors": [
{
"name": "Book Oven Inc.",
"email": "[email protected]",
"homepage": "https://pressbooks.com"
}
],
"keywords": [
"ebooks",
"publishing",
"webbooks"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/pressbooks/pressbooks/issues/",
"forum": "https://discourse.pressbooks.org",
"docs": "http://docs.pressbooks.org/",
"source": "https://github.com/pressbooks/pressbooks/"
},
"require": {
"php": ">=5.6.0",
"composer/installers": "~1.0",
"gridonic/princexml-php": "^1.2",
"pimple/pimple": "^3.0",
"leafo/scssphp": "^0.6.7",
"pressbooks/pb-api": "^1.1",
"perchten/rmrdir": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.5",
"squizlabs/php_codesniffer": "^2.7",
"wp-coding-standards/wpcs": "^0.10"
},
"archive" : {
"exclude": [
".coveralls.yml",
".editorconfig",
".gitignore",
".phpstorm.meta.php",
".travis.yml",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"ISSUE_TEMPLATE.md",
"phpunit.xml",
"tests"
]
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml --coverage-clover coverage.xml",
"vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"vendor/bin/phpcs --standard=phpcs.xml --extensions=php ."
],
"standards": [
"vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"vendor/bin/phpcs --standard=phpcs.xml --extensions=php ."
]
}
}