-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 2.24 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
{
"name": "ibexa/system-info",
"description": "Providing information about the system Ibexa is running on, and Ibexa install itself",
"license": "(GPL-2.0-only or proprietary)",
"type": "ibexa-bundle",
"replace": {
"ezsystems/ez-support-tools": "*"
},
"require": {
"php": " >=8.3",
"ext-json": "*",
"ibexa/admin-ui": "~5.0.x-dev",
"ibexa/core": "~5.0.x-dev",
"zetacomponents/system-information": "^1.1.1"
},
"require-dev": {
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "~2.0.0",
"ibexa/content-forms": "~5.0.x-dev",
"ibexa/design-engine": "~5.0.x-dev",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/fieldtype-richtext": "~5.0.x-dev",
"ibexa/http-cache": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"ibexa/phpstan": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"ibexa/search": "~5.0.x-dev",
"ibexa/test-core": "~5.0.x-dev",
"ibexa/user": "~5.0.x-dev",
"hautelook/templated-uri-bundle": "^3.4",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0"
},
"autoload": {
"psr-4": {
"Ibexa\\SystemInfo\\": "src/lib/",
"Ibexa\\Bundle\\SystemInfo\\": "src/bundle/",
"Ibexa\\Contracts\\SystemInfo\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\SystemInfo\\": "tests/lib/",
"Ibexa\\Tests\\Integration\\SystemInfo\\": "tests/integration/",
"Ibexa\\Tests\\Bundle\\SystemInfo\\": "tests/bundle/"
}
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml",
"test-integration": "phpunit -c phpunit.integration.xml",
"phpstan": "phpstan analyse"
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
}