|
1 | 1 | { |
2 | | - "name": "dunglas/php-property-info", |
3 | | - "type": "library", |
4 | | - "description": "Retrieve type and description of PHP properties using various sources ", |
5 | | - "keywords": [ |
6 | | - "property", |
7 | | - "type", |
8 | | - "PHPDoc", |
9 | | - "symfony", |
10 | | - "validator", |
11 | | - "doctrine" |
12 | | - ], |
13 | | - "homepage": "http://dunglas.fr", |
14 | | - "license": "MIT", |
15 | | - "authors": [ |
16 | | - { |
17 | | - "name": "Kévin Dunglas", |
18 | | - |
| 2 | + "name": "dunglas/php-property-info", |
| 3 | + "type": "library", |
| 4 | + "description": "Retrieve type and description of PHP properties using various sources ", |
| 5 | + "keywords": [ |
| 6 | + "property", |
| 7 | + "type", |
| 8 | + "PHPDoc", |
| 9 | + "symfony", |
| 10 | + "validator", |
| 11 | + "doctrine" |
| 12 | + ], |
| 13 | + "homepage": "http://dunglas.fr", |
| 14 | + "license": "MIT", |
| 15 | + "authors": [ |
| 16 | + { |
| 17 | + "name": "Kévin Dunglas", |
| 18 | + |
| 19 | + } |
| 20 | + ], |
| 21 | + "autoload": { |
| 22 | + "psr-4": { |
| 23 | + "PropertyInfo\\": "src/PropertyInfo" |
| 24 | + } |
| 25 | + }, |
| 26 | + "autoload-dev": { |
| 27 | + "psr-4": { |
| 28 | + "PropertyInfo\\Tests\\": "tests" |
| 29 | + } |
| 30 | + }, |
| 31 | + "require": { |
| 32 | + "php": ">=5.4" |
| 33 | + }, |
| 34 | + "require-dev": { |
| 35 | + "phpspec/phpspec": "~2.1", |
| 36 | + "phpunit/phpunit": "~4.5", |
| 37 | + "doctrine/orm": "~2.3", |
| 38 | + "phpdocumentor/reflection": "~1.0" |
| 39 | + }, |
| 40 | + "conflict": { |
| 41 | + "phpdocumentor/reflection": "<1.0.4" |
| 42 | + }, |
| 43 | + "suggest": { |
| 44 | + "doctrine/orm": "To use Doctrine metadata", |
| 45 | + "symfony/validator": "To use Symfony validator metadata", |
| 46 | + "phpdocumentor/reflection": "To use the PHPDoc" |
19 | 47 | } |
20 | | - ], |
21 | | - "autoload": { |
22 | | - "psr-4": { |
23 | | - "PropertyInfo\\": "src/PropertyInfo" |
24 | | - } |
25 | | - }, |
26 | | - "autoload-dev": { |
27 | | - "psr-4": { |
28 | | - "PropertyInfo\\Tests\\": "tests" |
29 | | - } |
30 | | - }, |
31 | | - "require": { |
32 | | - "php": ">=5.4" |
33 | | - }, |
34 | | - "require-dev": { |
35 | | - "phpspec/phpspec": "~2.1", |
36 | | - "phpunit/phpunit": "~4.5", |
37 | | - "doctrine/orm": "~2.3", |
38 | | - "phpdocumentor/reflection": "~1.0" |
39 | | - }, |
40 | | - "suggest": { |
41 | | - "doctrine/orm": "To use Doctrine metadata", |
42 | | - "symfony/validator": "To use Symfony validator metadata", |
43 | | - "phpdocumentor/reflection": "To use the PHPDoc" |
44 | | - } |
45 | 48 | } |
0 commit comments