-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bruno Meilick <[email protected]>
- Loading branch information
Showing
4 changed files
with
105 additions
and
142 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
vendor/ | ||
/kirby3-fingerprint.zip | ||
/kirby |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
$finder = PhpCsFixer\Finder::create() | ||
->exclude('vendor') | ||
->exclude('kirby') | ||
->in(__DIR__) | ||
; | ||
|
||
|
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,9 +1,26 @@ | ||
{ | ||
"name": "bnomei/kirby3-fingerprint", | ||
"type": "plugin", | ||
"version": "2.2.1", | ||
"version": "2.2.2", | ||
"description": "File Method and css/js helper to add cachbusting hash and optional Subresource Integrity to file", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Bruno Meilick", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"kirby3", | ||
"kirby3-cms", | ||
"kirby3-plugin", | ||
"fingerprint", | ||
"hash", | ||
"cache-buster", | ||
"subresource-integrity" | ||
], | ||
"suggest": { | ||
}, | ||
"autoload": { | ||
"files": [ | ||
"config.php" | ||
|
@@ -12,27 +29,31 @@ | |
"Bnomei\\": "classes/" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Bruno Meilick", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"config": { | ||
"optimize-autoloader": true, | ||
"sort-packages": true | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/k-next/kirby" | ||
"type": "vcs", | ||
"url": "https://github.com/k-next/kirby" | ||
} | ||
], | ||
], | ||
"require": { | ||
"getkirby/cms": "dev-master as 3.0.0" | ||
"php": ">=7.1.0", | ||
"getkirby/cms": "^3.0.0-RC-2.0" | ||
}, | ||
"require-dev" : { | ||
"conflict": { | ||
"getkirby/kirby": "<3.0" | ||
}, | ||
"scripts": { | ||
"build": "composer update; composer dumpautoload -o;", | ||
"dev-zip": "rm kirby3-fingerprint.zip; composer remove getkirby/cms; composer dumpautoload -o; composer archive --format=zip --file=kirby3-fingerprint; composer require getkirby/cms:'dev-master as 3.0.0'; composer dumpautoload -o;", | ||
"zip": "rm kirby3-fingerprint.zip; composer update; composer remove getkirby/cms; composer dumpautoload -o; zip -r kirby3-fingerprint.zip . -x *.git*; composer require getkirby/cms:'dev-master as 3.0.0'; composer dumpautoload -o;" | ||
}, | ||
"minimum-stability": "beta" | ||
"zip": [ | ||
"rm kirby3-fingerprint.zip", | ||
"composer install --no-dev", | ||
"composer remove getkirby/cms", | ||
"composer dumpautoload -o", | ||
"zip -r kirby3-fingerprint.zip . -x *.git*", | ||
"composer require getkirby/cms:'^3.0.0-RC-2.0'" | ||
] | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.