From 6c2f1445bf46d552ed6ca7641b347019688d5e4e Mon Sep 17 00:00:00 2001 From: Nikita Sapogov Date: Wed, 6 Jul 2016 00:32:55 +0300 Subject: [PATCH] fixed composer.json and README.md because of new maintainer --- README.md | 12 +++++------- composer.json | 14 +++++++++++--- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6cdc061..a1f04aa 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -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 diff --git a/composer.json b/composer.json index 1c76a2c..5212105 100644 --- a/composer.json +++ b/composer.json @@ -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": "nwotnbm@gmail.com" + }, + { + "name": "Nikita Sapogov", + "email": "amstaffix@gmail.com" } ], "require": { "php": ">=5.3.3", - "kilte/pagination": "~1.1" + "amstaffix/pagination": "~1.1" }, "require-dev": { "silex/silex": "*",