Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Commit

Permalink
fixed composer.json and README.md because of new maintainer
Browse files Browse the repository at this point in the history
  • Loading branch information
AmsTaFFix committed Jul 5, 2016
1 parent 02e79f8 commit 6c2f144
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# SilexPagination

**This project is looking for a maintainer. Please get in touch with [nwotnbm at gmail].**
A simple [pagination](https://github.com/AmsTaFFix/pagination) provider for [Silex](http://silex.sensiolabs.org)

A simple [pagination](https://github.com/Kilte/pagination) provider for [Silex](http://silex.sensiolabs.org)

[![Downloads](https://img.shields.io/packagist/dt/kilte/silex-pagination.svg?style=flat-square)](https://packagist.org/packages/kilte/silex-pagination)
[![License](https://img.shields.io/packagist/l/kilte/silex-pagination.svg?style=flat-square)](http://opensource.org/licenses/MIT)
[![Downloads](https://img.shields.io/packagist/dt/amstaffix/silex-pagination.svg?style=flat-square)](https://packagist.org/packages/amstaffix/silex-pagination)
[![License](https://img.shields.io/packagist/l/amstaffix/silex-pagination.svg?style=flat-square)](http://opensource.org/licenses/MIT)

## Requirements

Expand All @@ -18,7 +16,7 @@ $app->register(new \Kilte\Silex\Pagination\PaginationServiceProvider);
$pages = $app['pagination'](100, 500);
```

More information available [here](https://github.com/Kilte/pagination)
More information available [here](https://github.com/AmsTaFFix/pagination)

### Options

Expand Down Expand Up @@ -75,7 +73,7 @@ $ vendor/bin/phpunit

Do not forget merge upstream changes:

git remote add upstream https://github.com/Kilte/silex-pagination
git remote add upstream https://github.com/AmsTaFFix/silex-pagination
git checkout master
git pull upstream
git push origin master
Expand Down
14 changes: 11 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
{
"name": "kilte/silex-pagination",
"name": "amstaffix/silex-pagination",
"type": "library",
"license": "MIT",
"description": "PaginationServiceProvider for Silex micro framework",
"keywords": ["silex", "pagination", "PaginationServiceProvider"],
"keywords": [
"silex",
"pagination",
"PaginationServiceProvider"
],
"authors": [
{
"name": "Kilte Leichnam",
"email": "[email protected]"
},
{
"name": "Nikita Sapogov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"kilte/pagination": "~1.1"
"amstaffix/pagination": "~1.1"
},
"require-dev": {
"silex/silex": "*",
Expand Down

0 comments on commit 6c2f144

Please sign in to comment.