Skip to content

Commit 598ace8

Browse files
committed
Initial commit
0 parents  commit 598ace8

20 files changed

+2600
-0
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.github export-ignore
2+
/tests export-ignore
3+
/composer.lock export-ignore
4+
/phpstan.neon.dist export-ignore

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor

README.md

Whitespace-only changes.

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "shopware/app-sdk",
3+
"type": "library",
4+
"description": "Shopware App SDK for PHP",
5+
"keywords": [
6+
"shopware",
7+
"app-system"
8+
],
9+
"homepage": "https://www.shopware.com",
10+
"license": "MIT",
11+
"support": {
12+
"issues": "https://issues.shopware.com",
13+
"forum": "https://forum.shopware.com",
14+
"wiki": "https://developer.shopware.com",
15+
"docs": "https://developer.shopware.com",
16+
"chat": "https://slack.shopware.com"
17+
},
18+
"require": {
19+
"php": "~8.1.0 || ~8.2.0",
20+
"psr-discovery/discovery": ">=1.0.2"
21+
},
22+
"require-dev": {
23+
"phpunit/phpunit": "^10.1",
24+
"phpstan/phpstan": "^1.10.14",
25+
"nyholm/psr7": "^1.7.0"
26+
},
27+
"autoload": {
28+
"Shopware\\AppSDK\\": "src/"
29+
},
30+
"config": {
31+
"sort-packages": true
32+
}
33+
}

0 commit comments

Comments
 (0)