-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
69 lines (69 loc) · 1.87 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
63
64
65
66
67
68
69
{
"require": {
"php": ">=7.4",
"cweagans/composer-patches": "^1.7",
"deltalab/phpqrcode": "^1.1",
"pear/image_barcode": "^1.1",
"pear/pear": "^1.9",
"rospdf/pdf-php": "^0.12"
},
"require-dev": {
"glpi-project/tools": "^0.5"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4.0"
},
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "deltalab/phpqrcode",
"version": "1.1.4",
"dist":{
"url": "https://sourceforge.net/projects/phpqrcode/files/releases/phpqrcode-2010100721_1.1.4.zip/download",
"type": "zip",
"reference": "1.1.4"
},
"autoload": {
"classmap": [
"phpqrcode.php"
]
}
}
},
{
"type": "package",
"package": {
"name": "pear/image_barcode",
"version": "1.1.2",
"dist":{
"url": "https://github.com/pear/Image_Barcode/archive/1.1.2.zip",
"type": "zip",
"reference": "1.1.2"
},
"autoload": {
"psr-0": {
"Image": "./"
}
},
"include-path": [
"./"
]
}
}
],
"extra": {
"patches": {
"pear/image_barcode": {
"Fix PHP 7.x / 8.x compatibility": "./patch/fix-pear-image-barcode.patch"
}
}
}
}