baikal/composer.json

49 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "sabre/baikal",
"type": "project",
2019-10-14 10:06:58 -04:00
"description": "Baïkal is a lightweight CalDAV + CardDAV server based on PHP, SQLite or MySQL, and SabreDAV",
"keywords": ["Project", "Server", "Calendar", "Contact", "WebDAV", "CalDAV", "CardDAV", "iCalendar", "lightweight"],
"homepage": "https://sabre.io/baikal/",
"license" : "GPL-3.0-only",
"require": {
2022-01-01 07:21:47 -05:00
"php" : "^7.2 || ^8.0",
"sabre/dav" : "~4.4.0",
2022-01-01 07:21:47 -05:00
"twig/twig" : "~2.14.8",
"symfony/yaml" : "^3.4",
"psr/log" : "^1",
"ext-dom" : "*",
"ext-openssl" : "*",
"ext-pdo" : "*",
"ext-zlib" : "*"
},
"require-dev" : {
2021-11-25 22:56:04 -05:00
"friendsofphp/php-cs-fixer": "3.3.2",
2021-11-23 11:32:08 -05:00
"phpstan/phpstan": "^1.2"
},
"replace" : {
"jeromeschneider/baikal" : "self.version"
},
"autoload": {
"psr-0" : {
"Baikal" : "Core/Frameworks/",
"Flake" : "Core/Frameworks/",
"Formal" : "Core/Frameworks/"
}
},
"support" : {
2019-10-14 06:24:02 -04:00
"source" : "https://github.com/sabre-io/Baikal"
},
"scripts": {
"cs-fixer": [
"php-cs-fixer fix"
],
2021-11-03 10:26:18 -04:00
"phpstan": [
"phpstan analyse Core html"
],
"test": [
2021-11-03 10:26:18 -04:00
"composer cs-fixer",
"composer phpstan"
]
}
}