-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,646 changed files
with
232,498 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Browsers that we support | ||
|
||
last 1 version | ||
> 1% | ||
maintained node versions | ||
not dead |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
codecov: | ||
notify: | ||
require_ci_to_pass: yes | ||
|
||
coverage: | ||
precision: 2 | ||
round: nearest | ||
range: "50...100" | ||
|
||
status: | ||
project: yes | ||
patch: off | ||
changes: off | ||
|
||
parsers: | ||
gcov: | ||
branch_detection: | ||
conditional: yes | ||
loop: yes | ||
method: no | ||
macro: no | ||
|
||
comment: | ||
layout: "files" | ||
behavior: default | ||
require_changes: yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = LF | ||
tab_width = 4 | ||
indent_style = tab | ||
indent_size = 4 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.txt] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{md,json,yml}] | ||
trim_trailing_whitespace = false | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
npm-debug.log | ||
report | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "core/external/eo-framework"] | ||
path = core/external/eo-framework | ||
url = https://github.com/Eoxia/eo-framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
tools: | ||
php_code_sniffer: | ||
config: | ||
standard: WordPress | ||
sensiolabs_security_checker: true | ||
external_code_coverage: | ||
timeout: 2500 | ||
checks: | ||
php: | ||
avoid_closing_tag: false | ||
avoid_superglobals: false | ||
coding_standard: | ||
name: WordPress | ||
no_exit: false | ||
no_global_keyword: false | ||
one_class_per_file: false | ||
psr2_class_declaration: false | ||
psr2_control_structure_declaration: false | ||
psr2_switch_declaration: false | ||
variable_existence: false | ||
verify_access_scope_valid: false | ||
verify_argument_usable_as_reference: false | ||
verify_property_names: false | ||
filter: | ||
excluded_paths: | ||
- core/external/ | ||
- tests/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
sudo: false | ||
dist: trusty | ||
|
||
language: php | ||
|
||
notifications: | ||
email: | ||
on_success: never | ||
on_failure: change | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache | ||
|
||
matrix: | ||
include: | ||
- php: 5.6 | ||
env: WP_TRAVISCI=phpcs | ||
- php: 7.1 | ||
env: WP_TRAVISCI=phpcs RUN_CODE_COVERAGE=1 | ||
|
||
before_script: | ||
- export PATH="$HOME/.composer/vendor/bin:$PATH" | ||
- | | ||
if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then | ||
phpenv config-rm xdebug.ini | ||
else | ||
echo "xdebug.ini does not exist" | ||
fi | ||
- | | ||
if [[ ! -z "$WP_VERSION" ]] ; then | ||
bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION | ||
composer global require "phpunit/phpunit=4.8.*|5.7.*" | ||
fi | ||
- | | ||
if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then | ||
composer global require wp-coding-standards/wpcs | ||
phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs | ||
fi | ||
- | | ||
if [[ "$RUN_CODE_COVERAGE" == "1" ]] ; then | ||
bash ./tests/bin/travis.sh before | ||
fi | ||
script: | ||
- | | ||
if [[ ! -z "$WP_VERSION" ]] ; then | ||
phpunit | ||
WP_MULTISITE=1 phpunit | ||
fi | ||
- | | ||
if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then | ||
phpcs ./ | ||
fi | ||
after_script: | ||
- | | ||
if [[ "$RUN_CODE_COVERAGE" == "1" ]] ; then | ||
bash ./tests/bin/travis.sh after | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<p align="center"><a href="https://www.wpshop.fr"><img src="https://www.eoxia.com/wp-content/uploads/2018/11/logo-final-max.png" alt="WPshop"></a></p> | ||
|
||
<p align="center"> | ||
<a href="https://travis-ci.org/Eoxia/wpshop"><img src="https://travis-ci.org/Eoxia/wpshop.svg?branch=2.0.0" alt="Build Status"></a> | ||
<a href="https://scrutinizer-ci.com/g/Eoxia/wpshop/?branch=2.0.0"><img src="https://scrutinizer-ci.com/g/Eoxia/wpshop/badges/quality-score.png?b=2.0.0" /></a> | ||
</p> | ||
|
||
WpShop 2.X will turn your WordPress into a simple, fast and intuitive Ecommerce for your customers. | ||
WpShop 2.X will be connected to your PGI. | ||
Say hello, simplicity and goodbye to duplicate content. | ||
Synchronization with the Dolibarr PGI will be installed by default and completely free. | ||
|
||
WpShop 2.X transformera votre WordPress en un Ecommerce simple, rapide et intuitif pour vos clients. | ||
WpShop 2.X sera connecté à votre PGI. | ||
Dites Bonjour, à la simplicité et au revoir au contenu dupliqué. | ||
La synchronisation avec le ERP - CRM Dolibarr sera installée par défaut et totalement gratuite. | ||
|
||
## Documentation | ||
|
||
- Official website [WPShop](https://wordpress.org/plugins/wpshop2/) | ||
- Official website [Dolibarr](https://www.dolibarr.fr/) | ||
- [Documentation](https://www.wpshop.fr/documentations) | ||
|
||
## Reporting Security Issues | ||
|
||
- Report your bugs: [github](https://github.com/Eoxia/wpshop/issues) | ||
|
||
## Support | ||
|
||
- Free support is based on mutual help and the community in this case you can post on [github](https://github.com/Eoxia/wpshop/issues), we read all the issues carefully. We love working for peanuts, but only for our projects :) | ||
- Le support gratuit est basé sur l'entre-aide et la communauté dans ce cas vous pouvez poster sur [github](https://github.com/Eoxia/wpshop/issues), nous lisons toutes les issues avec attention. On adore travailler pour des cacahuètes mais que pour nos projets :) | ||
- Paid support is available with the purchase of support tickets on our site [shop.eoxia.com](https://shop.eoxia.com/boutique/assistance/) | ||
- Le support payant est disponible avec l'achat de tickets d'assistance sur notre site [shop.eoxia.com](https://shop.eoxia.com/boutique/assistance/) | ||
|
||
## Communication | ||
|
||
- The official website : [WPShop.fr](https://www.wpshop.fr/) | ||
- Monitoring the project : [github](https://github.com/Eoxia/wpshop/projects) | ||
|
||
## Licence | ||
Licence GNU [GPLv3 ou supérieure](https://www.gnu.org/licenses/gpl-3.0.html) | ||
|
||
## Contributors | ||
|
||
- L'agence [Eoxia](https://www.eoxia.com/) WordPress Expert |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<?php return array('dependencies' => array('wp-blocks', 'wp-element', 'wp-i18n', 'wp-polyfill'), 'version' => '97ec32035279376ad270678fbdacee1f'); |
Oops, something went wrong.