streams/composer.json

94 lines
2.6 KiB
JSON
Raw Normal View History

{
2023-08-18 11:43:47 +00:00
"name": "streams/streams",
"type": "application",
"description": "social server",
"keywords": [
"identity",
"decentralisation",
"permission",
"SSO",
"Nomad",
"Fediverse",
"activitypub"
],
"homepage": "http://codeberg.org/streams/streams/",
"repositories": [
{
"type": "vcs",
"url": "https://codeberg.org/streams/php-jcs"
}
],
2023-08-18 11:43:47 +00:00
"require": {
"php": ">=8.1",
2023-08-18 11:43:47 +00:00
"ext-curl": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-openssl": "*",
2024-03-11 23:25:20 +00:00
"sabre/dav": "^4.0",
2023-08-18 11:43:47 +00:00
"michelf/php-markdown": "^1.7",
"bshaffer/oauth2-server-php": "^1.9",
"ezyang/htmlpurifier": "^4.9",
"league/html-to-markdown": "^4.4",
"commerceguys/intl": "~0.7",
"smarty/smarty": "^4.3",
"ramsey/uuid": "^3.8",
"twbs/bootstrap": "^5.2",
"blueimp/jquery-file-upload": "10.*",
"simshaun/recurr": "^4.0",
"jbroadway/urlify": "^1.1",
"kzykhys/git": "^0.1.2",
"masterminds/html5": "^2.6",
"forkawesome/fork-awesome": "^1.1",
"p3k/emoji-detector": "^0.2.1",
"phpseclib/phpseclib": "^2.0",
"ext-json": "*",
2024-03-10 21:14:07 +00:00
"symfony/yaml": "*",
"symfony/uid": "*",
"symfony/mailer": "*",
2023-08-18 11:43:47 +00:00
"wapmorgan/mp3info": "^0.0.8",
"chillerlan/php-qrcode": "^4.3",
"spomky-labs/otphp": "^10.0",
2023-10-28 08:17:41 +00:00
"indieweb/rel-me": "^0.1.1",
"minishlink/web-push": "^8.0",
"stephenhill/base58": "^1.1",
"streams/php-jcs": "^1.0.1",
2023-12-23 21:02:43 +00:00
"phpmailer/phpmailer": "^6.9",
"league/oauth2-google": "^4.0",
2024-02-20 06:21:20 +00:00
"decomplexity/sendoauth2": "^3.0",
2024-03-10 21:14:07 +00:00
"gregwar/captcha": "^1.2",
"symfony/symfony": "*",
"doctrine/orm": "*",
"doctrine/dbal": "*"
2023-08-18 11:43:47 +00:00
},
"require-dev": {
"phpunit/phpunit": "@stable",
2024-03-10 21:14:07 +00:00
"behat/behat": "*",
2023-08-18 11:43:47 +00:00
"behat/mink-extension": "@stable",
"behat/mink-goutte-driver": "@stable",
"php-mock/php-mock-phpunit": "@stable",
2024-03-10 21:14:07 +00:00
"codeception/codeception": "*",
2023-08-18 11:43:47 +00:00
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "*"
},
"autoload": {
"psr-4": {
"Include\\": "include/",
2024-03-13 05:21:03 +00:00
"Code\\": "src/"
2023-08-18 11:43:47 +00:00
}
},
"autoload-dev": {
"psr-4": {
2024-03-13 07:23:48 +00:00
"Code\\Tests\\Unit\\": "tests/unit"
2023-08-18 11:43:47 +00:00
}
},
"minimum-stability": "stable",
"config": {
"platform": {
"php": "8.1"
},
2023-08-18 11:43:47 +00:00
"notify-on-install": false,
"optimize-autoloader": true
}
2023-10-28 08:17:41 +00:00
}