Skip to content

Commit

Permalink
fix: push attic'd composer.json that didn't make it into commit
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckadams committed Oct 17, 2024
1 parent b1897eb commit 95c2208
Showing 1 changed file with 85 additions and 0 deletions.
85 changes: 85 additions & 0 deletions .ATTIC/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
"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
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/aspirepress/aspirecloud-migrations.git"
}
],
"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-cors": "^1.12",
"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",
"webmozart/assert": "^1.11",
"aspirepress/aspirecloud-migrations": "dev-main"
},
"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\\AspireCloud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AspirePress\\AspireCloud\\Unit\\": "tests/unit/src",
"AspirePress\\AspireCloud\\Functional\\": "tests/functional/src",
"AspirePress\\AspireCloud\\Acceptance\\": "tests/acceptance/src",
"AspirePress\\AspireCloud\\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"
}
}

0 comments on commit 95c2208

Please sign in to comment.