Skip to content

Instantly share code, notes, and snippets.

@DarkGhostHunter
Last active March 21, 2024 18:10
Show Gist options
  • Save DarkGhostHunter/1c2a98087f2de9e5724740ce2b309c4d to your computer and use it in GitHub Desktop.
Save DarkGhostHunter/1c2a98087f2de9e5724740ce2b309c4d to your computer and use it in GitHub Desktop.
Laragear Subscriptions Composer.json
{
"name": "laragear/subscriptions",
"description": "Subscriptions on-premises, without any payment system!",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Italo Baeza C.",
"email": "DarkGhostHunter@Gmail.com",
"homepage": "https://patreon.com/packagesforlaravel"
}
],
"support": {
"source": "https://github.com/Laragear/Subscriptions",
"issues": "https://github.com/Laragear/Subscriptions/issues"
},
"require": {
"php": "^8.0.2",
"illuminate/cache": "9.*",
"illuminate/config": "9.*",
"illuminate/database": "9.*",
"illuminate/support": "9.*",
"illuminate/container": "9.*",
"illuminate/contracts": "9.*"
},
"require-dev": {
"orchestra/testbench": "7.*",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Laragear\\Subscriptions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"App\\Policies\\": "stubs/Policies"
},
"files": [
"database/migrations/create_plans_table.php",
"database/migrations/create_subscribables_table.php",
"database/migrations/create_subscriptions_table.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Laragear\\Subscriptions\\SubscriptionsServiceProvider"
]
}
},
"funding": [
{
"type": "Patreon",
"url": "https://patreon.com/PackagesForLaravel"
},
{
"type": "Ko-Fi",
"url": "https://ko-fi.com/DarkGhostHunter"
},
{
"type": "Buy me a cofee",
"url": "https://www.buymeacoffee.com/darkghosthunter"
},
{
"type": "Paypal",
"url": "https://paypal.me/darkghosthunter"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment