-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
55 lines (55 loc) · 1.46 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
{
"name": "netgen/open-graph-bundle",
"description": "Netgen Open Graph Bundle is an Ibexa Platform bundle that allows simple integration with Open Graph protocol.",
"type": "ibexa-bundle",
"keywords": [
"netgen",
"ibexa",
"open-graph-bundle",
"open-graph",
"open graph"
],
"homepage": "https://github.com/netgen/NetgenOpenGraphBundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^8.1",
"ibexa/core": "^4.4",
"twig/twig": "^3.0"
},
"require-dev": {
"ibexa/fieldtype-richtext": "^4.4",
"phpunit/phpunit": "^9.6",
"matthiasnoback/symfony-config-test": "^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netgen\\Bundle\\OpenGraphBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\OpenGraphBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"coverage": "@php -dzend_extension=xdebug.so vendor/bin/phpunit --colors=always"
},
"config": {
"allow-plugins": false
},
"extra": {
"branch-alias": {
"dev-master": "3.1.x-dev"
}
}
}