Files
development/www/composer.json
Clemens Schwaighofer edfbe476c4 Composer.json add lib/ folder, fix Smart extended class
Smarty extended class is now included in checks and is fixed.

Add the lib/ folder to the composer.json autoloader block so we can use
the composer autoloader and not the one from CoreLibs

Added an autoloader load test backend file
2021-10-28 10:11:56 +09:00

20 lines
371 B
JSON

{
"name": "gullevek/corelibs",
"description": "CoreLibs",
"type": "library",
"authors": [
{
"name": "Clemens Schwaighofer",
"email": "clemens.schwaighofer@egplusww.com"
}
],
"autoload": {
"classmap": [
"lib/"
]
},
"require-dev": {
"phpunit/phpunit": "^9"
}
}