-
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
19 changed files
with
1,981 additions
and
288 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
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,13 @@ | ||
name: Build, test & measure | ||
|
||
on: | ||
workflow_call: | ||
pull_request: | ||
push: | ||
branches: | ||
['main'] | ||
|
||
jobs: | ||
call-workflow-build-test-measure: | ||
uses: figuren-theater/code-quality/.github/workflows/build-test-measure.yml@main | ||
secrets: inherit |
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,10 @@ | ||
name: Issue gardening for figuren.theater | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
jobs: | ||
call-workflow-ft-issue-gardening: | ||
uses: figuren-theater/.github/.github/workflows/issue-gardening.yml@main | ||
secrets: inherit |
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,12 @@ | ||
name: 'pre-Release Changelog Update' | ||
|
||
on: | ||
workflow_call: | ||
release: | ||
types: [prereleased] | ||
|
||
jobs: | ||
call-workflow-update-changelog: | ||
uses: figuren-theater/.github/.github/workflows/prerelease-changelog-update.yml@main | ||
secrets: inherit | ||
|
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,19 @@ | ||
name: Draft or update the next release | ||
|
||
on: | ||
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- main | ||
# pull_request event is required only for autolabeler | ||
pull_request: | ||
# Only following types are handled by the action, but one can default to all as well | ||
types: [opened, reopened, synchronize] | ||
# pull_request_target event is required for autolabeler to support PRs from forks | ||
# pull_request_target: | ||
# types: [opened, reopened, synchronize] | ||
|
||
jobs: | ||
call-workflow-release-drafter: | ||
uses: figuren-theater/.github/.github/workflows/release-drafter.yml@main | ||
secrets: inherit |
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,11 +1,21 @@ | ||
.DS_Store | ||
phpcs.xml | ||
phpunit.xml | ||
Thumbs.db | ||
wp-cli.local.yml | ||
node_modules/ | ||
/build/ | ||
/node_modules | ||
/vendor | ||
*.sql | ||
*.tar.gz | ||
*.zip | ||
/wiki | ||
.vscode | ||
|
||
# Generated via bin/transform-readme.php | ||
/readme.txt | ||
/.wp-env.override.json | ||
|
||
# misc | ||
.DS_Store | ||
Thumbs.db | ||
|
||
/vendor/ | ||
# is created during composer install, | ||
# when package is tested | ||
# and not running within ft-platform | ||
/wp-content/ |
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,31 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="ft-media"> | ||
<description>Coding standards for ft-media</description> | ||
|
||
<file>.</file> | ||
|
||
<!-- | ||
<exclude-pattern>*/bin/*</exclude-pattern> | ||
<exclude-pattern>*/tests/*</exclude-pattern> | ||
<exclude-pattern>*/vendor/*</exclude-pattern> --> | ||
|
||
<!-- | ||
is created during composer install, | ||
when package is tested | ||
and not running within ft-platform | ||
--> | ||
<exclude-pattern>*/wp-content/*</exclude-pattern> | ||
|
||
<!-- Use figuren.theater Coding Standards --> | ||
<rule ref="figurentheater" /> | ||
|
||
<!-- | ||
<rule ref="WordPress.WP.I18n"> | ||
<properties> | ||
<property name="text_domain" type="array"> | ||
<element value="figurentheater"/> | ||
</property> | ||
</properties> | ||
</rule> --> | ||
|
||
</ruleset> |
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,8 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [Unreleased](https://github.com/figuren-theater/ft-media/compare/1.0.15...HEAD) | ||
|
||
|
||
|
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,64 +1,82 @@ | ||
{ | ||
"name": "figuren-theater/ft-media", | ||
"description": "Optimizations related to media & attachments, packed for a WordPress multisite network like figuren.theater", | ||
"homepage": "https://websites.fuer.figuren.theater", | ||
"type": "wordpress-muplugin", | ||
"keywords": ["wordpress", "attachments", "media", "uploads", "image compression", "webp"], | ||
"license": "GPL-3.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "figuren.theater", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Carsten Bach", | ||
"email": "[email protected]", | ||
"homepage": "https://carsten-bach.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/figuren-theater/ft-media/issues", | ||
"source": "https://github.com/figuren-theater/ft-media" | ||
}, | ||
"license": "GPL-3.0-or-later", | ||
"type": "wordpress-muplugin", | ||
"keywords": [ | ||
"wordpress", | ||
"attachments", | ||
"media", | ||
"uploads", | ||
"image compression", | ||
"webp" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "figuren.theater", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Carsten Bach", | ||
"email": "[email protected]", | ||
"homepage": "https://carsten-bach.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"homepage": "https://websites.fuer.figuren.theater", | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/figuren-theater/ft-media/issues", | ||
"source": "https://github.com/figuren-theater/ft-media" | ||
}, | ||
"require": { | ||
"php": ">=7.1", | ||
"figuren-theater/ft-options": "^1", | ||
"wpackagist-plugin/attachment-taxonomies": "^1", | ||
"wpackagist-plugin/format-media-titles": "1.0.0", | ||
"wpackagist-plugin/modern-images-wp": "^1" | ||
}, | ||
"require-dev": { | ||
"figuren-theater/code-quality": "^0.6.7" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/figuren-theater/ft-options" | ||
}, | ||
{ | ||
"type": "composer", | ||
"url": "https://wpackagist.org" | ||
} | ||
], | ||
"autoload": { | ||
"classmap": [ | ||
"inc/" | ||
], | ||
"files": [ | ||
"inc/attachment-taxonomies/namespace.php", | ||
"inc/auto-featured-image/namespace.php", | ||
"inc/format-media-titles/namespace.php", | ||
"inc/image-optimization/namespace.php", | ||
"inc/modern-images-wp/namespace.php", | ||
"inc/namespace.php" | ||
], | ||
"classmap": [ | ||
"inc/" | ||
] | ||
] | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/figuren-theater/ft-options" | ||
}, | ||
{ | ||
"type": "composer", | ||
"url" : "https://wpackagist.org" | ||
"config": { | ||
"allow-plugins": { | ||
"composer/installers": true, | ||
"phpstan/extension-installer": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"ergebnis/composer-normalize": true | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.1", | ||
"figuren-theater/ft-options": "^1", | ||
"wpackagist-plugin/attachment-taxonomies": "^1", | ||
"wpackagist-plugin/format-media-titles":"1.0.0", | ||
"wpackagist-plugin/modern-images-wp":"^1" | ||
}, | ||
"extra": { | ||
"altis": { | ||
"install-overrides": [ | ||
"wpackagist-plugin/attachment-taxonomies", | ||
"wpackagist-plugin/format-media-titles", | ||
"wpackagist-plugin/modern-images-wp" | ||
] | ||
} | ||
} | ||
"extra": { | ||
"altis": { | ||
"install-overrides": [ | ||
"wpackagist-plugin/attachment-taxonomies", | ||
"wpackagist-plugin/format-media-titles", | ||
"wpackagist-plugin/modern-images-wp" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.