Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
*versions*
node_modules
rust/target
/vendor/
28 changes: 15 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,22 +212,24 @@ If room is not provided, LogMachine will automatically generate one:

```
logmachine-php/
├── LICENSE
├── README.md
├── compos_install.sh
├── composer.json
├── src/
│ ├── LogMachine.php
| ├── ColorfulLogger.php
│ └── Transports/
│ ├── HttpTransport.php
│ └── WebSocketTransport.php (disabled by default)
| Traits/
│ ├── ColorfulLoggerTrait.php
| Formatters
| └── ColoredLineFormatter.php
├── src
│   ├── ColorLogger.php
│   ├── Formatters
│   │   ├── ColoredLineFormatter.php
│   │   └── PlainLineFormatter.php
│   ├── LogMachine.php
│   ├── Traits
│   │   └── ColorfulLoggerTrait.php
│   └── Transports
│   ├── HttpTransport.php
│   └── WebSocketTransport.php
├── public/
│ └── index.php (demo/test endpoint)
├── config/
│ └── logmachine.php
├── logs/
│ └── logmachine.log
└── README.md
└── test
```
5 changes: 2 additions & 3 deletions logmachine-php/composer.json → composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "bufferpunk/logmachine",
"version": "1.1.0",
"description": "Logmachine is a collaborative and visually elegant logging tool designed to make logging smarter and more efficient for distributed development teams. It offers a fully pluggable architecture that supports features like color-coded output for better readability, automatic JSON parsing, structured log forwarding via HTTP or Socket.IO, and centralized log management. Whether you're debugging locally or working across services, logmachine brings clarity and flexibility to your logging workflow.",
"type": "library",
"license": "MIT",
Expand All @@ -26,12 +25,12 @@
},
"minimum-stability": "stable",
"require": {
"php": ">=8.3.6"
"php": ">=8.3.6",
"monolog/monolog": "^3.0",
"guzzlehttp/guzzle": "^7.0",
"elephantio/elephant.io": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^12"
}
}
}
File renamed without changes.
4 changes: 0 additions & 4 deletions logmachine-php/.gitignore

This file was deleted.

9 changes: 0 additions & 9 deletions logmachine-php/test.sh

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"repositories": [
{
"type": "path",
"url": "../logmachine-php"
"url": "../"
}
],
"minimum-stability": "dev",
Expand Down
Loading
Loading