mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.6 KiB
62 lines
1.6 KiB
{
|
|
"name": "movim/movim",
|
|
"description": "Decentralized social platform based on XMPP",
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Movim\\": "src/"
|
|
},
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Moxl\\": "lib/moxl/src/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=7.4.0",
|
|
"ext-curl": "*",
|
|
"ext-gd": "*",
|
|
"ext-dom": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-imagick": "*",
|
|
"ext-json": "*",
|
|
|
|
"fabiang/sasl": "^1.1.1",
|
|
"rain/raintpl": "^3.1.1",
|
|
"embed/embed": "^v4.4",
|
|
"league/commonmark": "2.3.*",
|
|
|
|
"respect/validation": "^2.2",
|
|
"ezyang/htmlpurifier": "^4.16",
|
|
"symfony/console": "^5.4",
|
|
"cocur/slugify": "^4.3",
|
|
"dflydev/fig-cookies": "^3.0",
|
|
"defuse/php-encryption": "^2.3.1",
|
|
|
|
"robmorgan/phinx": "^0.13",
|
|
"illuminate/database": "^8.83",
|
|
"illuminate/events": "^8.83",
|
|
"doctrine/dbal": "^3.5",
|
|
"monolog/monolog": "^2.8",
|
|
|
|
"cboden/ratchet": "^0.4.4",
|
|
"react/child-process": "^0.6.5",
|
|
"react/http": "^1.8.0",
|
|
"react/dns": "^1.10.0",
|
|
"ratchet/pawl": "^0.4.1",
|
|
"minishlink/web-push": "^7.0",
|
|
"vlucas/phpdotenv": "^5.5"
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.4"
|
|
},
|
|
"optimize-autoloader": true
|
|
},
|
|
"scripts": {
|
|
"movim:migrate": "vendor/bin/phinx migrate --ansi",
|
|
"movim:rollback": "vendor/bin/phinx rollback --ansi"
|
|
},
|
|
"scripts-descriptions": {
|
|
"movim:migrate": "Migrate the database",
|
|
"movim:rollback": "Rollback the changes"
|
|
}
|
|
}
|