started library

This commit is contained in:
Eduardo Bacarin 2025-06-13 14:09:31 -03:00
commit 4211edf7fc
12 changed files with 848 additions and 0 deletions

20
composer.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "kontrl/php-kore",
"description": "A PHP library to integrate any PHP project with Kontrl Kore",
"type": "library",
"autoload": {
"psr-4": {
"Kontrl\\PhpKore\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"authors": [
{
"name": "Eduardo Bacarin",
"email": "me@bacarin.dev"
}
],
"require": {}
}