├── .gitignore ├── .poggit.yml ├── LICENSE ├── README.md ├── src └── spoondetector │ └── SpoonDetector.php └── virion.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falkirks/spoondetector/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falkirks/spoondetector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falkirks/spoondetector/HEAD/README.md -------------------------------------------------------------------------------- /src/spoondetector/SpoonDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falkirks/spoondetector/HEAD/src/spoondetector/SpoonDetector.php -------------------------------------------------------------------------------- /virion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falkirks/spoondetector/HEAD/virion.yml --------------------------------------------------------------------------------