diff --git a/.circleci/config.yml b/.circleci/config.yml index 6af5a0a4..550a82e6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,6 +14,7 @@ workflows: - test: name: test-php-7.2 context: + - github-credentials - dockerhub-credentials php: "7.2" phpunit: "7.5" @@ -22,6 +23,7 @@ workflows: - test: name: test-php-8.1 context: + - github-credentials - dockerhub-credentials php: "8.1" phpunit: "9.5.10" @@ -92,6 +94,7 @@ jobs: name: Install Dependencies command: | rm composer.lock + composer config http-basic.github.com dadish ${GH_TOKEN} composer require phpunit/phpunit ^<> --dev composer update --with-all-dependencies composer install diff --git a/Readme.md b/Readme.md index 64744b75..af783114 100644 --- a/Readme.md +++ b/Readme.md @@ -36,7 +36,9 @@ See more [demo here](https://github.com/dadish/ProcessGraphQL/blob/main/ScreenCa ## Installation -To install the module, go to __Modules -> Install -> Add New__. Scroll down to get to the section __Add Module from URL__. Paste the URL of the [latest release][latest-release] into the __Module ZIP file URL__ field and press __Download__. +To install the module, go to __Modules -> Install -> Add New__. Scroll down to get to the section __Add Module from URL__. Paste the URL of the zip file of this module into the __Module ZIP file URL__ field and press __Download__. You can find the zip file of the module in the [latest release][latest-release] page. Be sure to choose the one that says `ProcessWire Module (zip)`. + +[!ProcessWire Module (zip)][img-assets] ProcessWire will download this module and place it at `/site/modules/` directory for you. After you did that, you should see __GraphQL__ module among others. Go ahead and press __Install__ button next to it. @@ -292,6 +294,7 @@ then it is probably because ProcessGraphQL is not receiving your query. The reas [img-filtering]: https://raw.githubusercontent.com/dadish/ProcessGraphQL/main/imgs/ProcessGraphQL-Filtering.gif [img-fieldtypes]: https://raw.githubusercontent.com/dadish/ProcessGraphQL/main/imgs/ProcessGraphQL-Fieldtypes.gif [img-documentation]: https://raw.githubusercontent.com/dadish/ProcessGraphQL/main/imgs/ProcessGraphQL-Documentation.gif +[img-assets]: https://raw.githubusercontent.com/dadish/ProcessGraphQL/main/imgs/module-files.png [latest-release]: https://github.com/dadish/ProcessGraphQL/releases/latest [map-marker-graphql]: https://github.com/dadish/GraphQLFieldtypeMapMarker [webonyx-graphql]: https://github.com/webonyx/graphql-php diff --git a/imgs/module-files.png b/imgs/module-files.png new file mode 100644 index 00000000..fa0869da Binary files /dev/null and b/imgs/module-files.png differ