{"id":19207941,"url":"https://github.com/fvucemilo/image-manipulation-laravel-api","last_synced_at":"2026-06-10T23:32:03.603Z","repository":{"id":143540549,"uuid":"432749648","full_name":"fvucemilo/image-manipulation-laravel-api","owner":"fvucemilo","description":"Laravel Image Manipulation REST API","archived":false,"fork":false,"pushed_at":"2021-11-28T22:02:38.000Z","size":1211,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-23T06:46:30.871Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/fvucemilo.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-28T15:26:49.000Z","updated_at":"2021-11-28T22:02:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"339cc13e-d7f8-44c3-8921-6d7517dd7e4b","html_url":"https://github.com/fvucemilo/image-manipulation-laravel-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fvucemilo/image-manipulation-laravel-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fvucemilo%2Fimage-manipulation-laravel-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fvucemilo%2Fimage-manipulation-laravel-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fvucemilo%2Fimage-manipulation-laravel-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fvucemilo%2Fimage-manipulation-laravel-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fvucemilo","download_url":"https://codeload.github.com/fvucemilo/image-manipulation-laravel-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fvucemilo%2Fimage-manipulation-laravel-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34175887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-09T13:23:22.232Z","updated_at":"2026-06-10T23:32:03.586Z","avatar_url":"https://github.com/fvucemilo.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Laravel Image Manipulation REST API\n\n## Demo\nHere is fully working Demo: https://image-manipulation-api.herokuapp.com/ \u003cbr\u003e\nYou have to register first in order to generate access token and make API requests.\u003cbr\u003e\n\n#### Test locally\nDownload [postman_collection.json](public/devtools/resize/postman_collection.json) file, import it in your postman and test locally.\n\n## Prerequisites\n\n#### PHP Extensions\n`php-mbstring php-dom php-intl php-curl php-mysql php-gd`\n\n## Basic installation steps\nBefore you start the installation process you need to have **installed composer**\n\n1. Clone the project\n2. Navigate to the project root directory using command line\n3. Run `composer install`\n4. Copy `.env.example` into `.env` file\n5. Adjust `DB_*` parameters.\u003cbr\u003e\n   If you want to use Mysql, make sure you have mysql server up and running. \u003cbr\u003e\n   If you want to use sqlite:\n    1. you can just delete all `DB_*` parameters except `DB_CONNECTION` and set its value to `sqlite`\n    2. Then create file `database/database.sqlite`\n6. Run `php artisan key:generate --ansi`\n7. Run `php artisan migrate`\n\n### Installing locally for development\nRun `php artisan serve` which will start the server at http://localhost:8000 \u003cbr\u003e\n\n\n### Installing on production\n1. Create a virtual host file\n2. Enable it\n3. Reload apache\n\nVirtual host template.\n```apacheconf\n\u003cVirtualHost *:80\u003e\n    ServerName yourproductiondomain.com\n    ServerAlias www.yourproductiondomain.com\n    DocumentRoot /project-installation-path/public\n\n    \u003cDirectory \"/project-installation-path/public`\"\u003e\n        Options -Indexes +FollowSymLinks\n        AllowOverride All\n        Require all granted\n    \u003c/Directory\u003e\n\n    ErrorLog /path-to-logs-folder/error.log\n    CustomLog /path-to-logs-folder/access.log combined\n\u003c/VirtualHost\u003e\n```\nIf you installed the project using apache and have any issues regarding permissions when installing on production,\ndo the following.\n1. Add the project owner user in `www-data` group\n    ```shell\n    sudo usermod -a -G www-data project-owner-user\n    ```\n2. Change the owner of several folders into `www-data` user\n    ```shell\n    chown www-data:www-data storage/ -R\n    chown www-data:www-data public/images\n    ```\n\n\n## Contributing\n\nThank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).\n\n## Code of Conduct\n\nIn order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).\n\n## Security Vulnerabilities\n\nIf you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.\n\n## License\n\nThe Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffvucemilo%2Fimage-manipulation-laravel-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffvucemilo%2Fimage-manipulation-laravel-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffvucemilo%2Fimage-manipulation-laravel-api/lists"}