Initial Commit

This commit is contained in:
Zi Xing 2021-12-25 17:10:11 -05:00
commit 046c4e5f44
4 changed files with 30 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/Synical

20
Makefile Normal file
View File

@ -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"

8
src/Synical/Synical.php Normal file
View File

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