├── .gitignore ├── .php_cs ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── composer.lock ├── lib └── Stauros │ ├── HTML │ ├── Config.php │ ├── Scanner.php │ ├── ScannerTest.php │ └── State.php │ └── Stauros.php ├── phpunit.xml.dist └── script └── bench.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/.php_cs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/composer.lock -------------------------------------------------------------------------------- /lib/Stauros/HTML/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/lib/Stauros/HTML/Config.php -------------------------------------------------------------------------------- /lib/Stauros/HTML/Scanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/lib/Stauros/HTML/Scanner.php -------------------------------------------------------------------------------- /lib/Stauros/HTML/ScannerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/lib/Stauros/HTML/ScannerTest.php -------------------------------------------------------------------------------- /lib/Stauros/HTML/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/lib/Stauros/HTML/State.php -------------------------------------------------------------------------------- /lib/Stauros/Stauros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/lib/Stauros/Stauros.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /script/bench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Stauros/HEAD/script/bench.php --------------------------------------------------------------------------------