Download the PHP package metarush/getter without Composer

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

metarush/getter

Generate a class with getter methods from a yaml or env file. This is useful if you want to access variables in yaml/env files as PHP getter methods.

Install

Install via composer as metarush/getter

Sample usage

The following will generate a class named MyNewClass from contents of foo/sample.yaml using yaml adapter. The generated class will be saved in foo/ folder.

via CLI

vendor/metarush/getter/bin/generate -a yaml -c MyNewClass -s tests/unit/samples/sample.yaml -l foo/

via PHP script

Sample yaml content

E.g., located in foo/sample.yaml

stringVar: 'foo'
intVar: 9
floatVar: 2.1
boolVar: true
arrayVar:
  - foo
  - 1.3

Sample generated class

E.g., located in foo/MyNewClass.php

Supported types

Adapters

Advanced usage

Include namespace

If you want to include a namespace, use ->setNamespace('MyNamespace') or via CLI --namespace MyNamespace

Extend class

If you want to extend a class, use ->setExtendedClass('MyBaseClass') or via CLI --extendClass MyBaseClass

Dummify field values

If you want to dummify field values, use the ->setDummifyValues(true) config method or via CLI --dummify

Why dummify?

It's useful for hiding sensitive data such as credentials. Credentials should not be in the source code. The field values of the generated classes with dummy data can later be repopulated (by your custom scripts) on runtime with actual values (see data replacer below). The generated class retains the data types even if the original values have been dummified.

If dummified, the generated field values are as follows:

Data replacer for dummified values

If you want to dynamically change the values of the dummified data on runtime, use ->setConstructorType(\MetaRush\Getter\Config::CONSTRUCTOR_DATA_REPLACER); or via CLI --dataReplacer

You can then call the generated class and inject an array of replacement values on runtime:

Call parent

If you want to call a parent class, use ->setConstructorType(\MetaRush\Getter\Config::CONSTRUCTOR_CALL_PARENT) or via CLI --callParent

Call parent and use data replacer

If you want to call a parent class and also use data replacer, use ->setConstructorType(\MetaRush\Getter\Config::CONSTRUCTOR_BOTH) or via CLI --callParent --dataReplacer

Note: You should only call ->setConstructorType() once

Generate constants

If you want to generate the key/value pairs as constants, use ->setGenerateAsConstants(true) or via CLI --constants.


All versions of getter with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
m1/env Version ^2.1
symfony/yaml Version ^4.3
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 metarush/getter contains the following files

Loading the files please wait ....