-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (87 loc) · 2.7 KB
/
composer.json
File metadata and controls
91 lines (87 loc) · 2.7 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
{
"name": "tenolo/faq-bundle",
"description": "Implements faq functions.",
"keywords": [
"faq",
"tenolo",
"symfony",
"bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://tenolo.de",
"authors": [
{
"name": "tenolo - Robert Bernis, Johannes Herberhold GbR",
"email": "info@tenolo.de",
"homepage": "https://tenolo.de"
},
{
"name": "Nikita Loges",
"email": "n.loges@tenolo.de"
}
],
"require": {
"php": "~7.3",
"symfony/framework-bundle": "~4.4",
"symfony/http-kernel": "~4.4",
"symfony/config": "~4.4",
"symfony/dependency-injection": "~4.4",
"symfony/form": "~4.4",
"symfony/routing": "~4.4",
"symfony/options-resolver": "~4.4",
"symfony/doctrine-bridge": "~4.4",
"symfony/yaml": "~4.4",
"symfony/http-foundation": "~4.4",
"doctrine/common": "~2.6|~3.0",
"doctrine/collections": "~1.6",
"doctrine/orm": "~2.5",
"doctrine/dbal": "~2.5|~3.0",
"doctrine/persistence": "~1.3",
"twig/twig": "~2.14|~3.3",
"tenolo/slugify-bundle": "~1.4",
"tenolo/entity-bundle": "~1.0"
},
"require-dev": {
"icanhazstring/composer-unused": "~0.7",
"doctrine/coding-standard": "^8.2",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "~0.12",
"phpstan/phpstan-deprecation-rules": "~0.12",
"phpstan/phpstan-phpunit": "~0.12",
"phpstan/phpstan-strict-rules": "~0.12",
"maglnet/composer-require-checker": "^2.0",
"phpunit/phpunit": "^9.2",
"phpstan/phpstan-symfony": "^0.12.21"
},
"scripts": {
"check": [
"@crc",
"@unuse",
"@cs-fix",
"@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",
"unuse": "composer unused --excludeDir=vendor --excludeDir=var --excludeDir=node_modules --ansi"
},
"autoload": {
"psr-4": {
"Tenolo\\Bundle\\FAQBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}