first commit

This commit is contained in:
2024-07-09 11:31:28 +02:00
commit cc835b3692
9 changed files with 461 additions and 0 deletions

35
composer.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "bluesquare/pilot-sdk",
"description": "Pilot peer implementation.",
"keywords": [
"package",
"bluesquare",
"pilot"
],
"homepage": "https://git.bluesquare.io/bluesquare/pilot-sdk",
"license": "proprietary",
"authors": [
{
"name": "Maxime Renou",
"email": "maxime@bluesquare.io",
"homepage": "https://bluesquare.io/"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Bluesquare\\Pilot\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Bluesquare\\Pilot\\Laravel\\PilotServiceProvider"
]
}
},
"require": {
"php": "^7.3|^8.0"
},
"prefer-stable": true
}