-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.57 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
{
"name": "levizoesch/teller-sdk",
"description": "A simple SDK to consume Teller.io for Laravel.",
"keywords": [
"levizoesch",
"teller",
"teller.io",
"api",
"sdk",
"open source",
"laravel"
],
"homepage": "https://github.com/levizoesch/teller-sdk",
"license": "MIT",
"authors": [
{
"name": "Levi Zoesch",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0|^8.1|^8.2",
"ext-curl": "*",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"levizoesch/laravel-set-environment": "^1.0",
"spatie/laravel-package-tools": "^1.0 | ^1.16.2"
},
"require-dev": {
"brianium/paratest": "^1.0|^2.0|^3.0|^4.0|^5.0|^6.0|^7.0",
"nunomaduro/collision": "^1.0|^2.0|^3.0|^4.0|^5.0|^6.0|^7.0|^8.0",
"orchestra/testbench": "^1.0|^2.0|^3.0|^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"pestphp/pest": "^1.0|^2.0|^3.0",
"pestphp/pest-plugin-laravel": "^1.0|^2.0|^3.0",
"phpunit/phpunit": "^1.0|^2.0|^3.0|^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"TellerSDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TellerSDK\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"TellerSDK\\TellerSDKServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}