-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
54 lines (54 loc) · 1.45 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
{
"name": "tattali/calendar-bundle",
"type": "symfony-bundle",
"description": "Provides event calendar for your Symfony 7+ project. Compatible with API like Google Calendar.",
"keywords": [
"fullcalendar",
"calendar",
"symfony",
"symfony calendar"
],
"homepage": "https://github.com/tattali/CalendarBundle",
"license": "MIT",
"authors": [
{
"name": "Théo Attali",
"email": "[email protected]",
"homepage": "https://theoattali.fr"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"symfony/dependency-injection": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/framework-bundle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"symfony/dotenv": "^7.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/yaml": "^7.0",
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/phpstan": "^2.0"
},
"suggest": {
"symfony/orm-pack": "To support Doctrine ORM and Migration.",
"doctrine/mongodb-odm-bundle": "To support MongoDB."
},
"autoload": {
"psr-4": {
"CalendarBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CalendarBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}