-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
89 lines (89 loc) · 2.54 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": "21torr/rad",
"description": "RAD features for common Symfony apps.",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "21TORR",
"homepage": "https://www.21torr.com/"
}
],
"homepage": "/~https://github.com/21TORR/RadBundle",
"require": {
"php": ">= 8.3",
"ext-json": "*",
"21torr/bundle-helpers": "^2.2",
"21torr/html-builder": "^2.1",
"psr/log": "^3.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/deprecation-contracts": "^3.4",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0"
},
"require-dev": {
"21torr/janus": "^1.3.3",
"bamarni/composer-bin-plugin": "^1.8",
"doctrine/dbal": "^3.0 || ^4.0",
"doctrine/orm": "^3.0",
"roave/security-advisories": "dev-latest",
"symfony/console": "^7.0",
"symfony/form": "^7.0",
"symfony/phpunit-bridge": "^7.1",
"symfony/routing": "^7.0",
"symfony/security-bundle": "^7.0",
"symfony/translation": "^7.0",
"twig/twig": "^3.8"
},
"suggest": {
"doctrine/dbal": "To add the SerializedType",
"doctrine/orm": "To use the entities",
"symfony/console": "To use TorrStyle",
"symfony/form": "To use the FormErrorNormalizer",
"symfony/routing": "To use the Routable",
"symfony/security": "To automatically add the CAN_ role voter",
"symfony/translation": "To properly use the form error normalizer",
"twig/twig": "To use the twig functions"
},
"autoload": {
"psr-4": {
"Torr\\Rad\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Torr\\Rad\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
},
"branch-alias": {
"2.x-dev": "2.5.x-dev",
"dev-next": "2.5.x-dev"
}
},
"scripts": {
"fix-lint": [
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --ansi",
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer fix --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --no-interaction --ansi"
],
"lint": [
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --dry-run --ansi",
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer check --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --no-interaction --ansi"
],
"test": [
"simple-phpunit",
"vendor-bin/phpstan/vendor/bin/phpstan analyze -c phpstan.neon . --ansi -v"
]
}
}