-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 986 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
33
34
35
36
37
38
39
{
"name": "emmo00/mock-paystack-laravel",
"description": "PHP package for mocking Paystack responses and webhooks in your Laravel Test suite",
"keywords": [
"paystack",
"mock",
"testing",
"laravel"
],
"homepage": "https://github.com/emmo00/mock-paystack-laravel",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/psr7": "^2.0",
"illuminate/http": "^11.36"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"orchestra/testbench": "^9.9"
},
"autoload": {
"psr-4": {
"Emmo00\\MockPayStack\\": "src/",
"Emmo00\\MockPayStack\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Emmo00",
"email": "[email protected]",
"role": "Developer"
}
],
"scripts": {
"test": "phpunit tests"
}
}