https://github.com/coding/coding-sdk-php
CODING.net SDK for PHP
https://github.com/coding/coding-sdk-php
Last synced: 2 months ago
JSON representation
CODING.net SDK for PHP
- Host: GitHub
- URL: https://github.com/coding/coding-sdk-php
- Owner: coding
- License: apache-2.0
- Created: 2021-10-22T09:49:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-11T02:56:53.000Z (over 3 years ago)
- Last Synced: 2025-02-05T22:04:54.373Z (3 months ago)
- Language: PHP
- Homepage: https://packagist.org/packages/coding/sdk
- Size: 108 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CODING SDK for PHP
[](https://codecov.io/gh/Coding/coding-sdk-php)
[](https://github.com/Coding/coding-sdk-php/actions/workflows/ci.yml)
[](https://packagist.org/packages/coding/sdk)
[](https://www.php.net/supported-versions.php)## Install
```shell
composer require coding/sdk
```## Examples
### Create Iteration
```php
setProjectName($projectName);
$client->setProjectToken('c127894e5a851cef22dc317f882dfb9ca6054321');$iteration = new Iteration($client);
$result = $iteration->create([
'Name' => 'Sprint 1',
]);
$teamDomain = 'my-team';
echo "https://${teamDomain}.coding.net/p/{$projectName}/iterations/${result['Code']}/issues\n";
```## Resources
- [CODING OPEN API](https://help.coding.net/openapi)