Description:
lenvup.sh
is a Bash script designed to streamline the setup and maintenance of Laravel project dependencies. It intelligently handles both Composer (PHP) and various Node.js package managers (npm, Yarn, pnpm, and Bun), ensuring your project's dependencies are correctly installed and updated. The script checks for the presence of composer.json
and package.json
, then examines their respective lock files to determine the appropriate action.
Key Features:
- Composer Management:
- If
composer.lock
exists, runscomposer update -o
andcomposer upgrade
to update dependencies with optimizations. - If
composer.lock
is missing, runscomposer install
followed bycomposer update -i
for interactive updates.
- If
- Node.js Package Management:
- Intelligently detects the presence of
package-lock.json
,yarn.lock
,pnpm-lock.yaml
, orbun.lockb
. - Runs the appropriate update command (
npm update
,yarn update
,pnpm update
, orbun update
) based on the detected lock file. - If no lock file is found for any of the package managers, and a
package.json
exists, it will then install using npm, yarn, pnpm, or bun, respectively, and then run thedev
script.
- Intelligently detects the presence of
- Error Handling:
- gracefully skips if no
package.json
- checks if there's any other lock files before installing dependencies using npm, yarn, pnpm, or bun
- includes basic error checking and reporting for each command execution.
- gracefully skips if no
- Detailed Reporting:
- Provides a comprehensive report of all actions taken, including timestamps and success/failure indicators.
- Offers the option to save the report as a Markdown file for record-keeping.
- Laravel Focused:
- specifically crafted to follow best practices for Laravel development workflows.
Usage:
The script is designed to be run in the root directory of your Laravel project. It automatically detects the necessary files and executes the appropriate commands.
One-liner to Clone, CHMOD, and Run:
git clone https://gist.github.com/aldoyh/a05a94d85cde84abe60f459c2caf7b44.git ~/.lenvup && cd ~/.lenvup && chmod +x lenvup.sh && ./lenvup.sh && cd .. && rm -rf ~/.lenvup
Further Development:
This script is a robust starting point for managing Laravel dependencies. Future enhancements could include:
- More granular control over update behavior.
- Support for additional package managers or build tools.
- Integration with CI/CD pipelines.
Contribution:
Contributions and suggestions are welcome! Feel free to fork the gist and submit pull requests.