Files
mcp-mokosuite-api/composer.json
T
jmiller 9a91636c0e chore: Sync MokoStandards workflows and configurations (#4)
* chore: update LICENSE from MokoStandards

* chore: add SECURITY.md from MokoStandards

* chore: add ROADMAP.md from MokoStandards

* chore: add Makefile from MokoStandards

* chore: add composer.json from MokoStandards

* chore: update docs/index.md from MokoStandards

* chore: add docs/INSTALLATION.md from MokoStandards

* chore: add .github/workflows/ci.yml from MokoStandards

* chore: add .github/workflows/test.yml from MokoStandards

* chore: add .github/workflows/code-quality.yml from MokoStandards

* chore: add .github/workflows/codeql-analysis.yml from MokoStandards

* chore: add .github/workflows/deploy.yml from MokoStandards

* chore: add .github/workflows/standards-compliance.yml from MokoStandards

* chore: update .github/workflows/ci.yml from MokoStandards

* chore: update .github/workflows/test.yml from MokoStandards

* chore: update .github/workflows/code-quality.yml from MokoStandards

* chore: update .github/workflows/codeql-analysis.yml from MokoStandards

* chore: update .github/workflows/deploy.yml from MokoStandards

* chore: update .github/workflows/standards-compliance.yml from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/config.yml from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/adr.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/bug_report.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/documentation.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/enterprise_support.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/feature_request.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/firewall-request.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/question.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/request-license.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/rfc.md from MokoStandards

* chore: add .github/ISSUE_TEMPLATE/security.md from MokoStandards
2026-03-24 11:22:36 -05:00

52 lines
1.5 KiB
JSON

{
"name": "mokoconsulting-tech/mokostandards-template-generic",
"description": "MokoStandards-Template-Generic library by Moko Consulting",
"type": "library",
"version": "01.00.00",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Moko Consulting",
"email": "hello@mokoconsulting.tech"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"mokoconsulting-tech/enterprise": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.0",
"squizlabs/php_codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"MokoConsulting\\MokoStandards-Template-Generic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MokoConsulting\\MokoStandards-Template-Generic\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mokoconsulting-tech/MokoStandards"
}
],
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"scripts": {
"validate": "vendor/bin/validate-structure --path .",
"test": "phpunit",
"phpcs": "phpcs --standard=vendor/mokoconsulting-tech/enterprise/phpcs.xml src/",
"phpstan": "phpstan analyse -c vendor/mokoconsulting-tech/enterprise/phpstan.neon src/"
}
}