-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 813 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 813 Bytes
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
{
"name": "oeuvres/kit",
"description": "Routing, logging, templating… small code for big texts",
"keywords": ["xml", "xslt", "xsl", "router", "routing", "log", "logging", "template", "templating"],
"type": "library",
"license": "BSD-3-Clause",
"autoload": {
"psr-4": {
"Oeuvres\\Kit\\": "src/"
}
},
"authors": [
{
"name": "Frédéric Glorieux",
"email": "frederic.glorieux@fictif.org"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"psr/log": "1.1.4",
"ext-mbstring": "*",
"ext-xsl": "*",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": ">=9"
},
"archive": {
"exclude": ["/examples", "/tests"]
}
}