-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.8 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.8 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
87
88
89
90
91
92
93
{
"name": "vardumper/ibexa-automatic-migrations-bundle",
"description": "Ibexa automatic migrations bundle eliminates the need to manually create migrations for various admin changes. Migration files are automatically generated when settings change in the admin panel.",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "dev",
"homepage": "https://github.com/vardumper/IbexaAutomaticMigrationsBundle",
"prefer-stable": true,
"authors": [
{
"name": "vardumper",
"role": "Maintainer"
}
],
"require": {
"php": ">=8.1",
"ibexa/core": "^4.4|^5.0.4",
"ibexa/admin-ui": "^4.4|^5.0.4",
"guzzlehttp/promises": "^2.3",
"nyholm/psr7": "^1.8.2"
},
"require-dev": {
"mrk-te/ibexa-migration-bundle2": "^1.0|^2.0|^3.0",
"phpstan/phpstan": "^2.1.33",
"friendsofphp/php-cs-fixer": "^3.92.3",
"brainmaestro/composer-git-hooks": "dev-master",
"rector/swiss-knife": "^2.3.3",
"symplify/easy-coding-standard": "^13.0",
"pestphp/pest": "*",
"phpmd/phpmd": "^2.15"
},
"autoload": {
"psr-4": {
"vardumper\\IbexaAutomaticMigrationsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"vardumper\\IbexaAutomaticMigrationsBundleTests\\": "tests/"
}
},
"extra": {
"thanks": {
"name": "symfony/flex",
"url": "https://github.com/symfony/flex"
},
"hooks": {
"pre-commit": [
".githooks/pre-commit"
],
"commit-msg": [
".githooks/commit-msg"
]
}
},
"config": {
"platform": {
"php": "8.3.0"
},
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/vardumper"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/vardumper"
},
{
"type": "custom",
"url": "https://www.patreon.com/vardumper"
}
],
"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"
}
}