Initial Commit

This commit is contained in:
Netkas 2021-09-16 03:42:02 -04:00
commit 36932207f1
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/HttpStream

15
Makefile Normal file
View File

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

25
src/Zxcvbn/package.json Normal file
View File

@ -0,0 +1,25 @@
{
"package": {
"package_name": "net.intellivoid.zxcvbn",
"name": "Zxcvbn",
"version": "1.0.0.0",
"author": "Zi Xing Narrakas",
"organization": "Intellivoid Technologies",
"description": "Low-Budget Password Strength Estimation",
"url": "https://github.com/intellivoid/zxcvbn",
"dependencies": [],
"configuration": {
"autoload_method": "generated_spl",
"main": null,
"post_installation": [],
"pre_installation": []
}
},
"components": [
{
"required": true,
"file": "zxcvbn.php"
}
],
"files": []
}

8
src/Zxcvbn/zxcvbn.php Normal file
View File

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