forked from spatie/calendar-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "media-code/calendar-links",
"description": "Generate add to calendar links for Google, iCal and other calendar systems",
"keywords": [
"spatie",
"calendar-links"
],
"homepage": "https://github.com/spatie/calendar-links",
"license": "MIT",
"authors": [
{
"name": "Sebastian De Deyne",
"email": "sebastian@spatie.be",
"homepage": "https://spatie.be",
"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": {
"CalendarLinks\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CalendarLinks\\Tests\\": "tests"
}
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"psalm": "vendor/bin/psalm",
"test": "vendor/bin/phpunit",
"test:update-snapshots": "vendor/bin/phpunit -d --update-snapshots"
},
"config": {
"sort-packages": true
}
}