Skip to content

Commit 413e5d3

Browse files
committed
update
1 parent b75e069 commit 413e5d3

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
[packagist-badge]: https://img.shields.io/packagist/v/chillerlan/bbcode.svg
1010
[packagist]: https://packagist.org/packages/chillerlan/bbcode
1111
[license-badge]: https://img.shields.io/packagist/l/chillerlan/bbcode.svg
12-
[license]: https://github.com/chillerlan/bbcode/blob/master/LICENSE
13-
[travis-badge]: https://travis-ci.org/chillerlan/bbcode.svg?branch=master
14-
[travis]: https://travis-ci.org/chillerlan/bbcode
15-
[coverage-badge]: https://codecov.io/github/chillerlan/bbcode/coverage.svg?branch=master
16-
[coverage]: https://codecov.io/github/chillerlan/bbcode
17-
[scrutinizer-badge]: https://scrutinizer-ci.com/g/chillerlan/bbcode/badges/quality-score.png?b=master
18-
[scrutinizer]: https://scrutinizer-ci.com/g/chillerlan/bbcode
19-
[codeclimate-badge]: https://codeclimate.com/github/chillerlan/bbcode/badges/gpa.svg
20-
[codeclimate]: https://codeclimate.com/github/chillerlan/bbcode
12+
[license]: https://github.com/codemasher/php-bbcode/blob/master/LICENSE
13+
[travis-badge]: https://img.shields.io/travis/codemasher/php-bbcode.svg
14+
[travis]: https://travis-ci.org/codemasher/php-bbcode
15+
[coverage-badge]: https://img.shields.io/codecov/c/github/codemasher/php-bbcode.svg
16+
[coverage]: https://codecov.io/github/codemasher/php-bbcode
17+
[scrutinizer-badge]: https://img.shields.io/scrutinizer/g/codemasher/php-bbcode.svg
18+
[scrutinizer]: https://scrutinizer-ci.com/g/codemasher/php-bbcode
19+
[codeclimate-badge]: https://img.shields.io/codeclimate/github/codemasher/php-bbcode.svg
20+
[codeclimate]: https://codeclimate.com/github/codemasher/php-bbcode
2121
[gitter-badge]: https://img.shields.io/gitter/room/nwjs/nw.js.svg
2222
[gitter]: https://gitter.im/chillerlan/bbcode
2323

@@ -29,7 +29,7 @@ based on an example by [MrNiceGuy](http://www.developers-guide.net/forums/member
2929
Handles nested tags aswell as matching brackets and doesn't stumble across invalid tags.
3030

3131
## Requirements
32-
- PHP 7 ([PHP 5.6+ compatible branch](https://github.com/chillerlan/bbcode/tree/php5))
32+
- PHP 7 ([PHP 5.6+ compatible branch](https://github.com/codemasher/php-bbcode/tree/php5))
3333

3434
----
3535

@@ -39,7 +39,7 @@ The API docs can be found [over here on github.io](http://codemasher.github.io/d
3939
source, using [phpDocumentor](http://www.phpdoc.org/)).
4040

4141
### BBCode docs
42-
A documentation of the included BBCodes is planned and will be available on [the wiki](https://github.com/chillerlan/bbcode/wiki).
42+
A documentation of the included BBCodes is planned and will be available on [the wiki](https://github.com/codemasher/php-bbcode/wiki).
4343

4444
### Installation
4545
#### Using [composer](https://getcomposer.org)
@@ -53,15 +53,15 @@ composer require chillerlan/bbcode:dev-master
5353
```json
5454
{
5555
"require": {
56-
"php": ">=7.0.0",
56+
"php": ">=7.0.3",
5757
"chillerlan/bbcode": "dev-master"
5858
}
5959
}
6060
```
6161

6262
#### Manual installation
63-
Download the desired version of the package from [master](https://github.com/chillerlan/bbcode/archive/master.zip) or
64-
[release](https://github.com/chillerlan/bbcode/releases) and extract the contents to your project folder.
63+
Download the desired version of the package from [master](https://github.com/codemasher/php-bbcode/archive/master.zip) or
64+
[release](https://github.com/codemasher/php-bbcode/releases) and extract the contents to your project folder.
6565
Point the namespace `chillerlan/bbcode` to the folder `src` of the package.
6666

6767
Profit!
@@ -233,7 +233,7 @@ The parser may cause some high CPU load, depending on the input. You should neve
233233
in your output subsystem - not even with strong caching. Encode on input - you'll want a preview anyway. ;)
234234

235235
You may also run into several bugs. In fact, the BBCoder is essentially a tool to squeeze out any PCRE related bug in PHP known to man (and perhaps unknown). Have fun! ;)
236-
[It is highly recommended to use these php.ini settings](https://github.com/chillerlan/bbcode/blob/master/travis-php.ini), especially to disable the PCRE JIT in PHP7 which is a troublemaker.
236+
[It is highly recommended to use these php.ini settings](https://github.com/codemasher/php-bbcode/blob/master/travis-php.ini), especially to disable the PCRE JIT in PHP7 which is a troublemaker.
237237
In case you happen to run into a PCRE related bug, i ask you to open an issue over here along with the bbcode which caused the error and further information.
238238

239239
### Disclaimer!

0 commit comments

Comments
 (0)