This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.79 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
56
57
58
59
60
61
62
63
64
{
"name": "finller/laravel-mangopay",
"description": "mangopay as service provider",
"keywords": [
"finller",
"laravel-mangopay"
],
"homepage": "https://github.com/finller/laravel-mangopay",
"license": "MIT",
"authors": [
{
"name": "Quentin Gabriele",
"email": "quentin.gabriele@gmail.com",
"homepage": "https://finller.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"spatie/laravel-package-tools": "^1.11",
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
"mangopay/php-sdk-v2": "^3.7"
},
"require-dev": {
"brianium/paratest": "^6.2",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"phpunit/phpunit": "^9.3",
"spatie/laravel-ray": "^1.23",
"vimeo/psalm": "^4.8"
},
"autoload": {
"psr-4": {
"Finller\\Mangopay\\": "src",
"Finller\\Mangopay\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Finller\\Mangopay\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Finller\\Mangopay\\MangopayServiceProvider"
],
"aliases": {
"Mangopay": "Finller\\Mangopay\\MangopayFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}