├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Lescript.php ├── README.md ├── _auto_example.php ├── _example.php └── composer.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analogic/lescript/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | composer.lock 3 | vendor -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analogic/lescript/HEAD/LICENSE -------------------------------------------------------------------------------- /Lescript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analogic/lescript/HEAD/Lescript.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analogic/lescript/HEAD/README.md -------------------------------------------------------------------------------- /_auto_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analogic/lescript/HEAD/_auto_example.php -------------------------------------------------------------------------------- /_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analogic/lescript/HEAD/_example.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analogic/lescript/HEAD/composer.json --------------------------------------------------------------------------------