-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.19 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "jmrashed/api-starter-kit",
"description": "A raw PHP API starter kit without frameworks.",
"type": "project",
"license": "MIT",
"homepage": "https://www.linkedin.com/in/jmrashed/",
"keywords": [
"php",
"api",
"starter-kit",
"leetcode",
"hackerrank",
"jmrashed"
],
"support": {
"email": "jmrashed@gmail.com",
"issues": "https://github.com/jmrashed/php-rest-api-pro-kit/issues"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"authors": [
{
"name": "JM Rashed",
"email": "jmrashed@gmail.com",
"homepage": "https://www.linkedin.com/in/jmrashed/",
"role": "Developer"
}
],
"extra": {
"social": {
"linkedin": "https://www.linkedin.com/in/jmrashed/",
"leetcode": "https://leetcode.com/u/jmrashed/",
"hackerrank": "https://www.hackerrank.com/profile/jmrashed",
"whatsapp": "https://wa.me/8801734446514"
}
},
"require": {
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}