PHPackages                             hauptmedia/mobile-app-packaging-tools - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. hauptmedia/mobile-app-packaging-tools

ActiveLibrary

hauptmedia/mobile-app-packaging-tools
=====================================

01101PHP

Since Mar 16Pushed 10y ago1 watchersCompare

[ Source](https://github.com/hauptmedia/php-mobile-app-packaging-tools)[ Packagist](https://packagist.org/packages/hauptmedia/mobile-app-packaging-tools)[ RSS](/packages/hauptmedia-mobile-app-packaging-tools/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

A library that can help you to distribute .ipa and .apk package files over the air

Example usage in a Symfony project for an Apple device UDID request
===================================================================

[](#example-usage-in-a-symfony-project-for-an-apple-device-udid-request)

```
/**
 * Class BetaDownloadController
 * @package AppBundle\Controller
 * @Route("/beta-download")
 */
class BetaDownloadController extends Controller
{
    /**
     * Sends out an certificate which requests the device to send back it's UDID
     * @Route("/apple-profile-request", name="apple-profile-request")
     */
    public function appleProfileRequestAction(Request $request)
    {
        $response = AppleResponseFactory::createProfileRequestResponse(
            (new AppleProfileRequest())
            ->setProfileReceiverUrl(
                $this->generateUrl("apple-profile-request-receiver", [], UrlGeneratorInterface::ABSOLUTE_URL)
            )
            ->setDeviceAttributes([AppleProfileRequest::DEVICE_ATTRIBUTE_UDID])
            ->setOrganization("Acme Corp.")
            ->setDisplayName("Request UDID")
            ->setIdentifier("com.acme.app")
            ->setDescription("UDID Request")
        );

        return $response;
    }

    /**
     * Receive the UDID form the device and redirect to a content page making the UDID accessable as GET parameter
     * @Route("/apple-profile-request-receiver", name="apple-profile-request-receiver")
     */
    public function appleProfileRequestReceiver(Request $request)
    {
        $profileRequest = AppleRequestFactory::parseProfileRequest($request);

        return new RedirectResponse(
            $this->generateUrl(
                "apple-download-request",
                [
                    'UDID' => $profileRequest->getUdid()
                ]
            )
        );
    }

    /**
     * @Route("/apple-download-request", name="apple-download-request")
     */
    public function appleDownloadRequest(Request $request) {

        return new Response("Your UDID: " . $request->get('UDID'));

    }

}
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/4af6f0b1b8c50a7240ac8f6d3ebf33a94a5a9990f57fd28c8e1e2e1d50e3416c?d=identicon)[hauptmedia](/maintainers/hauptmedia)

---

Top Contributors

[![hauptmedia](https://avatars.githubusercontent.com/u/10770719?v=4)](https://github.com/hauptmedia "hauptmedia (17 commits)")

### Embed Badge

![Health badge](/badges/hauptmedia-mobile-app-packaging-tools/health.svg)

```
[![Health](https://phpackages.com/badges/hauptmedia-mobile-app-packaging-tools/health.svg)](https://phpackages.com/packages/hauptmedia-mobile-app-packaging-tools)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
