-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.05 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"version": "2.0.1",
"name": "bitshost/php-crud-api-generator",
"description": "Instant REST API for MySQL/MariaDB with JWT auth, rate limiting, monitoring, and zero code generation",
"type": "library",
"license": "MIT",
"keywords": ["api", "rest", "crud", "mysql", "jwt", "authentication", "rate-limiting", "monitoring", "swagger", "openapi"],
"homepage": "https://github.com/BitsHost/php-crud-api-generator",
"minimum-stability": "stable",
"authors": [
{
"name": "Adrian D",
"email": "contact@delvirai.net",
"homepage": "https://upmvc.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"firebase/php-jwt": "^6.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "^4.0"
},
"support": {
"issues": "https://github.com/BitsHost/php-crud-api-generator/issues",
"source": "https://github.com/BitsHost/php-crud-api-generator"
}
}