aaronfrancis / airdrop
A Laravel package to deploy your application faster by skipping asset compilation when possible.
Fund package maintenance!
aarondfrancis
aaronfrancis.com/backstage
Installs: 144
Dependents: 0
Suggesters: 0
Security: 0
Stars: 189
Watchers: 3
Forks: 16
Open Issues: 3
Requires
- php: ^8.1
- illuminate/console: ^10.0|^11.0|^12.0
- illuminate/filesystem: ^10.0|^11.0|^12.0
- illuminate/support: ^10.0|^11.0|^12.0
Requires (Dev)
- mockery/mockery: ^1.3.3
- orchestra/testbench: ^8.0|^9.0|^10.0
- phpunit/phpunit: ^8.4|^9.5|^10.5|^11.5.3
README
Read the full docs at hammerstone.dev/airdrop/docs.
Airdrop for Laravel is a package that speeds up your deploys by skipping your asset build step whenever possible.
When you're deploying your code, Airdrop will calculate a hash of everything needed to build your assets: installed packages, JS/CSS files, ENV vars, etc.
After Airdrop has calculated a hash for these inputs, it will check to see if it has ever built this exact configuration before. If it has, it will pull down the built assets and put them in place, letting you skip the expensive build step.
Installation
You can install the package via Composer
composer require aaronfrancis/airdrop
Once the package is installed, you may optionally publish the config file by running
php artisan airdrop:install
You'll likely want to publish the config file so that you can set up your triggers and outputs.
Read the full docs at hammerstone.dev/airdrop/docs.
License
The MIT License (MIT).
Support
This is free! If you want to support me:
- Sponsor my open source work: aaronfrancis.com/backstage
- Check out my courses:
- Help spread the word about things I make
Credits
Airdrop was developed by Aaron Francis. If you like it, please let me know!
- Twitter: https://twitter.com/aarondfrancis
- Website: https://aaronfrancis.com
- YouTube: https://youtube.com/@aarondfrancis
- GitHub: https://github.com/aarondfrancis/solo