Skip to content

Commit 365ed49

Browse files
committed
First initialize and Criteria
0 parents  commit 365ed49

36 files changed

+6944
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor/
2+
/var/*

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 107 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/shopware-sdk.iml

Lines changed: 97 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/sonarlint/issuestore/index.pb

Whitespace-only changes.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "vin-sw/shopware-php-sdk",
3+
"description": "A PHP SDK for Shopware 6 Platform",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "vin",
9+
"email": "levienthuong@gmail.com"
10+
}
11+
],
12+
"minimum-stability": "stable",
13+
"require": {
14+
"php": "^7.4",
15+
"ext-json": "*",
16+
"guzzlehttp/guzzle": "^7.0"
17+
},
18+
"require-dev": {
19+
"phpunit/phpunit": "*",
20+
"squizlabs/php_codesniffer": "3.*",
21+
"symplify/easy-coding-standard": "9.3.20",
22+
"symplify/config-transformer": "^9.3",
23+
"phpstan/phpstan": "^0.12.89"
24+
},
25+
"autoload": {
26+
"psr-4": {
27+
"Vin\\ShopwareSdk\\": "src"
28+
}
29+
},
30+
"scripts": {
31+
"ecs": "vendor/bin/ecs check src",
32+
"check-style": "phpcs src",
33+
"analyse": "vendor/bin/phpstan analyse src",
34+
"fix-style": "phpcbf src",
35+
"lint": "vendor/bin/ecs check src && phpcs src",
36+
"lint-fix": "vendor/bin/ecs check src --fix && phpcbf src"
37+
}
38+
}

0 commit comments

Comments
 (0)