{"id":35761293,"url":"https://github.com/frozar/joy-voyager-export-issue","last_synced_at":"2026-01-06T23:03:39.507Z","repository":{"id":42050737,"uuid":"480345586","full_name":"frozar/joy-voyager-export-issue","owner":"frozar","description":"Issue to install voyager-export on recent version of Laravel","archived":false,"fork":false,"pushed_at":"2022-04-15T10:58:14.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-30T16:33:28.366Z","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/frozar.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-04-11T11:14:04.000Z","updated_at":"2024-05-30T16:33:28.367Z","dependencies_parsed_at":"2022-08-12T03:30:29.803Z","dependency_job_id":null,"html_url":"https://github.com/frozar/joy-voyager-export-issue","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/frozar/joy-voyager-export-issue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozar%2Fjoy-voyager-export-issue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozar%2Fjoy-voyager-export-issue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozar%2Fjoy-voyager-export-issue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozar%2Fjoy-voyager-export-issue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frozar","download_url":"https://codeload.github.com/frozar/joy-voyager-export-issue/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozar%2Fjoy-voyager-export-issue/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28229683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2026-01-06T02:00:07.049Z","response_time":56,"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":"2026-01-06T23:03:07.335Z","updated_at":"2026-01-06T23:03:39.502Z","avatar_url":"https://github.com/frozar.png","language":"PHP","readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://laravel.com\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg\" width=\"400\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n# Purpose\n\nThis repository is a minimal example repository to show an issue during the installation of `joy/voyager-export` on recent version of Laravel.\n\n## Environment\n\n```shell\n$ composer --version\nComposer version 2.3.3 2022-04-01 22:15:35\n\n$ php --version \nPHP 8.1.4 (cli) (built: Apr  4 2022 13:30:00) (NTS)\nCopyright (c) The PHP Group\nZend Engine v4.1.4, Copyright (c) Zend Technologies\n    with Zend OPcache v8.1.4, Copyright (c), by Zend Technologies\n\n$ php artisan --version\nLaravel Framework 9.7.0\n```\n\n## Issue\n\nOn a simple project, when I try to install `joy/voyager-export`, I get the following errors:\n```shell\n$ composer require joy/voyager-export -W\nUsing version ^1.2 for joy/voyager-export\n./composer.json has been updated\nRunning composer update joy/voyager-export\nLoading composer repositories with package information\nUpdating dependencies\nYour requirements could not be resolved to an installable set of packages.\n\n  Problem 1\n    - Root composer.json requires joy/voyager-export ^1.2 -\u003e satisfiable by joy/voyager-export[v1.2.1, ..., v1.2.17].\n    - joy/voyager-export[v1.2.1, ..., v1.2.17] require illuminate/support ^7|^8 -\u003e found illuminate/support[v7.0.0, ..., 7.x-dev, v8.0.0, ..., 8.x-dev] but these were not loaded, likely because it conflicts with another require.\n\nYou can also try re-running composer require with an explicit version constraint, e.g. \"composer require joy/voyager-export:*\" to figure out if any version is installable, or \"composer require joy/voyager-export:^2.1\" if you know which you need.\n\nInstallation failed, reverting ./composer.json and ./composer.lock to their original content.\n```\n\n## How this project was built\n\nThis project was built with the following commands:\n```shell\n# Step 0: create a fresh new Laravel project\n$ composer create-project laravel/laravel joy-voyager-export-issue\n$ cd joy-voyager-export-issue/\n$ composer install\n$ git init\n$ git add .\n$ git commit -m \"first commit\"\n\n# Step 1: create a simple model Article\n$ php artisan make:model Article -m\n# TODO manually: Adjust migration and model file\n# TODO manually: Create the correct database manually\n# TODO manually: Adjust the .env file\n$ git add app/Models/Article.php database/migrations/*_create_articles_table.php\n$ git commit -m \"Create article model.\"\n\n# Step 2: install tcg/voyager\n$ composer require tcg/voyager\n$ php artisan voyager:install\n$ git add .\n$ git commit -m \"Install tcg/voyager\"\n\n# Step 3: setup an admin account for tcg/voyager\n$ php artisan voyager:admin your@email.com --create\n\n$ php artisan serve\n\n# TODO manually: check if tcg-voyager is available at http://127.0.0.1:8000/admin/login\n# TODO manually: kill the web server\n\n# Step 4: Try to install joy/voyager-export\n$ composer require joy/voyager-export\nUsing version ^1.2 for joy/voyager-export\n./composer.json has been updated\nRunning composer update joy/voyager-export\nLoading composer repositories with package information\nUpdating dependencies\nYour requirements could not be resolved to an installable set of packages.\n\n  Problem 1\n    - Root composer.json requires joy/voyager-export ^1.2 -\u003e satisfiable by joy/voyager-export[v1.2.1, ..., v1.2.17].\n    - joy/voyager-export[v1.2.1, ..., v1.2.17] require illuminate/support ^7|^8 -\u003e found illuminate/support[v7.0.0, ..., 7.x-dev, v8.0.0, ..., 8.x-dev] but these were not loaded, likely because it conflicts with another require.\n\nYou can also try re-running composer require with an explicit version constraint, e.g. \"composer require joy/voyager-export:*\" to figure out if any version is installable, or \"composer require joy/voyager-export:^2.1\" if you know which you need.\n\nInstallation failed, reverting ./composer.json and ./composer.lock to their original content.\n```\n\nThis procedure is inspired by [this tutorial](https://www.gekkode.com/developpement/laravel/tutoriel-laravel-8-pour-les-debutants/).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrozar%2Fjoy-voyager-export-issue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrozar%2Fjoy-voyager-export-issue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrozar%2Fjoy-voyager-export-issue/lists"}