technodelight / php-jira-domain-models
Domain models for Jira entities
2.26.4
2023-12-05 19:23 UTC
Requires
- php: >=8.1
Requires (Dev)
- phpcompatibility/php-compatibility: dev-master
- phpspec/phpspec: ~7
- squizlabs/php_codesniffer: ^3.5
README
Domain models for entities in Jira
usage
<?php use Technodelight\Jira\Domain\Field; $field = Field::fromArray([ 'id' => 1, 'key' => 'description', 'name' => 'Description', 'custom' => false, 'clauseNames' => [], 'schema' => [] ]);
The above example is purely fictious, though it's working this way, it's not really intended to be used as per above in real life.
This Domain model library contains domain models for most of the entities used in JIRA API (in user scenarios). It does not contains models for admin-related entities.
license
GNU GPLv3 Copyright (c) 2015-2019 Zsolt Gál See LICENSE.