-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
59 lines (59 loc) · 1.8 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
{
"name": "pressbooks/pressbooks-aldine",
"type": "wordpress-theme",
"license": "GPL-3.0-or-later",
"description": "Aldine is the default theme for the home page of Pressbooks networks. It is named for the Aldine Press, founded by Aldus Manutius in 1494, who is regarded by many as the world’s first publisher.",
"homepage": "https://github.com/pressbooks/pressbooks-aldine/",
"authors": [
{
"name": "Pressbooks (Book Oven Inc.)",
"email": "[email protected]",
"homepage": "https://pressbooks.org"
}
],
"keywords": [
"publishing",
"catalog",
"pressbooks",
"default-theme"
],
"support": {
"issues": "https://github.com/pressbooks/pressbooks-aldine/issues",
"forum": "https://discourse.pressbooks.org/"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.1",
"composer/installers": "^2",
"phpcompatibility/php-compatibility": "^9.3",
"pressbooks/mix": "^2.1",
"spatie/color": "^1.1"
},
"require-dev": {
"pressbooks/coding-standards": "^1.1",
"yoast/phpunit-polyfills": "^1.1"
},
"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 inc partials *.php"
],
"fix": [
"vendor/bin/phpcbf --standard=phpcs.ruleset.xml inc partials *.php"
],
"localize": [
"wp-pot -o=languages/pressbooks-aldine.pot -d=pressbooks-aldine -t 'Pressbooks (Book Oven Inc.) <[email protected]>' -s '**/*.php'"
]
}
}