Download the PHP package philip/laravel-instagres without Composer
On this page you can find all versions of the php package philip/laravel-instagres. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download philip/laravel-instagres
More information about philip/laravel-instagres
Files in philip/laravel-instagres
Package laravel-instagres
Short Description Laravel integration for Neon Claimable Postgres — instant PostgreSQL databases, no signup
License MIT
Homepage https://github.com/philip/laravel-instagres
Informations about the package laravel-instagres
Instagres for Laravel
This package connects Laravel to Neon Claimable Postgres. You can create a database and keep using it with the returned connection URLs without a Neon account or API auth. Sign in to Neon only when you claim a database into your account. The package builds on philip/instagres.
Features
- Instant provisioning. No Neon account or auth to call the create API from Artisan or the facade
- Connect with the returned URLs. No Neon login for queries (only for claim)
- Immediate connection string availability. Artisan can write *`DB_
**, **DB_URL**, or named keys to **.env`** - 72-hour lifespan unless you claim the database for permanent use in Neon (
claim_urlin the response) - Create a database with
php artisan instagres:createorInstagres::create() - Pooled and direct connection strings in the API response (
--direct-urlputs the direct string on the default connection when you use--set-default) - instagres-php handles HTTP and helpers: create,
Client::getDatabase($id)(same response shape as create), connection parsing, claim URLs, and UUID generation - Optional logical replication on create (command flag or config)
- Laravel 10.x through 13.x, PHP
^8.2
Installation
Laravel loads the package through package discovery.
Publish the config when you want to tune API ref, referrer, logical replication, or the default claim URL variable name:
Quick start
Set the default database (writes pooled DB_* keys to .env):
Pooled connections fit typical web and API traffic.
Add --url when you want one DB_URL line instead of separate *`DB_`** keys.
Run in CI or scripts without prompts:
Use a direct (non-pooled) endpoint on the default connection when migrations or tooling require it:
Save a second database without changing the default connection:
Print claim URLs so you can keep a database past the trial window:
If you skip --set-default and --save-as, the create command only prints details. It does not change .env.
Verify the connection
More detail
See the documentation index for full command tables, configuration, the facade, upgrades, and workflows.
Development
Clone the repository and run composer test if you contribute changes.
Changelog
See CHANGELOG.md.
Contributing
Contributions are welcome. Open a pull request.
Security
Email [email protected] for security issues.
Links
- SDK: philip/instagres
- Neon: Claimable Postgres
- Website: neon.com
License
The MIT License (MIT). See LICENSE.md.
All versions of laravel-instagres with dependencies
illuminate/contracts Version ^10.0||^11.0||^12.0||^13.0
philip/instagres Version ^0.2
spatie/laravel-package-tools Version ^1.16