Core/composer.json
Abel Hoogeveen b5bf0425f3
Some checks failed
continuous-integration/drone/push Build is failing
Implemented ObjectStorage into Core.
After careful deliberation it was decided to merge ObjectStorage into Core, as it's slowly getting used by every part of FuzeWorks.
2022-12-10 13:14:38 +01:00

26 lines
450 B
JSON

{
"name": "fuzeworks/core",
"description": "FuzeWorks Framework Core",
"homepage": "https://i15.nl/fuzeworks",
"license": ["MIT"],
"authors": [
{
"name": "Abel Hoogeveen",
"homepage": "https://i15.nl"
}
],
"require": {
"php": ">=8.1.0",
"psr/simple-cache": "1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"mikey179/vfsstream": "~1.6.0"
},
"autoload": {
"psr-4": {
"FuzeWorks\\": "src/FuzeWorks/"
}
}
}