library components
PHP 5.3+ components over Symfony2
alterphp/components
PHP 5.3+ components over Symfony2
- Wednesday, February 15, 2017
- by alterphp
- Repository
- 1 Watchers
- 5 Stars
- 139 Installations
- PHP
- 2 Dependents
- 0 Suggesters
- 1 Forks
- 0 Open issues
- 4 Versions
- 0 % Grown
AlterPHP Components
Compatible with Symfony 2.1.x branch, not tested with further version., (*1)
Some components I use in my developments (mostly with Symfony2), (*2)
, (*3)
Components list
-
AlterPHP\Component\Form\Type\ChoiceBitType, (*4)
Based on Symfony2 components, this field type provides the way to store
a collection of choices in a simple integer field/column. It works the same
as ChoiceType but takes and returns an integer that is the sum of each choice
bitWeight value., (*5)
bitWeight field is an integer indicating the power of two that is assigned to the choice and must be unique., (*6)
This component has following dependencies :, (*7)
-
AlterPHP\Component\Form\Type\EntityBitType, (*8)
Based on Symfony2 components, this field type provides the way to store
a collection of entities in a simple integer field/column. It works the same
as EntityType but takes and returns an integer that is the sum of each entity
bitWeight value., (*9)
bitWeight field is an integer indicating the power of two that is assigned to the entity and must be unique., (*10)
This component has following dependencies :, (*11)
-
AlterPHP\Component\HttpFoundation\RedirectionResponseWithCookie, (*12)
Based on Symfony2 components, this class provides a simple RedirectResponse object
with the ability to set cookies from the constructor., (*13)
This component has following dependencies :, (*14)
Installation in a Symfony2 project
Add following lines in the composer file :, (*15)
"require": {
...,
"alterphp/components": "1.1.*"
Then run :, (*16)
composer --dev install