-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.42 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.42 KB
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
56
57
58
{
"name": "bolivir/multipay",
"description": "This is a Laravel Package for multiple Payment Gateway Integrations.",
"type": "library",
"keywords": [
"gateway",
"payment",
"laravel payment gateway",
"mollie payment",
"paypal payment"
],
"require": {
"php": "^8.1",
"ext-curl": "*",
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^7.19",
"phpunit/phpunit": "^9.5.28",
"friendsofphp/php-cs-fixer": "^3.12.2",
"phpstan/phpstan": "1.10.x-dev"
},
"extra": {
"laravel": {
"providers": [
"Bolivir\\Multipay\\PaymentServiceProvider"
]
}
},
"license": "MIT",
"autoload": {
"psr-4": {
"Bolivir\\Multipay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bolivir\\Multipay\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "bolivir",
"email": "mosselmanricardo@gmail.com"
}
],
"scripts": {
"test": "phpunit",
"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"phpstan": "vendor/bin/phpstan analyse",
"precommit": [
"composer phpstan",
"composer format",
"composer test"
]
},
"minimum-stability": "dev"
}