-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.44 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
{
"name": "pantaflex44/syme",
"description": "Syme est un petit framework PHP aidant à la réalisation d'applications Web. Simple et rapide, ce framework a été conçu pour accélérer le développement tout en restant modulaire et efficace. Applications Web, API Rest, Syme est l'outil incontournable de vos projets.",
"type": "project",
"homepage": "https://github.com/pantaflex44/Syme",
"readme": "./README.md",
"time": "2024-01-01",
"license": "MIT",
"authors": [
{
"name": "Christophe LEMOINE",
"email": "pantaflex@tuta.io",
"homepage": "https://github.com/pantaflex44",
"role": "Developer"
}
],
"support": {
"email": "pantaflex@tuta.io",
"issues": "https://github.com/pantaflex44/Syme/issues"
},
"autoload": {
"psr-4": {
"components\\core\\": "components/core/",
"components\\extended\\": "components/extended/",
"controllers\\": "controllers/",
"middlewares\\": "middlewares/",
"\\": "./"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pantaflex44/Syme"
}
],
"require": {
"php": ">=8.2",
"twig/twig": "^3.0",
"ext-fileinfo": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-zlib": "*",
"phpmailer/phpmailer": "^6.9"
}
}