forked from netgen-layouts/content-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
91 lines (91 loc) · 3.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "netgen/content-browser",
"description": "Netgen Content Browser is a Symfony bundle that provides an interface which selects items from any kind of backend and returns the IDs of selected items back to the calling code.",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^7.4 || ^8.1",
"ext-mbstring": "*",
"netgen/content-browser-ui": "~1.4.0",
"symfony/asset": "^3.4.47 || ^5.4 || ^6.2",
"symfony/config": "^3.4.47 || ^5.4 || ^6.2",
"symfony/console": "^3.4.47 || ^5.4 || ^6.2",
"symfony/deprecation-contracts": "^2.5 || ^3.2",
"symfony/dependency-injection": "^3.4.47 || ^5.4 || ^6.2",
"symfony/event-dispatcher": "^3.4.47 || ^5.4 || ^6.2",
"symfony/form": "^3.4.47 || ^5.4 || ^6.2",
"symfony/framework-bundle": "^3.4.47 || ^5.4 || ^6.2",
"symfony/http-foundation": "^3.4.47 || ^5.4 || ^6.2",
"symfony/http-kernel": "^3.4.47 || ^5.4 || ^6.2",
"symfony/monolog-bundle": "^3.6",
"symfony/options-resolver": "^3.4.47 || ^5.4 || ^6.2",
"symfony/polyfill-php80": "^1.27",
"symfony/property-access": "^3.4.47 || ^5.4 || ^6.2",
"symfony/routing": "^3.4.47 || ^5.4 || ^6.2",
"symfony/security-core": "^3.4.47 || ^5.4 || ^6.2",
"symfony/security-bundle": "^3.4.47 || ^5.4 || ^6.2",
"symfony/translation": "^3.4.47 || ^5.4 || ^6.2",
"symfony/twig-bundle": "^3.4.47 || ^5.4 || ^6.2",
"symfony/validator": "^3.4.47 || ^5.4 || ^6.2",
"symfony/yaml": "^3.4.47 || ^5.4 || ^6.2",
"twig/twig": "^2.15 || ^3.4",
"sensio/framework-extra-bundle": "^5.4 || ^6.2",
"pagerfanta/pagerfanta": "^2.7 || ^3.6",
"jean85/pretty-package-versions": "^1.6 || ^2.0"
},
"require-dev": {
"netgen/layouts-coding-standard": "^2.0",
"phpunit/phpunit": "^8.5 || ^9.6 || ^10.1",
"symfony/phpunit-bridge": "^6.2",
"symfony/runtime": "^5.4 || ^6.2",
"symfony/var-dumper": "^3.4.47 || ^5.4 || ^6.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-phpunit": "^1.3",
"vimeo/psalm": "^4.30 || ^5.4",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"lchrusciel/api-test-case": "^4.1 || ^5.2"
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"*": false
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"test-api": "@php vendor/bin/phpunit -c phpunit-api.xml --colors=always",
"coverage": "@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --coverage-html=coverage --colors=always",
"coverage-api": "@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit -c phpunit-api.xml --coverage-html=coverage_api --colors=always",
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=8 --ansi lib bundle",
"phpstan-tests": "@php vendor/bin/phpstan analyse -c phpstan.tests.neon --level=8 --ansi tests",
"psalm": "@php vendor/bin/psalm -c psalm.xml --show-info=false"
},
"autoload": {
"psr-4": {
"Netgen\\ContentBrowser\\": "lib/",
"Netgen\\Bundle\\ContentBrowserBundle\\": "bundle/"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\ContentBrowser\\Tests\\": "tests/lib/",
"Netgen\\ContentBrowser\\Tests\\App\\": "tests/application/src/",
"Netgen\\Bundle\\ContentBrowserBundle\\Tests\\": "tests/bundle/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
}
}