-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.79 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.79 KB
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
{
"name": "netgen/openapi-ibexa",
"description": "OpenAPI implementation for Ibexa CMS",
"license": "GPL-2.0-only",
"type": "symfony-bundle",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^8.2",
"symfony/polyfill-php84": "^1.33",
"netgen/openapi": "^1.0.2",
"netgen/layouts-core": "^1.4.11",
"netgen/layouts-ibexa": "^1.4",
"netgen/ibexa-site-api": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"symfony/phpunit-bridge": "^5.4",
"symfony/var-dumper": "^5.4",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-phpunit": "^1.3",
"netgen/remote-media-ibexa": "^1.0",
"netgen/remote-media-bundle": "^3.0",
"netgen/ibexa-fieldtype-enhanced-link": "^1.1"
},
"config": {
"allow-plugins": false
},
"scripts": {
"test": "@php vendor/bin/phpunit --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"
},
"autoload": {
"psr-4": {
"Netgen\\OpenApiIbexa\\": "lib/",
"Netgen\\Bundle\\OpenApiIbexaBundle\\": "bundle/"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\OpenApiIbexa\\Tests\\": "tests/lib/",
"Netgen\\Bundle\\OpenApiIbexaBundle\\Tests\\": "tests/bundle/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}