https://github.com/bolt/thumbs
Thumbnail handler for Bolt Images
https://github.com/bolt/thumbs
bolt php thumbs
Last synced: about 1 month ago
JSON representation
Thumbnail handler for Bolt Images
- Host: GitHub
- URL: https://github.com/bolt/thumbs
- Owner: bolt
- Created: 2014-05-23T17:18:50.000Z (about 11 years ago)
- Default Branch: 3.x
- Last Pushed: 2023-02-27T09:15:54.000Z (over 2 years ago)
- Last Synced: 2025-04-29T15:06:05.111Z (about 1 month ago)
- Topics: bolt, php, thumbs
- Language: PHP
- Homepage:
- Size: 731 KB
- Stars: 12
- Watchers: 18
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Bolt Thumbs
===========Image Thumbnail handler for Bolt
--------------------------------### Installation
Bolt Thumbs is installed as a default dependency of Bolt. However, for use
independently it can be included in your Composer project:```bash
composer require bolt/thumbs:^3.4
```Should you want to work with the development branch(es), you can specficy those
as Composer requirements instead.To install the 3.x _development_ branch:
```bash
composer require bolt/thumbs:dev-3.x@dev
```Alternatively to install the master branch (which requires Silex 2):
```bash
composer require bolt/thumbs:dev-master@dev
```### Configuration
If you've already got a working installation of Bolt, you can safely skip this.
To use the Botl Thumbs service provider onto your Silex based application,
simply `->register()` the `\Bolt\Provider\ThumbnailsServiceProvider` class in
your registration phase, e.g.:```php
/** @var \Silex\Application $app */
$app->register(new \Bolt\Provider\ThumbnailsServiceProvider())
```