forked from pkp/pkp-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.53 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
{
"require": {
"ralouphie/getallheaders": "*",
"components/jqueryui": "1.*",
"components/jquery": "^3.5",
"wikimedia/less.php": "3.*",
"phpmailer/phpmailer": "6.*",
"smarty/smarty": "3.*",
"ezyang/htmlpurifier": "4.*",
"moxiecode/plupload": "2.*",
"tinymce/tinymce": "^5.7",
"michelf/php-markdown": "1.*",
"slim/slim": "3.*",
"pimple/pimple": "3.*",
"laravel/framework": "^7.0",
"firebase/php-jwt": "5.*",
"danielstjules/stringy": "3.*",
"adodb/adodb-php": "dev-v5.20.18-mods",
"gettext/gettext": "5.x",
"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",
"kevinlebrun/colors.php": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~9",
"psy/psysh": "@stable",
"friendsofphp/php-cs-fixer": "^2.18",
"brainmaestro/composer-git-hooks": "^2.8",
"mockery/mockery": "^1.4"
},
"config": {
"component-dir": "lib/components",
"vendor-dir": "lib/vendor",
"platform": {
"php": "7.3.0"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/asmecher/ADOdb"
}
],
"scripts": {
"fix": "./lib/vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"extra": {
"patches": {
"laravel/framework": {
"Inhibit __ Laravel helper": "lib/laravel-helper-4017.diff"
}
},
"hooks": {
"config": {
"stop-on-failure": ["pre-commit"]
},
"pre-commit": [
"./tools/pre-commit.sh"
]
}
}
}