forked from sabre-io/Baikal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.4 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
{
"name": "fruux/baikal",
"description": "Baïkal is a lightweight CalDAV + CardDAV server based on PHP, SQLite or MySQL, and SabreDAV",
"keywords": ["Framework", "WebDAV", "CalDAV", "CardDAV", "iCalendar"],
"homepage": "http://sabre.io/baikal/",
"license" : "GPL-3.0",
"authors": [
{
"name": "Jérôme Schneider",
"email": "[email protected]",
"homepage" : "http://jerome.io",
"role" : "Developer"
}
],
"require": {
"php" : "^7.2 || ^8.0",
"sabre/dav" : "~4.3.0",
"twig/twig" : "~2.14.8",
"symfony/yaml" : "^3.4",
"psr/log" : "^1"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "3.3.2",
"phpstan/phpstan": "^1.2"
},
"replace" : {
"jeromeschneider/baikal" : "self.version"
},
"autoload": {
"psr-0" : {
"Baikal" : "Core/Frameworks/",
"Flake" : "Core/Frameworks/",
"Formal" : "Core/Frameworks/"
}
},
"support" : {
"source" : "https://github.com/sabre-io/Baikal"
},
"scripts": {
"cs-fixer": [
"php-cs-fixer fix"
],
"phpstan": [
"phpstan analyse Core html"
],
"test": [
"composer cs-fixer",
"composer phpstan"
]
}
}