├── .gitignore ├── code-of-conduct.md ├── composer.json ├── license.md ├── phpunit.xml ├── readme.md ├── source ├── functions.php └── macros.yay └── tests ├── MacroTest.php └── specs └── async.spec /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/composer.json -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/license.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/readme.md -------------------------------------------------------------------------------- /source/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/source/functions.php -------------------------------------------------------------------------------- /source/macros.yay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/source/macros.yay -------------------------------------------------------------------------------- /tests/MacroTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/tests/MacroTest.php -------------------------------------------------------------------------------- /tests/specs/async.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preprocess/pre-async/HEAD/tests/specs/async.spec --------------------------------------------------------------------------------