-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 1.79 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (77 loc) · 1.79 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "musheabdulhakim/paystack",
"description": "PHP & Laravel package, that makes working with Paystack api a breeze.",
"license": "MIT",
"keywords": [
"php",
"github",
"laravel",
"payments",
"paystack",
"paystack.com",
"payment gateway"
],
"authors": [
{
"name": "Mushe Abdul-Hakim",
"email": "musheabdulhakim99@gmail.com",
"homepage": "https://github.com/musheabdulhakim",
"role": "Developer"
}
],
"require": {
"php": "^8.2|^8.3|^8.4",
"php-http/discovery": "^1.20",
"php-http/multipart-stream-builder": "^1.4",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message": "^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.7",
"laravel/pint": "^1.24",
"mockery/mockery": "^1.6",
"pestphp/pest": "^3.8",
"pestphp/pest-plugin-arch": "^3.1",
"pestphp/pest-plugin-type-coverage": "^3.6",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.1",
"symfony/var-dumper": "^7.3"
},
"autoload": {
"psr-4": {
"MusheAbdulHakim\\Paystack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": false
}
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"refacto": "rector",
"test:refacto": "rector",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:refacto",
"@test:types",
"@test:unit"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}