-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1012 Bytes
/
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
{
"name": "paymaster/quick-top-up-api",
"description": "QuickTopUpAPI is a PHP demo for connecting to transaction APIs, focusing on mobile top-up purchases and status checks. It's designed for easy integration and future scalability, offering a practical example for developers.",
"autoload": {
"psr-4": {
"QuickTopUpAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"QuickTopUpAPI\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Andrei Ghenov"
}
],
"require": {
"guzzlehttp/guzzle": "^7.8",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"scripts": {
"test-api-client": "vendor/bin/phpunit tests/Api/ApiClientTest.php",
"test-service-product": "vendor/bin/phpunit tests/Service/ProductServiceTest.php",
"test-service-purchase": "vendor/bin/phpunit tests/Service/PurchaseServiceTest.php",
"test-service-status_check": "vendor/bin/phpunit tests/Service/StatusCheckServiceTest.php"
}
}