4
4
5
5
Common mathematical graph algorithms implemented in PHP
6
6
7
- > You're viewing the contents of the ` master ` development brach. Note that this
8
- branch is subject to active development and will contain breaking changes
9
- for the upcoming release. If you want to use the latest release version,
10
- see also the `v0.8.x` release branch for more details.
11
-
12
- > Note: This project is in beta stage! Feel free to report any issues you encounter.
7
+ > ** Development version:** This branch contains the code for the upcoming
8
+ > version 0.9. For the code of the current stable version 0.8, check out the
9
+ > [ ` 0.8.x ` branch] ( https://github.com/graphp/algorithms/tree/0.8.x ) .
10
+ >
11
+ > The upcoming version 0.9 will be the way forward for this package. However,
12
+ > we will still actively support version 0.8 for those not yet on the latest
13
+ > version. See also [ installation instructions] ( #install ) for more details.
13
14
14
15
## Install
15
16
16
- The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
17
+ The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
17
18
[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
18
19
19
- This will install the latest supported version:
20
+ Once released, this project will follow [ SemVer] ( https://semver.org/ ) .
21
+ At the moment, this will install the latest development version:
20
22
21
23
``` bash
22
- $ composer require graphp/algorithms:^0.8.2
24
+ composer require graphp/algorithms:^0.9@dev
23
25
```
24
26
25
27
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
@@ -32,18 +34,18 @@ It's *highly recommended to use PHP 7+* for this project.
32
34
## Tests
33
35
34
36
To run the test suite, you first need to clone this repo and then install all
35
- dependencies [ through Composer] ( https://getcomposer.org ) :
37
+ dependencies [ through Composer] ( https://getcomposer.org/ ) :
36
38
37
39
``` bash
38
- $ composer install
40
+ composer install
39
41
```
40
42
41
43
To run the test suite, go to the project root and run:
42
44
43
45
``` bash
44
- $ php vendor/bin/phpunit
46
+ vendor/bin/phpunit
45
47
```
46
48
47
49
## License
48
50
49
- Released under the terms of the permissive [ MIT license] ( http://opensource.org/licenses/MIT ) .
51
+ This project is released under the permissive [ MIT license] ( LICENSE ) .
0 commit comments