Skip to content

Commit

Permalink
Craft 3 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Feb 10, 2018
1 parent 99799f7 commit b37d792
Show file tree
Hide file tree
Showing 61 changed files with 4,144 additions and 1,868 deletions.
1 change: 1 addition & 0 deletions .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
.idea
.project
.settings
.map
*.esproj
*.sublime-workspace
*.sublime-project
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## 2.0.0 - 2018-02-10

### Added
- Craft 3 initial release.

9 changes: 9 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
The MIT License (MIT)

Copyright (c) 2017 Verbb

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14 changes: 14 additions & 0 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@

Image Resizer is a Craft plugin that resizes your assets when they are uploaded. This allows huge images to be resized so as not to use up unnecessary disk space, but still kept at a reasonable resolution. This plugin is not a replacement for using image transforms throughout your site.

## Download

While Craft 3 is still in beta, you'll need to use Composer to download and install the plugin.

1. Open your terminal and go to your Craft project:

cd /path/to/project

2. Then tell Composer to load the plugin:

composer require verbb/image-resizer

3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Image Resizer.

## Documentation

Visit the [Image Resizer Plugin page](https://verbb.io/craft-plugins/image-resizer) for all documentation, guides, pricing and developer resources.
Expand Down
161 changes: 0 additions & 161 deletions changelog.json

This file was deleted.

53 changes: 53 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "verbb/image-resizer",
"description": "Image Resizer is a Craft plugin that resizes your assets when they are uploaded.",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"example"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/verbb/image-resizer/issues?state=open",
"source": "https://github.com/verbb/image-resizer",
"docs": "https://github.com/verbb/image-resizer",
"rss": "https://github.com/verbb/image-resizer/commits/v2.atom"
},
"license": "MIT",
"authors": [
{
"name": "Verbb",
"homepage": "https://verbb.io"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"lsolesen/pel": "^0.9.6"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"verbb\\imageresizer\\": "src/"
}
},
"extra": {
"name": "Image Resizer",
"handle": "image-resizer",
"description": "Image Resizer resizes your assets when they are uploaded.",
"schemaVersion": "2.0.0",
"hasCpSettings": true,
"hasCpSection": false,
"documentationUrl": "https://github.com/verbb/image-resizer",
"changelogUrl": "https://raw.githubusercontent.com/verbb/image-resizer/craft-3/CHANGELOG.md",
"class": "verbb\\imageresizer\\ImageResizer"
}
}
Loading

0 comments on commit b37d792

Please sign in to comment.