-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
34 lines (34 loc) · 1018 Bytes
/
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
{
"name": "openeuropa/ecl-twig-loader",
"description": "Europa Component Library Twig loader.",
"type": "library",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"twig/twig": "^2.14.7 || ^3.4.3"
},
"require-dev": {
"openeuropa/code-review": "^2.0.0-alpha6",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"OpenEuropa\\Twig\\": "src/"
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true
},
"scripts": {
"changelog": "docker run --rm -v \"$(pwd):$(pwd)\" -w $(pwd) muccg/github-changelog-generator openeuropa/ecl-twig-loader -t $CHANGELOG_GITHUB_TOKEN --future-release=$CHANGELOG_FUTURE_RELEASE --release-branch=3.x"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}