{
    "name": "dukecity/command-scheduler-bundle",
    "description": "This Symfony bundle will allow you to schedule all your commands just like UNIX crontab",
    "keywords": ["Symfony", "scheduler", "cron", "command", "task"],
    "homepage": "https://github.com/Dukecity/CommandSchedulerBundle",
    "type": "symfony-bundle",
    "license": "MIT",
    "authors": [
        {
            "name": "Julien Guyon",
            "email": "julienguyon@hotmail.com"
        },
        {
            "name": "Dukecity",
            "email": "dukecity.code@gmail.com"
        }
    ],
    "require": {
        "php": ">=8.0.2",
        "symfony/console": "^5.4.12 || ^6.0",
        "doctrine/orm": "^2.9",
        "doctrine/doctrine-bundle": "^2.7",
        "doctrine/collections": "^1.7.2 || ^2.0",
        "doctrine/dbal": "^2.13.3 || ^3.4",
        "doctrine/persistence": "^2.5.4 || ^3.0",
        "dragonmantank/cron-expression": "^3.3",
        "symfony/framework-bundle": "^5.4 || ^6.0",
        "symfony/twig-bundle": "^5.4 || ^6.0",
        "symfony/translation": "^5.4 || ^6.0",
        "symfony/finder": "^5.4 || ^6.0",
        "symfony/form": "^5.4 || ^6.0",
        "symfony/asset": "^5.4 || ^6.0",
        "symfony/validator": "^5.4 || ^6.0",
        "nesbot/carbon": "^2.69 || ^3.0",
        "symfony/lock": "^5.4 || ^6.0",
        "symfony/config": "^5.4 || ^6.0",
        "symfony/dependency-injection": "^5.4 || ^6.0",
        "symfony/property-access": "^5.4 || ^6.0",
        "symfony/http-kernel": "^5.4 || ^6.0",
        "symfony/routing": "^5.4 || ^6.0",
        "symfony/yaml": "^5.4 || ^6.0",
        "twig/twig": "^3.4",
        "lorisleiva/cron-translator": "^0.4.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.6 || ^10.0, < 10.1",
        "symfony/phpunit-bridge": "^5.4 || ^6.0",
        "doctrine/doctrine-fixtures-bundle": "^3.5.0",
        "phpstan/phpstan": "^1.10",
        "symfony/debug-bundle": "^5.4 || ^6.0",
        "symfony/dom-crawler": "^5.4 || ^6.0",
        "symfony/css-selector": "^5.4 || ^6.0",
        "symfony/var-dumper": "^5.4 || ^6.0",
        "liip/test-fixtures-bundle": "^2.5",
        "symfony/browser-kit": "^5.4 || ^6.0",
        "symfony/dotenv": "^5.4 || ^6.0",
        "symfony/notifier": "^5.4 || ^6.0",
        "symfony/maker-bundle": "^1.48"
    },
    "suggest": {
        "ext-pcntl": "For using the scheduler daemon",
        "symfony/notifier": "Send Notifications (E-Mails) ^5.4 || ^6.0",
        "twig/cssinliner-extra": "Needed for E-Mail Notification ^3.0",
        "twig/inky-extra": "Needed for E-Mail Notification ^3.0",
        "ext-posix": "*"
    },
    "autoload": {
        "psr-4": {
            "Dukecity\\CommandSchedulerBundle\\": ""
        }
    },
    "autoload-dev": {
        "psr-4": {
            "App\\Tests\\": "Tests/"
        }
    },
    "scripts": {
        "phpstan": "phpstan analyse"
    },
    "config": {
        "preferred-install": {
            "*": "dist"
        },
        "sort-packages": true
    },
    "extra": {
        "symfony": {
            "allow-contrib": false,
            "require": "^5.4 || ^6.0"
        }
    }
}
