定制 dongasai/laravel-psr-6-cache 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dongasai/laravel-psr-6-cache

最新稳定版本:1.0.1

Composer 安装命令:

composer require dongasai/laravel-psr-6-cache

包简介

A PHP service that allows you to easily communicate with football-data.org apis using Laravel.

README 文档

README

Latest Version on Packagist Minimum PHP Version License Total Downloads

Fork from https://github.com/einar-hansen/laravel-psr-6-cache

This package adds PSR-6 cache support to Laravel 5.8 and above. Laravel 6 has PSR-6 support build in which can be used through the cache.psr6 container alias. You should install symfony cache if you go down this route.

composer require symfony/cache

Usage

To start using a Psr\Cache\CacheItemPoolInterface typed implementation that stores data in Laravel's configured cache, add this to a service provider:

use EinarHansen\Cache\CacheItemPool;
use Illuminate\Contracts\Cache\Repository;
use Psr\Cache\CacheItemPoolInterface;

$this->app->singleton(CacheItemPoolInterface::class, function ($app) {
    return new CacheItemPool($app->make(Repository::class));
});

Right now you're all set to start injecting CacheItemPoolInterface'd everywhere you need it.

Install

In order to install it via composer you should run this command:

composer require dongasai/laravel-psr-6-cache

Testing

# Install packages
docker run --rm \
    -v $(pwd):/var/www/html \
    -w /var/www/html \
    laravelsail/php80-composer:latest \
    composer install

# Run code style formatting and static analysis
docker run -it -v $(pwd):/app -w /app php:8.0-alpine vendor/bin/pint src
docker run -it -v $(pwd):/app -w /app php:8.0-alpine vendor/bin/phpstan --level=9 analyse

Credits

This package is based on the package madewithlove/illuminate-psr-cache-bridge. It's modified to suit my preferences and is requiring PHP8.0.

About

Einar Hansen is a developer based in Oslo, Norway. You'll find more information about me on my website.

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 12
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-08-03