-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.32 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
{
"name": "xirdion/contao-photoswipe-bundle",
"type": "contao-bundle",
"description": "contao bundle to add the photoswipe lightbox to a contao project",
"license":"AGPL-3.0-or-later",
"authors": [
{
"name": "Thomas Dirscherl",
"homepage": "https://github.com/xirdion"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"contao/core-bundle": "^4.13 | ^5.0",
"contao/conflicts": "@dev"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"contao/test-case": "^5.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.1",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"slam/phpstan-extensions": "^6.0",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true
}
},
"extra": {
"contao-manager-plugin": "Sowieso\\PhotoswipeBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Sowieso\\PhotoswipeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sowieso\\PhotoswipeBundle\\Tests\\": "tests/"
}
}
}