PHPackages                             tormjens/extended-mix - 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. tormjens/extended-mix

ActiveStandard

tormjens/extended-mix
=====================

Extended version of the Laravel Mix helper.

1.0.14(1y ago)111.3k↓100%1[2 PRs](https://github.com/tormjens/mix/pulls)MITPHPPHP &gt;=7.4

Since Aug 12Pushed 1y ago1 watchersCompare

[ Source](https://github.com/tormjens/mix)[ Packagist](https://packagist.org/packages/tormjens/extended-mix)[ Docs](https://github.com/tormjens/mix)[ RSS](/packages/tormjens-extended-mix/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (4)Versions (18)Used By (0)

Extended Mix
============

[](#extended-mix)

Extended Mix was born in an application that was entirely modular. We needed to load assets from our modules (Composer packages) while also making it possible to hot reload and host assets on a CDN.

This application had modules that were regular Composer packages, so the folder structure would be like.

```
app/
vendor/
    foo/
        bar/

```

When pushing to master it was setup to compile assets and push them up to AWS S3, which had a Cloudfront set up.

Locally we wanted to still be able to use HMR (hot reloading) or just compiling the assets to test.

In production we wanted assets to be found via our CDN.

Installation
============

[](#installation)

Grab the package via Composer

```
composer require tormjens/extended-mix

```

This package does not have auto-discovery enabled as the application it is built for loads it and modifies the config for it at runtime. To enable the package you either have to register it via your `config/app.php` or within a serviceprovider loaded in your "main module".

This example is taken out of the `core` module of my application.

```
public function register()
{
    $this->app->register(MixServiceProvider::class);

    config([
        'mix.driver.cdn' => [
            'include_vendor' => env('MIX_CDN_INCLUDE_VENDOR', false),
            'url' => env('MIX_CDN_URL', 'https://cdn.foo.com'),
            'format' => env('MIX_CDN_FORMAT', '{url}/{package}/{version}/{path}'),
        ]
    ]);
}
```

Getting the URL of an asset
---------------------------

[](#getting-the-url-of-an-asset)

It is actually very simple. Wherever you need the URL to an asset you'll simply use:

```
extendedMix('/css/app.css', 'foo/bar');
```

Behind the scenes this will pipe the requested file through a series of resolvers to figure out the URL:

1. It will check to see if the requested file can be requested via hot reloading (very neat locally), and then return the URL to the file with hot reloading enabled.
2. It will check whether there's a local copy of the file and the return the URL to a proxied asset.
3. It will check the CDN (if configured), and return the URL.

Also, it does support mix-manifest so you can version your assets.

For cases where some assets are in the manifest, and some not (when you've used the `copy`method), you can use the `variableAsset` function which will look for the asset locally first, then fallback to the CDN.

```
variableAsset('/images/someImage.png', 'foo/bar');
```

Proxied local assets
--------------------

[](#proxied-local-assets)

This package provides a convenient way of proxying assets stored locally via a route named `mix.show`. While this is very neat when testing locally, it is not ideal for production as it bootstraps the entire application just to serve a asset. You should consider adding a rule in your webserver that mimmicks this functionality.

CDN Assets
----------

[](#cdn-assets)

CDN is supported out of the box, but a convention is necessary to correctly display your assets. By default, we use the format `/{vendor}/{package}/{version}/{pathToAsset}` to append to your CDN url. That'll mean if your CDN domain is set to `https://cdn.foo.com` and you want to show get `/css/app.css` for the `foo/bar` package, which is installed with version 5.0, you will end up with: `https://cdn.foo.com/foo/bar/5.0/css/app.css`.

The format may be changed via the `mix.driver.cdn.format` config option. So if you wanted to omit the vendor you could set this to:

```
// config/mix.php
return [
    'driver' => [
        'cdn' => [
            'format' => '{url}/{package}/{version}/{path}'
        ]
    ]
];
```

Then it will read the URL as `https://cdn.foo.com/bar/5.0/css/app.css`.

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 92.3% 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.

###  Release Activity

Cadence

Every ~111 days

Recently: every ~82 days

Total

15

Last Release

544d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/16b2089f55ff5ab3154ef21caec78446d23b1515cc074d2d1c2bf184a9e64603?d=identicon)[tormjens](/maintainers/tormjens)

---

Top Contributors

[![tormjens](https://avatars.githubusercontent.com/u/3974889?v=4)](https://github.com/tormjens "tormjens (24 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![piperone](https://avatars.githubusercontent.com/u/351744?v=4)](https://github.com/piperone "piperone (1 commits)")

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/tormjens-extended-mix/health.svg)

```
[![Health](https://phpackages.com/badges/tormjens-extended-mix/health.svg)](https://phpackages.com/packages/tormjens-extended-mix)
```

PHPackages © 2026

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