File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ jobs:
2323
2424 - name : Get SDK version and set environment variable
2525 run : |
26- SDK_VERSION=$(grep 'SDK_VERSION' src/GraphConstants.php | grep -oE '[0-9]+\.[0-9]+\.( [0-9]+|[0-9]+-[a-z]+) ')
26+ SDK_VERSION=$(grep 'SDK_VERSION' src/GraphConstants.php | grep -oE '[0-9]+\.[0-9]+\.[0-9A-Za-z.\-]+ ')
2727 echo "SDK_VERSION=$SDK_VERSION" >> $GITHUB_ENV
2828
2929 - name : Create and publish tag
3030 run : |
3131 echo "SDK_VERSION is:"$SDK_VERSION
32- git tag $SDK_VERSION && git push origin $SDK_VERSION
32+ git tag $SDK_VERSION && git push origin $SDK_VERSION
Original file line number Diff line number Diff line change 33[ ![ Latest Stable Version] ( https://poser.pugx.org/microsoft/microsoft-graph-beta/version )] ( https://packagist.org/packages/microsoft/microsoft-graph )
44
55## Install the SDK
6- You can install the Beta PHP SDK with Composer, either run ` composer require microsoft/microsoft-graph-beta ` , or edit your ` composer.json ` file:
6+ You can install the Beta PHP SDK with Composer by editing your ` composer.json ` file:
77```
88{
9+ "minimum-stability": "RC"
910 "require": {
1011 "microsoft/microsoft-graph-beta": "^2.0.0-RC1"
1112 }
1213}
1314```
15+ OR
16+ ```
17+ "require": {
18+ "microsoft/microsoft-graph-beta": "^2.0.0-RC1",
19+ "microsoft/microsoft-graph-core": "@RC"
20+ }
21+ ```
1422## Get started with Microsoft Graph
1523
1624### 1. Register your application
You can’t perform that action at this time.
0 commit comments