Commits on Source (18)
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
-
Grzegorz Rola authored
feature(init): init See merge request !1
Showing
- .editorconfig 20 additions, 0 deletions.editorconfig
- .gitattributes 12 additions, 0 deletions.gitattributes
- .gitignore 12 additions, 0 deletions.gitignore
- .gitlab-ci.yml 22 additions, 0 deletions.gitlab-ci.yml
- CHANGELOG.md 3 additions, 0 deletionsCHANGELOG.md
- LICENSE.md 21 additions, 0 deletionsLICENSE.md
- README.md 0 additions, 90 deletionsREADME.md
- composer.json 45 additions, 0 deletionscomposer.json
- phpunit-unit.xml 21 additions, 0 deletionsphpunit-unit.xml
- src/Shopify.php 83 additions, 0 deletionssrc/Shopify.php
- tests/unit/.gitkeep 0 additions, 0 deletionstests/unit/.gitkeep
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
CHANGELOG.md
0 → 100644
LICENSE.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "octolize/shopify-codeception", | ||
"description": "Shopify Codeception", | ||
"license": "MIT", | ||
"keywords": ["shopify", "codeception"], | ||
"authors": [ | ||
{ | ||
"name": "grola", | ||
"email": "grola@octolize.com" | ||
} | ||
], | ||
"config": { | ||
"platform": { | ||
"php": "8.1" | ||
} | ||
}, | ||
"require": { | ||
"php": ">=8.1", | ||
"psr/log": "^1.1", | ||
"codeception/module-webdriver": "^4.0", | ||
"octolize/chrome-profile-for-shopify": "^1.0", | ||
"codeception/module-cli": "^2.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Octolize\\Shopify\\Codeception\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"classmap": ["tests/unit"] | ||
}, | ||
"scripts": { | ||
"phpcs": "phpcs", | ||
"phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never", | ||
"phpunit-unit-fast": "phpunit --configuration phpunit-unit.xml --no-coverage", | ||
"phpunit-integration": "phpunit --configuration phpunit-integration.xml --coverage-text --colors=never", | ||
"phpunit-integration-fast": "phpunit --configuration phpunit-integration.xml --no-coverage" | ||
}, | ||
"repositories": { | ||
"octolize": { | ||
"type": "composer", | ||
"url": "https://gitlab.wpdesk.dev/api/v4/group/wpdesk/-/packages/composer/" | ||
} | ||
} | ||
} |
phpunit-unit.xml
0 → 100644
src/Shopify.php
0 → 100644
tests/unit/.gitkeep
0 → 100644