-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
70 lines (70 loc) · 1.58 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
65
66
67
68
69
70
{
"name": "abivia/plaid",
"description": "Plaid for Laravel",
"keywords": [
"abivia",
"laravel",
"plaid"
],
"homepage": "https://github.com/abivia/plaid",
"license": "MIT",
"authors": [
{
"name": "Alan Langford",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4",
"illuminate/contracts": "^9.0"
},
"require-dev": {
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Abivia\\Plaid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Abivia\\Plaid\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": false
}
},
"extra": {
"laravel": {
"providers": [
"Abivia\\Plaid\\PlaidServiceProvider"
],
"aliases": {
"Plaid": "Abivia\\Plaid\\Facades\\Plaid"
}
}
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/P5P47JJXZ"
}
],
"allow-plugins": {
"pestphp/pest-plugin": true
},
"minimum-stability": "dev",
"prefer-stable": true
}