-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
89 lines (89 loc) · 2.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sulu/phpcr-migration-bundle",
"license": "MIT",
"description": "The bundle provides command to migrate the Sulu database from phpCr to the SuluContentBundle.",
"keywords": [
"sulu",
"phpcr",
"migration",
"content-bundle"
],
"type": "sulu-bundle",
"authors": [
{
"name": "Sulu Community",
"homepage": "https://github.com/sulu/SuluPHPCRMigrationBundle/graphs/contributors"
}
],
"require": {
"php": "^8.1",
"jackalope/jackalope-doctrine-dbal": "^1.3.4 || ^2.0",
"jackalope/jackalope-jackrabbit": "^1.3 || ^2.0",
"symfony/config": "^6.0 | ^7.0",
"symfony/console": "^6.0 | ^7.0",
"symfony/dependency-injection": "^6.0 | ^7.0",
"symfony/framework-bundle": "^6.0 | ^7.0",
"symfony/property-access": "^6.0 | ^7.0"
},
"autoload": {
"psr-4": {
"Sulu\\Bundle\\PhpcrMigrationBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"require-dev": {
"jangregor/phpstan-prophecy": "^1.0",
"php-cs-fixer/shim": "^3.62",
"phpspec/prophecy-phpunit": "^2.1",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.0",
"qossmic/deptrac": "^1.0",
"rector/rector": "^1.0",
"symfony/dotenv": "^6.0 || ^7.0",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"scripts": {
"lint": [
"@phpstan",
"@php-cs",
"@lint-rector",
"@lint-composer",
"@deptrac"
],
"test": [
"@phpunit"
],
"phpunit": "@php vendor/bin/phpunit",
"phpstan": [
"@php vendor/bin/phpstan analyze"
],
"fix": [
"@rector",
"@php-cs-fix"
],
"php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "@php vendor/bin/php-cs-fixer fix",
"rector": [
"@php vendor/bin/rector process"
],
"lint-rector": [
"@php vendor/bin/rector process --dry-run"
],
"lint-composer": "@composer validate --strict",
"deptrac": "@php vendor/qossmic/deptrac/deptrac.php"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}