Initial commit

This commit is contained in:
root
2026-01-04 22:05:37 -05:00
committed by Sebastian Krupinski
commit 4f979ced22
57 changed files with 11076 additions and 0 deletions

36
composer.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "ktxm/provider-jmapc",
"type": "project",
"authors": [
{
"name": "Sebastian Krupinski",
"email": "krupinski01@gmail.com"
}
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.2"
},
"autoloader-suffix": "ProviderJmapc",
"vendor-dir": "lib/vendor",
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/sebastiankrupinski/jmap-client-php"
}
],
"require": {
"php": ">=8.2 <=8.5",
"sebastiankrupinski/jmap-client-php": "dev-main"
},
"autoload": {
"psr-4": {
"KTXM\\ProviderJmapc\\": "lib/"
}
}
}