You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,21 +44,21 @@ You have several options to download (and kinda install) the API client library:
44
44
Change to your project's root directory and type the following command:
45
45
46
46
~~~{.bash}
47
-
composer require "bheisig/idoitapi=>=0.1"
47
+
composer require "bheisig/idoitapi=>=0.2"
48
48
~~~
49
49
50
50
For a system-wide installation add `global` as an option:
51
51
52
52
~~~{.bash}
53
-
composer global require "bheisig/idoitapi=>=0.1"
53
+
composer global require "bheisig/idoitapi=>=0.2"
54
54
~~~
55
55
56
56
As an alternative add a new dependency on `bheisig/idoitapi` to your project's `composer.json` file. Here is a minimal example to install the current development branch locally:
57
57
58
58
~~~{.json}
59
59
{
60
60
"require": {
61
-
"bheisig/idoitapi": ">=0.1"
61
+
"bheisig/idoitapi": ">=0.2"
62
62
}
63
63
}
64
64
~~~
@@ -69,7 +69,7 @@ After that you need to call composer to install the API client library (under `v
69
69
composer install
70
70
~~~
71
71
72
-
This installs version `0.1` or higher if available. Instead of sticking to a specific/minimum version you may switch to the current development branch by using `@DEV`:
72
+
This installs version `0.2` or higher if available. Instead of sticking to a specific/minimum version you may switch to the current development branch by using `@DEV`:
73
73
74
74
~~~{.bash}
75
75
composer require "bheisig/idoitapi=@DEV"
@@ -91,8 +91,8 @@ composer update
91
91
You find [all releases on the project site](https://github.com/bheisig/i-doit-api-client-php/releases). Fetch the latest stable release:
0 commit comments