-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
68 lines (68 loc) · 2.12 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
{
"name": "netgen/site-bundle",
"description": "Netgen Site Bundle is an Ibexa bundle that implements common features that are used by Netgen to implement websites",
"license": "GPL-2.0-only",
"type": "ibexa-bundle",
"keywords": [
"ibexa",
"site-bundle",
"netgen"
],
"homepage": "https://github.com/netgen/site-bundle",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^8.1",
"ibexa/core": "^4.6",
"ibexa/content-forms": "^4.6",
"symfony/mailer": "^5.4",
"netgen/ibexa-forms-bundle": "^4.0",
"netgen/ibexa-site-api": "^6.1",
"netgen/ibexa-fieldtype-enhanced-link": "^1.1",
"netgen/information-collection-bundle": "^3.0",
"netgen/siteaccess-routes-bundle": "^3.0",
"netgen/content-type-list-bundle": "^3.0",
"netgen/enhanced-selection-bundle": "^5.1",
"netgen/birthday-bundle": "^3.0",
"netgen/open-graph-bundle": "^3.0",
"netgen/tagsbundle": "^5.0",
"twig/twig": "^3.9",
"doctrine/orm": "^2.14",
"knplabs/knp-menu-bundle": "^3.2",
"sensio/framework-extra-bundle": "^6.2",
"sebastianfeldmann/git": "^3.8",
"mailerlite/mailerlite-api-v2-php-sdk": "^0.3.2"
},
"require-dev": {
"netgen/layouts-standard": "^1.4",
"netgen/layouts-ibexa": "^1.4",
"php-cs-fixer/shim": "^3.14",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-doctrine": "^1.3"
},
"config": {
"allow-plugins": false
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netgen\\Bundle\\SiteBundle\\": "bundle/"
}
},
"scripts": {
"fix": "@php vendor/bin/php-cs-fixer fix",
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=8 --ansi bundle"
},
"extra": {
"branch-alias": {
"dev-master": "3.3.x-dev"
}
}
}