forked from pressbooks/pressbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
109 lines (109 loc) · 3.17 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"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, 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://pressbooks.community",
"docs": "https://pressbooks.org/user-docs/",
"source": "https://github.com/pressbooks/pressbooks/"
},
"config": {
"process-timeout":0,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"require": {
"php": "^8.1",
"aws/aws-sdk-php": "^3.173",
"composer/installers": "^2.1",
"davidgorges/human-name-parser": "^1.0",
"docraptor/docraptor": "^4.0",
"fale/isbn": "^3.0",
"gridonic/princexml-php": "^1.2",
"illuminate/container": "^8.0",
"illuminate/contracts": "^8.0",
"illuminate/events": "^8.0",
"illuminate/http": "^8.0",
"illuminate/filesystem": "^8.0",
"illuminate/support": "^8.0",
"illuminate/view": "^8.0",
"jenssegers/imagehash": "^0.8.0",
"johnbillion/extended-cpts": "^5.0",
"laravel/helpers": "^1.5",
"masterminds/html5": "^2.6",
"maxbanton/cwh": "^2.0",
"monolog/monolog": "^2.2",
"pressbooks/mix": "^2.1",
"pressbooks/pb-cli": "^3",
"scssphp/scssphp": "^1.11.0",
"sinergi/browser-detector": "^6.1",
"vanilla/htmlawed": "^2.2",
"phpcompatibility/php-compatibility": "^9.3",
"vlucas/phpdotenv": "^5.4",
"symfony/process": "^6.0"
},
"require-dev": {
"codeception/module-asserts": "^1.3",
"codeception/module-cli": "^1.1",
"codeception/module-db": "^1.1",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.2",
"lucatume/wp-browser": "^3.0",
"pressbooks/coding-standards": "^1.1",
"yoast/phpunit-polyfills": "^2.0.0",
"dms/phpunit-arraysubset-asserts": "^0.5.0"
},
"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",
".tx",
"assets/src",
"bin",
"codecov.yml",
"phpcs.ruleset.xml",
"phpunit.xml",
"tests",
"webpack.mix.js"
]
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml"
],
"test-coverage": [
"vendor/bin/phpunit --configuration phpunit.xml --coverage-clover coverage.xml --coverage-html=./coverage-reports"
],
"standards": [
"vendor/bin/phpcs --standard=phpcs.ruleset.xml *.php inc/ bin/"
],
"fix": [
"vendor/bin/phpcbf --standard=phpcs.ruleset.xml *.php inc/ bin/"
]
}
}