-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
73 lines (73 loc) · 1.92 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
{
"name": "piteurstudio/satim-php",
"description": "PHP package to interact with Satim.dz API",
"keywords": [
"PiteurStudio",
"satim-php",
"php",
"satim.dz",
"Algeria",
"edahabia",
"algerie poste"
],
"homepage": "https://github.com/piteurstudio/php-satim",
"license": "MIT",
"authors": [
{
"name": "Nassim",
"email": "mb.nassim@piteur-studio.dz",
"homepage": "https://github.com/n4ss1m"
},
{
"name": "Piteur Studio",
"email": "info@piteur-studio.dz",
"homepage": "https://www.piteur-studio.dz"
}
],
"require": {
"php": "^8.1",
"symfony/http-client": "^6.1 || ^7.0"
},
"require-dev": {
"laravel/pint": "^1.20.0",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.20 || ^3.0",
"phpstan/phpstan": "^2.0",
"rector/rector": "^2.0",
"spatie/ray": "^1.28"
},
"autoload": {
"psr-4": {
"PiteurStudio\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PiteurStudio\\Tests\\": "tests"
}
},
"scripts": {
"lint": "pint",
"refactor": "rector",
"test:unit": "pest --coverage --min=100 --log-junit junit.xml --coverage-clover coverage.xml",
"test:lint": "pint --test",
"test:refactor": "rector --dry-run",
"test:report": "pest --coverage --coverage-html coverage --min=100",
"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
}