├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Bridge │ └── IO │ │ └── IO.php ├── Exception │ └── ComposerException.php └── Up.php └── tests ├── UpTest.php ├── bootstrap.php ├── composer.json ├── composer.lock └── testroot ├── composer.json └── composer.lock /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.0.0-beta 4 | 5 | - Initial working beta release -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Bridge/IO/IO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/src/Bridge/IO/IO.php -------------------------------------------------------------------------------- /src/Exception/ComposerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/src/Exception/ComposerException.php -------------------------------------------------------------------------------- /src/Up.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/src/Up.php -------------------------------------------------------------------------------- /tests/UpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothership-ec/up/HEAD/tests/UpTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |