-
- Downloads
feature(init): init
parent
08c147aa
No related branches found
No related tags found
Showing
- .editorconfig 20 additions, 0 deletions.editorconfig
- .gitattributes 12 additions, 0 deletions.gitattributes
- .gitignore 12 additions, 0 deletions.gitignore
- .gitlab-ci.yml 8 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
- apigen.neon 27 additions, 0 deletionsapigen.neon
- composer.json 47 additions, 0 deletionscomposer.json
- phpcs.xml.dist 18 additions, 0 deletionsphpcs.xml.dist
- phpunit-integration.xml 34 additions, 0 deletionsphpunit-integration.xml
- phpunit-unit.xml 21 additions, 0 deletionsphpunit-unit.xml
- src/Shopify.php 8 additions, 0 deletionssrc/Shopify.php
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
CHANGELOG.md
0 → 100644
LICENSE.md
0 → 100644
apigen.neon
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" | |||
} | |||
], | |||
"require": { | |||
"php": ">=7.0", | |||
"psr/log": "^1.1", | |||
"codeception/codeception": "^4.2" | |||
}, | |||
"require-dev": { | |||
"octolize/chrome-profile-for-shopify": "^1.0", | |||
"phpunit/phpunit": "<7", | |||
"wp-coding-standards/wpcs": "^0.14.1", | |||
"squizlabs/php_codesniffer": "^3.0.2", | |||
"mockery/mockery": "*", | |||
"10up/wp_mock": "*", | |||
"phpcompatibility/php-compatibility": "^9.1" | |||
}, | |||
"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/" | |||
} | |||
} | |||
} |
phpcs.xml.dist
0 → 100644
phpunit-integration.xml
0 → 100644
phpunit-unit.xml
0 → 100644
src/Shopify.php
0 → 100644
Please register or sign in to comment