From 922ce0a4ba39718671405c9f6a9409f45816549a Mon Sep 17 00:00:00 2001 From: Mateusz Zalewski Date: Tue, 3 Jul 2018 20:44:39 +0200 Subject: [PATCH 1/2] Mention source of classes and add more authors --- README.md | 11 ++++++++--- composer.json | 9 +++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7e533d6..c07121a 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,14 @@ # PageObjectExtension -Provides default classes for Page object pattern in Behat: +Provides default classes for Page object pattern in Behat. -* `Page` - represents specific page on web, API etc. -* `Element` - represents part of the page +### Page + +`Page` represents specific page on web, API etc. This concept is extracted from [Sylius Behat system](https://github.com/Sylius/Sylius/tree/master/src/Sylius/Behat/Page). + +### Element + +`Element` represents part of the page. This concept is extracted from [URBANARA CatalogPromotion plugin](https://github.com/URBANARA/UrbanaraCatalogPromotionPlugin/tree/master/tests/Behat/Element). ## Installation diff --git a/composer.json b/composer.json index 3d6a78b..739f237 100644 --- a/composer.json +++ b/composer.json @@ -4,6 +4,15 @@ "type": "library", "license": "MIT", "authors": [ + { + "name": "Łukasz Chruściel", + "email": "lchrusciel@gmail.com" + }, + { + "name": "Kamil Kokot", + "email": "kamil@kokot.me", + "homepage": "http://kamil.kokot.me" + }, { "name": "Mateusz Zalewski", "email": "mateusz.p.zalewski@gmail.com", From a91db040e52915be5667517da15e0ef666d49906 Mon Sep 17 00:00:00 2001 From: Mateusz Zalewski Date: Tue, 3 Jul 2018 22:07:43 +0200 Subject: [PATCH 2/2] Mention sensiolabs/BehatPageObjectExtension --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c07121a..fd2edf8 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,13 @@ Provides default classes for Page object pattern in Behat. ### Page -`Page` represents specific page on web, API etc. This concept is extracted from [Sylius Behat system](https://github.com/Sylius/Sylius/tree/master/src/Sylius/Behat/Page). +`Page` represents specific page on web, API etc. +This concept is extracted from [Sylius Behat system](https://github.com/Sylius/Sylius/tree/master/src/Sylius/Behat/Page) and +inspired by [sensiolabs/BehatPageObjectExtension](https://github.com/sensiolabs/BehatPageObjectExtension/tree/master/src/PageObject) ### Element -`Element` represents part of the page. This concept is extracted from [URBANARA CatalogPromotion plugin](https://github.com/URBANARA/UrbanaraCatalogPromotionPlugin/tree/master/tests/Behat/Element). +`Element` represents part of the page. This concept is extracted from [SyliusAdminOrderCreation](https://github.com/Sylius/AdminOrderCreationPlugin/blob/master/tests/Behat/Element/Element.php). ## Installation