-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1003 Bytes
/
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
{
"name": "netgen/ibexa-scheduled-visibility",
"description": "Netgen's scheduled visibility mechanism for Ibexa CMS",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": ">=8.1",
"ibexa/core": "^4.5"
},
"require-dev": {
"phpunit/phpunit": "^10",
"matthiasnoback/symfony-dependency-injection-test": "^4.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netgen\\Bundle\\IbexaScheduledVisibilityBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\IbexaScheduledVisibility\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
}
}