-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "ucscode/table-generator",
"description": "Lightweight PHP library that simplifies the process of creating tables with minimal code",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Uchenna Ajah",
"email": "uche23mail@gmail.com"
}
],
"require": {
"php": ">=8.1",
"ucscode/uss-element": "^3.5",
"ucscode/easy-paginator": "^2.0"
},
"autoload": {
"psr-4": {
"Ucscode\\HtmlComponent\\TableGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ucscode\\HtmlComponent\\TableGenerator\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^2.1"
},
"scripts": {
"test": "vendor/bin/phpunit --display-deprecations --display-warnings --display-notices --display-phpunit-deprecations",
"analyse": "vendor/bin/phpstan analyse"
}
}