Skip to content

Commit

Permalink
Merge branch '7.5' into 1.3
Browse files Browse the repository at this point in the history
# Conflicts:
#	composer.json
  • Loading branch information
Steveb-p committed Jul 21, 2021
2 parents 4f1d28e + abd3b8a commit 3922c71
Show file tree
Hide file tree
Showing 20 changed files with 25 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
return EzSystems\EzPlatformCodeStyle\PhpCsFixer\EzPlatformInternalConfigFactory::build()
->setFinder(
PhpCsFixer\Finder::create()
->in([__DIR__ . '/eZ'])
->in([
__DIR__ . '/eZ',
__DIR__ . '/src',
__DIR__ . '/tests',
])
->exclude(
[
'Bundle/EzPublishCoreBundle/Tests/DependencyInjection/Fixtures',
Expand Down
22 changes: 20 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,30 @@
"autoload": {
"psr-4": {
"EzSystems\\PlatformInstallerBundle\\": "eZ/Bundle/PlatformInstallerBundle/src",
"eZ\\": "eZ"
"eZ\\": "eZ",
"Ibexa\\Bundle\\Core\\": "src/bundle/Core",
"Ibexa\\Bundle\\Debug\\": "src/bundle/Debug",
"Ibexa\\Bundle\\IO\\": "src/bundle/IO",
"Ibexa\\Bundle\\Installer\\": "src/bundle/Installer",
"Ibexa\\Bundle\\LegacySearchEngine\\": "src/bundle/LegacySearchEngine",
"Ibexa\\Contracts\\Core\\": "src/contracts",
"Ibexa\\Core\\": "src/lib"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\PlatformInstallerBundleTests\\": "eZ/Bundle/PlatformInstallerBundle/tests"
"EzSystems\\PlatformInstallerBundleTests\\": "eZ/Bundle/PlatformInstallerBundle/tests",
"Ibexa\\Tests\\Bundle\\Core\\": "tests/bundle/Core",
"Ibexa\\Tests\\Bundle\\Debug\\": "tests/bundle/Debug",
"Ibexa\\Tests\\Bundle\\IO\\": "tests/bundle/IO",
"Ibexa\\Tests\\Bundle\\Installer\\": "tests/bundle/Installer",
"Ibexa\\Tests\\Bundle\\LegacySearchEngine\\": "tests/bundle/LegacySearchEngine",
"Ibexa\\Tests\\Integration\\Core\\": "tests/integration/Core",
"Ibexa\\Tests\\Integration\\Debug\\": "tests/integration/Debug",
"Ibexa\\Tests\\Integration\\IO\\": "tests/integration/IO",
"Ibexa\\Tests\\Integration\\Installer\\": "tests/integration/Installer",
"Ibexa\\Tests\\Integration\\LegacySearchEngine\\": "tests/integration/LegacySearchEngine",
"Ibexa\\Tests\\Core\\": "tests/lib"
}
},
"config": {
Expand Down
Empty file added src/bundle/Core/.gitkeep
Empty file.
Empty file added src/bundle/Debug/.gitkeep
Empty file.
Empty file added src/bundle/IO/.gitkeep
Empty file.
Empty file added src/bundle/Installer/.gitkeep
Empty file.
Empty file.
Empty file added src/contracts/.gitkeep
Empty file.
Empty file added src/lib/.gitkeep
Empty file.
Empty file added tests/bundle/Core/.gitkeep
Empty file.
Empty file added tests/bundle/Debug/.gitkeep
Empty file.
Empty file added tests/bundle/IO/.gitkeep
Empty file.
Empty file added tests/bundle/Installer/.gitkeep
Empty file.
Empty file.
Empty file added tests/integration/Core/.gitkeep
Empty file.
Empty file.
Empty file added tests/integration/IO/.gitkeep
Empty file.
Empty file.
Empty file.
Empty file added tests/lib/.gitkeep
Empty file.

0 comments on commit 3922c71

Please sign in to comment.