-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.14 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.14 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
37
38
{
"name": "vendimia/core",
"description": "Core classes and libraries for a Vendimia project",
"license": "GPL-3.0-or-later",
"keywords": ["php", "vendimia"],
"require": {
"php": ">=8.1",
"vendimia/interfaces": "*",
"vendimia/session": "*",
"vendimia/routing": "*",
"vendimia/view": "*",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0",
"vendimia/object-manager": "*",
"vendimia/madss": "*",
"vendimia/logger": "*",
"vendimia/http": "*",
"vendimia/clap": "*",
"vendimia/helper": "*"
},
"autoload": {
"psr-4": {
"Vendimia\\CommandLine\\": "src/CommandLine/",
"Vendimia\\Controller\\": "src/Controller/",
"Vendimia\\Core\\": "src/Core/",
"Vendimia\\Exception\\": "src/Exception/",
"Vendimia\\Middleware\\": "src/Middleware/"
}
},
"authors": [
{
"name": "Oliver Etchebarne",
"email": "yo@drmad.org",
"homepage": "https://drmad.org",
"role": "developer"
}
]
}