Skip to content

Commit

Permalink
Refactoring from review homework
Browse files Browse the repository at this point in the history
  • Loading branch information
propan13 committed Jun 2, 2024
1 parent 1ffe701 commit dbe4e7d
Show file tree
Hide file tree
Showing 18 changed files with 751 additions and 173 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# PHP_2023
# Консольный чат на сокетах

https://otus.ru/lessons/razrabotchik-php/?utm_source=github&utm_medium=free&utm_campaign=otus
## Запуск
```
php app.php start-server
php app.php start-client
```
17 changes: 10 additions & 7 deletions code/composer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
{
"name": "propan13/chat",
"name": "propan13/socket-chat",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"authors": [
{
"name": "Dmitry Ivanov"
}
],
"require": {}
"require": {
"ext-sockets": "*",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"Propan13\\App\\": "src/"
}
}
}
Loading

0 comments on commit dbe4e7d

Please sign in to comment.