Download the PHP package webhappens/magic-properties without Composer

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

tests

Magic properties

Add a simple fluid interface for getters, setters, accessors and mutators to any PHP class.

Installation

Install via composer:

Insert the MagicProperties trait into your class:

If your class is already using the __call method, add the following to it:

Getters

Getters support both "property" and "method" syntax and allow you to get public and protected properties.

The Getter "method" name may optionally be prefixed with "get" if you prefer that syntax.

Setters

Setters support both "property" and "method" syntax and allow you to set public and protected properties.

The Setter "method" name may optionally be prefixed with "set" if you prefer that syntax.

Readonly properties

If you want to protect specific protected properties from being set from outside the class, you may list them in an $readonly array inside your class.

Readonly properties can still be changed from inside the class using the standard php syntax.

Chainable setters

When using the "method" syntax for Setters you may set multiple properties in a single chain.

Accessors

When a Getter is called for a protected property from outside the class, the value is passed through an Accessor method, giving you a chance to modify it before it is returned.

When called from inside the class, it is only passed through an Accessor method when "method" syntax is used.

public and private properties are never passed through an Accessor method.

To add an Accessor method for a protected property, simply create a protected method that follows the Accessor naming convention of get{PropertyName}Property.

The method will receive the stored value as a single argument and should return the modified value.

In this example, the role will be returned with an uppercase first letter.

Mutators

When a Setter is called for a protected property from outside the class, the value is passed through a Mutator method, giving you a chance to modify it before it is set.

When called from inside the class, it is only passed through a Mutator method when "method" syntax is used.

public and private properties are never passed through a Mutator method.

To add a Mutator method for a protected property, simply create a protected method that follows the Mutator naming convention of set{PropertyName}Property.

The method will receive the passed value as a single argument and should return the modified value.

In this example, the role will be stored with an uppercase first letter.

Serialization

Call the getMagicProperties method to serialize all public and protected properties to an array.

Credits

Our Str class is just a copy of some functions from Laravel's Str helper.

License

The MIT License (MIT). Please see License File for more information.


All versions of magic-properties with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3|^8.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 webhappens/magic-properties contains the following files

Loading the files please wait ....