Skip to content

Commit 3c8647a

Browse files
committed
Merge tag '2.3.0'
Feature release 2.3.0 New features: - add translations to XLIFF - add schema management - add feature to chose own widget template - add make files searchable in be - add support for file usage extension Fixes: - any fixes for PCHCQ - fix template - fix sorting - fix image size
2 parents 5cfc094 + e424473 commit 3c8647a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1515
-572
lines changed

.check-author.yml

-10
This file was deleted.

.composer-require-checker.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"symbol-whitelist": [
3+
"array", "bool", "false", "int", "null", "self", "static", "parent", "string", "true", "void", "mixed",
4+
"Contao\\ManagerBundle\\ContaoManagerBundle",
5+
"Contao\\ManagerPlugin\\Bundle\\BundlePluginInterface",
6+
"Contao\\ManagerPlugin\\Bundle\\Config\\BundleConfig",
7+
"Contao\\ManagerPlugin\\Bundle\\Parser\\ParserInterface",
8+
"Contao\\ManagerPlugin\\Routing\\RoutingPluginInterface",
9+
"InspiredMinds\\ContaoFileUsage\\ContaoFileUsageBundle",
10+
"InspiredMinds\\ContaoFileUsage\\Provider\\FileUsageProviderInterface",
11+
"InspiredMinds\\ContaoFileUsage\\Result\\FileTreeMultipleResult",
12+
"InspiredMinds\\ContaoFileUsage\\Result\\FileTreeSingleResult",
13+
"InspiredMinds\\ContaoFileUsage\\Result\\ResultInterface",
14+
"InspiredMinds\\ContaoFileUsage\\Result\\ResultsCollection"
15+
]
16+
}

.github/workflows/diagnostics.yml

+47-24
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,75 @@
11
name: MetaModels attribute_translatedfile
22

33
on:
4-
push:
5-
branches-ignore:
6-
- '**-translation'
74
pull_request:
5+
push:
6+
branches:
87

98
jobs:
109
build:
1110
runs-on: ubuntu-latest
11+
name: 'PHP: ${{ matrix.php }} Contao: ${{ matrix.contao }}'
1212
strategy:
13+
fail-fast: false
1314
matrix:
14-
php: [7.4]
15-
contao: [~4.9.0]
15+
php: [ '8.1', '8.2', '8.3' ]
16+
contao: [ '~4.13.0' ]
17+
phpcq_install: [ 'update' ]
18+
output: [ '-o github-action -o default' ]
1619

1720
steps:
18-
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Pull source
19-
uses: actions/checkout@v2
20-
with:
21-
fetch-depth: 0
21+
- name: Pull source
22+
uses: actions/checkout@v4
2223

23-
# see https://github.com/shivammathur/setup-php
24-
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Setup PHP.
24+
- name: Setup PHP with PECL extension
2525
uses: shivammathur/setup-php@v2
2626
with:
2727
php-version: ${{ matrix.php }}
28-
coverage: none
2928

30-
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Cache composer cache directory
31-
uses: actions/cache@v1
29+
# setup caches
30+
- name: Cache composer cache directory
31+
uses: actions/cache@v4
3232
env:
3333
cache-name: composer-cache-dir
3434
with:
3535
path: ~/.cache/composer
36-
key: ${{ runner.os }}-build-${{ env.cache-name }}
36+
key: ${{ runner.os }}-${{ matrix.php }}-build-${{ env.cache-name }}
3737

