forked from lunarphp/opayo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 980 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 980 Bytes
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
{
"name": "getcandy/opayo",
"type": "project",
"description": "Opayo payment driver for GetCandy.",
"keywords": ["getcandy", "laravel", "ecommerce", "e-commerce", "headless", "store", "shop", "cart", "opayo"],
"license": "MIT",
"authors": [
{
"name": "GetCandy",
"homepage": "https://getcandy.io/"
}
],
"require": {
"php": "^8.0",
"getcandy/core": "*",
"livewire/livewire": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"GetCandy\\Opayo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"getcandy": {
"name": "Opayo Payments"
},
"laravel": {
"providers": [
"GetCandy\\Opayo\\OpayoServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}