Initial commit

This commit is contained in:
Cedric Abonnel
2026-05-08 12:55:46 +02:00
commit 700329f156
46 changed files with 8495 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "varlog/microblog",
"type": "project",
"require": {
"ext-pdo": "*",
"php": ">=8.2",
"vlucas/phpdotenv": "^5.6",
"phpmailer/phpmailer": "^6.11",
"jumbojett/openid-connect-php": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.64"
},
"scripts": {
"fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"stan": "phpstan analyse"
}
}