forked from SimpleSoftwareIO/simple-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.15 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": "simplesoftwareio/simple-qrcode",
"description": "Simple QrCode is a QR code generator made for Laravel.",
"keywords": ["qrcode", "laravel", "simple", "generator", "wrapper"],
"homepage": "http://www.simplesoftware.io",
"license" : "MIT",
"authors": [
{
"name": "Simple Software LLC",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-gd": "*",
"bacon/bacon-qr-code": "^2.0"
},
"require-dev": {
"mockery/mockery": "~1",
"phpunit/phpunit": "~9"
},
"suggest": {
"ext-imagick": "Allows the generation of PNG QrCodes.",
"illuminate/support": "Allows for use within Laravel."
},
"autoload": {
"psr-4": {
"SimpleSoftwareIO\\QrCode\\": "src"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
],
"aliases": {
"QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
}
}
}
}