forked from sulu/SuluFormBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
137 lines (137 loc) · 5.31 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "sulu/form-bundle",
"license": "MIT",
"description": "Bundle for creating forms in Sulu.",
"type": "sulu-bundle",
"keywords": [
"sulu",
"form",
"form manager",
"dynamic"
],
"homepage": "https://github.com/sulu/SuluFormBundle",
"authors": [
{
"name": "Sulu Form Contributors",
"homepage": "https://github.com/sulu/SuluFormBundle/contributors"
}
],
"require": {
"php": "^7.2 || ^8.0",
"doctrine/collections": "^1.0",
"doctrine/orm": "^2.5.3",
"doctrine/persistence": "^1.3 || ^2.0",
"sulu/sulu": "^2.4.1 || ^2.5.0@dev",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/form": "^4.4 || ^5.0 || ^6.0",
"symfony/mailer": "^4.4 || ^5.0 || ^6.0",
"symfony/validator": "^4.4 || ^5.0 || ^6.0",
"symfony/security-csrf": "^4.4 || ^5.0 || ^6.0",
"symfony/translation": "^4.4 || ^5.0 || ^6.0",
"twig/twig": "^1.41 || ^2.0 || ^3.0"
},
"require-dev": {
"dantleech/phpcr-migrations-bundle": "^1.3",
"doctrine/data-fixtures": "^1.3.3",
"doctrine/doctrine-bundle": "^1.10 || ^2.0",
"drewm/mailchimp-api": "^2.2",
"excelwebzone/recaptcha-bundle": "^1.4.2",
"friendsofphp/php-cs-fixer": "^3.0",
"handcraftedinthealps/zendsearch": "^2.0",
"jackalope/jackalope-doctrine-dbal": "^1.3.2",
"jangregor/phpstan-prophecy": "^1.0",
"massive/search-bundle": "^2.0",
"phpspec/prophecy": "^1.14",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^8.0",
"sendinblue/api-v3-sdk": "^8.0",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
"symfony/dotenv": "^4.4 || ^5.0 || ^6.0",
"symfony/mime": "^4.4 || ^5.0 || ^6.0",
"symfony/monolog-bundle": "^3.1",
"symfony/stopwatch": "^4.4 || ^5.0 || ^6.0",
"symfony/var-dumper": "^4.4 || ^5.0 || ^6.0",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"replace": {
"sulu/sulu-form-bundle": "self.version"
},
"suggest": {
"excelwebzone/recaptcha-bundle": "Allows to add recaptcha to any dynamic form",
"drewm/mailchimp-api": "Allows to add a newsletter subscription over mailchimp to any dynamic form",
"sendinblue/api-v3-sdk": "Allows to add a newsletter subscription over sendinblue to any dynamic form"
},
"autoload": {
"psr-4": {
"Sulu\\Bundle\\FormBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Sulu\\Bundle\\FormBundle\\Tests\\": "Tests"
}
},
"scripts": {
"bootstrap-test-environment": [
"Tests/Application/bin/adminconsole doctrine:database:drop --if-exists --force --env test",
"Tests/Application/bin/adminconsole doctrine:database:create --env test",
"Tests/Application/bin/adminconsole doctrine:schema:update --force --env test"
],
"lint": [
"@phpstan",
"@php-cs",
"@lint-twig",
"@lint-yaml",
"@lint-container",
"@lint-composer",
"@lint-doctrine"
],
"test": [
"@phpunit"
],
"phpunit": "vendor/bin/phpunit",
"phpstan": [
"Tests/Application/bin/adminconsole cache:warmup --env=dev",
"vendor/bin/phpstan analyse"
],
"php-cs": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "vendor/bin/php-cs-fixer fix",
"lint-twig": "Tests/Application/bin/adminconsole lint:yaml Resources/views",
"lint-yaml": "Tests/Application/bin/adminconsole lint:yaml Resources/config Tests/Application/config",
"lint-composer": "@composer validate --strict",
"lint-container": [
"Tests/Application/bin/adminconsole lint:container --env dev",
"Tests/Application/bin/websiteconsole lint:container --env dev",
"Tests/Application/bin/adminconsole lint:container --env test",
"Tests/Application/bin/websiteconsole lint:container --env test",
"Tests/Application/bin/adminconsole lint:container --env stage",
"Tests/Application/bin/websiteconsole lint:container --env stage",
"Tests/Application/bin/adminconsole lint:container --env prod",
"Tests/Application/bin/websiteconsole lint:container --env prod"
],
"lint-doctrine": [
"Tests/Application/bin/adminconsole doctrine:schema:validate --skip-sync",
"Tests/Application/bin/adminconsole doctrine:ensure-production-settings --env prod"
]
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true
}
}
}