forked from welpdev/icalBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 896 Bytes
/
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
{
"name": "welp/ical-bundle",
"description": "Symfony Bundle to manage .ics iCal file (creating and eventually reading)",
"version": "1.0.1",
"type": "symfony-bundle",
"homepage": "https://github.com/welpdev/icalBundle",
"license": "MIT",
"keywords": [
"Symfony",
"ical",
"ics",
"calendar",
"icalendar",
"welp"
],
"authors": [
{
"name": "Titouan BENOIT",
"email": "titouan@welp.today"
}
],
"autoload": {
"psr-4": {
"Welp\\IcalBundle\\": "src/"
}
},
"require": {
"php": ">=5.6",
"jsvrcek/ics": "0.8.5"
},
"require-dev": {
"phpunit/phpunit": "~5",
"swiftmailer/swiftmailer": "@stable",
"symfony/symfony": "~2.7 | ~3.0 | ^5.4"
},
"config": {
"bin-dir": "bin"
}
}