Skip to content

Commit

Permalink
Update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-novotny committed Jan 4, 2020
1 parent 921be95 commit cc540c6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 21 deletions.
31 changes: 15 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Project name
# Laravel cache module with mcrouter support

**Created as part of [inspishop][link-inspishop] e-commerce platform by [inspirum][link-inspirum] team.**

Expand All @@ -25,14 +25,13 @@
## System requirements

* [PHP 7.1+](http://php.net/releases/7_1_0.php)
* [ext-curl](http://php.net/curl)
* [ext-json](http://php.net/json)
* [ext-curl](http://php.net/memcached)


## Installation

```bash
$ composer require inspirum/project-name
$ composer require inspirum/cache
```


Expand Down Expand Up @@ -75,25 +74,25 @@ If you discover any security related issues, please email tomas.novotny@inspirum
The MIT License (MIT). Please see [License File][link-licence] for more information.


[ico-license]: https://img.shields.io/github/license/inspirum/project-name.svg?style=flat-square&colorB=blue
[ico-travis]: https://img.shields.io/travis/inspirum/project-name/master.svg?branch=master&style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/inspirum/project-name/master.svg?style=flat-square
[ico-code-quality]: https://img.shields.io/scrutinizer/g/inspirum/project-name.svg?style=flat-square
[ico-packagist-stable]: https://img.shields.io/packagist/v/inspirum/project-name.svg?style=flat-square&colorB=blue
[ico-packagist-download]: https://img.shields.io/packagist/dt/inspirum/project-name.svg?style=flat-square&colorB=blue
[ico-license]: https://img.shields.io/github/license/inspirum/cache-php-laravel.svg?style=flat-square&colorB=blue
[ico-travis]: https://img.shields.io/travis/inspirum/cache-php-laravel/master.svg?branch=master&style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/inspirum/cache-php-laravel/master.svg?style=flat-square
[ico-code-quality]: https://img.shields.io/scrutinizer/g/inspirum/cache-php-laravel.svg?style=flat-square
[ico-packagist-stable]: https://img.shields.io/packagist/v/inspirum/cache.svg?style=flat-square&colorB=blue
[ico-packagist-download]: https://img.shields.io/packagist/dt/inspirum/cache.svg?style=flat-square&colorB=blue
[ico-phpstan]: https://img.shields.io/badge/style-level%207-brightgreen.svg?style=flat-square&label=phpstan

[link-author]: https://github.com/inspirum
[link-contributors]: https://github.com/inspirum/project-name/contributors
[link-contributors]: https://github.com/inspirum/cache-php-laravel/contributors
[link-licence]: ./LICENSE.md
[link-changelog]: ./CHANGELOG.md
[link-contributing]: ./docs/CONTRIBUTING.md
[link-code-of-conduct]: ./docs/CODE_OF_CONDUCT.md
[link-travis]: https://travis-ci.org/inspirum/project-name
[link-scrutinizer]: https://scrutinizer-ci.com/g/inspirum/project-name/code-structure
[link-code-quality]: https://scrutinizer-ci.com/g/inspirum/project-name
[link-travis]: https://travis-ci.org/inspirum/cache-php-laravel
[link-scrutinizer]: https://scrutinizer-ci.com/g/inspirum/cache-php-laravel/code-structure
[link-code-quality]: https://scrutinizer-ci.com/g/inspirum/cache-php-laravel
[link-inspishop]: https://www.inspishop.cz/
[link-inspirum]: https://www.inspirum.cz/
[link-packagist-stable]: https://packagist.org/packages/inspirum/project-name
[link-packagist-download]: https://packagist.org/packages/inspirum/project-name
[link-packagist-stable]: https://packagist.org/packages/inspirum/cache
[link-packagist-download]: https://packagist.org/packages/inspirum/cache
[link-phpstan]: https://github.com/phpstan/phpstan
13 changes: 8 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "inspirum/<project-name>",
"name": "inspirum/cache",
"description": "",
"keywords": [
"inspirum",
Expand All @@ -9,7 +9,7 @@
"mcrouter",
"cache"
],
"homepage": "https://github.com/inspirum/<project-name>",
"homepage": "https://github.com/inspirum/cache-php-laravel",
"license": "MIT",
"type": "library",
"authors": [
Expand All @@ -20,7 +20,10 @@
}
],
"require": {
"php": ">=7.1.3"
"ext-memcached": "*",
"php": ">=7.1.3",
"illuminate/cache": "5.6.*|5.7.*|5.8.*|^6.0",
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0",
Expand All @@ -31,12 +34,12 @@
},
"autoload": {
"psr-4": {
"Inspirum\\Project\\": "src"
"Inspirum\\Cache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Inspirum\\Project\\Tests\\": "tests"
"Inspirum\\Cache\\Tests\\": "tests"
}
},
"scripts": {
Expand Down

0 comments on commit cc540c6

Please sign in to comment.