├── README.md ├── composer.json └── src ├── Api ├── AbstractApi.php ├── ApiInterface.php ├── BundleId.php ├── BundleIdCapability.php ├── Certificates.php ├── Device.php └── Profiles.php ├── Client.php ├── Exceptions ├── ConfigException.php ├── Exception.php ├── InvalidArgumentException.php └── RuntimeException.php └── Utils ├── HttpClient.php └── JWT.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/composer.json -------------------------------------------------------------------------------- /src/Api/AbstractApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Api/AbstractApi.php -------------------------------------------------------------------------------- /src/Api/ApiInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Api/ApiInterface.php -------------------------------------------------------------------------------- /src/Api/BundleId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Api/BundleId.php -------------------------------------------------------------------------------- /src/Api/BundleIdCapability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Api/BundleIdCapability.php -------------------------------------------------------------------------------- /src/Api/Certificates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Api/Certificates.php -------------------------------------------------------------------------------- /src/Api/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Api/Device.php -------------------------------------------------------------------------------- /src/Api/Profiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Api/Profiles.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Exceptions/ConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Exceptions/ConfigException.php -------------------------------------------------------------------------------- /src/Exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Exceptions/Exception.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Exceptions/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exceptions/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Exceptions/RuntimeException.php -------------------------------------------------------------------------------- /src/Utils/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Utils/HttpClient.php -------------------------------------------------------------------------------- /src/Utils/JWT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myappcloud/appstore-connect-api/HEAD/src/Utils/JWT.php --------------------------------------------------------------------------------