Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency updates #11

Open
wants to merge 2 commits into
base: 1.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 53 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
![PHP](https://img.shields.io/badge/PHP-v7.x-F78F20.svg)
[![MODX Extra by Tasian Media](https://img.shields.io/badge/Developer-Tasian_Media-F78F20.svg)](https://www.tasian.media/)

### Installation
### Branches
The current 'Main' branch is '1.x'

If you have a contribution and would like to submit a Pull Request, please be sure to target the correct branch (see versioning below).

### Repository Installation
Whilst in beta:
- **DO NOT USE ON PRODUCTION WEBSITES OR MODX INSTALLS**
- Download the latest build from the [_packages](../develop/_packages/) folder and upload manually to your MODX Package Manager.
Expand All @@ -18,20 +23,60 @@ Whilst in beta:
- GitHub Repository: http://github.com/tasianmedia/authazure
- Bugs & Feature Requests: http://github.com/tasianmedia/authazure/issues

#### Branch labels follow semantic versioning:
- X = Milestone Number
- X.x = Version Number
### PHP Dependencies
authAzure uses [Composer](https://getcomposer.org/) as its Dependency Manager. Installation instructions: https://getcomposer.org/doc/00-intro.md

If you have a contribution and would like to submit a Pull Request, please be sure to target the correct branch.
#### Commands
```
composer install
```
Installs all dependencies defined in the composer.json file.

### Details
Author: David Pede ([email protected]) (https://twitter.com/davepede)
```
composer install --prefer-dist --no-dev --no-progress --optimize-autoloader
```
Installs all dependencies defined in the composer.json file ***optimised for use in production applications***.

```
composer update
```
Updates dependencies to their latest version based on composer.json file.

```
composer dump-autoload
```
Rebuilds the autoloader file. Useful when static classmaps are updated.

```
composer outdated
```
Shows a list of installed packages that have updates available, including their current and latest versions.

### Versioning

This package follows [Semantic Versioning](http://semver.org/) rules.

Copyright: (C) 2020 Tasian Media. All rights reserved. ([email protected])
- **X**.x.x = **MAJOR** versions include new functionality or features in a backwards-incompatible manner
- x.**X**.x = **MINOR** versions include new functionality or features in a backwards-compatible manner
- x.x.**X** = **PATCH** versions when we make backwards-compatible bug fixes

##### Stable Versions

Any version suffixed with a 'pl' flag indicates 'public launch' and is completely stable.

##### Alpha, Beta & Release Candidates

Any version suffixed with a 'rc' flag means it is a release candidate, and we're *trying* to avoid breaking changes as much as possible. Whilst not yet complete, it can be considered safe to use in production.

Any version suffixed with a 'beta' or 'alpha' flag means it is in active development, and you can expect breaking changes. It should not be considered for use in production.

### Please Note
authAzure is not associated with or endorsed by Microsoft Corporation.

### License
Released under the GNU General Public License; either version 2 of the License, or (at your option) any later version.
http://www.gnu.org/licenses/gpl.html

### Details
Author: David Pede ([email protected]) (https://twitter.com/davepede)
Copyright: (C) 2023 Tasian Media. All rights reserved. ([email protected])
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"vendor-dir": "core/components/authazure/vendors"
},
"require": {
"thenetworg/oauth2-azure": "v2.0.0.x-dev",
"thenetworg/oauth2-azure": "~v2.1.1",
"ext-json": "*"
}
}
Loading