-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 971 Bytes
/
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
{
"name": "tapha/laravel-metapack-api",
"description": "A Simple Laravel Wrapper for the MetaPack Shipping and Tracking API's",
"keywords": ["laravel", "api", "metapack"],
"homepage": "https://github.com/Tapha/laravel-metapack-api",
"license": "MIT",
"authors": [
{
"name": "Tapha",
"email": "Your Email Here"
}
],
"require": {
"php": "^8.0.2",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.11",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"scrutinizer/ocular": "^1.1",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"tapha\\MetaPack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tapha\\MetaPack\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"tapha\\MetaPack\\MetaPackServiceProvider"
],
"aliases": {
"MetaPack": "tapha\\MetaPack\\Facades\\MetaPack"
}
}
}
}