Primo Committ

This commit is contained in:
paoloar77
2024-05-07 12:17:25 +02:00
commit e73d0e5113
7204 changed files with 884387 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{
"name": "automattic/woocommerce",
"description": "A PHP wrapper for the WooCommerce REST API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Claudio Sanches",
"email": "claudio.sanches@automattic.com"
}
],
"minimum-stability": "dev",
"keywords": [
"API",
"WooCommerce"
],
"require": {
"php": ">= 7.1.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "3.*",
"overtrue/phplint": "7.4.x-dev"
},
"autoload": {
"psr-4": {
"Automattic\\WooCommerce\\": ["src/WooCommerce"]
}
},
"autoload-dev": {
"psr-4": {
"Automattic\\WooCommerce\\LegacyTests\\": "tests/legacy-php/WooCommerce/Tests",
"Automattic\\WooCommerce\\Tests\\": "tests/php/WooCommerce/Tests"
}
}
}