streams/composer.json

82 lines
1.9 KiB
JSON
Raw Normal View History

{
2019-02-11 23:55:07 +00:00
"name" : "zot/zap",
"type" : "application",
2019-02-11 23:55:07 +00:00
"description" : "Zot social server",
"keywords" : [
2022-01-04 21:39:42 +00:00
"identity",
"decentralisation",
"permission",
"SSO",
"ZOT",
"ZOT6",
"Nomad",
"Fediverse",
"activitypub"
],
"homepage" : "http://codeberg.org/zot/zap/",
2022-01-04 21:39:42 +00:00
"license" : "Unlicense",
"authors" : [{
"name" : "Mike Macgirvin",
"role" : "founder"
}
],
"support" : {
2022-01-04 21:39:42 +00:00
"issues" : "https://z.macgirvin.com/channel/zap",
"source" : "https://codeberg.org/zot/zap/"
},
"require" : {
"php" : ">=7.4",
"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",
"symfony/uid": "^5.4"
},
"require-dev" : {
"phpunit/phpunit" : "@stable",
"behat/behat" : "@stable",
"behat/mink-extension": "@stable",
"behat/mink-goutte-driver": "@stable",
"php-mock/php-mock-phpunit": "@stable",
"phpunit/dbunit": "@stable"
},
"autoload" : {
"psr-4" : {
"Hubzilla\\" : "include/",
"Zotlabs\\" : "Zotlabs/"
}
},
"autoload-dev" : {
"psr-4" : {
"Zotlabs\\Tests\\Unit\\" : "tests/unit"
}
},
"minimum-stability" : "stable",
"config" : {
"platform": { "php": "7.4" },
"notify-on-install" : false,
"optimize-autoloader" : true
2021-05-27 02:29:06 +00:00
}
}