Download the PHP package rougin/classidy without Composer

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

Classidy

Latest Version on Packagist Software License Build Status Coverage Status Total Downloads

A package that creates PHP classes using PHP. That's it.

Installation

Install Classidy through Composer:

Basic Usage

Creating a simple class

Creating a PHP class only requires the Classidy and Generator classes:

The setCodeLine method can also be used for specifying code of a method in a line based format. This may be useful in adding conditions in generating code of a method:

Adding parent class, interfaces

The class can be added with a parent class using extendsTo:

[!NOTE] If the added parent class or interface is not from the same namespace of the class to be generated, Classidy will automatically import the said parent class/interface.

For adding interfaces, the addInterface method can be used:

Adding traits

Similar in defining class and interfaces, adding a trait is possible using addTrait:

Adding methods

Based from the first example, the addMethod can be used to add a method to the class:

To add arguments in a specified method, kindy use the following methods below:

Method Description
addArrayArgument Adds a property with a array as its data type.
addBooleanArgument Adds an argument with a boolean as its data type.
addClassArgument Adds an argument with the specified class.
addFloatArgument Adds an argument with a float as its data type.
addIntegerArgument Adds an argument with an integer as its data type.
addStringArgument Adds an argument with a string as its data type.

To add a class argument without being its type declared, add withoutTypeDeclared after addClassArgument:

A method can also be defined as protected or private:

[!NOTE] By default, all of the specified methods are in public visibility.

The method can be alternatively be specified as a @method tag in the class:

Adding properties

Similiar to adding arguments in a method, adding properties to a class can be done by the following:

Method Description
addArrayProperty Adds a property with a array as its data type.
addBooleanProperty Adds a property with a boolean as its data type.
addClassProperty Adds a property with the specified class.
addFloatProperty Adds a property with a float as its data type.
addIntegerProperty Adds a property with an integer as its data type.
addStringProperty Adds a property with a string as its data type.

To change a visibility of a property, the methods asPublic and asPrivate can be used:

[!NOTE] By default, all of the specified properties are in protected visibility.

Alternatively, the property be specified as a @property tag in the class:

Setting an empty class

The setEmpty method can be used to clear any methods and properties previously specified. This maybe useful when generating empty classes without specifying a new Classidy class:

Changelog

Please see CHANGELOG for more information what has changed recently.

Testing

Credits

License

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


All versions of classidy with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.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 rougin/classidy contains the following files

Loading the files please wait ....