Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade for support Laravel 8 #1

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
20 changes: 12 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
{
"name": "cachethq/twitter",
"description": "A Twitter handle parser for Laravel 5 and 6",
"description": "A Twitter handle parser for Laravel 5 till 10",
"keywords": ["twitter", "parser", "markdown", "Cachet", "CachetHQ"],
"license": "MIT",
"authors": [
{
"name": "Cachet",
"email": "[email protected]"
},
{
"name": "MonkeySoft",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"illuminate/contracts": "^5.5|^6.0",
"illuminate/support": "^5.5|^6.0",
"league/commonmark": "^1.0"
"php": "^7.3 || ^8.0 || ^8.1",
"illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"league/commonmark": "^1.6 || ^2.0 || ^2.1 || ^2.2 || ^2.3 || ^2.4"
},
"require-dev": {
"graham-campbell/analyzer": "^2.1",
"graham-campbell/markdown": "^11.0",
"graham-campbell/analyzer": "^3.1",
"graham-campbell/markdown": "^13.1",
"graham-campbell/testbench": "^5.1",
"phpunit/phpunit": "^6.5|^7.0|^8.0"
"phpunit/phpunit": "^9.0 || ^10.0"
},
"autoload": {
"psr-4": {
Expand Down