-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
78 lines (78 loc) · 2.07 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
75
76
77
78
{
"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.20.0",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.20 || ^3.0",
"php-coveralls/php-coveralls": "^2.7.0",
"phpstan/phpstan": "^2.0",
"rector/rector": "^2.0",
"spatie/ray": "^1.28"
},
"autoload": {
"psr-4": {
"CourierDZ\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CourierDZ\\Tests\\": "tests"
}
},
"scripts": {
"lint": "pint",
"refactor": "rector",
"test:unit": "pest --coverage --min=25",
"test:lint": "pint --test",
"test:refactor": "rector --dry-run",
"test:types": "phpstan",
"test": [
"@test:unit",
"@test:lint",
"@test:types",
"@test:refactor"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}