composer update

This commit is contained in:
Mike Macgirvin 2023-08-18 21:43:47 +10:00
parent f7039215fe
commit 8d61dfe44a
4 changed files with 1562 additions and 325 deletions

1
.gitignore vendored
View file

@ -26,6 +26,7 @@ __pycache__
.htconfig.php .htconfig.php
.htstartup.php .htstartup.php
.lando.local.yml .lando.local.yml
codeception.yml
favicon.* favicon.*
addon/ addon/
widget/ widget/

12
codeception.yml.dist Normal file
View file

@ -0,0 +1,12 @@
namespace: Tests
support_namespace: Support
paths:
tests: tests/CC/tests
output: tests/CC/tests/_output
data: tests/CC/tests/Support/Data
support: tests/CC/tests/Support
envs: tests/CC/tests/_envs
actor_suffix: Tester
extensions:
enabled:
- Codeception\Extension\RunFailed

View file

@ -1,8 +1,8 @@
{ {
"name" : "streams/streams", "name": "streams/streams",
"type" : "application", "type": "application",
"description" : "social server", "description": "social server",
"keywords" : [ "keywords": [
"identity", "identity",
"decentralisation", "decentralisation",
"permission", "permission",
@ -11,16 +11,16 @@
"Fediverse", "Fediverse",
"activitypub" "activitypub"
], ],
"homepage" : "http://codeberg.org/streams/streams/", "homepage": "http://codeberg.org/streams/streams/",
"require" : { "require": {
"php" : ">=8.0", "php": ">=8.0",
"ext-curl" : "*", "ext-curl": "*",
"ext-gd" : "*", "ext-gd": "*",
"ext-mbstring" : "*", "ext-mbstring": "*",
"ext-xml" : "*", "ext-xml": "*",
"ext-openssl" : "*", "ext-openssl": "*",
"sabre/dav" : "~3.2", "sabre/dav": "~3.2",
"michelf/php-markdown" : "^1.7", "michelf/php-markdown": "^1.7",
"bshaffer/oauth2-server-php": "^1.9", "bshaffer/oauth2-server-php": "^1.9",
"ezyang/htmlpurifier": "^4.9", "ezyang/htmlpurifier": "^4.9",
"league/html-to-markdown": "^4.4", "league/html-to-markdown": "^4.4",
@ -45,29 +45,33 @@
"spomky-labs/otphp": "^10.0", "spomky-labs/otphp": "^10.0",
"indieweb/rel-me": "^0.1.1" "indieweb/rel-me": "^0.1.1"
}, },
"require-dev" : { "require-dev": {
"phpunit/phpunit" : "@stable", "phpunit/phpunit": "@stable",
"behat/behat" : "~3.11", "behat/behat": "~3.11",
"behat/mink-extension": "@stable", "behat/mink-extension": "@stable",
"behat/mink-goutte-driver": "@stable", "behat/mink-goutte-driver": "@stable",
"php-mock/php-mock-phpunit": "@stable" "php-mock/php-mock-phpunit": "@stable",
"codeception/codeception": "^5.0",
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "*"
}, },
"autoload" : { "autoload": {
"psr-4" : { "psr-4": {
"Include\\" : "include/", "Include\\": "include/",
"Code\\" : "Code/" "Code\\": "Code/"
} }
}, },
"autoload-dev" : { "autoload-dev": {
"psr-4" : { "psr-4": {
"Code\\Tests\\Unit\\" : "tests/unit" "Code\\Tests\\Unit\\": "tests/unit"
} }
}, },
"minimum-stability" : "stable", "minimum-stability": "stable",
"config" : { "config": {
"platform": { "php": "8.0" }, "platform": {
"notify-on-install" : false, "php": "8.0"
"optimize-autoloader" : true },
"notify-on-install": false,
"optimize-autoloader": true
} }
} }

1728
composer.lock generated

File diff suppressed because it is too large Load diff