-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.41 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.41 KB
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
{
"name": "offdev/bandit",
"description": "An A/B/x testing algorithm written in PHP by implementing the solution to the multi armed bandit problem",
"keywords": ["offdev","bandit","test","testing","multi","armed"],
"homepage": "https://offdev.net",
"license": "Apache-2.0",
"authors": [{
"name": "Pascal Severin",
"email": "pascal@offdev.net",
"homepage": "https://offdev.net"
}],
"require": {
"php": ">=7.4"
},
"require-dev": {
"infection/infection": "^0.15",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.0",
"phpstan/phpstan": "^0.12",
"phpstan/extension-installer": "^1.0",
"symfony/var-dumper": "^5.0",
"overtrue/phplint": "^1.2"
},
"autoload": {
"psr-4": {
"Offdev\\Bandit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Offdev\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "./vendor/bin/phplint ./ --exclude=vendor",
"phpunit": "./vendor/bin/phpunit",
"phpstan": "./vendor/bin/phpstan analyze",
"check-style": "./vendor/bin/phpcs",
"fix-style": "./vendor/bin/phpcbf",
"infection": "./vendor/bin/infection",
"test": ["@lint", "@check-style", "@phpstan", "@phpunit", "@infection"],
"test-ci": ["@lint", "@check-style", "@phpstan", "@phpunit"]
}
}