-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from flagbit/feature/akeneo-6
Add Akeneo 6 support
- Loading branch information
Showing
56 changed files
with
1,430 additions
and
1,186 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 6.0.0 | ||
|
||
- Add support for Akeneo 6.0.0. |
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,14 +1,16 @@ | ||
# Contributing | ||
|
||
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms. | ||
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in | ||
this project you agree to abide by its terms. | ||
|
||
## Branch Compatibility | ||
|
||
| Branch | Akeneo Compatibility | | ||
| ------------- |:-------------:| | ||
| `master` | `>= 5.0.0` | | ||
| `4.0` | `>= 4.0.0` | | ||
| `3.0` | `>= 3.0.0` | | ||
| `2.X` | `>= 2.0.5 & < 3.0.0` | | ||
| `2.0` | `>= 2.0.0 & < 2.0.5` | | ||
| `1.X` | `>= 1.6.0 & < 2.0.0` | | ||
| Branch | Akeneo Compatibility | | ||
|----------------|:--------------------:| | ||
| master / `6.0` | `>= 6.0.0` | | ||
| `5.0` | `>= 5.0.0` | | ||
| `4.0` | `>= 4.0.0` | | ||
| `3.0` | `>= 3.0.0` | | ||
| `2.X` | `>= 2.0.5 & < 3.0.0` | | ||
| `2.0` | `>= 2.0.0 & < 2.0.5` | | ||
| `1.X` | `>= 1.6.0 & < 2.0.0` | |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<ruleset> | ||
<file>./src</file> | ||
<file>./tests</file> | ||
<exclude-pattern>./vendor/*</exclude-pattern> | ||
<rule ref="PSR1" /> | ||
</ruleset> |
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,44 +1,47 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
backupGlobals="false" | ||
colors="true" | ||
backupStaticAttributes="false" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false" | ||
bootstrap="./vendor/autoload.php"> | ||
|
||
<testsuites> | ||
<testsuite name="FlagbitTableAttributeBundle_Test"> | ||
<directory suffix="Test.php">./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<php> | ||
<env name="KERNEL_CLASS" value="Flagbit\Bundle\TableAttributeBundle\Test\Kernel\TestKernel"/> | ||
<env name="APP_ENV" value="test"/> | ||
<env name="APP_INDEX_HOSTS" value="elasticsearch:9200"/> | ||
<env name="APP_DATABASE_HOST" value="mysql"/> | ||
<env name="APP_DATABASE_PORT" value=""/> | ||
<env name="APP_DATABASE_NAME" value="akeneo_pim"/> | ||
<env name="APP_DATABASE_USER" value="akeneo_pim"/> | ||
<env name="APP_DATABASE_PASSWORD" value="akeneo_pim"/> | ||
<env name="APP_DEFAULT_LOCALE" value="en"/> | ||
</php> | ||
|
||
<filter> | ||
<whitelist> | ||
<directory>src</directory> | ||
<exclude> | ||
<directory>src/Resources</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
|
||
<logging> | ||
<log type="coverage-clover" target="build/clover.xml"/> | ||
<log type="coverage-html" target="build/coverage-html" lowUpperBound="30" highLowerBound="80"/> | ||
<log type="junit" target="build/junit.xml"/> | ||
</logging> | ||
bootstrap="./vendor/autoload.php" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> | ||
<coverage> | ||
<include> | ||
<directory>src</directory> | ||
</include> | ||
<exclude> | ||
<directory>src/Resources</directory> | ||
</exclude> | ||
<report> | ||
<clover outputFile="build/clover.xml"/> | ||
<html outputDirectory="build/coverage-html" lowUpperBound="30" highLowerBound="80"/> | ||
</report> | ||
</coverage> | ||
<testsuites> | ||
<testsuite name="FlagbitTableAttributeBundle_Test"> | ||
<directory suffix="Test.php">./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<php> | ||
<env name="KERNEL_CLASS" value="Flagbit\Bundle\TableAttributeBundle\Test\Kernel\TestKernel"/> | ||
<env name="APP_ENV" value="test"/> | ||
<env name="APP_INDEX_HOSTS" value="elasticsearch:9200"/> | ||
<env name="APP_DATABASE_HOST" value="mysql"/> | ||
<env name="APP_DATABASE_PORT" value=""/> | ||
<env name="APP_DATABASE_NAME" value="akeneo_pim"/> | ||
<env name="APP_DATABASE_USER" value="akeneo_pim"/> | ||
<env name="APP_DATABASE_PASSWORD" value="akeneo_pim"/> | ||
<env name="APP_DEFAULT_LOCALE" value="en"/> | ||
<env name="AKENEO_PIM_URL" value="localhost:8080"/> | ||
<env name="APP_DEBUG" value="0"/> | ||
</php> | ||
<logging> | ||
<junit outputFile="build/junit.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!-- Pre phpunit 9 Backup --> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false" | ||
bootstrap="./vendor/autoload.php"> | ||
|
||
<testsuites> | ||
<testsuite name="FlagbitTableAttributeBundle_Test"> | ||
<directory suffix="Test.php">./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<php> | ||
<env name="KERNEL_CLASS" value="Flagbit\Bundle\TableAttributeBundle\Test\Kernel\TestKernel"/> | ||
<env name="APP_ENV" value="test"/> | ||
<env name="APP_INDEX_HOSTS" value="elasticsearch:9200"/> | ||
<env name="APP_DATABASE_HOST" value="mysql"/> | ||
<env name="APP_DATABASE_PORT" value=""/> | ||
<env name="APP_DATABASE_NAME" value="akeneo_pim"/> | ||
<env name="APP_DATABASE_USER" value="akeneo_pim"/> | ||
<env name="APP_DATABASE_PASSWORD" value="akeneo_pim"/> | ||
<env name="APP_DEFAULT_LOCALE" value="en"/> | ||
</php> | ||
|
||
<filter> | ||
<whitelist> | ||
<directory>src</directory> | ||
<exclude> | ||
<directory>src/Resources</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
|
||
<logging> | ||
<log type="coverage-clover" target="build/clover.xml"/> | ||
<log type="coverage-html" target="build/coverage-html" lowUpperBound="30" highLowerBound="80"/> | ||
<log type="junit" target="build/junit.xml"/> | ||
</logging> | ||
</phpunit> |
Oops, something went wrong.