From 046c4e5f44351dd6b673365e9430727b4bf98a14 Mon Sep 17 00:00:00 2001 From: Zi Xing Date: Sat, 25 Dec 2021 17:10:11 -0500 Subject: [PATCH] Initial Commit --- .gitignore | 1 + .ppm_package | 1 + Makefile | 20 ++++++++++++++++++++ src/Synical/Synical.php | 8 ++++++++ 4 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 .ppm_package create mode 100644 Makefile create mode 100644 src/Synical/Synical.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/.ppm_package b/.ppm_package new file mode 100644 index 0000000..f197f6c --- /dev/null +++ b/.ppm_package @@ -0,0 +1 @@ +src/Synical \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f0064b0 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +clean: + # Removes the build directory + rm -rf build + +update: + # Updates the package.json file + ppm --generate-package="src/Synical" + +build: + # Compiles the package + mkdir build + ppm --compile="src/Synical" --directory="build" + +install: + # Installs the compiled package to the system + ppm --fix-conflict --no-prompt --install="build/net.intellivoid.synical.ppm" --branch="production" + +install_fast: + # Installs the compiled package to the system + ppm --fix-conflict --no-prompt --skip-dependencies --install="build/net.intellivoid.synical.ppm" --branch="production" \ No newline at end of file diff --git a/src/Synical/Synical.php b/src/Synical/Synical.php new file mode 100644 index 0000000..900d879 --- /dev/null +++ b/src/Synical/Synical.php @@ -0,0 +1,8 @@ +