-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.58 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "midorikocak/tabletools",
"type": "library",
"description": "In an app you have to deal with tables. This library gives you some handy tools to deal with them.",
"keywords": [
"midorikocak",
"table",
"sort",
"range",
"filter",
"paginate",
"search"
],
"homepage": "https://github.com/midorikocak/view",
"license": "MIT",
"authors": [
{
"name": "Midori Kocak",
"email": "[email protected]",
"homepage": "https://www.mtkocak.net",
"role": "Developer"
}
],
"require": {
"php": "~7.4",
"ext-iconv": "*",
"ext-json": "*",
"eftec/bladeone": "^3.34",
"league/csv": "^9.5",
"midorikocak/arraytools": "^1.0",
"midorikocak/nanodb": "^1.1.3",
"ext-pdo": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.5",
"opsway/psr12-strict-coding-standard": "^0.3.0",
"phpunit/phpunit": ">=8.5",
"squizlabs/php_codesniffer": "^3.5",
"symfony/process": "^5.0"
},
"autoload": {
"psr-4": {
"midorikocak\\tabletools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"midorikocak\\tabletools\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}