-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.05 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
{
"name": "ttrig/laravel-billmate",
"license": "MIT",
"homepage": "https://github.com/ttrig/laravel-billmate",
"description": "Laravel package for working with Billmate API",
"keywords": ["laravel", "payment", "billmate", "e-commerce", "webshop"],
"authors": [
{
"name": "Markus Lilienberg",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.0",
"guzzlehttp/guzzle": "^7.0.1"
},
"require-dev": {
"graham-campbell/testbench": "^6.0",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^10.0",
"laravel/pint": "^1.10"
},
"autoload": {
"psr-4": {
"Ttrig\\Billmate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ttrig\\Billmate\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Ttrig\\Billmate\\ServiceProvider"
]
}
}
}