-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
44 lines (44 loc) · 1.14 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
{
"name": "diorgesl/diorgesbb",
"description": "Boletos com API Piloto do Banco do Brasil",
"license": "MIT",
"authors": [
{
"name": "Diorges Rocha",
"email": "diorges@gis.net.br",
"homepage": "https://gis.net.br/"
}
],
"homepage": "https://github.com/diorgesl/diorgesbb",
"keywords": ["Laravel", "DiorgesBB"],
"require": {
"illuminate/support": "~5|~6|~7|~8",
"guzzlehttp/guzzle": "~6|~7"
},
"require-dev": {
"phpunit/phpunit": "~8.0|~9.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3|~4|~5|~6",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"Diorgesl\\DiorgesBB\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Diorgesl\\DiorgesBB\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Diorgesl\\DiorgesBB\\DiorgesBBServiceProvider"
],
"aliases": {
"DiorgesBB": "Diorgesl\\DiorgesBB\\Facades\\DiorgesBB"
}
}
}
}