├── .gitignore ├── .travis.yml ├── LICENSE.md ├── Manticorp └── ProgressUpdater.php ├── README.md ├── composer.json ├── composer.lock ├── index.html ├── longProcess.php ├── multiProcess.php ├── phpunit.xml └── tests ├── ProgressUpdaterTest.php └── autoload.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Manticorp/ProgressUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/Manticorp/ProgressUpdater.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/composer.lock -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/index.html -------------------------------------------------------------------------------- /longProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/longProcess.php -------------------------------------------------------------------------------- /multiProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/multiProcess.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/ProgressUpdaterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/tests/ProgressUpdaterTest.php -------------------------------------------------------------------------------- /tests/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticorp/ajaxProcessUpdater/HEAD/tests/autoload.php --------------------------------------------------------------------------------