-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "webfactory/piwik-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle that adds a twig-function for the Matomo tracking code.",
"license": "MIT",
"authors": [
{
"name": "webfactory GmbH",
"email": "[email protected]",
"homepage": "https://www.webfactory.de",
"role": "Developer"
},
{
"name": "Tim Bernhard",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Webfactory\\Bundle\\PiwikBundle\\": ""
}
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"symfony/config": "~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/dependency-injection": "~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/http-kernel": "~3.0|~4.0|~5.0|~6.0|~7.0",
"twig/twig": "^1.34|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/phpunit-bridge": ">= 4.4"
},
"config": {
"sort-packages": true
}
}