-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.66 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.66 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
{
"type": "symfony-bundle",
"name": "solidworx/platform",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": [
"symfony-ux"
],
"require": {
"php": ">=8.3",
"doctrine/doctrine-bundle": "^2.13 || ^3.0",
"doctrine/orm": "^2.15",
"endroid/qr-code": "^6.0",
"knplabs/knp-menu-bundle": "^3.6",
"league/uri": "^7.8",
"nesbot/carbon": "^3.9",
"scheb/2fa-backup-code": "^7.10",
"scheb/2fa-bundle": "^7.10",
"scheb/2fa-email": "^7.10",
"scheb/2fa-totp": "^7.10",
"scheb/2fa-trusted-device": "^7.10",
"symfony/console": "^7.2",
"symfony/dependency-injection": "^7.2",
"symfony/event-dispatcher": "^7.2",
"symfony/form": "^7.3",
"symfony/framework-bundle": "^7.2",
"symfony/http-client": "^7.2",
"symfony/http-kernel": "^7.2",
"symfony/property-access": "^7.2",
"symfony/routing": "^7.2",
"symfony/serializer": "^7.2",
"symfony/uid": "^7.2",
"symfony/ux-icons": "^2.29",
"symfony/ux-live-component": "^2.26",
"symfony/validator": "^7.3",
"symfony/webhook": "^7.2",
"symfony/webpack-encore-bundle": "^2.3",
"twig/extra-bundle": "^3.21",
"twig/html-extra": "^3.21"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"SolidWorx\\Platform\\Component\\": "src/Component",
"SolidWorx\\Platform\\UiBundle\\": "src/Bundle/Ui",
"SolidWorx\\Platform\\PlatformBundle\\": "src/Bundle/Platform",
"SolidWorx\\Platform\\SaasBundle\\": "src/Bundle/Saas",
"SolidWorx\\Platform\\Test\\": "src/Test"
}
},
"autoload-dev": {
"psr-4": {
"SolidWorx\\Platform\\Tests\\": "tests/"
}
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"ergebnis/phpunit-slow-test-detector": "^2.23",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-doctrine": "^1.4",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^12.5",
"rector/rector": "^1.2",
"roave/security-advisories": "dev-latest",
"spatie/phpunit-snapshot-assertions": "^5.3",
"symplify/easy-coding-standard": "^13.0"
}
}