forked from MonkDev/monkcms-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.42 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
{
"name": "bagrinsergiu/monkcms-php",
"description": "A PHP client for accessing the MonkCMS API in non-website environments.",
"type": "library",
"keywords": ["monk", "monkdev", "monkcms", "cms", "ekklesia", "ekklesia360"],
"homepage": "https://github.com/MonkDev/monkcms-php",
"license": "MIT",
"authors": [
{
"name": "Monk Development, Inc.",
"homepage": "http://monkdev.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/MonkDev/monkcms-php/issues"
},
"autoload": {
"psr-4": {
"Monk\\": "lib/Monk/"
}
},
"require": {
"php": ">=5.3.0",
"rmccue/requests": "v2.0.4"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "~2.9.0",
"phploc/phploc": "~3.0.1",
"phpmd/phpmd": "~2.6.0",
"phpunit/phpunit": "~5.7.15",
"sebastian/phpcpd": "~2.0.4",
"sensiolabs/security-checker": "~4.0.1",
"squizlabs/php_codesniffer": "~2.8.1"
},
"scripts": {
"phpcpd": "phpcpd lib/",
"phpcs": "phpcs --standard=PSR2 lib/ tests/",
"phpdoc": "phpdoc",
"phplint": "php -l lib/**/*",
"phploc": "phploc lib/",
"phpmd": "phpmd lib/ text cleancode,codesize,controversial,design,naming,unusedcode",
"quality": ["@phplint", "@phpcs", "@phpcpd", "@phploc", "@phpmd", "@security-checker"],
"security-checker": "security-checker security:check --end-point=http://security.symfony.com/check_lock",
"test": "phpunit"
}
}