-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.24 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
50
{
"name": "restjs/php-rest-api",
"description": "Create Rest API Application",
"keywords": [
"php",
"composer",
"rest-api",
"file-upload",
"web-services",
"jwt-authentication",
"my-sql",
"slim",
"doctrine-orm",
"symfony-cache",
"php-di-container",
"middlewares-trailing-slash",
"firebase-php-jwt"
],
"homepage": "https://github.com/fullstackondemand/php-rest-api",
"license": "MIT",
"autoload": {
"files": [
"src/function.php",
"src/filter.php"
],
"psr-4": {
"RestJS\\": "src/"
}
},
"authors": [
{
"name": "Pramod Singh",
"email": "spramodgusain@gmail.com",
"homepage": "https://github.com/fullstackondemand",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"vlucas/phpdotenv": "^5.6",
"slim/slim": "4.*",
"slim/psr7": "^1.7",
"doctrine/orm": "^2.20",
"php-di/php-di": "^7.0",
"symfony/cache": "^6.0",
"middlewares/trailing-slash": "^2.0",
"firebase/php-jwt": "^6.10"
}
}