-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.19 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.19 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
68
69
{
"name": "netgen/tagsbundle",
"description": "Netgen Tags Bundle is an Ibexa DXP bundle for taxonomy management and easier classification of content, providing more functionality for tagging content than ibexa_keyword field type included in Ibexa core.",
"license": "GPL-2.0-only",
"type": "ibexa-bundle",
"keywords": [
"ibexa",
"netgen",
"taxonomy",
"tagsbundle",
"tags"
],
"homepage": "https://github.com/netgen/TagsBundle",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^8.3",
"ibexa/core": "^5.0",
"ibexa/admin-ui": "^5.0",
"ibexa/rest": "^5.0",
"ibexa/content-forms": "^5.0",
"ibexa/solr": "^5.0",
"ibexa/http-cache": "^5.0",
"lolautruche/ez-core-extra-bundle": "^5.0",
"symfony/polyfill-php84": "^1.33",
"symfony/translation-contracts": "^3.6",
"pagerfanta/pagerfanta": "^3.8 || ^4.8",
"doctrine/collections": "^2.4 || ^3.0"
},
"require-dev": {
"netgen/coding-standard": "^1.0",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-phpunit": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"test-integration": "@php vendor/bin/phpunit -c phpunit-integration-legacy.xml --colors=always",
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=8 --ansi bundle",
"phpstan-tests": "@php vendor/bin/phpstan analyse -c phpstan.tests.neon --level=8 --ansi tests"
},
"autoload": {
"psr-4": {
"Netgen\\TagsBundle\\": "bundle/"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\TagsBundle\\Tests\\": "tests/",
"Ibexa\\Tests\\Solr\\": "vendor/ibexa/solr/tests/lib"
}
},
"config": {
"allow-plugins": false
},
"extra": {
"branch-alias": {
"dev-master": "6.0.x-dev"
}
}
}