newfrontiers / breeze
Basic support for Breeze enabled appplications
Installs: 5 193
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.5
This package is auto-updated.
Last update: 2024-12-22 15:50:53 UTC
README
Install
Via Composer
$ composer require newfrontiers-breeze
Usage
$type = new Breeze\StructuralType(); $type->shortName = 'uploads'; $type->namespace = 'Nostromo'; $type->autoGeneratedKeyType = 'Identity'; // Primärschlüssel $property = $type->addDataProperty(); $property->name = 'id'; $property->dataType = 'Int32'; $property->isPartOfKey = true; $property = $type->addDataProperty(); $property->name = 'ticketId'; $property->dataType = 'Int32'; $property = $type->addDataProperty(); $property->name = 'filename'; $property->dataType = 'String'; $property = $type->addDataProperty(); $property->name = 'data'; $property->dataType = 'String';
License
All rights reserved. You are NOT allowed to use this!