Skip to content

Commit

Permalink
added laravel 9 support (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
myckhel authored Apr 22, 2022
1 parent e2f8763 commit 5379e19
Show file tree
Hide file tree
Showing 2 changed files with 557 additions and 539 deletions.
105 changes: 54 additions & 51 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,57 @@
{
"name": "myckhel/laravel-chat-system",
"description": "laravel chat system",
"license": "MIT",
"authors": [
{
"name": "myckhel",
"email": "[email protected]",
"homepage": "https://myckhel.com"
}
],
"homepage": "https://github.com/myckhel/laravel-chat-system",
"keywords": ["Laravel", "ChatSystem"],
"require": {
"php": "^8.0",
"illuminate/support": "~7|~8",
"nesbot/carbon": "^2.50"
},
"scripts": {
"test": "./vendor/bin/pest"
},
"require-dev": {
"php": "^8",
"fakerphp/faker": "^1.12",
"orchestra/testbench": "~5|~6",
"pestphp/pest": "^1.11",
"spatie/pest-plugin-test-time": "^1.0"
},
"autoload": {
"psr-4": {
"Myckhel\\ChatSystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Myckhel\\ChatSystem\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Myckhel\\ChatSystem\\ChatSystemServiceProvider"
],
"aliases": {
"ChatSystem": "Myckhel\\ChatSystem\\Facades\\ChatSystem"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
"name": "myckhel/laravel-chat-system",
"description": "laravel chat system",
"license": "MIT",
"authors": [
{
"name": "myckhel",
"email": "[email protected]",
"homepage": "https://myckhel.com"
}
],
"homepage": "https://github.com/myckhel/laravel-chat-system",
"keywords": [
"Laravel",
"ChatSystem"
],
"require": {
"php": "^8.0",
"illuminate/support": "~7|~8|~9",
"nesbot/carbon": "^2.50"
},
"scripts": {
"test": "./vendor/bin/pest"
},
"require-dev": {
"php": "^8",
"fakerphp/faker": "^1.12",
"orchestra/testbench": "~5|~6",
"pestphp/pest": "^1.11",
"spatie/pest-plugin-test-time": "^1.0"
},
"autoload": {
"psr-4": {
"Myckhel\\ChatSystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Myckhel\\ChatSystem\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Myckhel\\ChatSystem\\ChatSystemServiceProvider"
],
"aliases": {
"ChatSystem": "Myckhel\\ChatSystem\\Facades\\ChatSystem"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}
Loading

0 comments on commit 5379e19

Please sign in to comment.