composer / composer

Dependency Manager for PHP
https://getcomposer.org/
MIT License
28.63k stars 4.55k forks source link

Script @php artisan package:discover --ansi handling the post-autoload-dump event returned with error code 1 #11571

Closed Ditzz02 closed 1 year ago

Ditzz02 commented 1 year ago

My composer.json:

`{
    "name": "laravel/framework",
    "description": "The Laravel Framework.",
    "keywords": ["framework", "laravel"],
    "license": "MIT",
    "homepage": "https://laravel.com",
    "support": {
        "issues": "https://github.com/laravel/framework/issues",
        "source": "https://github.com/laravel/framework"
    },
    "authors": [
        {
            "name": "Taylor Otwell",
            "email": "taylor@laravel.com"
        }
    ],
    "require": {
        "php": "^7.3|^8.0",
        "ext-json": "*",
        "ext-mbstring": "*",
        "ext-openssl": "*",
        "doctrine/inflector": "^1.4|^2.0",
        "dragonmantank/cron-expression": "^3.0.2",
        "egulias/email-validator": "^2.1.10",
        "laravel/serializable-closure": "^1.0",
        "league/commonmark": "^1.3|^2.0.2",
        "league/flysystem": "^1.1",
        "monolog/monolog": "^2.0",
        "nesbot/carbon": "^2.53.1",
        "opis/closure": "^3.6",
        "psr/container": "^1.0",
        "psr/log": "^1.0|^2.0",
        "psr/simple-cache": "^1.0",
        "ramsey/uuid": "^4.2.2",
        "swiftmailer/swiftmailer": "^6.3",
        "symfony/console": "^5.4",
        "symfony/error-handler": "^5.4",
        "symfony/finder": "^5.4",
        "symfony/http-foundation": "^5.4",
        "symfony/http-kernel": "^5.4",
        "symfony/mime": "^5.4",
        "symfony/process": "^5.4",
        "symfony/routing": "^5.4",
        "symfony/var-dumper": "^5.4",
        "tijsverkoyen/css-to-inline-styles": "^2.2.2",
        "vlucas/phpdotenv": "^5.4.1",
        "voku/portable-ascii": "^1.6.1"
    },
    "replace": {
        "illuminate/auth": "self.version",
        "illuminate/broadcasting": "self.version",
        "illuminate/bus": "self.version",
        "illuminate/cache": "self.version",
        "illuminate/collections": "self.version",
        "illuminate/config": "self.version",
        "illuminate/console": "self.version",
        "illuminate/container": "self.version",
        "illuminate/contracts": "self.version",
        "illuminate/cookie": "self.version",
        "illuminate/database": "self.version",
        "illuminate/encryption": "self.version",
        "illuminate/events": "self.version",
        "illuminate/filesystem": "self.version",
        "illuminate/hashing": "self.version",
        "illuminate/http": "self.version",
        "illuminate/log": "self.version",
        "illuminate/macroable": "self.version",
        "illuminate/mail": "self.version",
        "illuminate/notifications": "self.version",
        "illuminate/pagination": "self.version",
        "illuminate/pipeline": "self.version",
        "illuminate/queue": "self.version",
        "illuminate/redis": "self.version",
        "illuminate/routing": "self.version",
        "illuminate/session": "self.version",
        "illuminate/support": "self.version",
        "illuminate/testing": "self.version",
        "illuminate/translation": "self.version",
        "illuminate/validation": "self.version",
        "illuminate/view": "self.version"
    },
    "require-dev": {
        "aws/aws-sdk-php": "^3.198.1",
        "doctrine/dbal": "^2.13.3|^3.1.4",
        "filp/whoops": "^2.14.3",
        "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
        "league/flysystem-cached-adapter": "^1.0",
        "mockery/mockery": "^1.4.4",
        "orchestra/testbench-core": "^6.27",
        "pda/pheanstalk": "^4.0",
        "phpunit/phpunit": "^8.5.19|^9.5.8",
        "predis/predis": "^1.1.9",
        "symfony/cache": "^5.4"
    },
    "provide": {
        "psr/container-implementation": "1.0",
        "psr/simple-cache-implementation": "1.0"
    },
    "conflict": {
        "tightenco/collect": "<5.5.33"
    },
    "autoload": {
        "files": [
            "src/Illuminate/Collections/helpers.php",
            "src/Illuminate/Events/functions.php",
            "src/Illuminate/Foundation/helpers.php",
            "src/Illuminate/Support/helpers.php"
        ],
        "psr-4": {
            "Illuminate\\": "src/Illuminate/",
            "Illuminate\\Support\\": ["src/Illuminate/Macroable/", "src/Illuminate/Collections/"]
        }
    },
    "autoload-dev": {
        "files": [
            "tests/Database/stubs/MigrationCreatorFakeMigration.php"
        ],
        "psr-4": {
            "Illuminate\\Tests\\": "tests/"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "8.x-dev"
        }
    },
    "suggest": {
        "ext-bcmath": "Required to use the multiple_of validation rule.",
        "ext-ftp": "Required to use the Flysystem FTP driver.",
        "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
        "ext-memcached": "Required to use the memcache cache driver.",
        "ext-pcntl": "Required to use all features of the queue worker.",
        "ext-posix": "Required to use all features of the queue worker.",
        "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
        "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
        "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
        "brianium/paratest": "Required to run tests in parallel (^6.0).",
        "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
        "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
        "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
        "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
        "laravel/tinker": "Required to use the tinker console command (^2.0).",
        "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
        "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
        "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
        "mockery/mockery": "Required to use mocking (^1.4.4).",
        "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
        "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
        "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
        "predis/predis": "Required to use the predis connector (^1.1.9).",
        "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
        "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
        "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
        "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
        "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
        "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "composer/package-versions-deprecated": true
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
`