38-
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Cache vendor directory
39-
uses: actions/cache@v1
38+
- name: Cache vendor directory
39+
uses: actions/cache@v4
4040
env:
41-
cache-name: composer-vendor
41+
cache-name: vendor
4242
with:
4343
path: vendor
44-
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/composer.lock') }}
44+
key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.contao }}-build-${{ env.cache-name }}-${{ hashFiles('**/composer.lock') }}
4545
restore-keys: |
46-
${{ runner.os }}-build-${{ env.cache-name }}-
46+
${{ runner.os }}-${{ matrix.php }}-${{ matrix.contao }}-build-${{ env.cache-name }}-
4747
48-
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Install composer dependencies
49-
run: composer update --prefer-dist --no-interaction --no-suggest
48+
- name: Cache phpcq directory
49+
uses: actions/cache@v4
50+
env:
51+
cache-name: phpcq
52+
with:
53+
path: .phpcq
54+
key: ${{ runner.os }}-${{ matrix.php }}-build-${{ env.cache-name }}-${{ hashFiles('**/.phpcq.lock') }}
55+
restore-keys: |
56+
${{ runner.os }}-${{ matrix.php }}-build-${{ env.cache-name }}-
57+
58+
# install dependencies and tools
59+
- name: Install composer dependencies
60+
run: |
61+
composer require contao/core-bundle ${{ matrix.contao }} --no-update
62+
composer install
63+
- name: Install phpcq toolchain
64+
run: ./vendor/bin/phpcq ${{ matrix.phpcq_install }} -v
5065

51-
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Run tests
52-
run: ant -keep-going
66+
# run tests
67+
- name: Run tests
68+
run: ./vendor/bin/phpcq run -v ${{ matrix.output }}
69+
70+
- name: Upload build directory to artifact
71+
uses: actions/upload-artifact@v4
72+
if: ${{ success() }} || ${{ failure() }}
73+
with:
74+
name: phpcq-builds-php-${{ matrix.php }}-${{ matrix.contao }}
75+
path: .phpcq/build/

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
.DS_Store
33
Thumbs.db
44

5-
# IDEs
5+
# IDEs
66
.buildpath
77
.project
88
.settings/
99
.build/
1010
.external*/
1111
.idea/
12+
.phpcq/
1213
nbproject/
1314

1415
# composer related

