forked from descom-es/omnipay-offline-dummy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.15 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
{
"name": "descom/omnipay-offline-dummy",
"description": "Omnipay Offline Dummy Gateway for testing",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Omnipay\\OfflineDummy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\OfflineDummy\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Cesar",
"email": "cesargb@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.4",
"league/omnipay": "^3.2",
"omnipay/common": "^3.2",
"illuminate/contracts": "^9.25"
},
"require-dev": {
"guzzlehttp/psr7": "^1",
"omnipay/tests": "^4.1",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.0",
"friendsofphp/php-cs-fixer": "^3.10",
"phpstan/phpstan": "^1.8",
"nunomaduro/larastan": "^2.1"
},
"extra": {
"laravel": {
"providers": [
"Omnipay\\OfflineDummy\\App\\AppServiceProvider"
]
}
}
}