-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.08 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.08 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
{
"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.4",
"ibexa/core": "^5.0",
"ibexa/content-forms": "^5.0",
"symfony/mailer": "^7.3",
"netgen/ibexa-forms-bundle": "^5.0",
"netgen/ibexa-site-api": "^7.0",
"netgen/ibexa-search-extra": "^4.0",
"netgen/ibexa-fieldtype-enhanced-link": "^2.0",
"netgen/information-collection-bundle": "^4.0",
"netgen/siteaccess-routes-bundle": "^4.0",
"netgen/content-type-list-bundle": "^4.0",
"netgen/enhanced-selection-bundle": "^6.0",
"netgen/birthday-bundle": "^4.0",
"netgen/open-graph-bundle": "^4.0",
"netgen/tagsbundle": "^6.0",
"doctrine/orm": "^2.20",
"knplabs/knp-menu-bundle": "^3.7",
"sebastianfeldmann/git": "^3.15",
"mailerlite/mailerlite-api-v2-php-sdk": "^0.3.2"
},
"require-dev": {
"netgen/coding-standard": "^1.0",
"netgen/layouts-standard": "^2.0",
"netgen/layouts-ibexa": "^2.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"monolog/monolog": "^3.10"
},
"config": {
"allow-plugins": false
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netgen\\Bundle\\SiteBundle\\": "bundle/"
}
},
"scripts": {
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=8 --ansi bundle"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}