-
- Downloads
init
parent
4f5d0c1c
No related branches found
No related tags found
Pipeline #149745 passed
Stage: prepare-vendor
Stage: prepare-node
Stage: tools
Stage: tests
Stage: deploy
Showing
- .editorconfig 22 additions, 0 deletions.editorconfig
- .gitattributes 12 additions, 0 deletions.gitattributes
- .gitignore 4 additions, 0 deletions.gitignore
- .gitlab-ci.yml 8 additions, 0 deletions.gitlab-ci.yml
- CHANGELOG.md 3 additions, 0 deletionsCHANGELOG.md
- apigen.neon 27 additions, 0 deletionsapigen.neon
- composer.json 68 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/Abstracts/EmailAbstract.php 97 additions, 0 deletionssrc/Abstracts/EmailAbstract.php
- src/Abstracts/EmailInterface.php 77 additions, 0 deletionssrc/Abstracts/EmailInterface.php
- src/AdminEmail.php 20 additions, 0 deletionssrc/AdminEmail.php
- src/CustomerEmail.php 20 additions, 0 deletionssrc/CustomerEmail.php
- tests/integration/bootstrap.php 28 additions, 0 deletionstests/integration/bootstrap.php
- tests/unit/bootstrap.php 9 additions, 0 deletionstests/unit/bootstrap.php
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
CHANGELOG.md
0 → 100644
apigen.neon
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "wpdesk/wp-coupons-core", | ||
"description": "Coupons library", | ||
"license": "MIT", | ||
"keywords": [ | ||
"wordpress", | ||
"woocommerce", | ||
"woocommerce-coupons", | ||
"pdf", | ||
"pdf builder" | ||
], | ||
"homepage": "https://gitlab.com/wpdesk/wp-canva-editor", | ||
"minimum-stability": "stable", | ||
"authors": [ | ||
{ | ||
"name": "piotr.potrebka", | ||
"email": "piotr.potrebka@wpdesk.net" | ||
} | ||
], | ||
"config": { | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.3" | ||
}, | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"cweagans/composer-patches": true, | ||
"wpdesk/wp-wpdesk-composer": true | ||
} | ||
}, | ||
"require": { | ||
"php": ">=7.3", | ||
"psr/log": "^1.1.0", | ||
"wpdesk/wp-persistence": "^3.0", | ||
"wpdesk/wp-view": "^2.0", | ||
"wpdesk/wp-notice": "^3.1.1", | ||
"wpdesk/wp-builder": "^2.0", | ||
"pelago/emogrifier": "7.0", | ||
"ext-json": "*" | ||
}, | ||
"require-dev": { | ||
"10up/wp_mock": "*", | ||
"mockery/mockery": "*", | ||
"phpunit/phpunit": "<7", | ||
"wp-coding-standards/wpcs": "^2.3.0", | ||
"squizlabs/php_codesniffer": "^3.0.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"WPDesk\\Library\\WPCoupons\\": "src/Coupons" | ||
} | ||
}, | ||
"autoload-dev": {}, | ||
"extra": { | ||
"text-domain": "wp-coupons-core", | ||
"translations-folder": "lang", | ||
"po-files": { | ||
"pl_PL": "pl_PL.po" | ||
} | ||
}, | ||
"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" | ||
} | ||
} |
phpcs.xml.dist
0 → 100644
phpunit-integration.xml
0 → 100644
phpunit-unit.xml
0 → 100644
src/Abstracts/EmailAbstract.php
0 → 100644
src/Abstracts/EmailInterface.php
0 → 100644
src/AdminEmail.php
0 → 100644
src/CustomerEmail.php
0 → 100644
tests/integration/bootstrap.php
0 → 100644
tests/unit/bootstrap.php
0 → 100644
Please register or sign in to comment