-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1 KB
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "globus-studio/phpqrcode",
"description": "Zero-dependency QR Code generator for PHP 7.4-9.0. Dead simple API, full spec compliance, 100% test coverage.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yevhen Leonidov",
"homepage": "https://github.com/MADEVAL"
}
],
"keywords": ["qr", "qrcode", "qr-code", "barcode", "generator", "php"],
"require": {
"php": ">=7.4 <10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^9.6||^10.5||^11.0"
},
"suggest": {
"ext-gd": "Required for PNG rendering (PngRenderer)"
},
"autoload": {
"psr-4": {
"GlobusStudio\\QRCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GlobusStudio\\QRCode\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}