-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.04 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "papihack/paytech-php-client",
"description": "A PHP Client or SDK for PayTech Online Payment Gateway.",
"keywords": [
"Plateforme de paiement en ligne Afrique",
"Paiement Sénégal", "Paiement", "paiement en ligne", "Sénégal",
"Passerelle de paiement en ligne", "PAYTECH", "paytech", "paytech.sn",
"orange money", "client php", "api", "php client", "library", "sdk",
"php sdk", "paytech php sdk", "client api"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "PapiHack",
"email": "itdev94@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"rmccue/requests": "^1.7"
},
"autoload": {
"psr-4": {
"PayTech\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PayTech\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"pestphp/pest": "^0.2.3"
}
}