-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.21 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.21 KB
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
{
"name": "phpoxford/spires-plugin",
"description": "Starter template for a Spires plugin",
"type": "library",
"homepage": "https://github.com/phpoxford/spires-plugin",
"license": "MIT",
"authors": [
{
"name": "Your Name",
"email": "yourname@example.com",
"homepage": "http://example.com"
}
],
"require": {
"phpoxford/spires": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"hamcrest/hamcrest-php": "^2.0",
"scrutinizer/ocular": "~1.3",
"squizlabs/php_codesniffer": "~2.5"
},
"autoload": {
"psr-4": {
"YourNamespace\\Spires\\PluginName\\": "src/"
}
},
"autoload-dev": {
"files": [
"vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest.php"
],
"psr-4": {
"YourNamespace\\Spires\\PluginName\\Tests\\": "tests/"
}
},
"scripts": {
"sniff": "./vendor/bin/phpcs src/ --standard=PSR2 --report=summary",
"fix": "./vendor/bin/phpcbf src/ --standard=PSR2",
"test": "./vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}