From a4dce44f769249ef36f103e31343a6cdaf922bc4 Mon Sep 17 00:00:00 2001 From: veltrup Date: Thu, 26 Oct 2023 15:36:19 +0200 Subject: [PATCH] chore: rename atoolo-resource-loader to atoolo-resource --- README.md | 12 ++---------- composer.json | 8 ++++---- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 4bca592..7d03e2e 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,3 @@ -# Atoolo resource loader +# Atoolo resource -The primary purpose of the resource loader is to load aggregated data from IES (Sitepark's content management system) and make it available in PHP. - -By using different `ResourceLoaderProviders` different data sources and data formats can be supported. - -Resources can be protected. Therefore also a `SecurityFilterChain` is provided, with which the access rights to the resource can be checked. - -The resource would be specified via a location identifier the form - -`scheme:path` or `scheme:id`. \ No newline at end of file +In the Atoolo context, resources from IES (Sitepark's content management system) are aggregated data that can be handled through this library. \ No newline at end of file diff --git a/composer.json b/composer.json index 2e8d108..089c3aa 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { - "name": "atoolo/resource-loader", - "description": "Loading of pre-produced data", + "name": "atoolo/resource", + "description": "Handle pre-produced data", "license": "MIT", "type": "library", "authors": [{ @@ -9,12 +9,12 @@ }], "autoload": { "psr-4": { - "Atoolo\\ResourceLoader\\": "src" + "Atoolo\\Resource\\": "src" } }, "autoload-dev": { "psr-4": { - "Atoolo\\ResourceLoader\\Test\\": "test" + "Atoolo\\Resource\\Test\\": "test" } }, "minimum-stability": "dev",