-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
79 lines (79 loc) · 2.65 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
{
"name": "ezsystems/ezplatform-rest",
"description": "eZ Platform REST bundle",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformRestBundle\\": "src/bundle/",
"EzSystems\\EzPlatformRest\\": "src/lib/",
"Ibexa\\Bundle\\Rest\\": "src/bundle/",
"Ibexa\\Rest\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformRestBundle\\Tests\\": "tests/bundle/",
"EzSystems\\EzPlatformRest\\Tests\\": "tests/lib/",
"Ibexa\\Tests\\Rest\\": "tests/lib/",
"Ibexa\\Tests\\Bundle\\Rest\\": "tests/bundle/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"ezsystems/ezplatform-kernel": "^1.3@dev",
"symfony/http-kernel": "^5.3",
"symfony/dependency-injection": "^5.3",
"symfony/routing": "^5.3",
"symfony/http-foundation": "^5.3",
"symfony/config": "^5.3",
"symfony/yaml": "^5.3",
"symfony/event-dispatcher": "^5.3",
"symfony/security-csrf": "^5.3",
"symfony/expression-language": "^5.3",
"symfony/form": "^5.3",
"symfony/security-bundle": "^5.3",
"ibexa/templated-uri-bundle": "^3.2",
"lexik/jwt-authentication-bundle": "^2.8"
},
"require-dev": {
"ibexa/ci-scripts": "^0.1@dev",
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ezsystems/ezplatform-code-style": "^0.1.0",
"friendsofphp/php-cs-fixer": "^2.16.0",
"phpunit/phpunit": "^8.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"nyholm/psr7": "^1.1",
"symfony/http-client": "^5.3",
"symfony/browser-kit": "^5.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"justinrainbow/json-schema": "^5.2"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"*": false
},
"process-timeout": 600
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "@fix-cs --dry-run",
"phpstan": "phpstan analyse -c phpstan.neon",
"test": "phpunit -c phpunit.xml",
"integration": "phpunit -c phpunit-integration-rest.xml"
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
}
}