├── .gitattributes ├── .gitignore ├── LICENSE ├── PHPConsole.exe ├── README.md ├── art └── logo.png └── docs ├── demo.php └── gif.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderatio/phpconsole/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderatio/phpconsole/HEAD/LICENSE -------------------------------------------------------------------------------- /PHPConsole.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderatio/phpconsole/HEAD/PHPConsole.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderatio/phpconsole/HEAD/README.md -------------------------------------------------------------------------------- /art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderatio/phpconsole/HEAD/art/logo.png -------------------------------------------------------------------------------- /docs/demo.php: -------------------------------------------------------------------------------- 1 |