eesyphp/composer.json
Benjamin Renard f2edf4910a Switch to YAML configuration file, add Config & App classes in EesyPHP namespace
App initialization is now handle by App::init() method and all 
configuration information is now retreive using Config::get() method.
2023-02-08 02:27:15 +01:00

35 lines
859 B
JSON

{
"name": "ee/eesyphp",
"description": "Easter-eggs easyphp PHP framework for simple web apps",
"authors": [
{
"name": "Easter-eggs",
"email": "info@easter-eggs.com"
}
],
"autoload": {
"psr-4": {
"EesyPHP\\": "src/"
},
"files": [
"src/functions.php"
]
},
"require": {
"envms/fluentpdo": "^2.2",
"pear/console_table": "^1.3",
"brenard/php-unidecode": "dev-master",
"smarty/smarty": "3.1.34",
"smarty-gettext/smarty-gettext": "^1.6",
"smarty-gettext/tsmarty2c": "^0.2.1",
"sepia/po-parser": "^6.0",
"sentry/sdk": "^3.3",
"ext-pdo": "^7.3",
"ext-json": "^7.3",
"ext-yaml": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9"
}
}