baikal/composer.json
dependabot[bot] 080c608ea9
Update friendsofphp/php-cs-fixer requirement from 3.51.0 to 3.52.1
Updates the requirements on [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer) to permit the latest version.
- [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases)
- [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.51.0...v3.52.1)

---
updated-dependencies:
- dependency-name: friendsofphp/php-cs-fixer
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-01 06:25:40 +00:00

48 lines
1.4 KiB
JSON

{
"name": "sabre/baikal",
"type": "project",
"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": {
"php" : "^7.2 || ^8.0",
"sabre/dav" : "~4.6.0",
"twig/twig" : "~3.8.0",
"symfony/yaml" : "^5.4",
"psr/log" : "^1",
"ext-dom" : "*",
"ext-openssl" : "*",
"ext-pdo" : "*",
"ext-zlib" : "*"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "3.52.1",
"phpstan/phpstan": "^1.10"
},
"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"
]
}
}