Download the PHP package fikrimi/laravel-helper without Composer

On this page you can find all versions of the php package fikrimi/laravel-helper. 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-helper

Yet another laravel helper

This is my personal Laravel helper and decided to published it, hopefully one of them become useful for someone somewhere. You can use it as a whole or just use your own HelperServiceProvider and copy paste what you need. If you think any function you think redundant, stupid or unusable just issue it.

It consists of 5 helper group.

General

array_keys_exists(array $keys, array $arr)

It validate multiple keys is exists on array. All of the keys should exists or it will return false.

is_assoc(array $arr)

Check if it is an associative array or not.

ddr()

"Debug and Die but Readable", like dd() but it always convert to array first. So imagine dumping your model but it always ->toArray() first so you can read it like a normal human being and still have the perks of dd() like collapse and such. It works on every Arrayble thing (to convert to array) or anything beside it (like dd).

dr()

Like ddr() above, but didn't die. so you could set up something like this

round_up($number, $per = 500) and round_down($number, $per = 500)

Ceil $number to its nearest $per, I should've set the $per to be configurable, maybe next time.

bind_sql(Illuminate\Database\Query\Builder\Builder $builder)

This one is useful for debugging. Its like ->toSql() but it will bind all the required parameters. It need builder, so it must be before the query is executed (like before ->first() or ->get()).

But my true intention is actually using it for subquery, imagine you can use the JOIN subquery but still having the advanted of query builder.

In above example we try to use subquery of Books to try and join with its Authors, and group it again to get their company releases count. Maybe this is not an appropriate example, but you get the idea, to convert a query builder to its SQL-binded form and join it raw with other query builder.

array_insert_before(array $array, $key, array $new)

Insert new element before $key

Form

String

Url

Arbitrary


All versions of laravel-helper with dependencies

PHP Build Version
Package Version
Requires php Version >=7
illuminate/support Version ^5.5|^6
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 fikrimi/laravel-helper contains the following files

Loading the files please wait ....