-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 1.21 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
{
"name": "netgen/birthday-bundle",
"description": "Netgen Birthday bundle for dates before 1970 in Ibexa Platform",
"type": "ibexa-bundle",
"keywords": [
"ibexa",
"birthday-bundle",
"netgen"
],
"homepage": "https://github.com/netgen/NetgenBirthdayBundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"ibexa/core": "^4.0",
"twig/intl-extra": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"netgen/ibexa-forms-bundle": "^4.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"netgen/ibexa-forms-bundle": "Allows use of Birthday field type with Symfony forms"
},
"autoload": {
"psr-4": {
"Netgen\\Bundle\\BirthdayBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\BirthdayBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}