-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
49 lines (48 loc) · 1.05 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": "nahid/apiz",
"description": "Apiz is a boilerplate for REST API HTTP call manager",
"type": "php",
"require": {
"php": ">=7.4",
"ext-json": "*",
"lib-libxml" : ">=2.6.20",
"nahid/qarray": "^2.1",
"guzzlehttp/guzzle": "^6.0 | ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^5.1"
},
"suggest": {
"ext-curl": "*",
"ext-libxml": "*",
"ext-yaml": "*",
"ext-simplexml" : "*"
},
"license": "MIT",
"authors": [
{
"name": "Nahid Bin Azhar",
"email": "nahid.dns@gmail.com"
},
{
"name": "Ahmed shamim",
"email": "shaon.cse81@gmail.com"
}
],
"autoload": {
"psr-4": {
"Apiz\\": "src/",
"Tests\\": "Tests/"
},
"files": [
]
},
"minimum-stability": "stable",
"autoload-dev": {
"psr-4": {
"Api\\" : "api/"
}
},
"prefer-stable": true
}