-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
74 lines (74 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "negartarh/apiwrapper",
"description": "Super Fast, Lightweight, Standard, Octane Compatible, and High Customizable package for Laravel API responses",
"type": "library",
"license": "MIT",
"keywords": [
"API",
"PHP",
"RFC",
"JSON",
"REST",
"LARAVEL",
"RESTFUL",
"RESPONSE",
"RESTful API",
"LARAVEL RESPONSE",
"LARAVEL OCTANE"
],
"homepage": "https://github.com/negartarh/apiwrapper",
"authors": [
{
"name": "Negar Tarh Giti (Privet Joint Stock Company)",
"email": "2020amiramir@gmail.com",
"role": "Creator & Maintainer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"illuminate/support": "^v9.0.0|^v10.0.0|^v11.0.0"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"pestphp/pest": "^v2.24.2",
"pestphp/pest-plugin-laravel": "^v2.2.0",
"pestphp/pest-plugin-type-coverage": "^2.4"
},
"autoload": {
"psr-4": {
"Negartarh\\APIWrapper\\": "src/"
},
"files": [
"src/Helpers/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Negartarh\\APIWrapper\\Tests\\": "tests/"
},
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"providers": [
"Negartarh\\APIWrapper\\APIResponseServiceProvider"
],
"aliases": {
"APIResponse": "Negartarh\\APIWrapper\\Facades\\APIResponse"
}
}
},
"scripts": {
"pest": "vendor/bin/pest --parallel",
"pest-cov": "vendor/bin/pest --coverage",
"pest-type": "vendor/bin/pest --type-coverage"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}