-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
58 lines (58 loc) · 1.6 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
{
"name": "jclaveau/php-logical-filter",
"description": "A class to gather filter parameters into one object and handle them easily.",
"license": "MIT",
"type": "library",
"keywords": ["logical filter", "custom", "logical rules", "object parameter"],
"authors": [
{
"name": "Jean Claveau",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4" : {
"JClaveau\\LogicalFilter\\" : "src"
},
"files": [
"src/functions.php",
"src/polyfills.php"
]
},
"autoload-dev": {
"psr-4" : {
"JClaveau\\LogicalFilter\\Tests\\" : "tests"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jclaveau/php-visibility-violator",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/jclaveau/xhprof",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/jclaveau/phpunit-testlistener-xhprof",
"no-api": true
}
],
"require-dev": {
"phpunit/phpunit": "5.*",
"jclaveau/phpunit-testlistener-xhprof": "1.1.*",
"jclaveau/xhprof": "dev-master",
"jclaveau/phpunit-profile-asserts": "^1.0",
"dusank/knapsack": "^10.0",
"squizlabs/php_codesniffer": "*"
},
"require": {
"jclaveau/php-visibility-violator": "^1.0",
"php": ">=5.6.0",
"jclaveau/php-deferred-callchain": "^1.0"
}
}