forked from pressbooks/pressbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "pressbooks/pressbooks",
"license": "GPL-3.0-or-later",
"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": "code@pressbooks.com",
"homepage": "https://pressbooks.com"
}
],
"keywords": ["ebooks", "publishing", "webbooks"],
"support": {
"email": "code@pressbooks.com",
"issues": "https://github.com/pressbooks/pressbooks/issues/",
"forum": "https://discourse.pressbooks.org",
"docs": "http://docs.pressbooks.org/",
"source": "https://github.com/pressbooks/pressbooks/"
},
"config": {
"platform": {
"php": "7.1"
}
},
"require": {
"php": ">=7.1",
"composer/installers": "~1.0",
"davidgorges/human-name-parser": "^0.2.1",
"gridonic/princexml-php": "^1.2",
"illuminate/container": "5.4.*",
"jenssegers/blade": "^1.1",
"jenssegers/imagehash": "^0.4.2",
"johnbillion/extended-cpts": "^4.2",
"leafo/scssphp": "^0.7.6",
"masterminds/html5": "^2.3",
"pressbooks/mix": "^2.1",
"pressbooks/pb-api": "^1.1",
"pressbooks/pb-cli": "^1.8",
"sinergi/browser-detector": "^6.1",
"vanilla/htmlawed": "^2.2",
"yahnis-elsts/plugin-update-checker": "^4.4",
"docraptor/docraptor": "1.3",
"fale/isbn": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "6.5.8",
"pressbooks/coding-standards": "dev-master"
},
"suggest": {
"pressbooks/pressbooks-book":
"Pressbooks Book is the canonical book theme for Pressbooks.",
"pressbooks/pressbooks-aldine":
"Aldine is the default theme for the home page of Pressbooks networks."
},
"archive": {
"exclude": [
".editorconfig",
".gitattributes",
".github",
".gitignore",
".phpstorm.meta.php",
".stylelintrc",
".travis.yml",
".tx",
"assets/src",
"bin",
"codecov.yml",
"phpcs.ruleset.xml",
"phpunit.xml",
"tests",
"webpack.mx.js",
"yarn.lock"
]
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml --coverage-clover coverage.xml",
"@standards"
],
"standards": [
"vendor/bin/phpcs --standard=phpcs.ruleset.xml *.php inc/ bin/"
]
}
}