1
0
mirror of git://f0xx.org/ac/ac-platform-php synced 2026-07-29 02:18:27 +03:00
This commit is contained in:
Anton Afanasyeu
2026-06-23 12:29:28 +02:00
commit f4b39bea26
11 changed files with 2095 additions and 0 deletions

21
composer.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "androidcast/platform-php",
"description": "AndroidCast shared PHP: Database, bootstrap, session",
"type": "library",
"require": {
"php": ">=8.1",
"androidcast/platform-db": "dev-next"
},
"repositories": [
{
"type": "vcs",
"url": "git://f0xx.org/ac/ac-platform-db"
}
],
"autoload": {
"classmap": [
"src/",
"platform/"
]
}
}