Skip to content

Commit ed818a1

Browse files
committed
Upgrade readme installation instructions
1 parent 3e05363 commit ed818a1

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
Object-oriented pipe operator implementation based
44
on [RFC Pipe Operator](https://wiki.php.net/rfc/pipe-operator).
55

6-
76
## Installation
87

9-
Library can be installed into any PHP application
10-
using `Composer` dependency manager.
8+
Library can be installed into any PHP application:
9+
- Using [`Composer`](https://getcomposer.org/) dependency manager
10+
- [The Force](https://www.youtube.com/watch?v=o2we_B6hDrY) for the Jedi Developers
1111

1212
```sh
13-
$ composer require serafim/pipe
13+
$ composer require phpfn/pipe
1414
```
1515

16-
In order to access pipe library make sure to include `vendor/autoload.php`
16+
In order to access library make sure to include `vendor/autoload.php`
1717
in your file.
1818

1919
```php
@@ -22,6 +22,7 @@ in your file.
2222
require __DIR__ . '/vendor/autoload.php';
2323
```
2424

25+
2526
## Usage
2627

2728
A common PHP OOP pattern is the use of method chaining, or what is

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"curry",
1111
"partial application"
1212
],
13-
"homepage": "https://github.com/phpfn/pipe",
13+
"homepage": "https://github.com/phpfn",
1414
"support": {
15-
"issues": "https://github.com/phpfn/pipe/issues",
15+
"issues": "https://github.com/phpfn/phpfn/issues",
1616
"source": "https://github.com/phpfn/pipe"
1717
},
1818
"authors": [

0 commit comments

Comments
 (0)