PHPackages                             angel/galleries - 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. angel/galleries

ActiveLibrary

angel/galleries
===============

016PHP

Since Aug 26Pushed 11y ago1 watchersCompare

[ Source](https://github.com/CharlesAV/angel-galleries)[ Packagist](https://packagist.org/packages/angel/galleries)[ RSS](/packages/angel-galleries/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Angel Galleries
===============

[](#angel-galleries)

This is a galleries module for the [Angel CMS](https://github.com/JVMartin/angel).

This module allows you to create multiple 'galleries', each with their own collection of images.

Installation
------------

[](#installation)

Add the following requirements to your `composer.json` file:

```
"require": {
	"angel/galleries": "dev-master"
},
```

Issue a `composer update` to install the package.

Add the following service provider to your `providers` array in `app/config/app.php`:

```
'Angel\Galleries\GalleriesServiceProvider',
'Intervention\Image\ImageServiceProvider'
```

Add the following alias to your `aliases` array in `app/config/app.php`:

```
'Image' 		  => 'Intervention\Image\Facades\Image'
```

Issue the following commands:

```
php artisan migrate --package="angel/galleries"  # Run the migrations
php artisan asset:publish                        # Publish the assets
php artisan config:publish angel/galleries       # Publish the config
```

Open up your `app/config/packages/angel/core/config.php` and add the galleries routes to the `menu` array:

```
'menu' => array(
	'Pages'     => 'pages',
	'Menus'     => 'menus',
	'Galleries' => 'galleries', //  'users',
	'Settings'  => 'settings'
),
```

...and the menu-linkable models to the `linkable_models` array:

```
'linkable_models' => array(
	'Page'             => 'pages',
	'Gallery'          => 'galleries', //  array(
		't' => array(
			'width' => 75,
			'height' => 75,
			'crop' => 1,
			'enlarge' => 1,
			'path' => '/uploads/images/t/'
		),
		's' => array(
			'width' => 150,
			'height' => 150,
			'crop' => 1,
			'enlarge' => 1,
			'path' => '/uploads/images/s/'
		),
		'm' => array(
			'width' => 300,
			'height' => 300,
			'crop' => 0,
			'enlarge' => 1,
			'path' => '/uploads/images/m/'
		),
		'l' => array(
			'width' => 600,
			'height' => 600,
			'crop' => 0,
			'enlarge' => 0,
			'path' => '/uploads/images/l/'
		)
	)
)
```

Finally, make sure you actually **create the directories where the thumbnail images will be saved**. These paths are relative to the /public/ folder (ex: /public/uploads/images/t/).

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

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/f4d03d93316ae2825020413213f438de7e1cf87138daa5aaff8c4605b4106436?d=identicon)[CharlesAV](/maintainers/CharlesAV)

---

Top Contributors

[![CharlesAV](https://avatars.githubusercontent.com/u/8173111?v=4)](https://github.com/CharlesAV "CharlesAV (7 commits)")

### Embed Badge

![Health badge](/badges/angel-galleries/health.svg)

```
[![Health](https://phpackages.com/badges/angel-galleries/health.svg)](https://phpackages.com/packages/angel-galleries)
```

PHPackages © 2026

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