-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.05 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
{
"name": "p4bgroup/phalcon-nested-sets",
"type": "library",
"description": "Phalcon Nested Set Models. Nested set models for Phalcon Framework",
"keywords": [
"phalcon",
"nested set",
"tree",
"hierarchy",
"mysql",
"sqlite",
"mssql",
"pdo"
],
"license": "MIT",
"require": {
"php": ">= 7.2",
"ext-pdo": "*",
"ext-phalcon": "^3.4"
},
"require-dev": {
"phalcon/ide-stubs": "^3.4",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "~8.4",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"P4BGroup\\NestedSets\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"P4BGroup\\NestedSets\\tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpmd src,tests text cleancode,codesize,controversial,design,unusedcode,naming --ignore-violations-on-exit",
"phpcs --config-set ignore_errors_on_exit 1",
"phpcs --standard=PSR12 src tests",
"phpunit --configuration=phpunit.xml --teamcity"
]
}
}