{"id":14974777,"url":"https://github.com/caritoz/restful-api-with-ecommerce","last_synced_at":"2026-02-12T17:33:46.330Z","repository":{"id":49083506,"uuid":"236478116","full_name":"caritoz/restful-api-with-ecommerce","owner":"caritoz","description":"RESTful Api Development with Ecommerce Project","archived":false,"fork":false,"pushed_at":"2023-05-04T08:00:39.000Z","size":207,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-23T22:36:32.634Z","etag":null,"topics":["docker","docker-compose","laravel6","php","php-fpm","phpmyadmin"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/caritoz.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":"2020-01-27T11:41:56.000Z","updated_at":"2023-05-04T08:00:42.000Z","dependencies_parsed_at":"2024-09-23T16:02:38.415Z","dependency_job_id":"b9a3ad3f-9746-4aff-a56a-261c70c95bdb","html_url":"https://github.com/caritoz/restful-api-with-ecommerce","commit_stats":{"total_commits":5,"total_committers":2,"mean_commits":2.5,"dds":"0.19999999999999996","last_synced_commit":"9c4d339ccae8efb7474ad6dd7a8ce53540f3837b"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/caritoz/restful-api-with-ecommerce","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caritoz%2Frestful-api-with-ecommerce","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caritoz%2Frestful-api-with-ecommerce/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caritoz%2Frestful-api-with-ecommerce/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caritoz%2Frestful-api-with-ecommerce/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/caritoz","download_url":"https://codeload.github.com/caritoz/restful-api-with-ecommerce/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caritoz%2Frestful-api-with-ecommerce/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29374086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"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":["docker","docker-compose","laravel6","php","php-fpm","phpmyadmin"],"created_at":"2024-09-24T13:51:04.003Z","updated_at":"2026-02-12T17:33:46.316Z","avatar_url":"https://github.com/caritoz.png","language":"PHP","funding_links":["https://www.buymeacoffee.com/carolagordillo"],"categories":[],"sub_categories":[],"readme":"# restful-api-with-ecommerce\nRESTful Api Development with Ecommerce Project\n\nThis site depends on the Laravel framework\n\n## Requirements\n* [Docker](https://docs.docker.com/)\n* [Composer](http://getcomposer.org)\n* [Git](http://git-scm.com)\n* [PHP \u003e= 7](http://php.net)\n* [Laravel 6 Support](https://laravel.com/docs/6.x)\n* PHP Extensions:\n    - tidy, soap, gd, fileinfo\n\n#### Usage\n1. Clone the project repo and checkout to development branch\n\n    $ git clone https://github.com/caritoz/restful-api-with-ecommerce.git\n    \n    $ cd restful-api-with-ecommerce        \n    \n\n2. To start a development environment for the first time, run\n\n\n    $ sudo docker-compose up -d --build\n    \n### Configuration\n\n1. Add \"127.0.0.1 {{HOST}}\" to your hosts file\n2. Access http://{{HOST}}/\n3. Environments API for file .env\n\n```dockerfile\nDOCKER_PHP_SERVICE=php-fpm\nDOCKER_PHP_SERVICE_PORT=9000\nDOCKER_DATABASE_SERVICE=database\n\nSERVER_NAME=product-rest-api.local\n\n```php\n\n#set up app\nAPPLICATION_ID={{APPLICATION_ID}}\nAPP_NAME=RestFulAPI\nAPP_ENV=local\nAPP_KEY={{APP_KEY}}\nAPP_DEBUG=true\nAPP_URL=http://localhost\nENABLE_DEBUGGING=true\nENABLE_MEMCACHED=true\nDEBUG_IP_LIST={{DEBUG_IP_LIST}}\n\n# set up server email\nSMTP_HOST={{SMTP_HOST}}\nSMTP_PORT={{SMTP_PORT}}\nSMTP_AUTH={{SMTP_AUTH}}\nSMTP_USERNAME={{SMTP_USERNAME}}\nSMTP_PASSWORD={{SMTP_PASSWORD}}\n\n#set up database\nDATABASE_HOST={{DATABASE_HOST}}\nDATABASE_PORT={{DATABASE_PORT}}\nDATABASE_NAME={{DATABASE_NAME}}\nDATABASE_USERNAME={{DATABASE_USERNAME}}\nDATABASE_PASSWORD={{DATABASE_PASSWORD}}\n\n# set up others\nLOG_CHANNEL=stack\n\nBROADCAST_DRIVER=log\nCACHE_DRIVER=file\nQUEUE_CONNECTION=sync\nSESSION_DRIVER=cookie\nSESSION_LIFETIME=120\n\nREDIS_HOST=127.0.0.1\nREDIS_PASSWORD=null\nREDIS_PORT=6379\n\nAWS_ACCESS_KEY_ID=\nAWS_SECRET_ACCESS_KEY=\nAWS_DEFAULT_REGION=us-east-1\nAWS_BUCKET=\n\nPUSHER_APP_ID=\nPUSHER_APP_KEY=\nPUSHER_APP_SECRET=\nPUSHER_APP_CLUSTER=mt1\n\nMIX_PUSHER_APP_KEY=\"${PUSHER_APP_KEY}\"\nMIX_PUSHER_APP_CLUSTER=\"${PUSHER_APP_CLUSTER}\"\n\n```\n\n## Contributions\nContributions are welcome! Please create a pull request with your changes.\n\n[![\"Buy Me A Coffee\"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/carolagordillo)\n\n## License\n\nThis project is licensed under the [GNU General Public License v3.0](https://github.com/caritoz/cms-notificacions/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaritoz%2Frestful-api-with-ecommerce","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcaritoz%2Frestful-api-with-ecommerce","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaritoz%2Frestful-api-with-ecommerce/lists"}