-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.09 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
{
"name": "xutimcms/event-bundle",
"type": "symfony-bundle",
"description": "The bundle adds events to the Xutim CMS system.",
"prefer-stable": true,
"keywords": [
"cms",
"xutim",
"event"
],
"homepage": "https://xutim.com",
"license": "MIT",
"authors": [
{
"name": "Tomas Jakl",
"email": "tomasjakll@gmail.com"
}
],
"require": {
"php": ">=8.4",
"babdev/pagerfanta-bundle": "^4.5",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/doctrine-migrations-bundle": "^3.4",
"doctrine/orm": "^3.3",
"dunglas/doctrine-json-odm": "^1.4",
"symfony/dotenv": "7.3.*",
"symfony/form": "7.3.*",
"symfony/framework-bundle": "7.3.*",
"symfony/http-client": "7.3.*",
"twig/twig": "^3.20",
"webmozart/assert": "^1.11"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.2",
"doctrine/doctrine-fixtures-bundle": "^4.0",
"friendsoftwig/twigcs": "^6.5",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "7.3.*",
"symfony/css-selector": "7.3.*",
"symfony/debug-bundle": "7.3.*",
"symfony/maker-bundle": "^1.62",
"symfony/phpunit-bridge": "7.3.*",
"symfony/stopwatch": "7.3.*",
"symfony/web-profiler-bundle": "7.3.*",
"symplify/easy-coding-standard": "^12.5",
"vincentlanglet/twig-cs-fixer": "^3.5"
},
"autoload": {
"psr-4": {
"Xutim\\EventBundle\\": "src/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Xutim\\EventBundle\\Tests\\": "tests/"
}
}
}