-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
53 lines (53 loc) · 1.27 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
{
"name": "chargily/chargily-pay",
"type": "library",
"description": "PHP Library for Chargily Pay V2",
"keywords": [
"Chargily-Pay-Gateway",
"Pay",
"epaiment",
"pay.chargily.com",
"chargily",
"satim",
"cib",
"cibweb",
"php"
],
"license": "MIT",
"authors": [
{
"name": "ChargilyDev",
"role": "Developer"
},
{
"name": "Boubazine mohammed",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"rakit/validation": "^1.4",
"illuminate/support": "^10.39|^11.0",
"medboubazine/number_format": "^1.1",
"nesbot/carbon": "^2.72|^3.0"
},
"require-dev": {
"symfony/var-dumper": "^6.4|^7.0",
"phpunit/phpunit": "^10.5|^11.0"
},
"autoload": {
"psr-4": {
"Chargily\\ChargilyPay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ChargilyTests\\ChargilyPay\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php --testdox --colors=always tests/"
}
}