-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathcomposer.json
37 lines (37 loc) · 973 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
37
{
"name": "jjgrainger/posttypes",
"description": "Simple WordPress custom post types.",
"keywords": ["wordpress", "post-types"],
"license": "MIT",
"homepage": "https://posttypes.jjgrainger.co.uk",
"support": {
"issues": "https://github.com/jjgrainger/posttypes/issues",
"source": "https://github.com/jjgrainger/posttypes"
},
"authors": [
{
"name": "Joe Grainger",
"homepage": "https://jjgrainger.co.uk"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"PostTypes\\": "src/"
}
},
"scripts": {
"test": [
"./vendor/bin/phpcs --standard=psr2 src",
"./vendor/bin/phpunit --coverage-clover=coverage.xml"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}