laravel-packager
laravel-packager copied to clipboard
A cli tool for creating Laravel packages
@Jeroen-G thanks for the library. It's really helpful. I have a custom package where it needs a few illuminate packages and some third-party packages. May I know any command to...
- Root composer.json requires yaap/theme ^4.1 -> satisfiable by yaap/theme[4.1.0]. - yaap/theme 4.1.0 requires laravel/framework ^8.0 -> found laravel/framework[v8.0.0, ..., 8.x-dev] but it conflicts with your root composer.json require (^9.19).
I am using Laravel Sail and my PHP version is 8. So the version of Laravel Packager I got is 2.5. For some reason, when I delete a package, the...
when I add this command, php artisan packager:new Acme PageReview --i Getting this issue, ``` GuzzleHttp\Exception\RequestException cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)...
Right now in composer.json path are added with full path of local environment which should be changed when you move project. Now is: ``` "repositories": { "vendor/package": { "type": "path",...
Hi, I keep getting an ```No such file or directory``` ```ErrorException``` on this line https://github.com/Jeroen-G/laravel-packager/blob/5be28b9257ee8493e1e9805d8beeab60c24341a5/src/FileHandler.php#L180 However, if I set a xdebug breakpoint at the ```require``` here and continue running, no...
Laravel 8.24 PHP 7.4.10 Homestead 9 (vagrant up via an admin cmd in windows 10) After the package version 2.6 is installed and when I try to create a new...
Hi! I just discover your package today, very interesting! I modified `packager:get` and `packager:git` to be more flexible. In other words, I created a class that will parse the source...
I've changed the way `packager:git` works. In stead of cloning the repository directly to the `/packages/myVendor/myPackage` folder, it is added as a VCS repository in `composer.json` and installed like any...