streams/composer.json

70 lines
1.6 KiB
JSON
Raw Normal View History

{
2022-02-17 20:08:59 +00:00
"name" : "streams/streams",
"type" : "application",
2022-02-17 20:08:59 +00:00
"description" : "social server",
"keywords" : [
2022-01-04 21:39:42 +00:00
"identity",
"decentralisation",
"permission",
"SSO",
"Nomad",
"Fediverse",
"activitypub"
],
2022-02-17 20:08:59 +00:00
"homepage" : "http://codeberg.org/streams/streams/",
"require" : {
2022-02-17 20:08:59 +00:00
"php" : ">=8.0",
"ext-curl" : "*",
"ext-gd" : "*",
"ext-mbstring" : "*",
"ext-xml" : "*",
"ext-openssl" : "*",
"sabre/dav" : "~3.2",
"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": "~3.1",
2018-09-07 09:26:02 +00:00
"ramsey/uuid": "^3.8",
2018-09-20 02:30:39 +00:00
"twbs/bootstrap": "4.1.3",
2020-09-24 23:45:54 +00:00
"blueimp/jquery-file-upload": "10.*",
2019-04-12 06:54:18 +00:00
"simshaun/recurr": "^4.0",
2019-04-16 04:51:27 +00:00
"jbroadway/urlify": "^1.1",
2019-04-16 05:02:38 +00:00
"kzykhys/git": "^0.1.2",
2019-07-07 23:18:20 +00:00
"masterminds/html5": "^2.6",
2019-11-11 01:11:51 +00:00
"forkawesome/fork-awesome": "^1.1",
"p3k/emoji-detector": "^0.2.1",
2021-12-02 22:33:36 +00:00
"phpseclib/phpseclib": "^2.0",
"ext-json": "*",
2022-01-09 09:16:13 +00:00
"symfony/yaml": "^5.4",
2022-01-27 09:32:18 +00:00
"symfony/uid": "^5.4",
"symfony/mailer": "^5.4"
},
"require-dev" : {
"phpunit/phpunit" : "@stable",
2022-08-25 11:43:03 +00:00
"behat/behat" : "~3.11",
"behat/mink-extension": "@stable",
"behat/mink-goutte-driver": "@stable",
2022-06-24 02:48:23 +00:00
"php-mock/php-mock-phpunit": "@stable"
},
"autoload" : {
"psr-4" : {
2022-04-10 01:47:20 +00:00
"Include\\" : "include/",
2022-02-16 04:08:28 +00:00
"Code\\" : "Code/"
}
},
"autoload-dev" : {
"psr-4" : {
2022-02-16 04:08:28 +00:00
"Code\\Tests\\Unit\\" : "tests/unit"
}
},
"minimum-stability" : "stable",
"config" : {
2022-02-17 20:08:59 +00:00
"platform": { "php": "8.0" },
"notify-on-install" : false,
"optimize-autoloader" : true
2021-05-27 02:29:06 +00:00
}
}