|
1 | 1 | { |
2 | 2 | "name": "doctrine/inflector", |
3 | | - "type": "library", |
4 | 3 | "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 | 4 | "license": "MIT", |
| 5 | + "type": "library", |
| 6 | + "keywords": [ |
| 7 | + "php", |
| 8 | + "strings", |
| 9 | + "words", |
| 10 | + "manipulation", |
| 11 | + "inflector", |
| 12 | + "inflection", |
| 13 | + "uppercase", |
| 14 | + "lowercase", |
| 15 | + "singular", |
| 16 | + "plural" |
| 17 | + ], |
8 | 18 | "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"} |
| 19 | + { |
| 20 | + "name": "Guilherme Blanco", |
| 21 | + "email": "guilhermeblanco@gmail.com" |
| 22 | + }, |
| 23 | + { |
| 24 | + "name": "Roman Borschel", |
| 25 | + "email": "roman@code-factory.org" |
| 26 | + }, |
| 27 | + { |
| 28 | + "name": "Benjamin Eberlei", |
| 29 | + "email": "kontakt@beberlei.de" |
| 30 | + }, |
| 31 | + { |
| 32 | + "name": "Jonathan Wage", |
| 33 | + "email": "jonwage@gmail.com" |
| 34 | + }, |
| 35 | + { |
| 36 | + "name": "Johannes Schmitt", |
| 37 | + "email": "schmittjoh@gmail.com" |
| 38 | + } |
14 | 39 | ], |
| 40 | + "homepage": "https://www.doctrine-project.org/projects/inflector.html", |
15 | 41 | "require": { |
16 | 42 | "php": "^7.2 || ^8.0" |
17 | 43 | }, |
|
20 | 46 | "phpstan/phpstan": "^1.8", |
21 | 47 | "phpstan/phpstan-phpunit": "^1.1", |
22 | 48 | "phpstan/phpstan-strict-rules": "^1.3", |
23 | | - "phpunit/phpunit": "^8.5 || ^9.5", |
24 | | - "vimeo/psalm": "^4.25 || ^5.4" |
| 49 | + "phpunit/phpunit": "^8.5 || ^9.5" |
25 | 50 | }, |
26 | 51 | "autoload": { |
27 | 52 | "psr-4": { |
28 | | - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" |
| 53 | + "Doctrine\\Inflector\\": "src" |
29 | 54 | } |
30 | 55 | }, |
31 | 56 | "autoload-dev": { |
32 | 57 | "psr-4": { |
33 | | - "Doctrine\\Tests\\Inflector\\": "tests/Doctrine/Tests/Inflector" |
| 58 | + "Doctrine\\Tests\\Inflector\\": "tests" |
34 | 59 | } |
35 | 60 | }, |
36 | 61 | "config": { |
37 | 62 | "allow-plugins": { |
38 | 63 | "dealerdirect/phpcodesniffer-composer-installer": true |
39 | | - } |
| 64 | + }, |
| 65 | + "sort-packages": true |
40 | 66 | } |
41 | 67 | } |
0 commit comments