Initial commit: WordPress wp-content (themes, plugins, languages)
- Theme: momentry (custom theme with REST API routes) - Plugins: code-snippets (contains all API proxies) - Languages: zh_TW translations - Excludes: cache, backups, uploads, logs
This commit is contained in:
21
plugins/code-snippets/vendor/typisttech/imposter-plugin/LICENSE
vendored
Normal file
21
plugins/code-snippets/vendor/typisttech/imposter-plugin/LICENSE
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017-2020 Typist Tech <info@typist.tech>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
199
plugins/code-snippets/vendor/typisttech/imposter-plugin/README.md
vendored
Normal file
199
plugins/code-snippets/vendor/typisttech/imposter-plugin/README.md
vendored
Normal file
@@ -0,0 +1,199 @@
|
||||
<div align="center">
|
||||
|
||||
# Imposter Plugin
|
||||
|
||||
</div>
|
||||
|
||||
<div align="center">
|
||||
|
||||
|
||||
[](https://packagist.org/packages/typisttech/imposter-plugin)
|
||||
[](https://packagist.org/packages/typisttech/imposter-plugin)
|
||||
[](https://packagist.org/packages/typisttech/imposter-plugin)
|
||||
[](https://circleci.com/gh/TypistTech/imposter-plugin)
|
||||
[](https://github.com/TypistTech/imposter-plugin/blob/master/LICENSE)
|
||||
[](https://twitter.com/tangrufus)
|
||||
[](https://www.typist.tech/contact/)
|
||||
|
||||
</div>
|
||||
|
||||
<p align="center">
|
||||
<strong>Composer plugin that wraps all composer vendor packages inside your own namespace. Intended for WordPress plugins.</strong>
|
||||
<br />
|
||||
<br />
|
||||
Built with ♥ by <a href="https://www.typist.tech/">Typist Tech</a>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
**Imposter Plugin** is an open source project and completely free to use.
|
||||
|
||||
However, the amount of effort needed to maintain and develop new features is not sustainable without proper financial backing. If you have the capability, please consider donating using the links below:
|
||||
|
||||
<div align="center">
|
||||
|
||||
[](https://github.com/sponsors/TangRufus)
|
||||
[](https://typist.tech/go/paypal-donate/)
|
||||
[](https://typist.tech/donate/imposter-plugin/)
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
Wrapping all composer vendor packages inside your own namespace. Intended for WordPress plugins. Imposter Plugin is a composer plugin wrapper for [Imposter](https://github.com/TypistTech/imposter/).
|
||||
|
||||
## Why?
|
||||
|
||||
Because of the lack of dependency management in WordPress, if two plugins bundled conflicting versions of the same package, hard-to-reproduce bugs arise.
|
||||
Monkey patching composer vendor packages, wrapping them inside your own namespace is a less-than-ideal solution to avoid such conflicts.
|
||||
|
||||
See:
|
||||
- [A Narrative of Using Composer in a WordPress Plugin](https://wptavern.com/a-narrative-of-using-composer-in-a-wordpress-plugin)
|
||||
- [A Warning About Using Composer With WordPress](https://wppusher.com/blog/a-warning-about-using-composer-with-wordpress/)
|
||||
|
||||
## Install
|
||||
|
||||
Installation should be done via composer, details of how to install composer can be found at [https://getcomposer.org/](https://getcomposer.org/).
|
||||
|
||||
First, add Imposter configuration in your `composer.json`
|
||||
|
||||
```json
|
||||
"extra": {
|
||||
"imposter": {
|
||||
"namespace": "My\\App\\Vendor",
|
||||
"excludes": [
|
||||
"dummy/dummy-excluded"
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Then, install via composer cli
|
||||
|
||||
```bash
|
||||
composer require typisttech/imposter-plugin
|
||||
```
|
||||
|
||||
See: [Imposter readme](https://github.com/Typisttech/imposter#config) for details.
|
||||
|
||||
---
|
||||
|
||||
<p align="center">
|
||||
<strong>Typist Tech is ready to build your next awesome WordPress site. <a href="https://typist.tech/contact/">Hire us!</a></strong>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
## Usage
|
||||
|
||||
### Sit Back and Relax
|
||||
|
||||
Once installed, this plugin hooks into `composer install`, `composer update` and `composer dump-autoload`, automatically run [imposter](https://github.com/TypistTech/imposter/) for you.
|
||||
Besides, imposter plugin autoloads all modified files as [classmap](https://getcomposer.org/doc/04-schema.md#classmap).
|
||||
|
||||
When those events triggered, this plugin:
|
||||
1. looks for `/path/to/project/root/composer.json`
|
||||
2. finds out [vendor-dir](https://getcomposer.org/doc/06-config.md#vendor-dir)
|
||||
3. finds out all [required packages](https://getcomposer.org/doc/04-schema.md#require), including those required by dependencies
|
||||
4. finds out all [autoload paths](https://getcomposer.org/doc/04-schema.md#autoload) for all required packages
|
||||
5. prefixes all namespaces with the imposter-plugin namespace defined in your `composer.json`
|
||||
|
||||
Learn more on [imposter's readme](https://github.com/TypistTech/imposter#usage).
|
||||
|
||||
## Known Issues
|
||||
|
||||
Help wanted. Pull requests are welcomed.
|
||||
|
||||
1. Imposter run twice when `composer install` and `composer update`
|
||||
1. Traits are not transformed
|
||||
1. Virtual packages are not supported
|
||||
|
||||
## Frequently Asked Questions
|
||||
|
||||
### What can I find more information?
|
||||
|
||||
Learn more on [imposter's readme](https://github.com/TypistTech/imposter/) for more details.
|
||||
|
||||
### How about not hooking into composer commands?
|
||||
|
||||
Use [imposter](https://github.com/TypistTech/imposter/) directly.
|
||||
|
||||
### Do you have real life examples that use this composer plugin?
|
||||
|
||||
Here you go:
|
||||
|
||||
* [Sunny](https://github.com/Typisttech/sunny)
|
||||
* [WP Cloudflare Guard](https://github.com/TypistTech/wp-cloudflare-guard)
|
||||
|
||||
|
||||
*Add your own [here](https://github.com/TypistTech/imposter-plugin/edit/master/README.md)*
|
||||
|
||||
### Which composer versions are supported?
|
||||
|
||||
Both v1 and v2.
|
||||
|
||||
### Will you add support for older PHP versions?
|
||||
|
||||
Never! This plugin will only work on [actively supported PHP versions](https://secure.php.net/supported-versions.php).
|
||||
|
||||
Don't use it on **end of life** or **security fixes only** PHP versions.
|
||||
|
||||
### It looks awesome. Where can I find some more goodies like this
|
||||
|
||||
- Articles on [Typist Tech's blog](https://typist.tech)
|
||||
- [Tang Rufus' WordPress plugins](https://profiles.wordpress.org/tangrufus#content-plugins) on wp.org
|
||||
- More projects on [Typist Tech's GitHub profile](https://github.com/TypistTech)
|
||||
- Stay tuned on [Typist Tech's newsletter](https://typist.tech/go/newsletter)
|
||||
- Follow [Tang Rufus' Twitter account](https://twitter.com/TangRufus)
|
||||
- **Hire [Tang Rufus](https://typist.tech/contact) to build your next awesome site**
|
||||
|
||||
### Where can I give 5-star reviews?
|
||||
|
||||
Thanks! Glad you like it. It's important to let me knows somebody is using this project. Please consider:
|
||||
|
||||
- [tweet](https://twitter.com/intent/tweet?url=https%3A%2F%2Fgithub.com%2FTypistTech%2Fimposter-plugin&via=tangrufus&text=Imposter%20Plugin%20-%20Composer%20plugin%20that%20wraps%20all%20%23composer%20vendor%20packages%20inside%20your%20own%20namespace.%20Intended%20for%20%23WordPress%20plugins) something good with mentioning [@TangRufus](https://twitter.com/tangrufus)
|
||||
- ★ star [the Github repo](https://github.com/TypistTech/imposter-plugin)
|
||||
- [👀 watch](https://github.com/TypistTech/imposter-plugin/subscription) the Github repo
|
||||
- write tutorials and blog posts
|
||||
- **[hire](https://www.typist.tech/contact/) Typist Tech**
|
||||
|
||||
## Testing
|
||||
|
||||
```bash
|
||||
composer test
|
||||
composer style:check
|
||||
```
|
||||
|
||||
## Alternatives
|
||||
|
||||
Here is a list of alternatives that I found. However, none of these satisfied my requirements.
|
||||
|
||||
*If you know other similar projects, feel free to edit this section!*
|
||||
|
||||
* [Mozart](https://github.com/coenjacobs/mozart) by Coen Jacobs
|
||||
- Works with PSR0 and PSR4
|
||||
- Dependency packages store in a different directory
|
||||
|
||||
* [PHP Scoper](https://github.com/humbug/php-scoper)
|
||||
- Prefixes all PHP namespaces in a file/directory to isolate the code bundled in PHARs
|
||||
|
||||
## Feedback
|
||||
|
||||
**Please provide feedback!** We want to make this project as useful as possible.
|
||||
Please [submit an issue](https://github.com/TypistTech/imposter-plugin/issues/new) and point out what you do and don't like, or fork the project and [send pull requests](https://github.com/TypistTech/imposter-plugin/pulls/).
|
||||
**No issue is too small.**
|
||||
|
||||
## Security Vulnerabilities
|
||||
|
||||
If you discover a security vulnerability within this project, please email us at [imposter-plugin@typist.tech](mailto:imposter-plugin@typist.tech).
|
||||
All security vulnerabilities will be promptly addressed.
|
||||
|
||||
## Credits
|
||||
|
||||
[Imposter Plugin](https://github.com/TypistTech/imposter-plugin) is a [Typist Tech](https://typist.tech) project and maintained by [Tang Rufus](https://twitter.com/TangRufus), freelance developer for [hire](https://www.typist.tech/contact/).
|
||||
|
||||
Full list of contributors can be found [here](https://github.com/TypistTech/imposter-plugin/graphs/contributors).
|
||||
|
||||
## License
|
||||
|
||||
[Imposter Plugin](https://github.com/TypistTech/imposter-plugin) is released under the [MIT License](https://opensource.org/licenses/MIT).
|
||||
66
plugins/code-snippets/vendor/typisttech/imposter-plugin/composer.json
vendored
Normal file
66
plugins/code-snippets/vendor/typisttech/imposter-plugin/composer.json
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"name": "typisttech/imposter-plugin",
|
||||
"type": "composer-plugin",
|
||||
"description": "Composer plugin that wraps all composer vendor packages inside your own namespace. Intended for WordPress plugins.",
|
||||
"keywords": [
|
||||
"composer",
|
||||
"composer-plugin",
|
||||
"dependency",
|
||||
"monkey-patching",
|
||||
"namespace",
|
||||
"wordpress"
|
||||
],
|
||||
"homepage": "https://github.com/TypistTech/imposter-plugin",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Typist Tech",
|
||||
"email": "imposter-plugin@typist.tech",
|
||||
"homepage": "https://www.typist.tech"
|
||||
},
|
||||
{
|
||||
"name": "Tang Rufus",
|
||||
"email": "tangrufus@gmail.com",
|
||||
"homepage": "https://www.typist.tech",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": "^7.3 || ^8.0",
|
||||
"composer-plugin-api": "^1.1 || ^2.0",
|
||||
"typisttech/imposter": "^0.6.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"codeception/codeception": "^4.1",
|
||||
"codeception/module-asserts": "^1.3",
|
||||
"codeception/module-cli": "^1.1",
|
||||
"codeception/module-filesystem": "^1.0",
|
||||
"composer/composer": "^1.10.19 || ^2.0",
|
||||
"squizlabs/php_codesniffer": "^3.5",
|
||||
"typisttech/codeception-composer-project-module": "^0.1.1"
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "0.6.x-dev"
|
||||
},
|
||||
"class": "TypistTech\\Imposter\\Plugin\\ImposterPlugin"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"TypistTech\\Imposter\\Plugin\\": "src"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"style:check": "phpcs",
|
||||
"style:fix": "phpcbf",
|
||||
"test": "codecept run --debug"
|
||||
},
|
||||
"support": {
|
||||
"email": "imposter-plugin@typist.tech",
|
||||
"issues": "https://github.com/TypistTech/imposter-plugin/issues",
|
||||
"source": "https://github.com/TypistTech/imposter-plugin"
|
||||
}
|
||||
}
|
||||
5008
plugins/code-snippets/vendor/typisttech/imposter-plugin/composer.lock
generated
vendored
Normal file
5008
plugins/code-snippets/vendor/typisttech/imposter-plugin/composer.lock
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
40
plugins/code-snippets/vendor/typisttech/imposter-plugin/src/AutoloadMerger.php
vendored
Normal file
40
plugins/code-snippets/vendor/typisttech/imposter-plugin/src/AutoloadMerger.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace TypistTech\Imposter\Plugin;
|
||||
|
||||
use Composer\Package\RootPackageInterface;
|
||||
use RuntimeException;
|
||||
use TypistTech\Imposter\ImposterFactory;
|
||||
|
||||
class AutoloadMerger
|
||||
{
|
||||
public static function run(RootPackageInterface $package): void
|
||||
{
|
||||
$autoload = $package->getAutoload();
|
||||
$autoload = array_merge_recursive($autoload, [
|
||||
'classmap' => static::getImposterAutoloads(),
|
||||
]);
|
||||
|
||||
$package->setAutoload($autoload);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
* @todo [Help Wanted] Think of a better way to handle file not found during installation
|
||||
*/
|
||||
protected static function getImposterAutoloads(): array
|
||||
{
|
||||
try {
|
||||
$cwd = getcwd();
|
||||
$imposter = ImposterFactory::forProject($cwd, ['typisttech/imposter-plugin']);
|
||||
|
||||
return array_map(function ($path) use ($cwd): string {
|
||||
return str_replace($cwd . '/', '', $path);
|
||||
}, $imposter->getAutoloads());
|
||||
} catch (RuntimeException $exception) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
}
|
||||
70
plugins/code-snippets/vendor/typisttech/imposter-plugin/src/ImposterPlugin.php
vendored
Normal file
70
plugins/code-snippets/vendor/typisttech/imposter-plugin/src/ImposterPlugin.php
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace TypistTech\Imposter\Plugin;
|
||||
|
||||
use Composer\Composer;
|
||||
use Composer\EventDispatcher\EventSubscriberInterface;
|
||||
use Composer\IO\IOInterface;
|
||||
use Composer\Package\CompletePackage;
|
||||
use Composer\Package\RootPackageInterface;
|
||||
use Composer\Plugin\PluginInterface;
|
||||
use Composer\Script\Event;
|
||||
use Composer\Script\ScriptEvents;
|
||||
|
||||
class ImposterPlugin implements PluginInterface, EventSubscriberInterface
|
||||
{
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function activate(Composer $composer, IOInterface $io)
|
||||
{
|
||||
$package = $composer->getPackage();
|
||||
if ($package instanceof RootPackageInterface) {
|
||||
AutoloadMerger::run($package);
|
||||
}
|
||||
|
||||
if ($package instanceof CompletePackage) {
|
||||
$scripts = array_merge_recursive([
|
||||
ScriptEvents::POST_INSTALL_CMD => [
|
||||
'@composer dump-autoload --optimize',
|
||||
],
|
||||
ScriptEvents::POST_UPDATE_CMD => [
|
||||
'@composer dump-autoload --optimize',
|
||||
],
|
||||
], $package->getScripts());
|
||||
|
||||
$package->setScripts($scripts);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public static function getSubscribedEvents()
|
||||
{
|
||||
return [
|
||||
ScriptEvents::PRE_AUTOLOAD_DUMP => [
|
||||
['transform', PHP_INT_MAX - 1000],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
public function transform(Event $event): void
|
||||
{
|
||||
Transformer::run(
|
||||
$event->getIO()
|
||||
);
|
||||
}
|
||||
|
||||
public function deactivate(Composer $composer, IOInterface $io)
|
||||
{
|
||||
// Do nothing.
|
||||
}
|
||||
|
||||
public function uninstall(Composer $composer, IOInterface $io)
|
||||
{
|
||||
// Do nothing.
|
||||
}
|
||||
}
|
||||
53
plugins/code-snippets/vendor/typisttech/imposter-plugin/src/Transformer.php
vendored
Normal file
53
plugins/code-snippets/vendor/typisttech/imposter-plugin/src/Transformer.php
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace TypistTech\Imposter\Plugin;
|
||||
|
||||
use Composer\IO\IOInterface;
|
||||
use TypistTech\Imposter\ImposterFactory;
|
||||
|
||||
class Transformer
|
||||
{
|
||||
public static function run(IOInterface $io): void
|
||||
{
|
||||
// Print an empty line to separate imposter outputs.
|
||||
$io->write('', true);
|
||||
$io->write('', true);
|
||||
$io->write('<info>Running Imposter...</info>', true);
|
||||
$io->write('<info>======================</info>', true);
|
||||
$io->write('Loading package information from <comment>' . getcwd() . '/composer.json</comment>', true);
|
||||
|
||||
$imposter = ImposterFactory::forProject(getcwd(), ['typisttech/imposter-plugin']);
|
||||
|
||||
$autoloads = $imposter->getAutoloads();
|
||||
$count = count($autoloads);
|
||||
$index = 1;
|
||||
foreach ($autoloads as $autoload) {
|
||||
$io->write(" - <comment>$index/$count</comment>: Transforming $autoload", true);
|
||||
$imposter->transform($autoload);
|
||||
$index++;
|
||||
}
|
||||
|
||||
$io->write('<info>Success: Imposter transformed vendor files.</info>', true);
|
||||
|
||||
$invalidAutoloads = $imposter->getInvalidAutoloads();
|
||||
if (! empty($invalidAutoloads)) {
|
||||
$invalidAutoloadsCount = count($invalidAutoloads);
|
||||
$io->writeError('', true);
|
||||
$io->writeError(
|
||||
// phpcs:ignore Generic.Files.LineLength.TooLong
|
||||
"<warning>Warning: Imposter failed to transformed $invalidAutoloadsCount of the autoload path(s).</warning>",
|
||||
true
|
||||
);
|
||||
|
||||
foreach ($invalidAutoloads as $invalidAutoload) {
|
||||
$io->writeError(" - $invalidAutoload", true);
|
||||
}
|
||||
}
|
||||
|
||||
// Print empty lines to separate imposter outputs.
|
||||
$io->write('', true);
|
||||
$io->write('', true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user