├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── ACFProInstaller │ ├── Exceptions │ └── MissingKeyException.php │ ├── Plugin.php │ └── RemoteFilesystem.php └── tests └── ACFProInstaller ├── Exceptions └── MissingKeyExceptionTest.php ├── PluginTest.php └── RemoteFilesystemTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ACFProInstaller/Exceptions/MissingKeyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/src/ACFProInstaller/Exceptions/MissingKeyException.php -------------------------------------------------------------------------------- /src/ACFProInstaller/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/src/ACFProInstaller/Plugin.php -------------------------------------------------------------------------------- /src/ACFProInstaller/RemoteFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/src/ACFProInstaller/RemoteFilesystem.php -------------------------------------------------------------------------------- /tests/ACFProInstaller/Exceptions/MissingKeyExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/tests/ACFProInstaller/Exceptions/MissingKeyExceptionTest.php -------------------------------------------------------------------------------- /tests/ACFProInstaller/PluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/tests/ACFProInstaller/PluginTest.php -------------------------------------------------------------------------------- /tests/ACFProInstaller/RemoteFilesystemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippBaschke/acf-pro-installer/HEAD/tests/ACFProInstaller/RemoteFilesystemTest.php --------------------------------------------------------------------------------