-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 1014 Bytes
/
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
{
"name": "alkemann/h2l",
"type": "library",
"description": "A micro framework for websites and apis. This is a sequel of h.l, made for PHP 8",
"keywords": ["framework", "microframework", "router", "routing", "php8"],
"homepage": "https://github.com/alkemann/h2l",
"license": "MIT",
"authors": [
{
"name": "Alexander Morland",
"homepage": "https://github.com/alkemann"
}
],
"suggest": {
"ext-pdo": "For the MySql, Postgres and Sqlite Datasources.",
"ext-curl": "For remote API usage",
"alkemann/debug": "Convenient var_dump replaces for debug and development, require-dev only"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.4"
},
"bin": ["bin/skeleton", "bin/testh2l"],
"autoload": {
"psr-4": {
"alkemann\\h2l\\": "src/",
"alkemann\\h2l\\tests\\": "tests/"
}
}
}