-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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
{
"name": "blackprism/ting-rules",
"description": "Ting Rules : a tiny rules system to build query",
"type": "library",
"license": "Apache-2.0",
"config": {
"bin-dir": "bin"
},
"require": {
"php": ">=5.5",
"ccmbenchmark/ting": "^3.3",
"aura/sqlquery": "^2.6"
},
"require-dev": {
"php": ">=7.0",
"ext-xdebug": "^2.2",
"atoum/atoum": "^3.0",
"atoum/stubs": "^2.0",
"atoum/reports-extension": "dev-master",
"object-calisthenics/phpcs-calisthenics-rules": "^3.0",
"phing/phing": "^2.0",
"phpmd/phpmd": "^2.0",
"vimeo/psalm": "^0",
"sebastian/phpcpd": "^3.0",
"wimg/php-compatibility": "^8.0",
"slevomat/coding-standard": "^3.0",
"phpstan/phpstan": "^0"
},
"autoload": {
"psr-4" : {
"Blackprism\\TingRules\\": "src/TingRules/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\fixtures\\": "tests/fixtures/"
}
}
}