forked from pressbooks/pressbooks-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.27 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
{
"name": "pressbooks/pressbooks-book",
"description":
"This theme is named after Canadian media theorist Marshall McLuhan, who coined the phrase “the medium is the message.” It is designed for academic writing and is also suitable for fiction. Headings are set in Cormorant Garamond, and body type is set in Lora.",
"type": "wordpress-theme",
"config": {
"platform": {
"php": "7.1"
}
},
"require": {
"php": ">=7.1",
"composer/installers": "~1.3",
"pressbooks/mix": "^2.1",
"soberwp/intervention": "1.2.0-p"
},
"require-dev": {
"phpunit/phpunit": "~6.5",
"pressbooks/coding-standards": "^1.0",
"wpreadme2markdown/wp2md": "^3.0"
},
"archive": {
"exclude": [".github", ".tx", "bin"]
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pressbooks (Book Oven Inc.)",
"email": "[email protected]"
}
],
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml --coverage-clover coverage.xml",
"@standards"
],
"standards": [
"vendor/bin/phpcs --standard=phpcs.ruleset.xml inc partials *.php"
],
"localize": [
"wp-pot -o=languages/pressbooks-book.pot -d=pressbooks-book -t 'Pressbooks (Book Oven Inc.) <[email protected]>' -s '*.php'"
],
"readme": ["vendor/bin/wp2md -i readme.txt -o README.md"]
}
}