bazalt / thumbs
Installs: 10 515
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 5
Forks: 2
Open Issues: 0
Requires
- imagine/imagine: *
- twig/twig: *
This package is not auto-updated.
Last update: 2025-01-18 16:54:18 UTC
README
Install via composer
php composer require bazalt/thumbs
Or just add this config to your composer.json
{
"require": {
"bazalt/thumbs": "dev-master"
}
}
Nginx:
location /static/ {
root /www/public;
try_files $uri /index.php?file=$uri;
}
Apache:
RewriteCond %{REQUEST_URI} ^(/static/)
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$ thumb.php?file=$1 [L]