- Theme: momentry (custom theme with REST API routes) - Plugins: code-snippets (contains all API proxies) - Languages: zh_TW translations - Excludes: cache, backups, uploads, logs
70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"name": "typisttech/imposter",
|
|
"description": "Wrapping all composer vendor packages inside your own namespace. Intended for WordPress plugins.",
|
|
"keywords": [
|
|
"composer",
|
|
"dependency",
|
|
"monkey-patching",
|
|
"namespace",
|
|
"wordpress"
|
|
],
|
|
"homepage": "https://github.com/TypistTech/imposter",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Typist Tech",
|
|
"email": "imposter@typist.tech",
|
|
"homepage": "https://typist.tech"
|
|
},
|
|
{
|
|
"name": "Tang Rufus",
|
|
"email": "tangrufus@gmail.com",
|
|
"homepage": "https://typist.tech",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.3 || ^8.0",
|
|
"ext-json": "*"
|
|
},
|
|
"require-dev": {
|
|
"codeception/codeception": "^4.1",
|
|
"codeception/mockery-module": "^0.4.0",
|
|
"codeception/module-asserts": "^1.3",
|
|
"codeception/module-filesystem": "^1.0",
|
|
"squizlabs/php_codesniffer": "^3.5"
|
|
},
|
|
"suggest": {
|
|
"typisttech/imposter-plugin": "Composer plugin to integrate composer and imposter"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.6.x-dev"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"TypistTech\\Imposter\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"TypistTech\\Imposter\\": "tests/unit"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"style:check": "phpcs",
|
|
"style:fix": "phpcbf",
|
|
"test": "codecept run",
|
|
"test:coverage": "phpdbg -qrr ./vendor/bin/codecept run --coverage --coverage-html --coverage-xml"
|
|
},
|
|
"support": {
|
|
"email": "imposter@typist.tech",
|
|
"issues": "https://github.com/TypistTech/imposter/issues",
|
|
"source": "https://github.com/TypistTech/imposter"
|
|
}
|
|
}
|