-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 1.92 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
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
78
79
80
81
82
83
{
"name": "swervpaydev/laravel",
"description": "Laravel Client for Swervpay",
"type": "library",
"license": "MIT",
"keywords": [
"Swyftpay",
"Swervpay",
"Card",
"Issuing",
"Laravel",
"Payin",
"Identity",
"Payout",
"PHP",
"SDK",
"Laravel 10",
"Laravel 9",
"Laravel 8"
],
"autoload": {
"psr-4": {
"Swervpaydev\\Laravel\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Swervpaydev\\Laravel\\SwervpaydevServiceProvider"
],
"aliases": {
"Swyftpay": "Swervpaydev\\Laravel\\Facades\\Swyftpay"
}
}
},
"authors": [
{
"name": "Mujhtech",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"ext-json": "*",
"laravel/framework": "^9.46.0|^10.34.2|^11.0",
"php": "^8.1.0",
"swervpaydev/sdk": "dev-main"
},
"require-dev": {
"laravel/pint": "dev-main",
"pestphp/pest": "3.x-dev",
"pestphp/pest-plugin-arch": "3.x-dev",
"phpstan/phpstan": "2.0.x-dev",
"symfony/var-dumper": "7.1.x-dev"
},
"scripts": {
"lint": "pint -v",
"refactor": "rector --debug",
"test:lint": "pint --test -v",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}