-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 733 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 733 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
32
33
34
35
36
37
38
39
{
"name": "daylerees/scientist",
"description": "A PHP experimentation library inspired by Github's own Scientist.",
"keywords": [
"scientist",
"testing",
"experiment",
"framework",
"dayle",
"test"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dayle Rees",
"email": "me@daylerees.com"
}
],
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^2.9",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phing/phing": "^2.13"
},
"autoload": {
"psr-4": {
"Scientist\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Scientist\\Tests\\": "tests"
}
}
}