-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
67 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# Exclude files from exporting | ||
# | ||
|
||
/.gitattributes export-ignore | ||
/.github export-ignore | ||
/.gitignore export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [2.1.0] - 2022-03-05 | ||
|
||
### Changes | ||
|
||
- Changed minimum required PHP version to 7.4. | ||
- Add .gitattributes file. | ||
- Update composer version constraints for composer/installers package. | ||
- Change config.php code style. | ||
- Add version constraint for october/system. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
{ | ||
"name": "vdlp/oc-hashids-plugin", | ||
"description": "Allows developers to use secure hashed ID's in October CMS powered websites.", | ||
"type": "october-plugin", | ||
"license": "GPL-2.0-only", | ||
"type": "october-plugin", | ||
"authors": [ | ||
{ | ||
"name": "Van der Let & Partners", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.2||^8.0", | ||
"php": "^7.4 || ^8.0", | ||
"composer/installers": "^1.0 || ^2.0", | ||
"hashids/hashids": "^4.0", | ||
"composer/installers": "^1.0" | ||
"october/system": "^1.0 || ^2.0" | ||
}, | ||
"archive": { | ||
"exclude": [ | ||
".gitignore", | ||
".github", | ||
".idea/" | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
1.0.0: First version of Vdlp.Hashids | ||
1.0.1: Add PHP >= 7.1 as dependency | ||
1.1.0: | ||
v1.0.0: First version of Vdlp.Hashids | ||
v1.0.1: Add PHP >= 7.1 as dependency | ||
v1.1.0: | ||
- Code optimizations | ||
- Moved service provider | ||
2.0.0: Drop PHP 7.1 support | ||
2.0.1: Update plugin dependencies | ||
v2.0.0: Drop PHP 7.1 support | ||
v2.0.1: Update plugin dependencies | ||
v2.1.0: Maintenance release |