.phpcq.lock

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"plugins":{"phpunit":{"api-version":"1.0.0","version":"1.0.0.0","type":"php-file","url":"https://phpcq.github.io/repository/plugin/phpunit/phpunit-1.0.0.0.php","signature":null,"requirements":{"php":{"php":"^7.3 || ^8.0"},"tool":{"phpunit":"^6.0 || ^7.0 || ^8.0 || ^9.0"}},"checksum":{"type":"sha-512","value":"c73f15658e3ba62665f09492ec91c3a6a715760bfaa88473a987538439fff442540148e086e46a6aa18ce55a3ea2fbf76caaa581384cb84a38859fcc609ae7e4"},"tools":{"phpunit":{"version":"9.6.22","url":"https://phar.phpunit.de/phpunit-9.6.22.phar","requirements":{"php":{"php":">=7.3","ext-dom":"*","ext-json":"*","ext-libxml":"*","ext-mbstring":"*","ext-xml":"*","ext-xmlwriter":"*"}},"checksum":{"type":"sha-256","value":"9618d52015c9b06b4979a8e481ca9567be6be20e711e98926c61378a400e1f2e"},"signature":"https://phar.phpunit.de/phpunit-9.6.22.phar.asc"}},"composerLock":null},"psalm":{"api-version":"1.0.0","version":"1.3.0.0","type":"php-file","url":"https://phpcq.github.io/repository/plugin/psalm/psalm-1.3.0.0.php","signature":null,"requirements":{"php":{"php":"^7.4 || ^8.0","ext-dom":"*"},"tool":{"psalm":"^3.0 || ^4.0 || ^5.0 || ^6.0"}},"checksum":{"type":"sha-512","value":"4a550c9226d7bca582d7c10bd87cce01190c96398936b1613421640c83df62ed1c6e0d44c1b39635414ea8cf4a892a6458d27590793238add24e7cb5547e6ffd"},"tools":{"psalm":{"version":"5.26.1","url":"https://github.com/vimeo/psalm/releases/download/5.26.1/psalm.phar","requirements":{"php":{"php":"^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0","ext-SimpleXML":"*","ext-ctype":"*","ext-dom":"*","ext-json":"*","ext-libxml":"*","ext-mbstring":"*","ext-tokenizer":"*"}},"checksum":null,"signature":"https://github.com/vimeo/psalm/releases/download/5.26.1/psalm.phar.asc"}},"composerLock":null},"composer-require-checker":{"api-version":"1.0.0","version":"1.1.1.0","type":"php-file","url":"https://phpcq.github.io/repository/plugin/composer-require-checker/composer-require-checker-1.1.1.0.php","signature":null,"requirements":{"php":{"php":"^7.4 || ^8.0"},"tool":{"composer-require-checker":"^3.8 || ^4.0"}},"checksum":{"type":"sha-512","value":"d5415bddfe024c5749d894034583882aee4e5c3e1087815d9fdd81cb5e71630f631a0e35de0ff84b97fbbf738c16ece5f83bd8c00695913eb846aa6f04577dc2"},"tools":{"composer-require-checker":{"version":"4.7.1","url":"https://github.com/maglnet/ComposerRequireChecker/releases/download/4.7.1/composer-require-checker.phar","requirements":{"php":{"php":"~8.1.0 || ~8.2.0 || ~8.3.0","ext-phar":"*"}},"checksum":null,"signature":"https://github.com/maglnet/ComposerRequireChecker/releases/download/4.7.1/composer-require-checker.phar.asc"}},"composerLock":null},"phpmd":{"api-version":"1.0.0","version":"1.0.2.0","type":"php-file","url":"https://phpcq.github.io/repository/plugin/phpmd/phpmd-1.0.2.0.php","signature":null,"requirements":{"php":{"php":"^7.3 || ^8.0","ext-dom":"*"},"tool":{"phpmd":"^2.6.1"}},"checksum":{"type":"sha-512","value":"f22280a6dec8dbdd2ec1d83b294f23237fe32c34f4a298e52038e0a7a0074d541635b2b488b1a6098a42d8418a6cd8eb804406ea82b91e362be2b5d11a0915b0"},"tools":{"phpmd":{"version":"2.15.0","url":"https://github.com/phpmd/phpmd/releases/download/2.15.0/phpmd.phar","requirements":{"php":{"php":">=5.3.9","ext-xml":"*"}},"checksum":null,"signature":"https://github.com/phpmd/phpmd/releases/download/2.15.0/phpmd.phar.asc"}},"composerLock":null},"phpcpd":{"api-version":"1.0.0","version":"1.1.1.0","type":"php-file","url":"https://phpcq.github.io/repository/plugin/phpcpd/phpcpd-1.1.1.0.php","signature":null,"requirements":{"php":{"php":"^7.3 || ^8.0","ext-dom":"*"},"tool":{"phpcpd":"^6.0"}},"checksum":{"type":"sha-512","value":"1189ce0bf3fade4cb4241f1d96f915ef8fc7651f4450dc79fdf464ee3d6be3009316f0d423ce2d4af9d76ad50807b7fdf4d77bfa6d9ee2c91d6eda32ea214433"},"tools":{"phpcpd":{"version":"6.0.3","url":"https://phar.phpunit.de/phpcpd-6.0.3.phar","requirements":{"php":{"php":">=7.3","ext-dom":"*"}},"checksum":{"type":"sha-256","value":"2cbaea7cfda1bb4299d863eb075e977c3f49055dd16d88529fae5150d48a84cb"},"signature":"https://phar.phpunit.de/phpcpd-6.0.3.phar.asc"}},"composerLock":null},"phploc":{"api-version":"1.0.0","version":"1.0.0.0","type":"php-file","url":"https://phpcq.github.io/repository/plugin/phploc/phploc-1.0.0.0.php","signature":null,"requirements":{"php":{"php":"^7.3 || ^8.0","ext-dom":"*","ext-json":"*"},"tool":{"phploc":"^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"}},"checksum":{"type":"sha-512","value":"f67b02d494796adf553cb3dd13ec06c1cb8e53c799954061749424251379541637538199afb3afa3c7a01cabd1cb6f1c53eb621f015dff9644c6c7cbf10c56d1"},"tools":{"phploc":{"version":"7.0.2","url":"https://phar.phpunit.de/phploc-7.0.2.phar","requirements":{"php":{"php":">=7.3","ext-dom":"*","ext-json":"*"}},"checksum":{"type":"sha-256","value":"3d59778ec86faf25fd00e3a329b2f9ad4a3c751ca91601ea7dab70f887b0bf46"},"signature":"https://phar.phpunit.de/phploc-7.0.2.phar.asc"}},"composerLock":null},"phpcs":{"api-version":"1.0.0","version":"1.2.0.0","type":"php-file","url":"https://phpcq.github.io/repository/plugin/phpcs/phpcs-1.2.0.0.php","signature":null,"requirements":{"php":{"php":"^7.3 || ^8.0","ext-dom":"*"},"tool":{"phpcs":"^3.0 || ^2.0","phpcbf":"^3.0 || ^2.0"}},"checksum":{"type":"sha-512","value":"b6ed00306e76068a6af5e3b1dec837724f9e1900ef1049ce88e7ce195b0583524ca33a73613fba13244307a7ca853b6ddaa14ded69f651c3f184ac130bd1aaad"},"tools":{"phpcs":{"version":"3.12.0","url":"https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.12.0/phpcs.phar","requirements":{"php":{"php":">=5.4.0","ext-simplexml":"*","ext-tokenizer":"*","ext-xmlwriter":"*"}},"checksum":null,"signature":"https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.12.0/phpcs.phar.asc"},"phpcbf":{"version":"3.12.0","url":"https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.12.0/phpcbf.phar","requirements":{"php":{"php":">=5.4.0","ext-simplexml":"*","ext-tokenizer":"*","ext-xmlwriter":"*"}},"checksum":null,"signature":"https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.12.0/phpcbf.phar.asc"}},"composerLock":null},"composer-normalize":{"api-version":"1.0.0","version":"1.1.1.0","type":"php-file","url":"https://phpcq.github.io/repository/plugin/composer-normalize/composer-normalize-1.1.1.0.php","signature":null,"requirements":{"php":{"php":"^7.3 || ^8.0","ext-json":"*"},"tool":{"composer-normalize":"^2.1"}},"checksum":{"type":"sha-512","value":"d9abda440b85d501c58abf9c81bf76f417594b397129215ffa8b777e9bb5e5eda37d7661d661db3c8d11c24f20345bc6fbe56f013b3b9435d459d2b94f086e0f"},"tools":{"composer-normalize":{"version":"2.45.0","url":"https://github.com/ergebnis/composer-normalize/releases/download/2.45.0/composer-normalize.phar","requirements":{"php":{"php":"~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0","ext-json":"*"}},"checksum":null,"signature":"https://github.com/ergebnis/composer-normalize/releases/download/2.45.0/composer-normalize.phar.asc"}},"composerLock":null}},"tools":[]}

