-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.76 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "restjs/php-rest-api",
"version": "3.0.2",
"description": "Minimalistic RESTful API with Modular Structure",
"type": "package",
"scripts": {
"start": "php -S localhost:8888"
},
"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/functions.php"
],
"psr-4": {
"RestJS\\": "src/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "RestJS/php-rest-api",
"version": "v3",
"source": {
"url": "https://github.com/fullstackondemand/php-rest-api.git",
"type": "git",
"reference": "master"
}
}
}
],
"authors": [
{
"name": "Pramod Singh",
"email": "spramodgusain@gmail.com",
"homepage": "https://github.com/fullstackondemand",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"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"
}
}