diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..46eb1d8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Sitepark GmbH + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..373c48e --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Symfony Flex Recipes + +This repository is hosting Symfony Flex Recipes for Sitepark + +You can look into the [Symfony documentation](https://github.com/symfony/recipes#creating-recipes) for more information about the recipe format. + +See also [Create an Index to the Recipes](https://symfony.com/doc/current/setup/flex_private_recipes.html#create-an-index-to-the-recipes) to add more recipes \ No newline at end of file diff --git a/index.json b/index.json new file mode 100644 index 0000000..9226201 --- /dev/null +++ b/index.json @@ -0,0 +1,15 @@ +{ + "recipes": { + "overblog/graphql-bundle": [ + "0.12" + ] + }, + "branch": "main", + "is_contrib": true, + "_links": { + "repository": "gitlab.com/sitepark/symfony-recipes", + "origin_template": "{package}:{version}@gitlab.com/sitepark/symfony-recipes:main", + "recipe_template": "https://gitlab.com/api/v4/projects/725985679/repository/files/{package_dotted}.{version}.json/raw?ref=main" + } +} + diff --git a/overblog/graphql-bundle/0.12/config/packages/graphql.yaml b/overblog/graphql-bundle/0.12/config/packages/graphql.yaml new file mode 100644 index 0000000..7fe6834 --- /dev/null +++ b/overblog/graphql-bundle/0.12/config/packages/graphql.yaml @@ -0,0 +1,10 @@ +overblog_graphql: + definitions: + schema: + query: RootQuery + mappings: + types: + - + type: yaml + dir: "%kernel.project_dir%/config/graphql/types" + suffix: null diff --git a/overblog/graphql-bundle/0.12/config/routes/graphql.yaml b/overblog/graphql-bundle/0.12/config/routes/graphql.yaml new file mode 100644 index 0000000..33d4967 --- /dev/null +++ b/overblog/graphql-bundle/0.12/config/routes/graphql.yaml @@ -0,0 +1,4 @@ +overblog_graphql_endpoint: + resource: "@OverblogGraphQLBundle/Resources/config/routing/graphql.yml" + prefix: /graphql + diff --git a/overblog/graphql-bundle/0.12/manifest.json b/overblog/graphql-bundle/0.12/manifest.json new file mode 100644 index 0000000..42ec53d --- /dev/null +++ b/overblog/graphql-bundle/0.12/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Overblog\\GraphQLBundle\\OverblogGraphQLBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}