Files
dataflow-example/composer.json
2019-11-15 15:53:56 +01:00

80 lines
2.0 KiB
JSON

{
"name": "code-rhapsodie/dataflow-example",
"description": "Dataflow example Symfony project",
"keywords": ["dataflow", "import", "symfony", "data processing"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Jean-Baptiste Nahan",
"email": "jean-baptiste@code-rhapsodie.fr",
"role": "Developer"
},
{
"name": "Code Rhapsodie",
"homepage": "https://www.code-rhapsodie.fr/"
}
],
"require": {
"php": "^7.1.3",
"ext-ctype": "*",
"ext-iconv": "*",
"code-rhapsodie/dataflow-bundle": "^2.0",
"symfony/console": "^3.4||4.3.*",
"symfony/dotenv": "^3.4||4.3.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "^3.4||4.3.*",
"symfony/yaml": "^3.4||4.3.*",
"doctrine/doctrine-bundle": "^1.0"
},
"require-dev": {
},
"minimum-stability": "alpha",
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"CodeRhapsodie\\DataflowExemple\\": "src/"
},
"files": ["src/Kernel.php"]
},
"autoload-dev": {
"psr-4": {
"CodeRhapsodie\\DataflowExemple\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "4.3.*"
}
}
}