-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (54 loc) · 1.43 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
{
"name": "intraxia/jaxion-bootstrap",
"type": "project",
"license": "MIT",
"description": "Bootstrap your WordPress plugin development with Jaxion.",
"homepage": "https://github.com/intraxia/jaxion-bootstrap",
"authors": [
{
"name": "mAAdhaTTah",
"email": "[email protected]"
}
],
"keywords": [
"wordpress",
"plugin",
"boilerplate",
"jaxion"
],
"support": {
"issues": "https://github.com/intraxia/jaxion-bootstrap/issues"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0",
"wpupdatephp/wp-update-php": "~1.0",
"intraxia/jaxion": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~4.7.7",
"mockery/mockery": "~0.9.4",
"10up/wp_mock": "0.1.*",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3",
"intraxia/codestyle": "dev-master"
},
"autoload": {
"psr-4": {
"Plugin_Name\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Plugin_name\\Test\\": "tests/"
}
},
"scripts": {
"sniff": "phpcs -p app/ --standard=lib/intraxia/codestyle/ruleset.xml --report=summary",
"clean": "phpcbf -p app/ --standard=lib/intraxia/codestyle/ruleset.xml --report=summary",
"test": "phpunit"
},
"config": {
"vendor-dir": "lib"
}
}