{"id":36268884,"url":"https://github.com/zablose/allog","last_synced_at":"2026-01-11T08:45:36.366Z","repository":{"id":52711120,"uuid":"57439687","full_name":"zablose/allog","owner":"zablose","description":"Allog - Log all requests to the database.","archived":false,"fork":false,"pushed_at":"2025-04-12T15:09:37.000Z","size":150,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-28T14:51:07.386Z","etag":null,"topics":["php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zablose.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-04-30T11:50:47.000Z","updated_at":"2025-04-12T15:01:55.000Z","dependencies_parsed_at":"2025-04-07T14:24:02.754Z","dependency_job_id":"79ebb82a-945d-4e82-b215-58d203487659","html_url":"https://github.com/zablose/allog","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/zablose/allog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zablose%2Fallog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zablose%2Fallog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zablose%2Fallog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zablose%2Fallog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zablose","download_url":"https://codeload.github.com/zablose/allog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zablose%2Fallog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28298864,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T08:21:30.231Z","status":"ssl_error","status_checked_at":"2026-01-11T08:21:26.882Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["php"],"created_at":"2026-01-11T08:45:35.892Z","updated_at":"2026-01-11T08:45:36.353Z","avatar_url":"https://github.com/zablose.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Allog\n\nLog all requests to the database, including some data from $_SERVER array, all data from $_GET and $_POST.\n\n\u003e Protected keys from the config will be replaced with '*' for $_POST data only.\n\n## Server Config\n\n| Name                | Value     | Description |\n|---------------------|-----------|-------------|\n| ALLOG_DEBUG         | false     |             |\n| ALLOG_SERVER_NAME   | allog     |             |\n| ALLOG_DB_CONNECTION | mysql     |             |\n| ALLOG_DB_HOST       | localhost |             |\n| ALLOG_DB_PORT       | 3306      |             |\n| ALLOG_DB_DATABASE   | allog     |             |\n| ALLOG_DB_USERNAME   | allog     |             |\n| ALLOG_DB_PASSWORD   |           |             |\n| ALLOG_DB_CHARSET    | utf8mb4   |             |\n| ALLOG_DB_PREFIX     |           |             |\n\n## Client Config\n\n| Name               | Value                   | Description                                  |\n|--------------------|-------------------------|----------------------------------------------|\n| ALLOG_DEBUG        | false                   |                                              |\n| ALLOG_CLIENT_STATE |                         |                                              |\n| ALLOG_CLIENT_NAME  |                         |                                              |\n| ALLOG_CLIENT_TOKEN |                         |                                              |\n| ALLOG_SERVER_URL   | https://www.allog.zdev/ |                                              |\n| ALLOG_PROTECTED_1  | _token                  |                                              |\n| ALLOG_PROTECTED_2  | password                |                                              |\n| ALLOG_PROTECTED_3  | password_confirmation   |                                              |\n| ALLOG_PROTECTED_*  | another_field           | You need to protect of being recorded as is. |\n\n## Development\n\n\u003e Check submodule's [readme](https://github.com/zablose/docker-images/blob/main/readme.md) for more details about\n\u003e development environment used.\n\n### Quick start\n\n    $ git clone -b 'dev' --single-branch --depth 1 https://github.com/zablose/allog.git allog\n    $ cd allog\n    $ git submodule update --init\n    \n    # Copy env file, then ammend it to your needs.\n    $ cp .env.example.dev .env\n\n    # Copy docker compose file, then ammend it, if needed.\n    $ cp docker-compose.example.yml docker-compose.yml\n    \n    $ docker-compose up -d\n    \n    # To see post-script logs, while container is starting.\n    $ tail -f ./laravel/storage/logs/all.log\n    \n    # To enter container, using Bash shell.\n    $ docker exec -it allog-php-fpm bash\n    \n    (allog-php-fpm)$ php vendor/bin/phpunit\n\n### Build\n\n* Merge changes from your branch to `master`;\n* Create a new branch from updated `master` called like `build-3.0.0`;\n* Run `php vendor/bin/phing prepare` to remove all irrelevant files and folders;\n* Commit changes with message like `Prepare build.`;\n* Merge branch `build-3.0.0` to `build` branch;\n* Delete `build-*` branch;\n* Use tag `3.0.0` on `build` branch to do the release.\n\n\u003e Obviously, replace example `3.0.0` version with yours.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzablose%2Fallog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzablose%2Fallog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzablose%2Fallog/lists"}