MVCR/composer.json
Abel Hoogeveen f6baf1142c
Made all properties of the Model, View and Controller protected.
These should not be accessible from outside these types of objects. Also made FuzeWorks core a requirement and not a dev-requirement.
2019-03-01 11:04:12 +01:00

29 lines
563 B
JSON

{
"name": "fuzeworks/mvcr",
"description": "FuzeWorks Framework MVC Component",
"license": ["MIT"],
"authors": [
{
"name": "TechFuze",
"homepage": "https://techfuze.net"
},
{
"name": "FuzeWorks Community",
"homepage": "https://techfuze.net/fuzeworks/contributors"
}
],
"require": {
"php": ">=7.1.0",
"fuzeworks/core": "1.2.0-RC2"
},
"require-dev": {
"phpunit/phpunit": "^7",
"mikey179/vfsstream": "1.6.5"
},
"autoload": {
"psr-4": {
"FuzeWorks\\": "src/FuzeWorks/"
}
}
}