mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
remove unused files
This commit is contained in:
parent
7fbd288fa4
commit
d865b4f8fc
18 changed files with 0 additions and 178 deletions
|
@ -1,3 +0,0 @@
|
||||||
#PPCP Admin Notices
|
|
||||||
|
|
||||||
Renders current notices in the admin.
|
|
3
modules/ppcp-api-client/.gitignore
vendored
3
modules/ppcp-api-client/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
||||||
vendor/
|
|
||||||
build/
|
|
||||||
composer.lock
|
|
|
@ -1,3 +0,0 @@
|
||||||
# PPCP API Client
|
|
||||||
|
|
||||||
This module takes care of the api client for the woocommerce-paypal-commerce-gateway.
|
|
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0"?>
|
|
||||||
<ruleset name="WooCommerce Coding Standards">
|
|
||||||
<description>My projects ruleset.</description>
|
|
||||||
|
|
||||||
<!-- Configs -->
|
|
||||||
<config name="minimum_supported_wp_version" value="4.7" />
|
|
||||||
<config name="testVersion" value="7.2-" />
|
|
||||||
|
|
||||||
<!-- Rules -->
|
|
||||||
<rule ref="WooCommerce-Core" />
|
|
||||||
|
|
||||||
<rule ref="WordPress.WP.I18n">
|
|
||||||
<properties>
|
|
||||||
<property name="text_domain" type="array" value="woocommerce-paypal-commerce-gateway" />
|
|
||||||
</properties>
|
|
||||||
</rule>
|
|
||||||
|
|
||||||
<rule ref="PHPCompatibility">
|
|
||||||
<exclude-pattern>tests/</exclude-pattern>
|
|
||||||
</rule>
|
|
||||||
</ruleset>
|
|
1
modules/ppcp-button/.gitignore
vendored
1
modules/ppcp-button/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
/node_modules/
|
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"name": "inpsyde/ppcp-button",
|
|
||||||
"type": "inpsyde-module",
|
|
||||||
"require": {
|
|
||||||
"dhii/module-interface": "0.2.x-dev",
|
|
||||||
"inpsyde/ppcp-api-client": "dev-master"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"plugins": [
|
|
||||||
"babel-plugin-transform-object-rest-spread"
|
|
||||||
]
|
|
||||||
}
|
|
1
modules/ppcp-onboarding/.gitignore
vendored
1
modules/ppcp-onboarding/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
/node_modules/
|
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"name": "inpsyde/ppcp-onboarding",
|
|
||||||
"type": "inpsyde-module",
|
|
||||||
"require": {
|
|
||||||
"dhii/module-interface": "0.2.x-dev"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^9.1",
|
|
||||||
"brain/monkey": "^2.4",
|
|
||||||
"inpsyde/php-coding-standards": "^1"
|
|
||||||
},
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"prefer-stable": true
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<phpunit
|
|
||||||
bootstrap="vendor/autoload.php"
|
|
||||||
backupGlobals="false"
|
|
||||||
colors="true"
|
|
||||||
convertErrorsToExceptions="true"
|
|
||||||
convertNoticesToExceptions="true"
|
|
||||||
convertWarningsToExceptions="true"
|
|
||||||
>
|
|
||||||
<filter>
|
|
||||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
||||||
<directory suffix=".php">./src</directory>
|
|
||||||
</whitelist>
|
|
||||||
</filter>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="unit">
|
|
||||||
<directory suffix="Test.php">./tests/PHPUnit</directory>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
</phpunit>
|
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"name": "inpsyde/ppcp-subscription",
|
|
||||||
"type": "inpsyde-module",
|
|
||||||
"require": {
|
|
||||||
"dhii/module-interface": "0.2.x-dev",
|
|
||||||
"inpsyde/ppcp-api-client": "dev-master"
|
|
||||||
}
|
|
||||||
}
|
|
2
modules/ppcp-wc-gateway/.gitignore
vendored
2
modules/ppcp-wc-gateway/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
vendor
|
|
||||||
build
|
|
|
@ -1,20 +0,0 @@
|
||||||
{
|
|
||||||
"name": "inpsyde/ppcp-wc-gateway",
|
|
||||||
"type": "inpsyde-module",
|
|
||||||
"require": {
|
|
||||||
"dhii/module-interface": "0.2.x-dev",
|
|
||||||
"inpsyde/ppcp-session": "dev-master",
|
|
||||||
"inpsyde/ppcp-admin-notices": "dev-master",
|
|
||||||
"inpsyde/ppcp-api-client": "dev-master"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"unit": "./vendor/bin/phpunit --coverage-html build/coverage-report"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^9.1",
|
|
||||||
"brain/monkey": "^2.4",
|
|
||||||
"inpsyde/php-coding-standards": "^1"
|
|
||||||
},
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"prefer-stable": true
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<phpunit
|
|
||||||
bootstrap="vendor/autoload.php"
|
|
||||||
backupGlobals="false"
|
|
||||||
colors="true"
|
|
||||||
convertErrorsToExceptions="true"
|
|
||||||
convertNoticesToExceptions="true"
|
|
||||||
convertWarningsToExceptions="true"
|
|
||||||
>
|
|
||||||
<filter>
|
|
||||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
||||||
<directory suffix=".php">./src</directory>
|
|
||||||
</whitelist>
|
|
||||||
</filter>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="unit">
|
|
||||||
<directory suffix="Test.php">./tests/PHPUnit</directory>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
</phpunit>
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"name": "inpsyde/ppcp-webhooks",
|
|
||||||
"type": "inpsyde-module",
|
|
||||||
"require": {
|
|
||||||
"dhii/module-interface": "0.2.x-dev"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"unit": "./vendor/bin/phpunit --coverage-html build/coverage-report"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^9.1",
|
|
||||||
"brain/monkey": "^2.4",
|
|
||||||
"inpsyde/php-coding-standards": "^1"
|
|
||||||
},
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"prefer-stable": true
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<phpunit
|
|
||||||
bootstrap="vendor/autoload.php"
|
|
||||||
backupGlobals="false"
|
|
||||||
colors="true"
|
|
||||||
convertErrorsToExceptions="true"
|
|
||||||
convertNoticesToExceptions="true"
|
|
||||||
convertWarningsToExceptions="true"
|
|
||||||
>
|
|
||||||
<filter>
|
|
||||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
||||||
<directory suffix=".php">./src</directory>
|
|
||||||
</whitelist>
|
|
||||||
</filter>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="unit">
|
|
||||||
<directory suffix="Test.php">./tests/PHPUnit</directory>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
</phpunit>
|
|
4
modules/woocommerce-logging/.gitignore
vendored
4
modules/woocommerce-logging/.gitignore
vendored
|
@ -1,4 +0,0 @@
|
||||||
/vendor/
|
|
||||||
composer.lock
|
|
||||||
phpunit.xml
|
|
||||||
.phpunit.result.cache
|
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"name": "inpsyde/woocommerce-logging",
|
|
||||||
"type": "inpsyde-module",
|
|
||||||
"require": {
|
|
||||||
"dhii/module-interface": "0.2.x-dev",
|
|
||||||
"psr/log": "^1.1"
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue