PHPackages                             zvestaphp/support - 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. zvestaphp/support

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

zvestaphp/support
=================

Rinvex common support helpers, contracts, and traits required by various Rinvex packages. Validator functionality, and basic controller included out-of-the-box.

0130PHP

Since Aug 30Pushed 6y ago1 watchersCompare

[ Source](https://github.com/zvestaphp/support)[ Packagist](https://packagist.org/packages/zvestaphp/support)[ RSS](/packages/zvestaphp-support/feed)WikiDiscussions master Synced 4d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Rinvex Support
==============

[](#rinvex-support)

**Rinvex common** support helpers, contracts, and traits required by various Rinvex packages. Validator functionality, and basic controller included out-of-the-box.

[![Packagist](https://camo.githubusercontent.com/b7cf8367b072a252f1470de51cea316032f04c8f7897954651551c835a7677bb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72696e7665782f737570706f72742e7376673f6c6162656c3d5061636b6167697374267374796c653d666c61742d737175617265)](https://packagist.org/packages/rinvex/support)[![VersionEye Dependencies](https://camo.githubusercontent.com/69cf7c6ce5151e195c6730dea3d93ba432e8ae1d07b8f5efc80d3c2b5b4cd65f/68747470733a2f2f696d672e736869656c64732e696f2f76657273696f6e6579652f642f7068702f72696e7665783a737570706f72742e7376673f6c6162656c3d446570656e64656e63696573267374796c653d666c61742d737175617265)](https://www.versioneye.com/php/rinvex:support/)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/14220a5447e8deee7c22b436ac05c2eefd4e564109ccbface31a9d0b9f2bcf19/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f72696e7665782f737570706f72742e7376673f6c6162656c3d5363727574696e697a6572267374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/rinvex/support/)[![Code Climate](https://camo.githubusercontent.com/1e05bfdcdd0cce9e3002c680356538577924a63b2e847b959aad85323d8e3e0e/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f6769746875622f72696e7665782f737570706f72742e7376673f6c6162656c3d436f6465436c696d617465267374796c653d666c61742d737175617265)](https://codeclimate.com/github/rinvex/support)[![Travis](https://camo.githubusercontent.com/97daa00cad9e1522e8a53024d68a96549d77097d2ab5cf0f70abc494dcd7a3d7/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f72696e7665782f737570706f72742e7376673f6c6162656c3d5472617669734349267374796c653d666c61742d737175617265)](https://travis-ci.org/rinvex/support)[![SensioLabs Insight](https://camo.githubusercontent.com/9d590c29f3dcd361930e8becd21cef11c6d4c5623ec926cc08f8231fefab2ced/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f32316239323265352d666161392d343737332d616338652d3561623535323239643336632e7376673f6c6162656c3d53656e73696f4c616273267374796c653d666c61742d737175617265)](https://insight.sensiolabs.com/projects/21b922e5-faa9-4773-ac8e-5ab55229d36c)[![StyleCI](https://camo.githubusercontent.com/4191b35d1ee7b0da2e27c1fe2bd612ce3dfe1673a64523a762f99155892e2142/68747470733a2f2f7374796c6563692e696f2f7265706f732f36303936383838302f736869656c64)](https://styleci.io/repos/60968880)[![License](https://camo.githubusercontent.com/d09df3899c1440185b70065d0d652bf2f57b25026d7c7737ce7f762ae586b004/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f72696e7665782f737570706f72742e7376673f6c6162656c3d4c6963656e7365267374796c653d666c61742d737175617265)](https://github.com/rinvex/support/blob/develop/LICENSE)

> **Note:** this package is just a support package for other Rinvex packages, which may not be useful on it's own, but contains some complementary generic functionality and also may not respect SemVer and break backward compatibility.

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

[](#installation)

Install via `composer require rinvex/support`

Usage
-----

[](#usage)

Support Helpers
---------------

[](#support-helpers)

### `intend()`

[](#intend)

The `intend` method returns redirect response:

```
intend([
    'route' => 'route.name.here',
    'withErrors' => ['error.message.id' => 'A custom error message'],
]);
```

> **Note:** this helper accepts `redirect` methods as it's input keys, such as `withErrors`, `with`, `back`, and `route` ..etc

### `lower_case()`

[](#lower_case)

The `lower_case` method converts the given string to lower-case:

```
$lowercaseStr = lower_case('THIS UPPER CASE TEXT WILL BE LOWER CASED');
```

### `upper_case()`

[](#upper_case)

The `upper_case` method converts the given string to upper-case:

```
$uppercaseStr = upper_case('this lower case text will be capitalized');
```

### `mimetypes()`

[](#mimetypes)

The `mimetypes` method gets valid mime types:

```
$mimetypes = mimetypes();
```

### `timezones()`

[](#timezones)

The `timezones` method gets valid timezones:

```
$timezones = timezones();
```

Changelog
---------

[](#changelog)

Refer to the [Changelog](CHANGELOG.md) for a full history of the project.

Support
-------

[](#support)

The following support channels are available at your fingertips:

- [Chat on Slack](http://chat.rinvex.com)
- [Help on Email](mailto:help@rinvex.com)
- [Follow on Twitter](https://twitter.com/rinvex)

Contributing &amp; Protocols
----------------------------

[](#contributing--protocols)

Thank you for considering contributing to this project! The contribution guide can be found in [CONTRIBUTING.md](CONTRIBUTING.md).

Bug reports, feature requests, and pull requests are very welcome.

- [Versioning](CONTRIBUTING.md#versioning)
- [Pull Requests](CONTRIBUTING.md#pull-requests)
- [Coding Standards](CONTRIBUTING.md#coding-standards)
- [Feature Requests](CONTRIBUTING.md#feature-requests)
- [Git Flow](CONTRIBUTING.md#git-flow)

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

If you discover a security vulnerability within this project, please send an e-mail to [help@rinvex.com](help@rinvex.com). All security vulnerabilities will be promptly addressed.

About Rinvex
------------

[](#about-rinvex)

Rinvex is a software solutions startup, specialized in integrated enterprise solutions for SMEs established in Alexandria, Egypt since June 2016. We believe that our drive The Value, The Reach, and The Impact is what differentiates us and unleash the endless possibilities of our philosophy through the power of software. We like to call it Innovation At The Speed Of Life. That’s how we do our share of advancing humanity.

License
-------

[](#license)

This software is released under [The MIT License (MIT)](LICENSE).

(c) 2016-2017 Rinvex LLC, Some rights reserved.

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/57220bcc6afe4ef362767e35e66fa9bb7682128ee88980aa18e9b3ef71c4a4b4?d=identicon)[zvestaphp](/maintainers/zvestaphp)

---

Top Contributors

[![indradevzapbuild](https://avatars.githubusercontent.com/u/36837016?v=4)](https://github.com/indradevzapbuild "indradevzapbuild (1 commits)")

### Embed Badge

![Health badge](/badges/zvestaphp-support/health.svg)

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

###  Alternatives

[leandrocfe/filament-ptbr-form-fields

Brazilian pt-BR form fields.

14398.7k](/packages/leandrocfe-filament-ptbr-form-fields)

PHPackages © 2026

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