├── CHANGES.md ├── LICENSE ├── README.md ├── assets ├── banner-1544x500.png ├── banner-772x250.png ├── icon.svg └── screenshot-1.png ├── composer.json ├── git-updater-additions.php ├── github-updater-additions.php ├── languages └── git-updater-additions.pot ├── readme.txt ├── src └── Additions │ ├── Additions.php │ ├── Bootstrap.php │ ├── Repo_List_Table.php │ └── Settings.php └── vendor ├── autoload.php └── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php └── platform_check.php /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/composer.json -------------------------------------------------------------------------------- /git-updater-additions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/git-updater-additions.php -------------------------------------------------------------------------------- /github-updater-additions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/github-updater-additions.php -------------------------------------------------------------------------------- /languages/git-updater-additions.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/languages/git-updater-additions.pot -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/readme.txt -------------------------------------------------------------------------------- /src/Additions/Additions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/src/Additions/Additions.php -------------------------------------------------------------------------------- /src/Additions/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/src/Additions/Bootstrap.php -------------------------------------------------------------------------------- /src/Additions/Repo_List_Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/src/Additions/Repo_List_Table.php -------------------------------------------------------------------------------- /src/Additions/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/src/Additions/Settings.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-additions/HEAD/vendor/composer/platform_check.php --------------------------------------------------------------------------------