forked from pkp/pkp-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
92 lines (92 loc) · 2.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"require": {
"ralouphie/getallheaders": "*",
"components/jqueryui": "1.*",
"components/jquery": "^3.5",
"wikimedia/less.php": "3.*",
"phpmailer/phpmailer": "6.*",
"smarty/smarty": "4.*",
"ezyang/htmlpurifier": "4.*",
"moxiecode/plupload": "2.*",
"tinymce/tinymce": "4.*",
"michelf/php-markdown": "1.*",
"slim/slim": "3.*",
"pimple/pimple": "3.*",
"laravel/framework": "^7.0",
"firebase/php-jwt": "5.*",
"danielstjules/stringy": "^3.1",
"adodb/adodb-php": "dev-v5.20.18-mods-magicport",
"gettext/gettext": "^4.6",
"sokil/php-isocodes": "^3.0",
"doctrine/dbal": "^2.10",
"guzzlehttp/guzzle": "^6.5",
"league/flysystem": "^1.0",
"league/flysystem-sftp": "^1.0",
"staudenmeir/laravel-upsert": "^1.3",
"cweagans/composer-patches": "^1.7",
"composer/semver": "*",
"php81_bc/strftime": "^0.5.0"
},
"require-dev": {
"phpunit/phpunit": "~9",
"psy/psysh": "@stable"
},
"config": {
"component-dir": "lib/components",
"vendor-dir": "lib/vendor",
"platform": {
"php": "7.3.0"
},
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/asmecher/ADOdb"
}
],
"extra": {
"patches": {
"laravel/framework": {
"Inhibit __ Laravel helper": "lib/laravel-helper-4017.diff",
"Hide PHP8.1 deprecation notice": "lib/laravel-php8.1.diff"
},
"ezyang/htmlpurifier": {
"Hide PHP8.1 deprecation notice": "lib/htmlpurifier-php8.1.diff"
},
"nesbot/carbon": {
"Hide PHP8.1 deprecation notice": "lib/carbon-php8.1.diff"
},
"smarty/smarty": {
"Hide PHP8.1 deprecation notice": "lib/smarty-php8.1.diff"
},
"sokil/php-isocodes": {
"Hide PHP8.1 deprecation notice": "lib/php-isocodes-php8.1.diff"
},
"slim/slim": {
"Hide PHP8.1 deprecation notice": "lib/slim-php8.1.diff"
},
"guzzlehttp/guzzle": {
"Hide PHP8.1 deprecation notice": "lib/guzzle-php8.1.diff"
},
"doctrine/dbal": {
"Hide PHP8.1 deprecation notice": "lib/doctrine-php8.1.diff"
},
"danielstjules/stringy": {
"Hide PHP8.1 deprecation notice": "lib/stringy-php8.1.diff"
},
"pimple/pimple": {
"Hide PHP8.1 deprecation notice": "lib/pimple-php8.1.diff"
},
"gettext/gettext": {
"Hide PHP8.1 deprecation notice": "lib/gettext-php8.1.diff"
},
"adodb/adodb-php": {
"Apply PKP ADODB patches": "lib/adodb-php8.1.diff",
"Apply PKP ADODB patches for error handling": "lib/adodb-datadict-errors.diff"
}
}
}
}