ggdworkshop/composer.json

39 lines
995 B
JSON
Raw Normal View History

{
"name": "slim/slim-skeleton",
"description": "Groups Geometry and Dynamics, ICM2018 Satellite, Web Project",
"keywords": ["ICM2018", "GGDWorkshop", "Montevideo","Math","Groups","Geometry"],
"homepage": "https://ggdworkshop.cmat.edu.uy",
"license": "GPLv2",
"authors": [
{
"name": "Germán Correa",
"email": "germanc@cmat.edu.uy",
"homepage": "http://www.cmat.edu.uy"
}
],
"require": {
"php": ">=8.2",
2024-07-28 23:30:04 +00:00
"slim/slim": "^4.14",
"monolog/monolog": "^1.17",
2024-07-28 23:30:04 +00:00
"slim/twig-view": "^3.4",
"google/recaptcha": "^1.1",
2024-07-28 23:30:04 +00:00
"slim/flash": "^0.4.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout" : 0
},
"scripts": {
"start": "php -S localhost:8080 -t public index.php",
"test": "phpunit"
}
}