-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·55 lines (55 loc) · 1.48 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": "axcherednikov/laravel-bepaid",
"description": "A wrapper of https://github.com/begateway/begateway-api-php for Laravel",
"type": "library",
"license": "MIT",
"keywords": [
"bepaid",
"laravel",
"payment"
],
"config": {
"discard-changes": true
},
"require": {
"php": "^8.0",
"laravel/framework": "^8|^9",
"begateway/begateway-api-php": "^4.5",
"myclabs/php-enum": "1.8.*"
},
"require-dev": {
"orchestra/testbench": "^5|^6|^7",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Excent\\BePaidLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Excent\\BePaidLaravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Excent\\BePaidLaravel\\Providers\\BePaidServiceProvider"
],
"aliases": {
"Authorization": "Excent\\BePaidLaravel\\Facades\\Authorization",
"CardToken": "Excent\\BePaidLaravel\\Facades\\CardToken",
"Payment": "Excent\\BePaidLaravel\\Facades\\Payment",
"PaymentToken": "Excent\\BePaidLaravel\\Facades\\PaymentToken",
"Product": "Excent\\BePaidLaravel\\Facades\\Product",
"StatusQuery": "Excent\\BePaidLaravel\\Facades\\StatusQuery",
"Refund": "Excent\\BePaidLaravel\\Facades\\Refund"
}
}
},
"scripts": {
"test": "./vendor/bin/phpunit --colors=always",
"test:ci": "composer test -- --verbose --coverage-text --coverage-clover=coverage.xml"
},
"minimum-stability": "dev"
}