{
    "name": "tastyigniter/ti-ext-cart",
    "type": "tastyigniter-package",
    "description": "Easily add a shopping cart to your site. The most powerful way to sell your menu items.",
    "license": "MIT",
    "authors": [
        {
            "name": "Sam Poyigi",
            "email": "sam@sampoyigi.com"
        }
    ],
    "keywords": [
        "tastyigniter",
        "cart",
        "online-food-ordering",
        "ordering"
    ],
    "require": {
        "tastyigniter/core": "^v4.0",
        "tastyigniter/ti-ext-automation": "^v4.0",
        "tastyigniter/ti-ext-coupons": "^v4.0",
        "tastyigniter/ti-ext-local": "^v4.0",
        "tastyigniter/ti-ext-payregister": "^v4.0",
        "tastyigniter/ti-ext-user": "^v4.0"
    },
    "require-dev": {
        "igniterlabs/ti-ext-importexport": "v4.x-dev",
        "larastan/larastan": "^3.0",
        "laravel/pint": "^1.2",
        "pestphp/pest-plugin-laravel": "^3.0",
        "rector/rector": "^2.0",
        "sampoyigi/testbench": "^1.0"
    },
    "autoload": {
        "psr-4": {
            "Igniter\\Cart\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Igniter\\Cart\\Tests\\": "tests/"
        }
    },
    "extra": {
        "tastyigniter-extension": {
            "code": "igniter.cart",
            "name": "Cart",
            "icon": {
                "class": "fa fa-shopping-cart",
                "color": "#FFF",
                "backgroundColor": "#FF4900"
            },
            "homepage": "https://tastyigniter.com/marketplace/item/igniter-cart"
        },
        "branch-alias": {
            "dev-master": "4.0.x-dev"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "allow-plugins": {
            "pestphp/pest-plugin": true,
            "php-http/discovery": true,
            "composer/installers": true
        },
        "sort-packages": true
    },
    "scripts": {
        "test:lint": "vendor/bin/pint --test --ansi",
        "test:lint-fix": "vendor/bin/pint --ansi",
        "test:refactor": "vendor/bin/rector process --dry-run --ansi",
        "test:refactor-fix": "vendor/bin/rector process --ansi",
        "test:static": "vendor/bin/phpstan analyse --memory-limit=1056M --ansi",
        "test:static-fix": "vendor/bin/phpstan --generate-baseline --memory-limit=1056M --ansi",
        "test:pest": "vendor/bin/pest",
        "test:coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
        "test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
        "test": [
            "@test:refactor",
            "@test:static",
            "@test:lint",
            "@test:coverage"
        ]
    },
    "suggest": {
        "igniterlabs/ti-ext-importexport": "For importing and exporting orders."
    }
}