Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge to main #4

Merged
merged 7 commits into from
Aug 18, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributing

Contributions are **welcome** and will be fully **credited**.

We accept contributions via Pull Requests on [Github](https://github.com/joelbutcher/facebook-graph-sdk/pull/new).
We accept contributions via Pull Requests on [Github](https://github.com/heniroger/facebook-graph-sdk/pull/new).

The current stable major version is v6. The v7 is under development.

Expand All @@ -21,7 +21,7 @@ The code of conduct is described in [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md)

- **Add tests!** - Your patch won't be accepted if it doesn't have tests.

- **Document any change in behaviour** - Make sure the README and the [documentation](https://github.com/joelbutcher/facebook-graph-sdk-php-8/tree/master/docs) are kept up-to-date.
- **Document any change in behaviour** - Make sure the README and the [documentation](https://github.com/heniroger/facebook-graph-sdk-php-8/tree/master/docs) are kept up-to-date.

- **Consider our release cycle** - We follow [SemVer](http:https://semver.org/). Randomly breaking public APIs is not an option.

Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ This repository contains the open source PHP SDK that allows you to access the F
<a href="https://github.com/joelbutcher/facebook-php-graph-sdk/actions">
<img src="https://github.com/joelbutcher/facebook-php-graph-sdk/workflows/tests/badge.svg" alt="Build Status">
</a>
<a href="https://packagist.org/packages/joelbutcher/facebook-graph-sdk">
<img src="https://img.shields.io/packagist/dt/joelbutcher/facebook-graph-sdk" alt="Total Downloads">
<a href="https://packagist.org/packages/heniroger/facebook-graph-sdk">
<img src="https://img.shields.io/packagist/dt/heniroger/facebook-graph-sdk" alt="Total Downloads">
</a>
<a href="https://packagist.org/packages/joelbutcher/facebook-graph-sdk">
<img src="https://img.shields.io/packagist/v/joelbutcher/facebook-graph-sdk" alt="Latest Stable Version">
<a href="https://packagist.org/packages/heniroger/facebook-graph-sdk">
<img src="https://img.shields.io/packagist/v/heniroger/facebook-graph-sdk" alt="Latest Stable Version">
</a>
<a href="https://packagist.org/packages/joelbutcher/facebook-graph-sdk">
<img src="https://img.shields.io/packagist/l/joelbutcher/facebook-graph-sdk" alt="License">
<a href="https://packagist.org/packages/heniroger/facebook-graph-sdk">
<img src="https://img.shields.io/packagist/l/heniroger/facebook-graph-sdk" alt="License">
</a>
</p>

Expand All @@ -23,7 +23,7 @@ This repository contains the open source PHP SDK that allows you to access the F
The Facebook PHP SDK can be installed with [Composer](https://getcomposer.org/). Run this command:

```sh
composer require joelbutcher/facebook-graph-sdk
composer require heniroger/facebook-graph-sdk
```

## Usage
Expand Down Expand Up @@ -86,11 +86,11 @@ $ ./vendor/bin/phpunit --exclude-group integration

## Contributing

For us to accept contributions you will have to first have signed the [Contributor License Agreement](https://developers.facebook.com/opensource/cla). Please see [CONTRIBUTING](https://github.com/joelbutcher/facebook-graph-sdk-php-8/blob/master/CONTRIBUTING.md) for details.
For us to accept contributions you will have to first have signed the [Contributor License Agreement](https://developers.facebook.com/opensource/cla). Please see [CONTRIBUTING](https://github.com/heniroger/facebook-graph-sdk-php-8/blob/master/CONTRIBUTING.md) for details.

## License

Please see the [license file](https://github.com/joelbutcher/facebook-graph-sdk-php-8/blob/master/LICENSE) for more information.
Please see the [license file](https://github.com/heniroger/facebook-graph-sdk-php-8/blob/master/LICENSE) for more information.

## Security Vulnerabilities

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "joelbutcher/facebook-graph-sdk",
"name": "heniroger/facebook-graph-sdk",
"description": "Facebook SDK for PHP",
"keywords": ["facebook", "sdk", "php"],
"type": "library",
"homepage": "https://github.com/joelbutcher/facebook-graph-sdk",
"homepage": "https://github.com/heniroger/facebook-graph-sdk",
"license": "MIT",
"authors": [
{
"name": "Joel Butcher",
"homepage": "https://github.com/joelbutcher/facebook-graph-sdk/contributors"
"name": "Heni Roger",
"homepage": "https://github.com/heniroger/facebook-graph-sdk/contributors"
}
],
"config": {
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Whether you're developing a website with Facebook login, creating a Facebook Can
The Facebook SDK for PHP is installed with [Composer](#installing-with-composer-recommended). Simply run the following in the root of your project.

```
composer require joelbutcher/facebook-graph-sdk
composer require heniroger/facebook-graph-sdk
```

> The Facebook SDK starting adhering to [SemVer](http:https://semver.org/) with version 5. Previous to version 5, the SDK did not follow SemVer.
Expand Down