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.
66 lines
1.8 KiB
66 lines
1.8 KiB
{
|
|
"name": "movim/movim",
|
|
"description": "Decentralized social platform based on XMPP",
|
|
"license": "AGPL-3.0-or-later",
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Movim\\": "src/",
|
|
"Moxl\\": "src/"
|
|
},
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.2.0",
|
|
"ext-gd": "*",
|
|
"ext-dom": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-imagick": "*",
|
|
"ext-json": "*",
|
|
"ext-curl": "*",
|
|
|
|
"fabiang/sasl": "^2.0",
|
|
"rain/raintpl": "^3.1",
|
|
"embed/embed": "^v4.4",
|
|
"league/commonmark": "^2.6",
|
|
|
|
"respect/validation": "^2.3",
|
|
"ezyang/htmlpurifier": "^4.17",
|
|
"cocur/slugify": "^4.5",
|
|
"dflydev/fig-cookies": "^3.1",
|
|
"defuse/php-encryption": "^2.4",
|
|
|
|
"robmorgan/phinx": "^0.14",
|
|
"illuminate/database": "^11",
|
|
"illuminate/events": "^11",
|
|
"doctrine/dbal": "^3.9",
|
|
"monolog/monolog": "^3.7",
|
|
|
|
"plesk/ratchetphp": "^1.0",
|
|
"react/child-process": "^0.6",
|
|
"react/http": "^1.11",
|
|
"react/dns": "^1.13",
|
|
"ratchet/pawl": "^0.4.3",
|
|
"minishlink/web-push": "^9.0",
|
|
"vlucas/phpdotenv": "^5.6",
|
|
"react/promise-timer": "^1.11",
|
|
"awobaz/compoships": "^2.3",
|
|
"wyrihaximus/react-cron": "^4.0",
|
|
"nyholm/psr7": "^1.8"
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "8.2"
|
|
},
|
|
"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"
|
|
}
|
|
}
|