diff options
author | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
---|---|---|
committer | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
commit | bf6655a534a6775d30cafa67bd801276bda1d98d (patch) | |
tree | c6381e3f6c81c33eab72508f410b165ba05f7e9c /vendor/symfony/cache/composer.json | |
parent | 94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff) | |
download | AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip |
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/symfony/cache/composer.json')
-rw-r--r-- | vendor/symfony/cache/composer.json | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/vendor/symfony/cache/composer.json b/vendor/symfony/cache/composer.json new file mode 100644 index 0000000..d537037 --- /dev/null +++ b/vendor/symfony/cache/composer.json | |||
@@ -0,0 +1,60 @@ | |||
1 | { | ||
2 | "name": "symfony/cache", | ||
3 | "type": "library", | ||
4 | "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", | ||
5 | "keywords": ["caching", "psr6"], | ||
6 | "homepage": "https://symfony.com", | ||
7 | "license": "MIT", | ||
8 | "authors": [ | ||
9 | { | ||
10 | "name": "Nicolas Grekas", | ||
11 | "email": "p@tchwork.com" | ||
12 | }, | ||
13 | { | ||
14 | "name": "Symfony Community", | ||
15 | "homepage": "https://symfony.com/contributors" | ||
16 | } | ||
17 | ], | ||
18 | "provide": { | ||
19 | "psr/cache-implementation": "2.0|3.0", | ||
20 | "psr/simple-cache-implementation": "1.0|2.0|3.0", | ||
21 | "symfony/cache-implementation": "1.1|2.0|3.0" | ||
22 | }, | ||
23 | "require": { | ||
24 | "php": ">=8.2", | ||
25 | "psr/cache": "^2.0|^3.0", | ||
26 | "psr/log": "^1.1|^2|^3", | ||
27 | "symfony/cache-contracts": "^2.5|^3", | ||
28 | "symfony/deprecation-contracts": "^2.5|^3.0", | ||
29 | "symfony/service-contracts": "^2.5|^3", | ||
30 | "symfony/var-exporter": "^6.4|^7.0" | ||
31 | }, | ||
32 | "require-dev": { | ||
33 | "cache/integration-tests": "dev-master", | ||
34 | "doctrine/dbal": "^3.6|^4", | ||
35 | "predis/predis": "^1.1|^2.0", | ||
36 | "psr/simple-cache": "^1.0|^2.0|^3.0", | ||
37 | "symfony/config": "^6.4|^7.0", | ||
38 | "symfony/dependency-injection": "^6.4|^7.0", | ||
39 | "symfony/filesystem": "^6.4|^7.0", | ||
40 | "symfony/http-kernel": "^6.4|^7.0", | ||
41 | "symfony/messenger": "^6.4|^7.0", | ||
42 | "symfony/var-dumper": "^6.4|^7.0" | ||
43 | }, | ||
44 | "conflict": { | ||
45 | "doctrine/dbal": "<3.6", | ||
46 | "symfony/dependency-injection": "<6.4", | ||
47 | "symfony/http-kernel": "<6.4", | ||
48 | "symfony/var-dumper": "<6.4" | ||
49 | }, | ||
50 | "autoload": { | ||
51 | "psr-4": { "Symfony\\Component\\Cache\\": "" }, | ||
52 | "classmap": [ | ||
53 | "Traits/ValueWrapper.php" | ||
54 | ], | ||
55 | "exclude-from-classmap": [ | ||
56 | "/Tests/" | ||
57 | ] | ||
58 | }, | ||
59 | "minimum-stability": "dev" | ||
60 | } | ||