Initial Commit

This commit is contained in:
Zi Xing 2022-01-10 19:26:36 -05:00
commit 51cc698322
4 changed files with 25 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/ProcLib

15
Makefile Normal file
View File

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

View File

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