-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
85 lines (85 loc) · 2.77 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
{
"name": "ibexa/rest",
"description": "Ibexa REST bundle",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"replace": {
"ezsystems/ezplatform-rest": "*"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\Rest\\": "src/bundle/",
"Ibexa\\Rest\\": "src/lib/",
"Ibexa\\Contracts\\Rest\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Rest\\": "tests/lib/",
"Ibexa\\Tests\\Bundle\\Rest\\": "tests/bundle/",
"Ibexa\\Tests\\Contracts\\Rest\\": "tests/contracts/",
"Ibexa\\Tests\\Integration\\Rest\\": "tests/integration/"
}
},
"require": {
"php": " >=8.3",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"hautelook/templated-uri-bundle": "^3.4",
"ibexa/core": "~5.0.x-dev",
"ibexa/polyfill-php82": "^1.0",
"lexik/jwt-authentication-bundle": "^2.8",
"symfony/config": "^5.3",
"symfony/dependency-injection": "^5.3",
"symfony/event-dispatcher": "^5.3",
"symfony/expression-language": "^5.3",
"symfony/form": "^5.3",
"symfony/http-foundation": "^5.3",
"symfony/http-kernel": "^5.3",
"symfony/routing": "^5.3",
"symfony/security-bundle": "^5.3",
"symfony/security-csrf": "^5.3",
"symfony/yaml": "^5.3",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/test-core": "^0.1.x-dev",
"justinrainbow/json-schema": "^5.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"nyholm/psr7": "^1.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "^5.3",
"symfony/http-client": "^5.3"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"*": false
},
"process-timeout": 600,
"sort-packages": true
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"phpstan": "phpstan analyse -c phpstan.neon",
"test": "phpunit -c phpunit.xml",
"test-integration": "phpunit -c phpunit.integration.xml",
"test-functional": "phpunit -c phpunit.functional.xml"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
}
}