Initial Commit, added PPM boilerplate

This commit is contained in:
Netkas 2021-11-17 21:41:03 -05:00
commit c717f363ba
5 changed files with 50 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

1
.ppm_package Normal file
View File

@ -0,0 +1 @@
src/KimchiAPI

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
clean:
rm -rf build
build:
mkdir build
ppm --no-intro --compile="src/KimchiAPI" --directory="build"
update:
ppm --generate-package="src/KimchiAPI"
install:
ppm --no-intro --no-prompt --fix-conflict --install="build/net.intellivoid.kimchi_api.ppm"
install_fast:
ppm --no-intro --no-prompt --fix-conflict --skip-dependencies --install="build/net.intellivoid.kimchi_api.ppm"

View File

@ -0,0 +1,8 @@
<?php
namespace KimchiAPI;
class KimchiAPI
{
}

View File

@ -0,0 +1,25 @@
{
"package": {
"package_name": "net.intellivoid.kimchi_api",
"name": "KimchiAPI",
"version": "1.0.0.0",
"author": "Zi Xing Narrakas",
"organization": "Intellivoid Technologies",
"description": "The API server that goes good with anything, even toothpaste!",
"url": "https://github.com/intellivoid/KimchiAPI",
"dependencies": [],
"configuration": {
"autoload_method": "generated_spl",
"main": null,
"post_installation": [],
"pre_installation": []
}
},
"components": [
{
"required": true,
"file": "KimchiAPI.php"
}
],
"files": []
}