-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/pluf/shop/issues/4
- Loading branch information
1 parent
20d4303
commit 1f7dc73
Showing
54 changed files
with
1,168 additions
and
981 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
# Eclipse | ||
#.buildpath | ||
/.settings/ | ||
.phpunit.result.cache | ||
.buildpath | ||
|
||
|
||
# Examples | ||
|
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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"name" : "pluf/shop", | ||
"version" : "6.0.5", | ||
"description" : "Simple online shop and service", | ||
"type" : "library", | ||
"license" : "MIT", | ||
|
@@ -21,19 +22,14 @@ | |
], | ||
"minimum-stability" : "stable", | ||
"require" : { | ||
"pluf/core" : "5.13.x", | ||
"pluf/tenant" : "5.13.x", | ||
"pluf/cache" : "5.13.x", | ||
"pluf/cms" : "5.13.x", | ||
"pluf/bank" : "5.13.x", | ||
"pluf/monitor" : "5.13.x" | ||
"pluf/core" : "6.x", | ||
"pluf/tenant" : "6.x", | ||
"pluf/bank" : "6.x", | ||
"pluf/monitor" : "6.x" | ||
}, | ||
"require-dev" : { | ||
"pluf/test" : "5.13.x" | ||
"pluf/test" : "6.x" | ||
}, | ||
"include-path" : [ | ||
"src/" | ||
], | ||
"homepage" : "https://gitlab.com/microshop/shop", | ||
"support" : { | ||
"email" : "[email protected]", | ||
|
@@ -46,5 +42,86 @@ | |
"shop", | ||
"sell", | ||
"service" | ||
], | ||
"include-path" : [ | ||
"src/" | ||
], | ||
"autoload" : { | ||
"psr-4" : { | ||
"Pluf\\Shop\\" : "src6" | ||
}, | ||
"psr-0" : { | ||
"" : "src" | ||
} | ||
}, | ||
"autoload-dev" : { | ||
"psr-4" : { | ||
"Pluf\\Test\\" : "tests" | ||
} | ||
}, | ||
"repositories" : [{ | ||
"type" : "path", | ||
"url" : "../core", | ||
"name" : "pluf/core", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
}, { | ||
"type" : "path", | ||
"url" : "../test", | ||
"name" : "pluf/test", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
}, { | ||
"type" : "path", | ||
"url" : "../http2", | ||
"name" : "pluf/http2", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
}, { | ||
"type" : "path", | ||
"url" : "../user", | ||
"name" : "pluf/user", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
}, { | ||
"type" : "path", | ||
"url" : "../workflow", | ||
"name" : "pluf/workflow", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
}, { | ||
"type" : "path", | ||
"url" : "../discount", | ||
"name" : "pluf/discount", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
}, { | ||
"type" : "path", | ||
"url" : "../bank", | ||
"name" : "pluf/bank", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
}, { | ||
"type" : "path", | ||
"url" : "../monitor", | ||
"name" : "pluf/monitor", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
}, { | ||
"type" : "path", | ||
"url" : "../tenant", | ||
"name" : "pluf/tenant", | ||
"options" : { | ||
"symlink" : true | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,33 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit colors="true"> | ||
<phpunit | ||
bootstrap="./vendor/autoload.php" | ||
stopOnWarning="false" | ||
verbose="false" | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
colors="true"> | ||
<testsuites> | ||
<testsuite name="Basic"> | ||
<directory>tests/Shop/</directory> | ||
</testsuite> | ||
<testsuite name="Product"> | ||
<directory>tests/Product/</directory> | ||
</testsuite> | ||
<testsuite name="Service"> | ||
<directory>tests/Service/</directory> | ||
</testsuite> | ||
<testsuite name="Category"> | ||
<directory>tests/Categories/</directory> | ||
</testsuite> | ||
<testsuite name="Delivery"> | ||
<directory>tests/Delivery/</directory> | ||
</testsuite> | ||
<testsuite name="Order"> | ||
<directory>tests/Order/</directory> | ||
<directory>tests/OrderItem/</directory> | ||
</testsuite> | ||
<testsuite name="Shop"> | ||
<directory>./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<filter> | ||
<whitelist addUncoveredFilesFromWhitelist="true"> | ||
<directory suffix=".php">src</directory> | ||
</whitelist> | ||
</filter> | ||
<!-- Code coverage --> | ||
<filter> | ||
<whitelist addUncoveredFilesFromWhitelist="true"> | ||
<directory suffix=".php">./src</directory> | ||
<directory suffix=".php">./src6</directory> | ||
</whitelist> | ||
</filter> | ||
<logging> | ||
<log type="coverage-clover" target="build/logs/clover.xml"/> | ||
<log type="coverage-html" target="build/tmp/report" lowUpperBound="35" highLowerBound="70"/> | ||
<log type="coverage-clover" target="build/tmp/coverage.xml"/> | ||
<log type="junit" target="build/tmp/logfile.xml"/> | ||
</logging> | ||
</phpunit> |
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
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
Oops, something went wrong.