.phpcq.yaml.dist

+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
phpcq:
2+
repositories:
3+
- https://phpcq.github.io/repository/repository.json
4+
directories:
5+
- src
6+
- tests
7+
artifact: .phpcq/build
8+
composer:
9+
autodiscover: false
10+
11+
plugins:
12+
phpunit:
13+
version: ^1.0
14+
signed: false
15+
psalm:
16+
version: ^1.0
17+
signed: false
18+
requirements:
19+
psalm:
20+
version: ^5.26.1
21+
composer-require-checker:
22+
version: ^1.0
23+
signed: false
24+
phpmd:
25+
version: ^1.0
26+
signed: false
27+
phpcpd:
28+
version: ^1.1
29+
signed: false
30+
phploc:
31+
version: ^1.0
32+
signed: false
33+
phpcs:
34+
version: ^1.0
35+
signed: false
36+
composer-normalize:
37+
version: ^1.0
38+
signed: false
39+
trusted-keys:
40+
# composer-require-checker
41+
- 033E5F8D801A2F8D
42+
43+
- 4AA394086372C20A
44+
# psalm
45+
- 8A03EA3B385DBAA1
46+
- 12CE0F1D262429A5
47+
48+
- D2CCAC42F6295E7D
49+
# PHP_CodeSniffer
50+
- 31C7E470E2138192
51+
- 5E6DDE998AB73B8E
52+
- A978220305CD5C32
53+
# Composer normalize
54+
- C00543248C87FB13
55+
# phpmd
56+
- A4E55EA12C7C085C
57+
- 9093F8B32E4815AA
58+
59+
tasks:
60+
fix:
61+
- composer-normalize-fix
62+
- phpcbf
63+
64+
verify:
65+
- composer-require-checker
66+
- composer-normalize
67+
68+
analyze:
69+
- phploc
70+
- phpcpd
71+
- phpmd
72+
- phpcs
73+
- psalm
74+
- phpunit
75+
76+
default:
77+
- verify
78+
- analyze
79+
80+
phpcpd:
81+
plugin: phpcpd
82+
config:
83+
exclude:
84+
- tests
85+
- src/CoreBundle/EventListener/DcGeneral/DefinitionBuilder
86+
- src/CoreBundle/Resources/contao/dca
87+
88+
phpmd:
89+
plugin: phpmd
90+
config:
91+
ruleset:
92+
- ./.phpmd.xml
93+
94+
composer-require-checker:
95+
plugin: composer-require-checker
96+
config:
97+
config_file: '.composer-require-checker.json'
98+
99+
phpcs:
100+
plugin: phpcs
101+
config: &phpcs-config
102+
standard: PSR12
103+
excluded:
104+
- '*/Resources/contao/dca/*'
105+
- '*/Resources/contao/languages/*'
106+
- '*/Resources/public/*'
107+
108+
phpcbf:
109+
plugin: phpcs
110+
config:
111+
<<: *phpcs-config
112+
fix: true
113+
114+
composer-normalize-fix:
115+
plugin: composer-normalize
116+
config:
117+
dry_run: false

