forked from netgen/TagsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.99 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
56
57
58
59
60
61
62
{
"name": "netgen/tagsbundle",
"description": "Netgen Tags Bundle is an eZ Platform / eZ Publish bundle for taxonomy management and easier classification of content, providing more functionality for tagging content than ezkeyword field type included in eZ Publish kernel.",
"type": "ezplatform-bundle",
"keywords": [
"ezplatform",
"ezpublish",
"netgen",
"taxonomy",
"tagsbundle",
"tags"
],
"homepage": "https://github.com/netgen/TagsBundle",
"license": "GPL-2.0",
"authors": [
{
"name": "Netgen",
"homepage": "https://www.netgenlabs.com"
}
],
"require": {
"php": "^5.6|^7.1",
"ezsystems/ezpublish-kernel": "^6.11@dev|^7.0@dev",
"ezsystems/repository-forms": "^1.9|^2.0",
"ezsystems/ezplatform-solr-search-engine": "^1.4@dev",
"lolautruche/ez-core-extra-bundle": "^2.0",
"twig/twig": "^1.35|^2.4.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"test-integration": "@php vendor/bin/phpunit -c phpunit-integration-legacy.xml --colors=always"
},
"suggest": {
"ezsystems/eztags-ls": "For editing eZ Tags content object and content class attributes in eZ Publish Legacy"
},
"conflict": {
"ezsystems/platform-ui-bundle": "<1.11",
"ezsystems/eztags-ls": "<2.1"
},
"autoload": {
"psr-4": {
"Netgen\\TagsBundle\\": "bundle/"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\TagsBundle\\Tests\\": "tests/",
"EzSystems\\EzPlatformSolrSearchEngine\\Tests\\": "vendor/ezsystems/ezplatform-solr-search-engine/tests/lib"
},
"files": [
"vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.2.x-dev"
}
}
}