{"id":17087899,"url":"https://github.com/staylor/minify","last_synced_at":"2026-05-05T14:07:53.981Z","repository":{"id":5331644,"uuid":"6516849","full_name":"staylor/minify","owner":"staylor","description":"Automagically combine your CSS and JS files","archived":false,"fork":false,"pushed_at":"2015-07-31T13:20:14.000Z","size":196,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-28T12:31:32.735Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/staylor.png","metadata":{"files":{"readme":"readme.txt","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-11-03T05:54:12.000Z","updated_at":"2015-07-30T18:16:05.000Z","dependencies_parsed_at":"2022-09-08T17:41:20.218Z","dependency_job_id":null,"html_url":"https://github.com/staylor/minify","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/staylor/minify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/staylor%2Fminify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/staylor%2Fminify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/staylor%2Fminify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/staylor%2Fminify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/staylor","download_url":"https://codeload.github.com/staylor/minify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/staylor%2Fminify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32652591,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T13:35:20.889Z","updated_at":"2026-05-05T14:07:53.961Z","avatar_url":"https://github.com/staylor.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"=== Minify ===\nContributors: wonderboymusic\nTags: assets, js, css, minify, performance\nRequires at least: 3.0\nTested up to: 3.4\nStable Tag: 0.2\n\nAutomagically concatenates JS and CSS files that are output in wp_head() and wp_footer()\n\n== Description ==\n\nSimilar to what we use on eMusic - this software is still experimental, but take a look!\n\nAutomagically concatenates JS and CSS files that are output in wp_head() and wp_footer() - stores / serves them from Memcached (if installed) or Database. In a load-balanced environment, the generation of flat files can be expensive and hard to distribute. Minify takes advantage of Memcached and Site Options / Transients to do the work once and share it among all servers in your cluster. File names are dynamically-generated to allow cache-busting of a CDN like Akamai that doesn't always cache-bust by query string.\n\nNew .htaccess rule!\n\u003ccode\u003eRewriteRule ^([_0-9a-zA-Z-]+)?/?wp-content/cache/minify-(.+)-(.*).(css|js)$ /wp-content/plugins/minify/make.php?hash=$2\u0026type=$4\u0026incr=$3\u0026site=$1 [L]\u003c/code\u003e\n\nNginx - nginx.conf rule\n\u003ccode\u003erewrite ^/([_0-9a-zA-Z-]+)?/?wp-content/cache/minify-(.+)-(.*).(css|js)$ /wp-content/plugins/minify/make.php?hash=$2\u0026type=$4\u0026incr=$3\u0026site=$1 last;\u003c/code\u003e\n\n== Installation ==\n\nYou MUST add this rewrite rule to your .htaccess file or httpd.conf file and then restart your server:\n\u003ccode\u003eRewriteRule ^([_0-9a-zA-Z-]+)?/?wp-content/cache/minify-(.+)-(.*).(css|js)$ /wp-content/plugins/minify/make.php?hash=$2\u0026type=$4\u0026incr=$3\u0026site=$1 [L]\u003c/code\u003e\n\nYou need to install Memcached on your servers and use Ryan's WP Object Cache backend in WordPress:\nhttp://wordpress.org/extend/plugins/memcached/\n\nIf you don't want to use Memcached: \n1) you're weird \n2) all of the action will happen in the database\n\n== Changelog ==\n\n= 0.1 =\n* Initial release\n\n= 0.1.1 =\n* Added a missing semicolon, props Robert\n\n= 0.2 =\n* change your .htaccess rule to: RewriteRule ^([_0-9a-zA-Z-]+)?/?wp-content/cache/minify-(.+)-(.*).(css|js)$ /wp-content/plugins/minify/make.php?hash=$2\u0026type=$4\u0026incr=$3\u0026site=$1 [L]\n\n\n== Upgrade Notice ==\n\n= 0.2 =\nUpgrade your .htaccess: RewriteRule ^([_0-9a-zA-Z-]+)?/?wp-content/cache/minify-(.+)-(.*).(css|js)$ /wp-content/plugins/minify/make.php?hash=$2\u0026type=$4\u0026incr=$3\u0026site=$1 [L]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstaylor%2Fminify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstaylor%2Fminify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstaylor%2Fminify/lists"}