{"id":48470472,"url":"https://github.com/jacobstephens2/event-manager-api","last_synced_at":"2026-04-07T06:05:13.946Z","repository":{"id":37649537,"uuid":"502788056","full_name":"JacobStephens2/event-manager-api","owner":"JacobStephens2","description":"The backend for the Event Manager app (PHP, Slim, MySQL)","archived":false,"fork":false,"pushed_at":"2022-07-26T21:50:20.000Z","size":286,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-03-05T10:13:35.263Z","etag":null,"topics":["apache24","api","mysql8","php8","slim4","sql"],"latest_commit_sha":null,"homepage":"https://api.eventmanager.stewardgoods.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JacobStephens2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-13T03:03:26.000Z","updated_at":"2022-06-16T02:25:36.000Z","dependencies_parsed_at":"2022-07-18T03:00:39.562Z","dependency_job_id":null,"html_url":"https://github.com/JacobStephens2/event-manager-api","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/JacobStephens2/event-manager-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fevent-manager-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fevent-manager-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fevent-manager-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fevent-manager-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JacobStephens2","download_url":"https://codeload.github.com/JacobStephens2/event-manager-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fevent-manager-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31501903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["apache24","api","mysql8","php8","slim4","sql"],"created_at":"2026-04-07T06:05:12.786Z","updated_at":"2026-04-07T06:05:13.941Z","avatar_url":"https://github.com/JacobStephens2.png","language":"PHP","readme":"# Event Manager API\nThe backend for the Event Manager app. The event manager app is hosted at https://eventmanager.stewardgoods.com/\n\nThe Event Manager App's repository is at https://github.com/JacobStephens2/event-manager-ui\n\n---\n\n## Routes\n\n### Users\n\n#### POST /login\n\nhttps://api.eventmanager.stewardgoods.com/login\n\nSubmit a JSON body in the request like the following:\n\n`{\n    \"email\": \"jacob@example.com\",\n    \"password\": \"goodPassword123\"\n}`\n\n#### POST /logout\n\nClear the Http Only access_token cookie.\n\n#### POST /sign-up\n\nhttps://api.eventmanager.stewardgoods.com/sign-up\n\nSubmit a JSON body in the request like the following:\n\n`{\n    \"email\": \"jacob@example.com\",\n    \"password\": \"goodPassword123\"\n}`\n\n---\n\n### Events\n\n#### GET /events\nGet all events.\n\n#### GET /event/{id}\nGet a specific event by id.\n\n#### POST /event\nCreate an event.\n\n#### PUT /event\nUpdate an event by id passed as id in the JSON body of the request.\n\n### DELETE /event\nUpdate an event by id passed as id in the JSON body of the request.\n\n---\n\n### Clients\n\n#### GET /clients\nGet all clients.\n\n#### GET /client/{id}\n\n#### GET /client/{id}/events\nGet events associated with a particular client.\n\n#### POST /client\nCreate an client.\n\n#### PUT /client\nUpdate an client by id passed as id in the JSON body of the request.\n\n#### DELETE /client\nUpdate an client by id passed as id in the JSON body of the request.\n\n---\n\n### Other\n\n#### GET /\n\nhttps://api.eventmanager.stewardgoods.com/\n\n#### GET /hello/{name}\n\nhttps://api.eventmanager.stewardgoods.com/hello/Jacob\n\n#### POST /mimic-json\n\nhttps://api.eventmanager.stewardgoods.com/mimic-json\n\nSubmit a JSON body in the request like the following:\n\n`{\n    \"message\": \"Hello, world!\"\n}`\n\n### GET /events\nGet all events.\n\n### GET /event/{id}\nGet a specific event by id.\n\n### POST /event\nCreate an event.\n\n`{\n    \"name\": \"Commencement\"\n}`\n\n### PUT /event\nUpdate an event by id passed as id in the JSON body of the request.\n\n`{\n    \"id\": \"1\",\n    \"name\": \"North Point Commencement\"\n}`\n\n### DELETE /event\nUpdate an event by id passed as id in the JSON body of the request.\n\n`{\n    \"id\": \"1\"\n}`\n\n---\n\n## Slim 4, PHP 8, MySQL 8 and Apache 2.4\n\nThis project has been developed to run on a server running PHP 8 (https://www.php.net/releases/8.0/en.php) and Apache 2.4 (https://httpd.apache.org/docs/2.4/), while having access to a MySQL 8 server (https://dev.mysql.com/doc/refman/8.0/en/). This project uses the Slim 4 Framework: https://www.slimframework.com/docs/v4/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobstephens2%2Fevent-manager-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacobstephens2%2Fevent-manager-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobstephens2%2Fevent-manager-api/lists"}