generated from ibexa/bundle-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.63 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.63 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
{
"name": "ibexa/design-system-twig",
"license": "(GPL-2.0-only or proprietary)",
"type": "ibexa-bundle",
"keywords": [
"ibexa-dxp"
],
"require": {
"php": ">=8.3",
"ibexa/admin-ui": "~5.0.x-dev",
"ibexa/core": "~5.0.x-dev",
"ibexa/design-engine": "~5.0.x-dev",
"symfony/config": "^7.2",
"symfony/dependency-injection": "^7.2",
"symfony/event-dispatcher": "^7.2",
"symfony/http-foundation": "^7.2",
"symfony/http-kernel": "^7.2",
"symfony/uid": "^7.3",
"symfony/ux-twig-component": "^2.27",
"symfony/yaml": "^7.2",
"twig/html-extra": "^3.20"
},
"require-dev": {
"ibexa/behat": "~5.0.x-dev",
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/phpstan": "~5.0.x-dev",
"ibexa/rector": "~5.0.x-dev",
"ibexa/test-core": "~5.0.x-dev",
"ibexa/search": "~5.0.x-dev",
"ibexa/content-forms": "~5.0.x-dev",
"ibexa/user": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"ibexa/twig-components": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10",
"qossmic/deptrac": "^2.0"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\DesignSystemTwig\\": "src/bundle/",
"Ibexa\\Contracts\\DesignSystemTwig\\": "src/contracts/",
"Ibexa\\DesignSystemTwig\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\DesignSystemTwig\\": "tests/bundle/",
"Ibexa\\Tests\\Integration\\DesignSystemTwig\\": "tests/integration/",
"Ibexa\\Tests\\DesignSystemTwig\\": "tests/lib/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml.dist",
"phpstan": "phpstan analyse -c phpstan.neon",
"deptrac": "php vendor/bin/deptrac analyse"
},
"scripts-descriptions": {
"fix-cs": "Automatically fixes code style in all files",
"check-cs": "Run code style checker for all files",
"test": "Run automatic tests",
"phpstan": "Run static code analysis",
"deptrac": "Run Deptrac architecture testing"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": false
}
}