-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
composer.json
47 lines (47 loc) · 1.26 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
{
"name": "spatie/calendar-links",
"description": "Generate add to calendar links for Google, iCal and other calendar systems",
"license": "MIT",
"keywords": [
"spatie",
"calendar-links"
],
"authors": [
{
"name": "Sebastian De Deyne",
"email": "sebastian@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"homepage": "https://github.com/spatie/calendar-links",
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"phpunit/phpunit": "^10.5",
"spatie/phpunit-snapshot-assertions": "^5.1",
"vimeo/psalm": "^5.22"
},
"autoload": {
"psr-4": {
"Spatie\\CalendarLinks\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\CalendarLinks\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"psalm": "vendor/bin/psalm",
"psalm:ci": "vendor/bin/psalm --shepherd",
"test": "vendor/bin/phpunit",
"test:update-snapshots": "vendor/bin/phpunit -d --update-snapshots"
}
}