-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 1.21 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
{
"name": "warslett/table-builder",
"description": "table abstraction, table building, table rendering",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "William Arslett",
"email": "will@arslett.uk"
}
],
"require": {
"ext-json": "*",
"symfony/property-access": ">4",
"jawira/case-converter": "^3.4"
},
"require-dev": {
"ext-simplexml": "*",
"phpunit/phpunit": "^9.4",
"mockery/mockery": "^1.4",
"rregeer/phpunit-coverage-check": "^0.3.1",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.1",
"doctrine/orm": "^2.7",
"symfony/http-foundation": "^5.1",
"twig/twig": "^3.1",
"symfony/routing": "^5.1",
"psr/http-message": "^1.0",
"league/csv": "^9.6",
"infection/infection": "^0.20.2"
},
"autoload": {
"psr-4": {
"WArslett\\TableBuilder\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"WArslett\\TableBuilder\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}