Initial commit

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-22 02:40:42 +03:00
commit 98a4094c5e
53 changed files with 2633 additions and 0 deletions

18
composer.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "pronchev/pinecore",
"description": "Minimal PHP framework for FrankenPHP long-running workers",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"php-di/php-di": "^7.0",
"mongodb/mongodb": "^2.2.0",
"lcobucci/jwt": "^5.0",
"psr/log": "^3.0",
"psr/clock": "^1.0"
},
"autoload": {
"psr-4": {"Pronchev\\Pinecore\\": "src/"},
"files": ["src/helpers.php"]
}
}