|
1 | 1 | { |
2 | | - "name": "laminas/laminas-cache-storage-adapter-apcu", |
3 | | - "description": "Laminas cache adapter for apcu", |
4 | | - "keywords": [ |
5 | | - "laminas", |
6 | | - "cache" |
7 | | - ], |
8 | | - "license": "BSD-3-Clause", |
9 | | - "require": { |
10 | | - "php": "^7.3 || ~8.0.0 || ~8.1.0", |
11 | | - "ext-apcu": "^5.1.10", |
12 | | - "laminas/laminas-cache": "^3.0" |
13 | | - }, |
14 | | - "provide": { |
15 | | - "laminas/laminas-cache-storage-implementation": "1.0" |
16 | | - }, |
17 | | - "require-dev": { |
18 | | - "laminas/laminas-cache": "3.0.x-dev || ^3.0", |
19 | | - "laminas/laminas-cache-storage-adapter-test": "2.0.x-dev || ^2.0", |
20 | | - "laminas/laminas-coding-standard": "~2.3.0", |
21 | | - "psalm/plugin-phpunit": "^0.17.0", |
22 | | - "vimeo/psalm": "^4.9" |
23 | | - }, |
24 | | - "config": { |
25 | | - "sort-packages": true, |
26 | | - "platform": { |
27 | | - "php": "7.3.99" |
| 2 | + "name": "laminas/laminas-cache-storage-adapter-apcu", |
| 3 | + "description": "Laminas cache adapter for apcu", |
| 4 | + "keywords": [ |
| 5 | + "laminas", |
| 6 | + "cache" |
| 7 | + ], |
| 8 | + "license": "BSD-3-Clause", |
| 9 | + "require": { |
| 10 | + "php": "^7.4 || ~8.0.0 || ~8.1.0", |
| 11 | + "ext-apcu": "^5.1.10", |
| 12 | + "laminas/laminas-cache": "^3.0" |
28 | 13 | }, |
29 | | - "allow-plugins": { |
30 | | - "dealerdirect/phpcodesniffer-composer-installer": true |
31 | | - } |
32 | | - }, |
33 | | - "extra": { |
34 | | - "laminas": { |
35 | | - "config-provider": "Laminas\\Cache\\Storage\\Adapter\\Apcu\\ConfigProvider", |
36 | | - "module": "Laminas\\Cache\\Storage\\Adapter\\Apcu" |
37 | | - } |
38 | | - }, |
39 | | - "autoload": { |
40 | | - "psr-4": { |
41 | | - "Laminas\\Cache\\Storage\\Adapter\\": "src/" |
42 | | - } |
43 | | - }, |
44 | | - "autoload-dev": { |
45 | | - "psr-4": { |
46 | | - "LaminasTest\\Cache\\Storage\\Adapter\\": [ |
47 | | - "test/unit", |
48 | | - "test/integration" |
49 | | - ] |
| 14 | + "provide": { |
| 15 | + "laminas/laminas-cache-storage-implementation": "1.0" |
| 16 | + }, |
| 17 | + "require-dev": { |
| 18 | + "laminas/laminas-cache": "3.0.x-dev || ^3.0", |
| 19 | + "laminas/laminas-cache-storage-adapter-test": "2.0.x-dev || ^2.0", |
| 20 | + "laminas/laminas-coding-standard": "~2.4.0", |
| 21 | + "psalm/plugin-phpunit": "^0.17.0", |
| 22 | + "vimeo/psalm": "^4.26" |
| 23 | + }, |
| 24 | + "config": { |
| 25 | + "sort-packages": true, |
| 26 | + "platform": { |
| 27 | + "php": "7.4.99" |
| 28 | + }, |
| 29 | + "allow-plugins": { |
| 30 | + "dealerdirect/phpcodesniffer-composer-installer": true |
| 31 | + } |
| 32 | + }, |
| 33 | + "extra": { |
| 34 | + "laminas": { |
| 35 | + "config-provider": "Laminas\\Cache\\Storage\\Adapter\\Apcu\\ConfigProvider", |
| 36 | + "module": "Laminas\\Cache\\Storage\\Adapter\\Apcu" |
| 37 | + } |
| 38 | + }, |
| 39 | + "autoload": { |
| 40 | + "psr-4": { |
| 41 | + "Laminas\\Cache\\Storage\\Adapter\\": "src/" |
| 42 | + } |
| 43 | + }, |
| 44 | + "autoload-dev": { |
| 45 | + "psr-4": { |
| 46 | + "LaminasTest\\Cache\\Storage\\Adapter\\": [ |
| 47 | + "test/unit", |
| 48 | + "test/integration" |
| 49 | + ] |
| 50 | + } |
| 51 | + }, |
| 52 | + "scripts": { |
| 53 | + "cs-check": "phpcs", |
| 54 | + "cs-fix": "phpcbf", |
| 55 | + "test": "phpunit --colors=always", |
| 56 | + "static-analysis": "psalm --shepherd --stats", |
| 57 | + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" |
| 58 | + }, |
| 59 | + "support": { |
| 60 | + "issues": "https://github.com/laminas/laminas-cache-storage-adapter-apcu/issues", |
| 61 | + "forum": "https://discourse.laminas.dev/", |
| 62 | + "source": "https://github.com/laminas/laminas-cache-storage-adapter-apcu", |
| 63 | + "docs": "https://docs.laminas.dev/laminas-cache-storage-adapter-apcu/", |
| 64 | + "rss": "https://github.com/laminas/laminas-cache-storage-adapter-apcu/releases.atom" |
50 | 65 | } |
51 | | - }, |
52 | | - "scripts": { |
53 | | - "cs-check": "phpcs", |
54 | | - "cs-fix": "phpcbf", |
55 | | - "test": "phpunit --colors=always", |
56 | | - "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" |
57 | | - }, |
58 | | - "support": { |
59 | | - "issues": "https://github.com/laminas/laminas-cache-storage-adapter-apcu/issues", |
60 | | - "forum": "https://discourse.laminas.dev/", |
61 | | - "source": "https://github.com/laminas/laminas-cache-storage-adapter-apcu", |
62 | | - "docs": "https://docs.laminas.dev/laminas-cache-storage-adapter-apcu/", |
63 | | - "rss": "https://github.com/laminas/laminas-cache-storage-adapter-apcu/releases.atom" |
64 | | - } |
65 | 66 | } |
0 commit comments