MaketRandevu/composer.json

54 lines
1.4 KiB
JSON
Raw Permalink Normal View History

{
"name": "alextselegidis/easyappointments",
"description": "Open Source Web Scheduler",
2020-03-11 12:24:49 +03:00
"homepage": "https://easyappointments.org",
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "Alex Tselegidis",
"email": "alextselegidis@gmail.com"
}
],
2017-05-21 13:47:34 +03:00
"support": {
"issues": "https://github.com/alextselegidis/easyappointments/issues",
"forum": "https://groups.google.com/forum/#!forum/easy-appointments",
2020-03-11 12:24:49 +03:00
"wiki": "https://easyappointments.org/docs",
2017-05-21 13:52:59 +03:00
"source": "https://github.com/alextselegidis/easyappointments"
},
"keywords": [
"calendar",
"scheduler",
"appointments",
"events",
"dates",
"google",
"services"
],
"minimum-stability": "stable",
2020-03-11 12:24:49 +03:00
"autoload": {
"psr-4": {
"EA\\Engine\\": "engine/"
}
2015-10-18 19:50:06 +03:00
},
"require": {
"php": ">=7.3",
2018-11-03 18:29:03 +03:00
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"gregwar/captcha": "^1.1",
2020-08-15 15:58:45 +03:00
"phpmailer/phpmailer": "^6.1",
"jsvrcek/ics": "^0.8",
"monolog/monolog": "^1",
"google/apiclient": "^2.0"
2020-03-11 12:24:49 +03:00
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9"
},
"scripts": {
"test": "php vendor/bin/phpunit tests"
}
}