-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.33 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
{
"name": "vanilo/netopia",
"description": "Netopia Payment Gateway Support for Vanilo (Laravel)",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
},
{
"name": "Hunor Kedves",
"homepage": "https://github.com/kedves"
}
],
"support": {
"issues": "https://github.com/vanilophp/netopia"
},
"require": {
"php": "^8.2",
"konekt/concord": "^1.13",
"konekt/enum": "^4.2",
"laravel/framework": "^10.43|^11.0|^12.0",
"vanilo/contracts": "^4.1|^5.0",
"vanilo/payment": "^4.1|^5.0",
"ext-dom": "*",
"ext-openssl": "*",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"Vanilo\\Netopia\\": "src"
}
},
"require-dev": {
"ext-sqlite3": "*",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit" : "^10.0|^11.0"
},
"autoload-dev": {
"psr-4": {
"Vanilo\\Netopia\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}