2013-02-09 12:58:33 +00:00
|
|
|
{
|
2016-01-21 13:13:37 -05:00
|
|
|
"name": "fruux/baikal",
|
2019-10-14 16:06:58 +02:00
|
|
|
"description": "Baïkal is a lightweight CalDAV + CardDAV server based on PHP, SQLite or MySQL, and SabreDAV",
|
2013-02-09 12:58:33 +00:00
|
|
|
"keywords": ["Framework", "WebDAV", "CalDAV", "CardDAV", "iCalendar"],
|
2016-01-21 13:13:37 -05:00
|
|
|
"homepage": "http://sabre.io/baikal/",
|
2013-02-09 12:58:33 +00:00
|
|
|
"license" : "GPL-3.0",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Jérôme Schneider",
|
|
|
|
"email": "mail@jeromeschneider.fr",
|
|
|
|
"homepage" : "http://jerome.io",
|
|
|
|
"role" : "Developer"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2022-01-01 13:21:47 +01:00
|
|
|
"php" : "^7.2 || ^8.0",
|
2021-12-31 12:21:27 +01:00
|
|
|
"sabre/dav" : "~4.3.0",
|
2022-01-01 13:21:47 +01:00
|
|
|
"twig/twig" : "~2.14.8",
|
2022-01-08 13:14:06 +01:00
|
|
|
"symfony/yaml" : "^3.4",
|
|
|
|
"psr/log" : "^1"
|
2016-01-21 13:13:37 -05:00
|
|
|
},
|
2016-03-12 20:19:06 -05:00
|
|
|
"require-dev" : {
|
2021-11-26 09:41:04 +05:45
|
|
|
"friendsofphp/php-cs-fixer": "3.3.2",
|
2021-11-23 22:17:08 +05:45
|
|
|
"phpstan/phpstan": "^1.2"
|
2016-03-12 20:19:06 -05:00
|
|
|
},
|
2016-01-21 13:13:37 -05:00
|
|
|
"replace" : {
|
|
|
|
"jeromeschneider/baikal" : "self.version"
|
2013-02-09 12:58:33 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-0" : {
|
2013-02-09 13:18:57 +00:00
|
|
|
"Baikal" : "Core/Frameworks/",
|
|
|
|
"Flake" : "Core/Frameworks/",
|
|
|
|
"Formal" : "Core/Frameworks/"
|
2013-02-09 12:58:33 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"support" : {
|
2019-10-14 12:24:02 +02:00
|
|
|
"source" : "https://github.com/sabre-io/Baikal"
|
2020-02-18 08:47:39 +05:45
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"cs-fixer": [
|
|
|
|
"php-cs-fixer fix"
|
|
|
|
],
|
2021-11-03 20:11:18 +05:45
|
|
|
"phpstan": [
|
|
|
|
"phpstan analyse Core html"
|
|
|
|
],
|
2020-02-18 08:47:39 +05:45
|
|
|
"test": [
|
2021-11-03 20:11:18 +05:45
|
|
|
"composer cs-fixer",
|
|
|
|
"composer phpstan"
|
2020-02-18 08:47:39 +05:45
|
|
|
]
|
2013-02-09 12:58:33 +00:00
|
|
|
}
|
|
|
|
}
|