-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1.35 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
46
47
48
49
{
"name": "nextphp/nextphp",
"description": "NextPHP is a modern and lightweight PHP framework designed for performance and scalability. It offers powerful routing capabilities, comprehensive HTTP handling, and efficient database operations. NextPHP is ideal for developers looking to build high-performance web applications with ease.",
"type": "project",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "Vedat Yıldırım",
"email": "vedat@nextphp.io"
}
],
"homepage": "https://nextphp.io",
"keywords": [
"php",
"framework",
"routing",
"http",
"restful",
"json",
"xml",
"html",
"text",
"csv",
"nextphp",
"database",
"orm"
],
"support": {
"email": "support@nextphp.io",
"issues": "https://github.com/nextphp-projects/nextphp/issues"
},
"autoload": {
"psr-4": {
"NextPHP\\App\\": "app/"
}
},
"require": {
"php": "^8.1",
"nextphp/rest": "^1.2",
"nextphp/data": "^1.2"
},
"extra": {
"documentation": "https://github.com/nextphp-projects/nextphp/wiki",
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}