mirror of
https://ghproxy.net/https://github.com/aspirepress/AspireCloud.git
synced 2025-10-04 23:20:41 +08:00
78 lines
2.9 KiB
JSON
78 lines
2.9 KiB
JSON
{
|
|
"name": "aspirepress/aspirecloud",
|
|
"description": "AspireCloud is designed to act as an API server and passthrough for WP .org (where the endpoints are not implemented by us).",
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
"composer/package-versions-deprecated": true,
|
|
"laminas/laminas-component-installer": true,
|
|
"ramsey/composer-repl": true
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^8.3",
|
|
"aura/sql": "^5.0",
|
|
"composer/package-versions-deprecated": "^1.10.99",
|
|
"guzzlehttp/guzzle": "^7.9",
|
|
"laminas/laminas-coding-standard": "^2.5",
|
|
"laminas/laminas-component-installer": "^3.2",
|
|
"laminas/laminas-config-aggregator": "^1.6",
|
|
"laminas/laminas-diactoros": "^2.7",
|
|
"laminas/laminas-servicemanager": "^3.4",
|
|
"laminas/laminas-stdlib": "^3.6",
|
|
"mezzio/mezzio": "^3.7",
|
|
"mezzio/mezzio-fastroute": "^3.0.3",
|
|
"mezzio/mezzio-helpers": "^5.7",
|
|
"monolog/monolog": "^3.2",
|
|
"ramsey/composer-repl": "^1.4",
|
|
"ramsey/uuid": "^4.7",
|
|
"robmorgan/phinx": "^0.16.0",
|
|
"vlucas/phpdotenv": "^5.6",
|
|
"webmozart/assert": "^1.11"
|
|
},
|
|
"require-dev": {
|
|
"behat/behat": "^3.11",
|
|
"filp/whoops": "^2.7.1",
|
|
"laminas/laminas-development-mode": "^3.3.0",
|
|
"mezzio/mezzio-tooling": "^2.1",
|
|
"phpstan/phpstan": "^1.9",
|
|
"phpunit/phpunit": "^9.5.11",
|
|
"roave/behat-psr11extension": "^2.2",
|
|
"roave/security-advisories": "dev-master",
|
|
"slevomat/coding-standard": "^7.2"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"AspirePress\\Cdn\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"AspirePress\\Cdn\\Unit\\": "tests/unit/src",
|
|
"AspirePress\\Cdn\\Functional\\": "tests/functional/src",
|
|
"AspirePress\\Cdn\\Acceptance\\": "tests/acceptance/src",
|
|
"AspirePress\\Cdn\\Helpers\\" : "tests/helpers"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-create-project-cmd": [
|
|
"@development-enable"
|
|
],
|
|
"development-disable": "laminas-development-mode disable",
|
|
"development-enable": "laminas-development-mode enable",
|
|
"development-status": "laminas-development-mode status",
|
|
"mezzio": "laminas --ansi",
|
|
"check": [
|
|
"@cs-check",
|
|
"@test"
|
|
],
|
|
"clear-config-cache": "php bin/clear-config-cache.php",
|
|
"enable-codestandard": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
|
|
"cs-check": "phpcs",
|
|
"cs-fix": "phpcbf",
|
|
"serve": "php -S 0.0.0.0:8080 -t public/",
|
|
"test": "phpunit --colors=always",
|
|
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
|
|
}
|
|
}
|