-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
73 lines (73 loc) · 2.42 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
{
"name": "netgen/information-collection-bundle",
"description": "Information collection alike feature for eZ Platform",
"type": "ezplatform-bundle",
"keywords": [
"ezpublish",
"ezplatform",
"information collection",
"netgen",
"information-collection-bundle"
],
"homepage": "https://github.com/netgen/NetgenInformationCollectionBundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "http://www.netgenlabs.com"
},
{
"name": "Mario Blažek",
"email": "mario.b@netgen.hr",
"homepage": "https://marioblazek.dev",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"ext-pdo": "*",
"doctrine/orm": "^2.5",
"ezsystems/ezplatform-admin-ui": "^2.0",
"ezsystems/ezplatform-content-forms": "^1.0",
"ezsystems/ezplatform-kernel": "^1.0",
"symfony/swiftmailer-bundle": "^3.4",
"twig/twig": "^3.0",
"google/recaptcha": "^1.2",
"doctrine/doctrine-migrations-bundle": "^3.0",
"symfony/mailer": "^5.1",
"phpoffice/phpspreadsheet": "^1.14"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"matthiasnoback/symfony-config-test": "~4.0",
"matthiasnoback/symfony-dependency-injection-test": "~4.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"Netgen\\Bundle\\InformationCollectionBundle\\": "bundle",
"Netgen\\InformationCollection\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\InformationCollectionBundle\\Tests\\": "tests/bundle",
"Netgen\\InformationCollection\\Tests\\": "tests/lib"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit -c phpunit.xml --colors=always",
"fix": "@php vendor/bin/php-cs-fixer fix",
"coverage": "@php -dzend_extension=xdebug.so vendor/bin/phpunit -c phpunit.xml --colors=always",
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=7 --ansi lib bundle"
},
"suggest": {
"phpoffice/phpspreadsheet": "To enable the XLS and XLSX export functionalities",
"league/csv": "To enable the CSV export functionality"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}