PHPackages                             bozboz/enquiry - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. bozboz/enquiry

AbandonedLibrary[Utility &amp; Helpers](/categories/utility)

bozboz/enquiry
==============

v1.1.0(10y ago)0106PHPPHP &gt;=5.3.0

Since May 21Pushed 4y ago3 watchersCompare

[ Source](https://github.com/bozboz/enquiry)[ Packagist](https://packagist.org/packages/bozboz/enquiry)[ RSS](/packages/bozboz-enquiry/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (5)Versions (4)Used By (0)

Bozboz\\Enquiry
===============

[](#bozbozenquiry)

Installation
------------

[](#installation)

1. Add `Bozboz\Enquiry\EnquiryServiceProvider` to the `providers` array in `app/config/app.php`
2. Add `contact_recipient` and `contact_name` to `app/config/app.php`
3. Add the following to `app/config/app.php`

    ```
     'enquiry_recipient_address' => $_ENV['ENQUIRY_RECIPIENT_ADDRESS'],
     'enquiry_recipient_name' => $_ENV['ENQUIRY_RECIPIENT_NAME'],

    ```

Consequently define the environment variables in your `.env.dev.php` file.

3. Add `'Enquiry' => 'Bozboz\Enquiry\Facades\Enquiry'` to the `aliases` array in `app/config/app.php`
4. Set `from` and `name` in `app/config/mail.php`
5. Setup a route

    ```
     Route::post('contact', array('as' => 'contact-process', function()
     {
         $enquiry = Enquiry::make(Input::get(), array(
             'name' => 'required',
             'email' => 'required|email',
             'message' => 'required|min:20'
         ));

         if ($enquiry->fails()) {
             return Redirect::to(URL::previous() . '#form')->withInput()->withErrors($enquiry->getErrors());
         } else {
             return Redirect::to(URL::previous() . '#form')->with('success', true);
         }
     }));

    ```
6. Point your contact form to the above route

    ```
     {{ Form::open(['route' => 'contact-process', 'role' => 'form', 'id' => 'form']) }}

    ```
7. Create the `enquiry` and `enquiry-text` files within `app/views/emails`

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~256 days

Total

3

Last Release

3861d ago

Major Versions

v0.1.0 → v1.0.02015-01-15

### Community

Maintainers

![](https://www.gravatar.com/avatar/3c709396f3a6a7048c1c89615c6fce3f8301bd5715c641bf07b48268187727a3?d=identicon)[bozboz](/maintainers/bozboz)

---

Top Contributors

[![samdking](https://avatars.githubusercontent.com/u/1331514?v=4)](https://github.com/samdking "samdking (11 commits)")

### Embed Badge

![Health badge](/badges/bozboz-enquiry/health.svg)

```
[![Health](https://phpackages.com/badges/bozboz-enquiry/health.svg)](https://phpackages.com/packages/bozboz-enquiry)
```

###  Alternatives

[akaunting/laravel-money

Currency formatting and conversion package for Laravel

7825.3M18](/packages/akaunting-laravel-money)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[prologue/alerts

Prologue Alerts is a package that handles global site messages.

3486.1M30](/packages/prologue-alerts)[watson/active

Laravel helper for recognising the current route, controller and action

3253.6M14](/packages/watson-active)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[bakame/laravel-domain-parser

Laravel package to integrate PHP Domain parser.

26534.8k4](/packages/bakame-laravel-domain-parser)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
