-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 767 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 767 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
33
34
35
36
37
38
39
40
{
"name": "vectrex/vxphp",
"type": "framework",
"description": "lean PHP framework for web applications",
"homepage": "https://github.com/Vectrex/vxPHP",
"license": "MIT",
"version": "3.0.3",
"keywords": [
"framework",
"PHP",
"web application"
],
"authors": [
{
"name": "Gregor Kofler",
"email": "info@gregorkofler.com",
"homepage": "https://gregorkofler.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.3.0",
"ext-xml": "*",
"ext-dom":"*",
"ext-bcmath": "*",
"ext-libxml": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.4.3",
"rector/rector": "^1.2"
},
"autoload": {
"classmap": [
"src/"
],
"psr-4": {
"vxPHP\\": "src/"
}
}
}