-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "netgen/siteaccess-routes-bundle",
"description": "Netgen Siteaccess Routes Bundle is an Ibexa Platform bundle which allows you to specify in which siteaccesses or siteaccess groups can a route be used",
"type": "ibexa-bundle",
"keywords": [
"ibexa",
"netgen",
"siteaccess-routes-bundle",
"siteaccess"
],
"homepage": "https://github.com/netgen/NetgenSiteAccessRoutesBundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"ibexa/core": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netgen\\Bundle\\SiteAccessRoutesBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\SiteAccessRoutesBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}