https://github.com/towa0131/githubapi
GitHub APIs written in PHP
https://github.com/towa0131/githubapi
github github-api
Last synced: 4 months ago
JSON representation
GitHub APIs written in PHP
- Host: GitHub
- URL: https://github.com/towa0131/githubapi
- Owner: towa0131
- Created: 2016-12-26T13:52:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-28T15:25:57.000Z (about 4 years ago)
- Last Synced: 2024-12-28T14:34:43.781Z (6 months ago)
- Topics: github, github-api
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## GitHubAPI
GitHub API written in PHP.## How to use?
Source:
```php
$api = new GitHubAPI("towa0131");
echo $api->getId() . PHP_EOL;
echo $api->getCreatedAt() . PHP_EOL;
```Output:
```
23122010
2016-10-28T13:34:24Z
```