.phpmd.xml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0"?>
2+
<ruleset name="PHPMD rule set"
3+
xmlns="http://pmd.sf.net/ruleset/1.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
6+
xsi:noNamespaceSchemaLocation=" http://pmd.sf.net/ruleset_xml_schema.xsd">
7+
<description>
8+
PHPMD rule set
9+
</description>
10+
11+
<rule ref="rulesets/codesize.xml"/>
12+
<rule ref="rulesets/controversial.xml">
13+
<exclude name="CamelCaseVariableName"/>
14+
</rule>
15+
<rule ref="rulesets/controversial.xml/CamelCaseVariableName">
16+
<properties>
17+
<property name="allow-underscore" value="true"/>
18+
</properties>
19+
</rule>
20+
<rule ref="rulesets/design.xml"/>
21+
<rule ref="rulesets/naming.xml">
22+
<exclude name="ShortVariable" />
23+
</rule>
24+
<rule ref="rulesets/naming.xml/ShortVariable">
25+
<properties>
26+
<property name="exceptions" value="id" />
27+
</properties>
28+
</rule>
29+
<rule ref="rulesets/unusedcode.xml">
30+
<exclude name="UnusedLocalVariable"/>
31+
</rule>
32+
<rule ref="rulesets/unusedcode.xml/UnusedLocalVariable">
33+
<properties>
34+
<property name="allow-unused-foreach-variables" value="true"/>
35+
</properties>
36+
</rule>
37+
</ruleset>

.tx/config

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[main]
2+
host = https://app.transifex.com
3+
4+
[o:metamodels:p:attribute-translatedfile:r:tl_metamodel_attribute]
5+
file_filter = src/Resources/translations/tl_metamodel_attribute.<lang>.xlf
6+
source_file = src/Resources/translations/tl_metamodel_attribute.en.xlf
7+
type = XLIFF
8+
minimum_perc = 0
9+
resource_name = tl_metamodel_attribute
10+
replace_edited_strings = false
11+
keep_translations = false

build.default.properties

-10
This file was deleted.

build.xml

-12
This file was deleted.

0 commit comments

Comments
 (0)