Skip to content

Commit

Permalink
my repo alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-borek committed Mar 31, 2021
1 parent c310fae commit 5d51198
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 42 deletions.
21 changes: 0 additions & 21 deletions .github/CONTRIBUTING.md

This file was deleted.

File renamed without changes.
23 changes: 8 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# Freshdesk PHP SDK API v2

[![Build Status](https://travis-ci.org/mpclarkson/freshdesk-php-sdk.svg?branch=master)](https://travis-ci.org/mpclarkson/freshdesk-php-sdk)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/mpclarkson/freshdesk-php-sdk/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/mpclarkson/freshdesk-php-sdk/?branch=master)
[![SensioLabsInsight](https://img.shields.io/sensiolabs/i/5cb7004a-ac48-4fe2-88a4-79341e3c03d6.svg)](https://insight.sensiolabs.com/projects/5cb7004a-ac48-4fe2-88a4-79341e3c03d6)
[![Packagist](https://img.shields.io/packagist/v/mpclarkson/freshdesk-php-sdk.svg)](https://packagist.org/packages/mpclarkson/freshdesk-php-sdk)

This is a PHP 5.5+ SDK for the [Freshdesk](https://www.freshdesk.com) API v2.
This is a PHP 7.2+ SDK for the [Freshdesk](https://www.freshdesk.com) API v2.

If you have questions, please contact me or open an issue on GitHub.

Expand All @@ -31,19 +26,19 @@ $first = $all[0];

## Framework Integration

- Symfony - [FreshdeskBundle](https://github.com/mpclarkson/freshdesk-bundle)
- Laravel/Lumen - [Freshdesk Larvel Service Provider](https://github.com/mpclarkson/freshdesk-laravel) .
- Symfony - [FreshdeskBundle](https://github.com/michal-borek/freshdesk-bundle)
- Laravel/Lumen - [Freshdesk Larvel Service Provider](https://github.com/michal-borek/freshdesk-laravel) .

## Installation

To integrate this library into your application, use [Composer](https://getcomposer.org).

Add `mpclarkson/freshdesk-php-sdk` to your **composer.json** file:
Add `michal-borek/freshdesk-php-sdk` to your **composer.json** file:

```json
{
"require": {
"mpclarkson/freshdesk-php-sdk": "dev-master"
"michal-borek/freshdesk-php-sdk": "dev-master"
}
}
```
Expand Down Expand Up @@ -147,9 +142,6 @@ filtering `GET` requests.

## Contributing

This is a work in progress and PRs are welcome. Please read the
[contributing guide](.github/CONTRIBUTING.md).

Nearly all api calls are available except for the `Solutions` and `Surveys`,
which Freshdesk has not yet implemented.

Expand All @@ -161,8 +153,9 @@ which Freshdesk has not yet implemented.

## Author

The library was written and maintained by [Matthew Clarkson](http://mpclarkson.github.io/)
from [Hilenium](https://hilenium.com).
The library was written [Matthew Clarkson](http://mpclarkson.github.io/)
from [Hilenium](https://hilenium.com) then forked and adopted for Laravel 8.x
by [Michał Borek](http://github.com/michal-borek) for [Wocozon](https://wocozon.nl).

## Reference

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "mpclarkson/freshdesk-php-sdk",
"name": "michal-borek/freshdesk-php-sdk",
"description": "PHP SDK for the Freshdesk API (v2)",
"type": "library",
"homepage": "https://github.com/mpclarkson/freshdesk-php-sdk",
"homepage": "https://github.com/michal-borek/freshdesk-php-sdk",
"keywords": ["freshdesk", "customer service", "support", "help desk", "api"],
"license": "MIT",
"authors": [
Expand All @@ -13,12 +13,12 @@
}
],
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": ">=4.0,<7.0"
"php": ">=7.2",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"evert/phpdoc-md" : "~0.2.0"
"phpunit/phpunit": "9.*",
"evert/phpdoc-md" : "^0.2"
},
"autoload": {
"psr-4": {"Freshdesk\\": "src/"}
Expand Down

0 comments on commit 5d51198

Please sign in to comment.