diff --git a/composer.json b/composer.json index c53d0a5..1db2f64 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,18 @@ { "name": "loomlabs/utility.collection", + "autoload": { + "psr-4": { + "LoomLabs\\Utility\\Collection\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "LoomLabs\\Utility\\Collection\\Tests\\": "tests/" + } + }, "version": "1.0.0", - "license": "MIT" -} \ No newline at end of file + "license": "MIT", + "require-dev": { + "phpunit/phpunit": "^12.1" + } +}