-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 816 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 816 Bytes
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
{
"name": "pluggit/feature-balancer",
"description": "This PHP library will allow to switch on/off or balance with a percentage between features",
"type": "library",
"license": "proprietary",
"authors": [
{
"name": "Hilari Moragrega",
"email": "hilari.moragrega@teamcmp.com"
}
],
"require": {
"php": "^8.0",
"psr/log": "^2.0"
},
"require-dev": {
"phpspec/phpspec": "^7.0",
"phpunit/php-code-coverage": "^2.2",
"pluggit/monitoring": "^4.0.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Cmp\\FeatureBalancer\\": "src/",
"spec\\Cmp\\FeatureBalancer\\": "spec/",
"bin\\Cmp\\FeatureBalancer\\": "bin/"
}
}
}