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/doctrine/inflector/composer.json | |
parent | 94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff) | |
download | AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip |
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/doctrine/inflector/composer.json')
-rw-r--r-- | vendor/doctrine/inflector/composer.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/vendor/doctrine/inflector/composer.json b/vendor/doctrine/inflector/composer.json new file mode 100644 index 0000000..91d7707 --- /dev/null +++ b/vendor/doctrine/inflector/composer.json | |||
@@ -0,0 +1,41 @@ | |||
1 | { | ||
2 | "name": "doctrine/inflector", | ||
3 | "type": "library", | ||
4 | "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", | ||
5 | "keywords": ["php", "strings", "words", "manipulation", "inflector", "inflection", "uppercase", "lowercase", "singular", "plural"], | ||
6 | "homepage": "https://www.doctrine-project.org/projects/inflector.html", | ||
7 | "license": "MIT", | ||
8 | "authors": [ | ||
9 | {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"}, | ||
10 | {"name": "Roman Borschel", "email": "roman@code-factory.org"}, | ||
11 | {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"}, | ||
12 | {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}, | ||
13 | {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"} | ||
14 | ], | ||
15 | "require": { | ||
16 | "php": "^7.2 || ^8.0" | ||
17 | }, | ||
18 | "require-dev": { | ||
19 | "doctrine/coding-standard": "^11.0", | ||
20 | "phpstan/phpstan": "^1.8", | ||
21 | "phpstan/phpstan-phpunit": "^1.1", | ||
22 | "phpstan/phpstan-strict-rules": "^1.3", | ||
23 | "phpunit/phpunit": "^8.5 || ^9.5", | ||
24 | "vimeo/psalm": "^4.25 || ^5.4" | ||
25 | }, | ||
26 | "autoload": { | ||
27 | "psr-4": { | ||
28 | "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" | ||
29 | } | ||
30 | }, | ||
31 | "autoload-dev": { | ||
32 | "psr-4": { | ||
33 | "Doctrine\\Tests\\Inflector\\": "tests/Doctrine/Tests/Inflector" | ||
34 | } | ||
35 | }, | ||
36 | "config": { | ||
37 | "allow-plugins": { | ||
38 | "dealerdirect/phpcodesniffer-composer-installer": true | ||
39 | } | ||
40 | } | ||
41 | } | ||