Last active
March 21, 2024 18:10
-
-
Save DarkGhostHunter/1c2a98087f2de9e5724740ce2b309c4d to your computer and use it in GitHub Desktop.
Laragear Subscriptions Composer.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": "[email protected]", | |
"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