-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
53 lines (53 loc) · 1.53 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
{
"name": "traderinteractive/filter",
"description": "A filtering implementation for verifying correct data and performing typical modifications to data",
"keywords": ["utility"],
"authors": [
{
"name": "Chad Gray",
"email": "chadwickgray@gmail.com",
"role": "Developer"
},
{
"name": "Spencer Rinehart",
"email": "anubis@overthemonkey.com",
"role": "Developer"
},
{
"name": "Jonathan Gaillard",
"email": "jonathan.gaillard@dominionenterprises.com",
"role": "Developer"
},
{
"name": "Chris Ryan",
"email": "xgbe@yahoo.com",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"traderinteractive/exceptions": "^2.0",
"traderinteractive/filter-arrays": "^4.1",
"traderinteractive/filter-bools": "^4.0",
"traderinteractive/filter-dates": "^4.0",
"traderinteractive/filter-floats": "^4.0",
"traderinteractive/filter-ints": "^4.0",
"traderinteractive/filter-strings": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.2",
"symfony/yaml": "^3.4"
},
"autoload": {
"psr-4": { "TraderInteractive\\": "src/" }
},
"scripts": {
"lint": "vendor/bin/phpcs",
"test": "vendor/bin/phpunit"
}
}