-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.47 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "everaccounting/wp-ever-accounting",
"description": "WordPress Accounting plugin for small business!",
"homepage": "https://wpeveraccounting.com",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"keywords": [
"wordpress",
"plugin"
],
"authors": [
{
"name": "wpeveraccounting",
"email": "[email protected]"
}
],
"repositories": [
{
"url": "[email protected]:byteever/byteever-sniffs.git",
"type": "github"
}
],
"require": {
"php": ">=5.6|>=7.0"
},
"autoload": {
"psr-4": {
},
"classmap": [
"includes/"
],
"files": [
]
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^6.5",
"byteever/byteever-sniffs": "dev-master"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.0"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"pre-commit": [
"@phpcs"
],
"phpcs": "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v",
"phpcbf": "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v"
},
"extra": {
"scripts-description": {
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
}
}