diff options
| author | Remi Collet <remi@remirepo.net> | 2020-10-28 13:51:49 +0100 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2020-10-28 13:51:49 +0100 | 
| commit | 736966f098df9dde618fe8c0cbb6fdd9d6724806 (patch) | |
| tree | 221331f088742e183f9175ee29a427df5e0f1964 /src/Symfony/Component/PropertyInfo | |
Diffstat (limited to 'src/Symfony/Component/PropertyInfo')
| -rw-r--r-- | src/Symfony/Component/PropertyInfo/composer.json | 54 | 
1 files changed, 54 insertions, 0 deletions
| diff --git a/src/Symfony/Component/PropertyInfo/composer.json b/src/Symfony/Component/PropertyInfo/composer.json new file mode 100644 index 0000000..b6cd0e5 --- /dev/null +++ b/src/Symfony/Component/PropertyInfo/composer.json @@ -0,0 +1,54 @@ +{ +    "name": "symfony/property-info", +    "type": "library", +    "description": "Symfony Property Info Component", +    "keywords": [ +        "property", +        "type", +        "PHPDoc", +        "symfony", +        "validator", +        "doctrine" +    ], +    "homepage": "https://symfony.com", +    "license": "MIT", +    "authors": [ +        { +            "name": "Kévin Dunglas", +            "email": "dunglas@gmail.com" +        }, +        { +            "name": "Symfony Community", +            "homepage": "https://symfony.com/contributors" +        } +    ], +    "require": { +        "php": ">=7.1.3", +        "symfony/inflector": "^3.4|^4.0|^5.0" +    }, +    "require-dev": { +        "symfony/serializer": "^3.4|^4.0|^5.0", +        "symfony/cache": "^3.4|^4.0|^5.0", +        "symfony/dependency-injection": "^3.4|^4.0|^5.0", +        "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", +        "doctrine/annotations": "~1.7" +    }, +    "conflict": { +        "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2", +        "phpdocumentor/type-resolver": "<0.3.0", +        "symfony/dependency-injection": "<3.4" +    }, +    "suggest": { +        "psr/cache-implementation": "To cache results", +        "symfony/doctrine-bridge": "To use Doctrine metadata", +        "phpdocumentor/reflection-docblock": "To use the PHPDoc", +        "symfony/serializer": "To use Serializer metadata" +    }, +    "autoload": { +        "psr-4": { "Symfony\\Component\\PropertyInfo\\": "" }, +        "exclude-from-classmap": [ +            "/Tests/" +        ] +    }, +    "minimum-stability": "dev" +} | 
