Skip to content

Commit 7531969

Browse files
committed
Merge remote-tracking branch 'origin/4.0' into temp_3.0_to_4.0
2 parents b6fffd4 + 039aa05 commit 7531969

40 files changed

+321
-536
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
fail-fast: false
4343
matrix:
4444
php:
45-
- '7.3'
4645
- '7.4'
4746
- '8.0'
4847
- '8.1'

.php-cs-fixer.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@
1717
->buildConfig()
1818
->setFinder(
1919
PhpCsFixer\Finder::create()
20-
->in(__DIR__)
21-
->exclude([
22-
'vendor',
23-
'doc',
24-
])
20+
->in(
21+
array_filter([
22+
__DIR__ . '/src',
23+
__DIR__ . '/tests',
24+
], 'is_dir')
25+
)
2526
->files()->name('*.php')
2627
);

bundle/Resources/config/default_settings.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

bundle/Resources/config/services.yaml

Lines changed: 0 additions & 54 deletions
This file was deleted.

composer.json

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
{
2-
"name": "ezsystems/ezplatform-design-engine",
3-
"description": "Design fallback mechanism for eZ Platform",
2+
"name": "ibexa/design-engine",
3+
"description": "Design fallback mechanism for Ibexa",
44
"license": "GPL-2.0-only",
5-
"type": "ezplatform-bundle",
5+
"type": "ibexa-bundle",
6+
"replace": {
7+
"ezsystems/ezplatform-design-engine": "*"
8+
},
69
"authors": [
710
{
811
"name": "Jerome Vieilledent",
912
"email": "jerome@vieilledent.fr"
1013
},
1114
{
12-
"name": "eZ Systems dev team",
13-
"email": "dev-team@ez.no"
15+
"name": "Ibexa Engineering & Community",
16+
"homepage": "https://www.ibexa.co/products"
1417
}
1518
],
1619
"require": {
17-
"ezsystems/ezplatform-kernel": "^1.0@dev",
20+
"php": "^7.4 || ^8.0",
21+
"ibexa/core": "~4.0.0@dev",
1822
"twig/twig": "^3.0",
1923
"symfony/dependency-injection": "^5.0",
2024
"symfony/http-kernel": "^5.0",
@@ -26,32 +30,37 @@
2630
"symfony/templating": "^5.0"
2731
},
2832
"require-dev": {
29-
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
30-
"ezsystems/ezplatform-code-style": "^1.0",
33+
"ibexa/code-style": "^1.0",
34+
"ibexa/doctrine-schema": "~4.0.0@dev",
3135
"phpunit/phpunit": "^8.1",
32-
"friendsofphp/php-cs-fixer": "^2.16.0",
36+
"friendsofphp/php-cs-fixer": "^3.0",
3337
"mikey179/vfsstream": "^1.6"
3438
},
3539
"autoload": {
3640
"psr-4": {
37-
"EzSystems\\EzPlatformDesignEngine\\": "lib",
38-
"EzSystems\\EzPlatformDesignEngineBundle\\": "bundle"
41+
"Ibexa\\DesignEngine\\": "src/lib/",
42+
"Ibexa\\Bundle\\DesignEngine\\": "src/bundle/",
43+
"Ibexa\\Contracts\\DesignEngine\\": "src/contracts/",
44+
"EzSystems\\EzPlatformDesignEngine\\": "src/lib/",
45+
"EzSystems\\EzPlatformDesignEngineBundle\\": "src/bundle/"
3946
}
4047
},
4148
"autoload-dev": {
4249
"psr-4": {
50+
"Ibexa\\Tests\\Bundle\\DesignEngine\\": "tests/bundle/",
51+
"Ibexa\\Tests\\DesignEngine\\": "tests/lib/",
4352
"EzSystems\\EzPlatformDesignEngine\\Tests\\": "tests/lib",
4453
"EzSystems\\EzPlatformDesignEngineBundle\\Tests\\": "tests/bundle"
4554
}
4655
},
4756
"scripts": {
48-
"fix-cs": "php-cs-fixer fix -v --show-progress=dots",
57+
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
4958
"check-cs": "@fix-cs --dry-run",
5059
"test": "phpunit"
5160
},
5261
"extra": {
5362
"branch-alias": {
54-
"dev-master": "3.0.x-dev"
63+
"dev-main": "4.0.x-dev"
5564
}
5665
},
5766
"conflict": {

doc/README.md

Lines changed: 0 additions & 75 deletions
This file was deleted.

doc/assets.md

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)