baikal/composer.json

46 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "fruux/baikal",
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": ["Framework", "WebDAV", "CalDAV", "CardDAV", "iCalendar"],
"homepage": "http://sabre.io/baikal/",
"license" : "GPL-3.0",
"authors": [
{
"name": "Jérôme Schneider",
"email": "mail@jeromeschneider.fr",
"homepage" : "http://jerome.io",
"role" : "Developer"
}
],
"require": {
2021-01-14 22:23:23 -05:00
"php" : "^7.1 || ^8.0",
2020-10-18 04:15:19 -04:00
"sabre/dav" : "~4.1.2",
2020-03-24 17:09:00 -04:00
"twig/twig" : "~2.12.5",
"symfony/yaml" : "^3.4"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "^2.18"
},
"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"
],
"test": [
"composer cs-fixer"
]
}
}