Skip to content

Commit

Permalink
Fix: Remove parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 8, 2023
1 parent 959b332 commit e147af8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ composer require stripe/stripe-php
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading):

```php
require_once('vendor/autoload.php');
require_once 'vendor/autoload.php';
```

## Manual Installation

If you do not wish to use Composer, you can download the [latest release](https://github.com/stripe/stripe-php/releases). Then, to use the bindings, include the `init.php` file.

```php
require_once('/path/to/stripe-php/init.php');
require_once '/path/to/stripe-php/init.php';
```

## Dependencies
Expand Down

0 comments on commit e147af8

Please sign in to comment.