Skip to content

Commit e48897a

Browse files
authored
Update README.md
1 parent 3d555ac commit e48897a

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
11
# laravel-wp-api
22

3-
[![Build Status](https://travis-ci.org/threesquared/laravel-wp-api.svg?branch=master)](https://travis-ci.org/threesquared/laravel-wp-api) [![Latest Stable Version](https://poser.pugx.org/threesquared/laravel-wp-api/v/stable)](https://packagist.org/packages/threesquared/laravel-wp-api)
4-
53
Laravel 5 package for the [Wordpress JSON REST API](https://github.com/WP-API/WP-API)
64

75
## Install
86

97
Simply add the following line to your `composer.json` and run install/update:
108

11-
"threesquared/laravel-wp-api": "~2.0"
9+
"astritzeqiri/laravel-wp-api": "~2.0"
1210

1311
## Configuration
1412

1513
You will need to add the service provider and optionally the facade alias to your `config/app.php`:
1614

1715
```php
1816
'providers' => array(
19-
Threesquared\LaravelWpApi\LaravelWpApiServiceProvider::class
17+
AstritZeqiri\LaravelWpApi\LaravelWpApiServiceProvider::class
2018
)
2119

2220
'aliases' => array(
23-
'WpApi' => Threesquared\LaravelWpApi\Facades\WpApi::class
21+
'WpApi' => AstritZeqiri\LaravelWpApi\Facades\WpApi::class
2422
),
2523
```
2624

@@ -31,7 +29,7 @@ And publish the package config files to configure the location of your Wordpress
3129
### Usage
3230

3331
The package provides a simplified interface to some of the existing api methods documented [here](http://wp-api.org/).
34-
You can either use the Facade provided or inject the `Threesquared\LaravelWpApi\WpApi` class.
32+
You can either use the Facade provided or inject the `AstritZeqiri\LaravelWpApi\WpApi` class.
3533

3634
#### Posts
3735
```php

0 commit comments

Comments
 (0)