-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.67 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
{
"name": "lasselehtinen/groschen",
"description": "Wrapper for Mockingbird",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Lasse Lehtinen",
"email": "lasse.lehtinen@iki.fi"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ezyang/htmlpurifier": "^4.9",
"guzzlehttp/guzzle": "^7.5",
"league/uri": "^7.0",
"league/oauth2-client": "^2.7",
"kamermans/guzzle-oauth2-subscriber": "^1.0.7",
"league/uri-components": "^7.4",
"league/iso3166": "^4.3",
"whitecube/lingua": "^1.1",
"biblys/isbn": "~3.0",
"real-digital/gtin-validator": "^1.3"
},
"autoload": {
"psr-4": {
"lasselehtinen\\Groschen\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"lasselehtinen\\Groschen\\Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"vlucas/phpdotenv": "^5.0",
"orchestra/testbench": "^8.0",
"lasselehtinen/laravel-conventions-checker": "^4.0",
"laravel/pint": "^1.13"
},
"extra": {
"laravel": {
"providers": [
"lasselehtinen\\Groschen\\GroschenServiceProvider"
],
"aliases": {
"Groschen": "lasselehtinen\\Groschen\\GroschenFacade"
}
},
"grumphp": {
"config-default-path": "vendor/lasselehtinen/laravel-conventions-checker/grumphp.yml"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}