diff --git a/composer.json b/composer.json index 07bfe4c..d44f46f 100644 --- a/composer.json +++ b/composer.json @@ -1,19 +1,8 @@ { "name": "cycle/proxy-factory", "type": "library", + "license": "MIT", "description": "Proxy Factory Interface implementation for cycle ORM", - "autoload": { - "psr-4": { - "Cycle\\ORM\\Promise\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "Cycle\\ORM\\Promise\\Tests\\": "tests/Promise/", - "Cycle\\ORM\\Promise\\Tests\\Promises\\": "tests/fixtures/promises/", - "": "tests/fixtures/withoutNamespace/" - } - }, "require": { "php": "^7.1|^8.0", "nikic/php-parser": "^4.2", @@ -28,5 +17,17 @@ "spiral/core": "^1.1", "spiral/debug": "^1.3", "cycle/annotated": "^1.0" + }, + "autoload": { + "psr-4": { + "Cycle\\ORM\\Promise\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Cycle\\ORM\\Promise\\Tests\\": "tests/Promise/", + "Cycle\\ORM\\Promise\\Tests\\Promises\\": "tests/fixtures/promises/", + "": "tests/fixtures/withoutNamespace/" + } } }