Core/composer.json

30 lines
551 B
JSON
Raw Normal View History

{
"name": "fuzeworks/core",
"description": "FuzeWorks Framework Core",
"homepage": "https://techfuze.net/fuzeworks",
2018-10-07 21:02:18 +00:00
"license": ["MIT"],
"authors": [
{
2018-10-07 21:02:18 +00:00
"name": "TechFuze",
"homepage": "https://techfuze.net"
},
{
"name": "FuzeWorks Community",
"homepage": "https://techfuze.net/fuzeworks/contributors"
}
],
"require": {
2019-02-11 18:49:14 +00:00
"php": ">=7.1.0",
"psr/log": "~1.1.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
2019-02-11 18:49:14 +00:00
"mikey179/vfsstream": "1.1.*"
},
"autoload": {
"psr-4": {
"FuzeWorks\\": "src/FuzeWorks/"
}
}
2019-02-11 18:49:14 +00:00
}