-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.36 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
{
"name": "tklein/php-combine-conditions",
"description": "Generic representation of conditional structure/tree library for PHP.",
"type": "library",
"keywords": [
"php",
"combine",
"condition",
"operator",
"logic"
],
"homepage": "https://github.com/thomas-kl1/php-combine-conditions",
"license": "MIT",
"authors": [
{
"name": "Thomas Klein",
"email": "thomasklein876@gmail.com",
"homepage": "https://www.linkedin.com/in/thomas-klein/",
"role": "lead"
}
],
"support": {
"source": "https://github.com/thomas-kl1/php-combine-conditions",
"issues": "https://github.com/thomas-kl1/php-combine-conditions/issues"
},
"prefer-stable": true,
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpmd/phpmd": "^2.11",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.6",
"friendsofphp/php-cs-fixer": "^3.4",
"pdepend/pdepend": "^2.1",
"phpstan/phpstan": "^1.3"
},
"autoload": {
"psr-4": {
"LogicTree\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LogicTree\\Test\\": "tests/"
}
},
"archive": {
"exclude": ["composer.lock"]
}
}