-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.28 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
{
"name": "plenta/contao-countup-bundle",
"description": "This content element counts up numbers.",
"keywords": ["contao", "count up", "countup", "countupjs"],
"type": "contao-bundle",
"authors": [
{
"name": "Plenta",
"homepage": "https://plenta.io"
}
],
"license": "MIT",
"require": {
"php": "^7.4 | ^8.0",
"contao/core-bundle": "^4.9",
"contao/manager-plugin": "^2.11.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4.2",
"contao/test-case": "^4.6.0",
"symfony/phpunit-bridge": "^4",
"sensiolabs/security-checker": "^6.0.2",
"phpstan/phpstan": "^0.12.66",
"phpstan/phpstan-symfony": "^0.12.7",
"contao/phpstan": "^0.12.9",
"phpstan/phpstan-phpunit": "^0.12.17",
"contao/news-bundle": "^4.7",
"friendsofphp/php-cs-fixer": "^v3.4.0"
},
"autoload": {
"psr-4": {
"Plenta\\ContaoCountUpBundle\\": "src/Plenta/ContaoCountUpBundle"
}
},
"extra": {
"contao-manager-plugin": "Plenta\\ContaoCountUpBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true
}
}
}