summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Component/PropertyInfo/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/Symfony/Component/PropertyInfo/composer.json')
-rw-r--r--src/Symfony/Component/PropertyInfo/composer.json53
1 files changed, 53 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..d7861d5
--- /dev/null
+++ b/src/Symfony/Component/PropertyInfo/composer.json
@@ -0,0 +1,53 @@
+{
+ "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": ">=5.3.9"
+ },
+ "require-dev": {
+ "symfony/serializer": "~2.7|~3.0.0",
+ "phpdocumentor/reflection": "^1.0.7",
+ "doctrine/annotations": "~1.0"
+ },
+ "conflict": {
+ "phpdocumentor/reflection": "<1.0.7"
+ },
+ "suggest": {
+ "symfony/doctrine-bridge": "To use Doctrine metadata",
+ "phpdocumentor/reflection": "To use the PHPDoc",
+ "symfony/serializer": "To use Serializer metadata"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Component\\PropertyInfo\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.8-dev"
+ }
+ }
+}