-
- Downloads
Init
parents
No related branches found
No related tags found
Showing
- .babelrc 3 additions, 0 deletions.babelrc
- .editorconfig 22 additions, 0 deletions.editorconfig
- .gitattributes 12 additions, 0 deletions.gitattributes
- .gitignore 3 additions, 0 deletions.gitignore
- .gitlab-ci.yml 8 additions, 0 deletions.gitlab-ci.yml
- CHANGELOG.md 3 additions, 0 deletionsCHANGELOG.md
- README.md 10 additions, 0 deletionsREADME.md
- apigen.neon 27 additions, 0 deletionsapigen.neon
- composer.json 51 additions, 0 deletionscomposer.json
- package.json 40 additions, 0 deletionspackage.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
- webpack.config.js 27 additions, 0 deletionswebpack.config.js
.babelrc
0 → 100644
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
CHANGELOG.md
0 → 100644
README.md
0 → 100644
apigen.neon
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "wpdesk/wp-settings-sender-address", | |||
"description": "Library for displaying sender address in WooCommerce.", | |||
"license": "MIT", | |||
"keywords": ["woocommerce", "sender"], | |||
"homepage": "https://gitlab.com/wpdesk/wp-settings-sender-address", | |||
"minimum-stability": "stable", | |||
"authors": [ | |||
{ | |||
"name": "grola", | |||
"email": "grola@wpdesk.net" | |||
} | |||
], | |||
"config": { | |||
"sort-packages": true, | |||
"platform": { | |||
"php": "5.6" | |||
} | |||
}, | |||
"require": { | |||
"php": ">=5.6", | |||
"wpdesk/wpdesk-packer": "^2" | |||
}, | |||
"require-dev": { | |||
"10up/wp_mock": "*", | |||
"mockery/mockery": "*", | |||
"phpunit/phpunit": "<7", | |||
"wp-coding-standards/wpcs": "^0.14.1", | |||
"squizlabs/php_codesniffer": "^3.0.2", | |||
"wimg/php-compatibility": "^8" | |||
}, | |||
"autoload": { | |||
"psr-4": {"WpDesk\\WooCommerce\\ShippingMethod\\": "src/"} | |||
}, | |||
"autoload-dev": { | |||
}, | |||
"extra": { | |||
"text-domain": "wp-settings-sender-address", | |||
"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" | |||
} | |||
} |
package.json
0 → 100644
phpcs.xml.dist
0 → 100644
phpunit-integration.xml
0 → 100644
phpunit-unit.xml
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment