forked from PiteurStudio/CourierDZ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.81 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
{
"name": "piteurstudio/courierdz",
"description": "CourierDZ is a PHP client for integrating multiple Algerian shipping providers, including ZR Express, Procolis, Yalidine, Ecotrack, Mayesto Delivery, and more, offering seamless order and tracking management.",
"keywords": [
"PiteurStudio",
"courierdz",
"Algeria",
"shipping",
"tracking",
"API",
"Yalidine",
"ZR Express",
"Procolis",
"Ecotrack",
"Mayesto Delivery"
],
"homepage": "https://github.com/PiteurStudio/CourierDZ",
"license": "MIT",
"authors": [
{
"name": "Nassim",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Piteur Studio",
"email": "[email protected]",
"role": "Company"
}
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.0",
"illuminate/validation": "^9|^10|^11"
},
"require-dev": {
"laravel/pint": "^1.0",
"mockery/mockery": "^1.6",
"pestphp/pest": "^1.0|^2.0|^3.0",
"phpstan/phpstan": "^2.0",
"spatie/ray": "^1.28"
},
"autoload": {
"psr-4": {
"CourierDZ\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CourierDZ\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"analyse": "vendor/bin/phpstan",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}