-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
51 lines (51 loc) · 1.23 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
{
"name": "mehdirochdi/cmi-payment-php",
"description": "PHP package to communicate with the CMI payment plateform in Morocco",
"keywords": [
"cmi",
"cmi online payment",
"payment processing",
"morocco payment",
"cmi payment",
"payment in morocco",
"paiement en ligne cmi",
"cmi paiement en ligne",
"paiement en ligne maroc",
"cmi paiement php",
"cmi payment php",
"paiement au maroc"
],
"license": "MIT",
"authors": [
{
"name": "mehdi rochdi",
"email": "[email protected]",
"homepage": "https://github.com/mehdirochdi/cmi-php/graphs/contributors"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"friendsofphp/php-cs-fixer": "^3.13"
},
"autoload": {
"psr-4": {
"Mehdirochdi\\CMI\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"CMI\\": [
"tests/"
]
}
},
"scripts": {
"test" : "vendor/bin/phpunit"
}
}