-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 2.04 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
{
"name": "ibexa/core-persistence",
"license": "(GPL-2.0-only or proprietary)",
"type": "ibexa-bundle",
"keywords": [
"ibexa-dxp"
],
"require": {
"php": " >=8.3",
"ibexa/core": "~5.0.x-dev",
"ibexa/doctrine-schema": "~5.0.x-dev",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/event-dispatcher": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/yaml": "^5.4"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.7",
"ibexa/code-style": "~2.0.0",
"ibexa/test-core": "5.0.x-dev",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.0",
"symfony/phpunit-bridge": "^5.4"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\CorePersistence\\": "src/bundle/",
"Ibexa\\Contracts\\CorePersistence\\": "src/contracts/",
"Ibexa\\CorePersistence\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\CorePersistence\\": "tests/bundle/",
"Ibexa\\Tests\\Integration\\CorePersistence\\": "tests/integration/",
"Ibexa\\Tests\\CorePersistence\\": "tests/lib/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml.dist",
"test-integration": "phpunit -c phpunit.integration.xml",
"phpstan": "phpstan analyse -c phpstan.neon"
},
"scripts-descriptions": {
"fix-cs": "Automatically fixes code style in all files",
"check-cs": "Run code style checker for all files",
"test": "Run automatic tests",
"phpstan": "Run static code analysis"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
}