itx-utilities / app-version
get current android/ios app version
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/itx-utilities/app-version
Requires
- guzzlehttp/guzzle: ^6.5
- itx-utilities/dom-fetcher: ^1.0
This package is not auto-updated.
Last update: 2025-09-29 12:20:29 UTC
README
composer require itx-utilities/app-version
usage
<?php
use \Itx\Utilities\AppVersion ;
use \Itx\Utilities\AppVersion\Exceptions\AppVersionException ;
try
{
// to get android app latest published version ;
$android = AppVersion::android("net.tsawq.apps") ;
// to get ios app latest published version ;
// accepts both id , or bundleId
$ios = AppVersion::ios("1355111") ;
} catch(\AppVersionException $e) {
// handle any errors
}