-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
102 lines (100 loc) · 3.26 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "shapecode/hidden-entity-type-bundle",
"description": "Hidden field for Symfony entities",
"keywords": [
"entity",
"hidden",
"form",
"type",
"shapecode",
"symfony"
],
"type": "symfony-bundle",
"homepage": "https://github.com/shapecode/hidden-entity-type-bundle",
"support": {
"email": "[email protected]",
"issues": "https://github.com/shapecode/hidden-entity-type-bundle/issues",
"source": "https://github.com/shapecode/hidden-entity-type-bundle/releases",
"wiki": "https://github.com/shapecode/hidden-entity-type-bundle/wiki"
},
"license": "MIT",
"authors": [
{
"name": "Nikita Loges",
"homepage": "https://loges.one",
"email": "[email protected]"
},
{
"name": "Glifery",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/form": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
"symfony/property-access": "^5.4 || ^6.4 || ^7.0",
"symfony/property-info": "^5.4 || ^6.4 || ^7.0",
"doctrine/persistence": "^3.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"icanhazstring/composer-unused": "~0.8",
"doctrine/coding-standard": "^12.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "~1.10",
"phpstan/phpstan-deprecation-rules": "~1.1",
"phpstan/phpstan-phpunit": "~1.3",
"phpstan/phpstan-strict-rules": "~1.5",
"phpstan/phpstan-webmozart-assert": "~1.2",
"maglnet/composer-require-checker": "^4.7",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^7.0"
},
"autoload": {
"psr-4": {
"Shapecode\\Bundle\\HiddenEntityTypeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapecode\\Bundle\\HiddenEntityTypeBundle\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@crc",
"@unused",
"@cs-check",
"@phpstan",
"@phpunit"
],
"phpstan": "phpstan analyse --ansi",
"phpstan-update-baseline": "phpstan analyse --ansi --generate-baseline phpstan-baseline.neon",
"crc": "vendor/bin/composer-require-checker --config-file=./composer-require-checker.json --ansi",
"phpunit": "phpunit --colors=always",
"cs-check": "phpcs -s",
"cs-fix": "phpcbf",
"unused": "vendor/bin/composer-unused"
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"icanhazstring/composer-unused": true
}
}
}