Download the PHP package ryunosuke/functions without Composer

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

php-function

Install

Usage

各リファレンスは https://arima-ryunosuke.github.io/document/php-functions/ を参照してください。 変更点は RELEASE.md です。

import

各関数前で assert が行われます。具体的には下記の動作です。

これは下記の動作を満たすためです。

export

下記のようにすると指定名前空間でファイル自体が吐き出されます。 こっちの利用方法がメインです。

あとはプロジェクト固有の include.php などで吐き出したファイルを読み込めば OK です。 これの利点は名前空間を変更できる点と、管理下のディレクトリに吐き出せることでカスタムができる点です。 さらに package との関連性が切れるため、原理上競合しなくなります。

下記のように第2引数を指定すると指定した関数と依存関係にある関数のみが吐き出されます。

さらに第2引数にファイル名やディレクトリ名を与えるとそれらを php とみなして実際に使用されている関数のみが吐き出されます。

依存関係も解決するので、例えば funcAfuncBfuncC に依存していれば funcC も吐き出されます。 用途はちょろっとしたコード片のコピペ用です(全体は要らんけど特定のやつだけ吐き出したい用途が個人的にあった)。

上記は composer.jsonautoload をよしなに読んで自動で吐き出すコマンドが用意されています。

ただし、ほとんど内部用です。

下記のように exportClass を使用すると単一静的クラスとして吐き出せます。

用途はいわゆる Utils 静的クラスです。 ただし、ほとんど内部用です。

Development

基本的に触るのは src/Package 以下のみです。他の似たようなファイルは自動生成です。

同じ関数があちこちにバラけるので、IDE によるジャンプが活かせません。 phpstorm 等なら 'include' を Exclude するといいでしょう。

composer subcommand として下記が定義されています。


All versions of functions with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
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 ryunosuke/functions contains the following files

Loading the files please wait ....