forked from ofcold/qr-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 886 Bytes
/
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
{
"name": "n3omaster/qrcode",
"description": "An easy-to-use PHP QrCode generator.",
"homepage": "https://ofcold.com",
"support": {
"issues": "https://github.com/ofcold/qr-code/issues",
"source": "https://github.com/ofcold/qr-code"
},
"authors": [
{
"name": "Bill Li",
"email": "[email protected]",
"role": "Owner"
}
],
"require": {
"php": "^7.2",
"illuminate/http": "^6.0",
"illuminate/routing": "^6.0",
"illuminate/support": "^6.0",
"bacon/bacon-qr-code": "^2.0"
},
"autoload": {
"psr-4": {
"Ofcold\\QrCode\\": "src/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Ofcold\\QrCode\\QrCodeServiceProvider"
],
"aliases": {
"QrCode": "Ofcold\\QrCode\\Facades\\QrCode"
}
}
}
}