-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
69 lines (69 loc) · 1.64 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",
"ext-json": "*",
"ext-phar": "*",
"ext-tidy": "*",
"ext-xml": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"drupal/phingdrushtask": "^1.1",
"drupol/phingbehattask": "^1.0",
"drush/drush": "^8.4.8",
"ec-europa/qa-automation": "^3.0",
"pear/versioncontrol_git": "dev-master",
"pfrenssen/phpcs-pre-push": "^1.0",
"phing/phing": "^2",
"phpcompatibility/php-compatibility": "^9.1.2"
},
"require-dev": {
"bovigo/assert": "^5.0",
"davidrjonas/composer-lock-diff": "^1.0",
"roave/security-advisories": "dev-master"
},
"replace": {
"wimg/php-compatibility": "^8.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"NextEuropa\\": "src",
"phpCas\\": "apereo\\Cas"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://git.drupal.org/project/phingdrushtask.git"
},
{
"type": "package",
"package": {
"name": "pfrenssen/phpcs-pre-push",
"version": "1.0",
"type": "git-hook",
"source": {
"url": "https://gist.github.com/498fc52fea3f965f6640.git",
"type": "git",
"reference": "master"
}
}
}
],
"scripts": {
"post-install-cmd": [
"resources/scripts/composer/post-install.sh"
],
"post-update-cmd": [
"resources/scripts/composer/post-install.sh"
]
},
"config": {
"bin-dir": "bin/",
"process-timeout": 1200,
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}