Aerendir/stripe-bundle

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "serendipity_hq/bundle-stripe",
    "type": "symfony-bundle",
    "description": "A set of utilities to integrate Stripe into Symfony.",
    "keywords": ["stripe", "bundle", "symfony"],
    "homepage": "https://github.com/Aerendir/bundle-stripe",
    "license": "MIT",
    "support": {
        "docs": "https://github.com/Aerendir/bundle-stripe/tree/dev/docs",
        "issues": "https://github.com/Aerendir/bundle-stripe/issues"
    },
    "authors": [
        {
            "name": "Adamo Aerendir Crespi",
            "email": "hello@aerendir.me"
        }
    ],
    "require": {
        "php": "^7.4|^8.0",
        "ext-json": "*",
        "doctrine/orm": "^2.5",
        "serendipity_hq/component-value-objects": "^7.1.1",
        "stripe/stripe-php": "^7.52 || ^8.0",
        "symfony/event-dispatcher": "^4.4|^5.4|^6.0",
        "symfony/framework-bundle": "^4.4|^5.4|^6.0",
        "symfony/translation": "^4.4|^5.4|^6.0",
        "thecodingmachine/safe": "^1.0|^2.0"
    },
    "require-dev": {
        "ext-ast": "*",
        "bamarni/composer-bin-plugin": "^1.4",
        "doctrine/common": "^2.8 || ^3.0",
        "doctrine/doctrine-bundle": "^1.7 || ^2.0",
        "monolog/monolog": "^1.23 || ^2.0",
        "phpdocumentor/reflection-docblock": "^5.2",
        "phpstan/phpstan": "1.8.2",
        "phpstan/phpstan-doctrine": "1.3.11",
        "phpstan/phpstan-phpunit": "1.1.1",
        "phpstan/phpstan-symfony": "1.2.8",
        "rector/rector": "0.13.8",
        "roave/security-advisories": "dev-master",
        "serendipity_hq/component-var-dumper-f": "^2.1.1",
        "serendipity_hq/rector-config": "^1.0",
        "symfony/console": "^4.4|^5.4|^6.0",
        "symfony/css-selector": "^4.4|^5.4|^6.0",
        "symfony/dom-crawler": "^4.4|^5.4|^6.0",
        "symfony/form": "^4.4|^5.4|^6.0",
        "symfony/http-client": "^4.4|^5.4|^6.0",
        "symfony/var-dumper": "^4.4|^5.4|^6.0",
        "symfony/yaml": "^4.4|^5.4|^6.0",
        "thecodingmachine/phpstan-safe-rule": "1.2.0"
    },
    "autoload": {
        "psr-4": {
            "SerendipityHQ\\Bundle\\StripeBundle\\Dev\\": "dev",
            "SerendipityHQ\\Bundle\\StripeBundle\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "SerendipityHQ\\Bundle\\StripeBundle\\Tests\\": "tests"
        }
    },
    "config":{
        "sort-packages": true,
        "allow-plugins": {
            "composer/package-versions-deprecated": true,
            "bamarni/composer-bin-plugin": true
        }
    },
    "scripts": {
        "bin": "echo 'bin not installed'",
        "post-install-cmd": ["@composer bin all install --ansi"],
        "post-update-cmd": ["@composer bin all update --ansi"]
    },
    "extra": {
        "bamarni-bin": {
            "bin-links": false
        }
    }
}