-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
36 lines (36 loc) · 951 Bytes
/
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
{
"name": "stevegrunwell/schemify",
"description": "Automatically generate Schema.org JSON-LD markup for WordPress.",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Steve Grunwell",
"email": "[email protected]",
"homepage": "https://stevegrunwell.com"
}
],
"support": {
"source": "https://github.com/stevegrunwell/schemify",
"issues": "https://github.com/stevegrunwell/schemify/issues"
},
"require-dev": {
"php": "^7.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.4",
"stevegrunwell/wp-enforcer": "dev-master"
},
"scripts": {
"post-install-cmd": [
"wp-enforcer"
],
"test-coverage": [
"phpunit --coverage-html tests/coverage"
]
},
"config": {
"platform": {
"php": "7.0"
}
}
}