Output of composer diagnose:

Checking composer.json: OK
Checking platform settings: OK
Checking git settings: OK git version 2.39.2
Checking http connectivity to packagist: OK
Checking https connectivity to packagist: OK
Checking github.com rate limit: OK
Checking disk free space: OK
Checking pubkeys:
Tags Public Key Fingerprint: 57815BA2 7E54DC31 7ECC7CC5 573090D0  87719BA6 8F3BB723 4E5D42D0 84A14642
Dev Public Key Fingerprint: 4AC45767 E5EC2265 2F0C1167 CBBB8A2B  0C708369 153E328C AD90147D AFE50952
OK
Checking composer version: You are not running the latest stable version, run `composeComposer version: 2.5.4
PHP version: 8.2.4
PHP binary path: C:\xampp\php\php.exe
OpenSSL version: OpenSSL 3.0.8 7 Feb 2023
cURL version: 7.85.0 libz 1.2.12 ssl OpenSSL/3.0.8
zip: extension present, unzip not available, 7-Zip not available

When I run this command: composer update

Loading composer repositories with package information
Info from https://repo.packagist.org: #StandWithUkraine
Updating dependencies
Nothing to modify in lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Package fruitcake/laravel-cors is abandoned, you should avoid using it. No replacement was suggested.
Package swiftmailer/swiftmailer is abandoned, you should avoid using it. Use symfony/mailer instead.
Generating optimized autoload files
Class App\Http\Controllers\RiwayatjabatanfController located in C:/Coba/Sistem-Informasi-Kepegawaian-main/app\Http\Controllers\RiwayatJabatanfController.php does not comply with psr-4 autoloading standard. Skipping.
> Illuminate\Foundation\ComposerScripts::postAutoloadDump
> @php artisan package:discover --ansi

   InvalidArgumentException

  Please provide a valid cache path.

  at C:\Coba\Sistem-Informasi-Kepegawaian-main\vendor\laravel\framework\src\Illuminate\View\Compilers\Compiler.php:36
     32▕      */
     33▕     public function __construct(Filesystem $files, $cachePath)
     34▕     {
     35▕         if (! $cachePath) {
  ➜  36▕             throw new InvalidArgumentException('Please provide a valid cache 
path.');
     37▕         }
     38▕
     39▕         $this->files = $files;
     40▕         $this->cachePath = $cachePath;

  1   C:\Coba\Sistem-Informasi-Kepegawaian-main\vendor\laravel\framework\src\Illuminate\View\ViewServiceProvider.php:88
      Illuminate\View\Compilers\Compiler::__construct(Object(Illuminate\Filesystem\Filesystem))

  2   C:\Coba\Sistem-Informasi-Kepegawaian-main\vendor\laravel\framework\src\Illuminate\Container\Container.php:873
      Illuminate\View\ViewServiceProvider::Illuminate\View\{closure}(Object(Illuminate\Foundation\Application), [])
Script @php artisan package:discover --ansi handling the post-autoload-dump event returned with error code 1

And I expected this to happen:

Seldaek commented 1 year ago

This is a problem in laravel/artisan, not composer.