-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
66 lines (66 loc) · 1.72 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
{
"name": "pdir/content-migration-bundle",
"type": "contao-bundle",
"description": "Content Migration Bundle for Contao 4",
"homepage": "https://pdir.de",
"license": "LGPL-3.0-or-later",
"keywords": [
"pdir",
"contao",
"import",
"export",
"page",
"content",
"theme",
"news",
"TYPO3"
],
"authors": [
{
"name": "Contao Themes",
"homepage": "https://contao-themes.net"
},
{
"name": "Webdesign Dresden / pdir GmbH",
"homepage": "https://pdir.de"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ausi/slug-generator": "^1.1",
"contao/core-bundle": "^4.4"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"contao/easy-coding-standard": "^3.0",
"phpunit/phpunit": "^8.4 || ^9.5",
"symfony/phpunit-bridge": "^4.4 || ^5.1"
},
"extra": {
"contao-manager-plugin": "Pdir\\ContentMigrationBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Pdir\\ContentMigrationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pdir\\ContentMigrationBundle\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/pdir/content-migration-bundle/issues",
"source": "https://github.com/pdir/content-migration-bundle",
"docs": "https://pdir.de/docs/content-migration/"
},
"scripts": {
"cs-fixer": [
"vendor/bin/ecs check src/ tests/ --fix --ansi"
]
}
}