Skip to content

Commit

Permalink
Update meta files and license
Browse files Browse the repository at this point in the history
  • Loading branch information
adamale committed Jun 6, 2020
1 parent 59a170f commit 667cccd
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 17 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
build
vendor
docs/_site
docs/_site
.idea
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4

cache:
directories:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Changelog

All notable changes to Glide can be found on [GitHub](https://github.com/thephpleague/glide/releases).
You can view the changes on [GitHub](https://github.com/adamale/glide/commits/master).
All notable changes to pre-forked version of Glide can be also found on [GitHub](https://github.com/thephpleague/glide/releases).
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Contributions are **welcome** and will be fully **credited**.

We accept contributions via Pull Requests on [Github](https://github.com/thephpleague/glide).
We accept contributions via Pull Requests on [Github](https://github.com/adamale/glide).

## Pull Requests

Expand Down
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2015 Jonathan Reinink <jonathan@reinink.ca>
Copyright (c) 2020 Adam Aleksak <kontakt@adamaleksak.pl>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
32 changes: 20 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# Glide

[![Author](http://img.shields.io/badge/author-@reinink-blue.svg?style=flat-square)](https://twitter.com/reinink)
[![Source Code](http://img.shields.io/badge/source-thephpleague/glide-blue.svg?style=flat-square)](https://github.com/thephpleague/glide)
[![Latest Version](https://img.shields.io/github/release/thephpleague/glide.svg?style=flat-square)](https://github.com/thephpleague/glide/releases)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](https://github.com/thephpleague/glide/blob/master/LICENSE)
[![Build Status](https://img.shields.io/travis/thephpleague/glide/master.svg?style=flat-square)](https://travis-ci.org/thephpleague/glide)
[![HHVM Status](https://img.shields.io/hhvm/league/glide.svg?style=flat-square)](http://hhvm.h4cc.de/package/league/glide)
[![Coverage Status](https://img.shields.io/scrutinizer/coverage/g/thephpleague/glide.svg?style=flat-square)](https://scrutinizer-ci.com/g/thephpleague/glide/code-structure)
[![Quality Score](https://img.shields.io/scrutinizer/g/thephpleague/glide.svg?style=flat-square)](https://scrutinizer-ci.com/g/thephpleague/glide)
[![Total Downloads](https://img.shields.io/packagist/dt/league/glide.svg?style=flat-square)](https://packagist.org/packages/league/glide)
[![Forked and expanded by](http://img.shields.io/badge/author-@adamale-blue.svg?style=flat-square)](https://github.com/adamale)
[![Source Code](http://img.shields.io/badge/source-adamale/glide-blue.svg?style=flat-square)](https://github.com/adamale/glide)
[![Latest Version](https://img.shields.io/github/release/adamale/glide.svg?style=flat-square)](https://github.com/adamale/glide/releases)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](https://github.com/adamale/glide/blob/master/LICENSE)
[![Build Status](https://img.shields.io/travis/adamale/glide/master.svg?style=flat-square)](https://travis-ci.org/adamale/glide)
[[![Total Downloads](https://img.shields.io/packagist/dt/adamale/glide.svg?style=flat-square)](https://packagist.org/packages/adamale/glide)

Glide is a wonderfully easy on-demand image manipulation library written in PHP. Its straightforward API is exposed via HTTP, similar to cloud image processing services like [Imgix](http://www.imgix.com/) and [Cloudinary](http://cloudinary.com/). Glide leverages powerful libraries like [Intervention Image](http://image.intervention.io/) (for image handling and manipulation) and [Flysystem](http://flysystem.thephpleague.com/) (for file system abstraction).

Expand All @@ -30,14 +28,23 @@ Glide is a wonderfully easy on-demand image manipulation library written in PHP.

## Documentation

Full documentation can be found at [glide.thephpleague.com](http://glide.thephpleague.com).
Full documentation (except for the expanded parts) can be found at [glide.thephpleague.com](http://glide.thephpleague.com).

## Expansion

You can now keep the original image dimension (either width or height) when it is missing from the parameters by using od=1 parameter (*od* stands for *original dimension*).
It is especially useful on cropping an image, because it lets you keep one dimension intact (default behaviour is to scale the missing dimension appropriately).

```http
?w=100&od=1&fit=crop
```

## Installation

Glide is available via Composer:

```bash
$ composer require league/glide
$ composer require adamale/glide
```

## Testing
Expand All @@ -49,7 +56,7 @@ $ phpunit
```
## Contributing

Contributions are welcome and will be fully credited. Please see [CONTRIBUTING](https://github.com/thephpleague/glide/blob/master/CONTRIBUTING.md) for details.
Contributions are welcome and will be fully credited. Please see [CONTRIBUTING](https://github.com/adamale/glide/blob/master/CONTRIBUTING.md) for details.

## Security

Expand All @@ -59,7 +66,8 @@ If you discover any security related issues, please email jonathan@reinink.ca in

- [Jonathan Reinink](https://github.com/reinink)
- [All Contributors](https://github.com/thephpleague/glide/contributors)
- [Adam Aleksak](https://github.com/adamale)

## License

The MIT License (MIT). Please see [LICENSE](https://github.com/thephpleague/glide/blob/master/LICENSE) for more information.
The MIT License (MIT). Please see [LICENSE](https://github.com/adamale/glide/blob/master/LICENSE) for more information.
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "league/glide",
"name": "adamale/glide",
"description": "Wonderfully easy on-demand image manipulation library with an HTTP based API.",
"keywords": [
"league",
Expand All @@ -11,13 +11,18 @@
"imagemagick",
"imagick"
],
"homepage": "http://glide.thephpleague.com",
"homepage": "https://github.com/adamale/glide",
"license": "MIT",
"authors" : [
{
"name": "Jonathan Reinink",
"email": "jonathan@reinink.ca",
"homepage": "http://reinink.ca"
},
{
"name": "Adam Aleksak",
"email": "kontakt@adamaleksak.pl",
"homepage": "http://adamaleksak.pl"
}
],
"require": {
Expand Down

0 comments on commit 667cccd

Please sign in to comment.