forked from spatie/calendar-links
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (42 loc) · 1.01 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
{
"name": "labomatik/calendar-links",
"description": "Generate add to calendar links for Google, iCal and other calendar systems",
"keywords": [
"labomatik",
"calendar-links"
],
"homepage": "https://github.com/labomatik/calendar-links",
"license": "MIT",
"authors": [
{
"name": "Christophe Lemoine",
"email": "[email protected]",
"homepage": "https://labomatik.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"spatie/phpunit-snapshot-assertions": "^4.0",
"vimeo/psalm": "^4.7"
},
"autoload": {
"psr-4": {
"Labomatik\\CalendarLinks\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Labomatik\\CalendarLinks\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}