-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 3.11 KB
/
composer.json
File metadata and controls
86 lines (86 loc) · 3.11 KB
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
{
"name": "vardumper/ibexa-theme-translations-bundle",
"description": "Ibexa DXP bundle for managing theme translations with tiered caching (static PHP arrays + Redis + Database)",
"type": "symfony-bundle",
"license": "proprietary",
"minimum-stability": "dev",
"homepage": "https://github.com/vardumper/IbexaThemeTranslationsBundle",
"prefer-stable": true,
"authors": [
{
"name": "erik.poehler",
"role": "Maintainer"
}
],
"require": {
"php": "^8.2",
"ibexa/core": "^4.4|^5.0.5",
"ibexa/admin-ui": "^4.4|^5.0.5",
"symfony/framework-bundle": "^5.4|^6.0|^7.0|^8.0",
"symfony/cache": "^5.4|^6.0|^7.0|^8.0",
"symfony/console": "^5.4|^6.0|^7.0|^8.0",
"symfony/form": "^5.4|^6.0|^7.0|^8.0",
"symfony/validator": "^5.4|^6.0|^7.3.11|^8.0",
"doctrine/orm": "^2.11|^3.0",
"doctrine/doctrine-bundle": "^2.7.2",
"twig/twig": "^3.23",
"league/csv": "^9.28",
"pagerfanta/pagerfanta": "^2.0|^3.8|^4.0",
"guzzlehttp/promises": "^2.3",
"nyholm/psr7": "^1.8.2"
},
"require-dev": {
"phpstan/phpstan": "^2.1.40",
"friendsofphp/php-cs-fixer": "^3.94.2",
"brainmaestro/composer-git-hooks": "dev-master",
"rector/swiss-knife": "^2.3.5",
"symplify/easy-coding-standard": "^13.0.4",
"pestphp/pest": ">=4.4.1",
"ibexa/automated-translation": "^4.4|^5.0.5",
"guzzlehttp/guzzle": "^7.10",
"doctrine/doctrine-fixtures-bundle": "^3.5|^4.3.1"
},
"autoload": {
"psr-4": {
"vardumper\\IbexaThemeTranslationsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"vardumper\\IbexaThemeTranslationsBundle\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"hooks": {
"pre-commit": [
".githooks/pre-commit"
],
"commit-msg": [
".githooks/commit-msg"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --no-ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"post-install-cmd": "@git-hooks-init",
"post-update-cmd": "@git-hooks-update",
"swiss-knife-check-conflicts": "vendor/bin/swiss-knife check-conflicts ./src --ansi",
"swiss-knife-check-commented-code": "vendor/bin/swiss-knife check-commented-code ./src --line-limit 4 --no-ansi",
"swiss-knife-find-multi-classes": "vendor/bin/swiss-knife find-multi-classes ./src --ansi",
"swiss-knife-finalize-classes": "vendor/bin/swiss-knife finalize-classes ./src --ansi",
"swiss-knife-privatize-constants": "vendor/bin/swiss-knife privatize-constants ./src --ansi",
"git-hooks-init": "vendor/bin/cghooks add --ignore-lock",
"git-hooks-update": "vendor/bin/cghooks update"
}
}