Download the PHP package mcmatters/laravel-helpers without Composer

On this page you can find all versions of the php package mcmatters/laravel-helpers. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-helpers

Laravel Helpers

Latest Stable Version Build Status Total Downloads

Installation

composer require mcmatters/laravel-helpers

Then run the command

If you prefer manual installation, then add to config/app.php into providers section next line:

Otherwise it will be autodiscovered.

Configuration

Since v2.0, you can disable all helper functions and use helper classes, if you prefer to use helper functions, you can choose what exactly section do you want to use (array, dev, string, etc)

Functions

Arrays

array_first_key(array $array)

The array_first_key function returns first key from the given array.

array_has_with_wildcard(array $array, string $keys, bool $searchWithSegment)

The array_has_with_wildcard is analogue of function array_has with ability to search with wildcard. Also it can search keys with dots (i.e. when you want to get some data from multiple field when validation is failed).

array_key_by(array $array, string $key)

The array_key_by function returns a new associative array grouped by $key.

array_contains(array $array, string $needle, bool $byKey = false)

The array_contains function returns true if array contains given $needle. You can also search by array keys. This function searches only in first level of array.

array_has_only_int_keys(array $array)

The array_has_only_int_keys function checks whether keys of given array as integer or not.

shuffle_assoc(array $array)

The shuffle_assoc function works like basic shuffle but with key preserving.

array_change_key_case_recursive(array $array, int $case = CASE_LOWER)

The array_change_key_case_recursive function works like array_change_key_case except that it works recursively.

Artisan

get_php_path()

The get_php_path function returns path to executable php.

get_artisan()

The get_artisan function return path to executable artisan.

run_background_command(string $command, array $parameters = [])

The run_background_command function runs the given command in background.

Class

get_class_constants($class)

The get_class_constants function returns an array with all class constants.

get_class_constants_start_with($class, string $string)

The get_class_constants_start_with function returns an array with constants which start with passed string.

Database

compile_sql_query($sql, array $bindings = null)

The compile_sql_query function replaces all placeholders given bindings.

get_all_tables(bool $withColumns = true, string $connection = null)

The get_all_tables function returns the list all tables with their columns.

search_entire_database(string $keyword, string $connection = null)

The search_entire_database function searches entire database. It works only with MySQL and SQL drivers.

has_query_join_with($query, string $with)

The has_query_join_with function determines whether query has a joined table.

Dev

ddq($query, bool $die = false)

The ddq is analogue of function dd, but uses only for database queries.

dump($value, bool $output = false)

The dump is analogue of function dd, but without stopping the php script execution.

Env

is_production_environment()

The is_production_environment function checks whether the production environment is using.

is_local_environment()

The is_local_environment function checks whether the local environment is using.

is_testing_environment()

The is_testing_environment function checks whether the testing environment is using.

Math

calculate_percentage($count, $total, int $decimals)

The calculate_percentage function calculates percentages.

calculate_discount($discount, $total, int $decimals)

The calculate_discount function calculates discount.

calculate_with_discount($discount, $total, int $decimals)

The calculate_with_discount function calculates price with discount.

has_float_remainder(float $number)

The has_float_remainder function checks whether the remainder of the float is not zero.

convert_bytes($value, string $returnType)

The convert_bytes function converts bytes between any sizes.

get_size_types()

The get_size_types function returns the list all available size types.

is_number_even($number)

The is_number_even function checks whether the number is even.

is_number_odd($number)

The is_number_odd function checks whether the number is odd.

is_number_in_range($number, $from, $to)

The is_number_in_range function checks whether the number is in a given range.

Model

get_model_from_query($query)

The get_model_from_query function returns a model from a query.

destroy_models_from_query($query)

The destroy_models_from_query function destroy all models from a query. Useful when you want to delete many models with calling model's hooks.

is_morphed_belongs_parent(Model $morphed, Model $parent, string $name, string $type, string $id)

The is_morphed_belongs_parent function determines whether morphed model is belongs to parent.

Request

is_request_method_update($request)

The is_request_method_update function checks whether the current request method is for updating.

Server

long_processes()

The long_processes function sets the maximum value of the optimal configuration for the server to perform long operations.

get_upload_max_filesize(string $returnType)

The get_upload_max_filesize function returns the value of the upload_max_filesize from php.ini in any of the formats.

get_post_max_size(string $returnType)

The get_post_max_size function returns the value of the post_max_size from php.ini in any of the formats.

is_max_post_size_exceeded()

The is_max_post_size_exceeded function checks whether is the permissible size of the value post_max_size exceeded.

get_max_response_code()

The get_max_response_code function returns maximum available value for response code.

String

str_lower(string $string)

The str_lower is function wrapper over Str::lower.

str_upper(string $string)

The str_upper is function wrapper over Str::upper.

str_ucwords(string $string)

The str_ucwords function converts a value to studly caps case with spaces.

strpos_all(string $haystack, string $needle, bool $caseInsensitive = false)

The strpos_all function returns all occurrences of $needle in a $haystack

Type

random_bool()

The random_bool function returns a random boolean value.

casting_bool($value, bool $default)

The casting_bool function returns casted boolean value.

is_json($json, $returnDecoded)

The is_json function check whether passed string is a json.

is_uuid($string)

The is_uuid function check whether passed value is a valid uuid value.

Url

get_base_url(string $url)

The get_base_url function returns base url.

get_host_url(string $url, bool $stripWww = true)

The get_host_url function returns host url.

routes_path(string $path)

The routes_path function returns path to routes folder.


All versions of laravel-helpers with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
illuminate/support Version 9.* || 10.*
illuminate/database Version 9.* || 10.*
illuminate/console Version 9.* || 10.*
symfony/http-foundation Version ^6.0
symfony/process Version ^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mcmatters/laravel-helpers contains the following files

Loading the files please wait ....