|
63 | 63 | "docker-up": "docker compose up -d", |
64 | 64 | "docker-down": "docker compose down", |
65 | 65 | "docker-restart": "docker compose down && docker compose up -d", |
66 | | - "docker-rebuild": "PHP_VERSION=8.4 docker compose up -d --no-deps --build", |
| 66 | + "docker-rebuild": [ |
| 67 | + "Composer\\Config::disableProcessTimeout", |
| 68 | + "PHP_VERSION=8.4 docker compose up -d --no-deps --build" |
| 69 | + ], |
| 70 | + "docker-rebuild-with-xdebug": [ |
| 71 | + "Composer\\Config::disableProcessTimeout", |
| 72 | + "PHP_VERSION=8.4 XDEBUG_ENABLED=true docker compose up -d --no-deps --build" |
| 73 | + ], |
67 | 74 | "docker-m1": "ln -s docker-compose-m1.override.yml docker-compose.override.yml", |
68 | 75 | "testbench-unlink": "rm ./vendor/orchestra/testbench-core/laravel/vendor", |
69 | 76 | "testbench-link": "ln -s /var/www/html/vendor ./vendor/orchestra/testbench-core/laravel/vendor", |
|
72 | 79 | "phpstan": "vendor/bin/phpstan --memory-limit=256M", |
73 | 80 | "phpstan-pro": "vendor/bin/phpstan --memory-limit=256M --pro", |
74 | 81 | "cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config=.php-cs-fixer.php", |
75 | | - "test": "./test --no-coverage", |
76 | | - "test-full": "./test", |
77 | | - "act": "act -j tests --matrix 'laravel:^11.0'", |
78 | | - "act-input": "act -j tests --matrix 'laravel:^11.0' --input" |
| 82 | + "test": [ |
| 83 | + "Composer\\Config::disableProcessTimeout", |
| 84 | + "./test --no-coverage" |
| 85 | + ], |
| 86 | + "test-full": [ |
| 87 | + "Composer\\Config::disableProcessTimeout", |
| 88 | + "./test" |
| 89 | + ], |
| 90 | + "act": [ |
| 91 | + "Composer\\Config::disableProcessTimeout", |
| 92 | + "act -j tests --matrix 'laravel:^11.0'" |
| 93 | + ], |
| 94 | + "act-input": [ |
| 95 | + "Composer\\Config::disableProcessTimeout", |
| 96 | + "act -j tests --matrix 'laravel:^11.0' --input" |
| 97 | + ] |
79 | 98 | }, |
80 | 99 | "minimum-stability": "dev", |
81 | 100 | "prefer-stable": true, |
|
0 commit comments