Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
6db8975
Rework attribute for Contao 4.4 support.
dmolineus Dec 4, 2017
3a7357a
Merge branch 'hotfix/2.0.2' into feature/contao4
baumannsven Dec 21, 2017
8380b60
Replace the license
baumannsven Jan 28, 2018
4bbc012
Merge tag '2.0.5' into feature/contao4
baumannsven Jul 4, 2018
71a2478
Fix broken merge
discordier Jul 31, 2018
78eae9c
Fix a deprecation
discordier Dec 31, 2018
fe70118
Merge tag '2.0.6'
discordier Jan 16, 2019
4987dd6
Fix indention in services.yml
discordier Jan 16, 2019
dee68fb
Remove repo and allow MCW@beta
discordier Jan 16, 2019
e65a5c6
Bump PHP to ^7.1 and test against all Contao
discordier Jan 16, 2019
204512b
Allow symfony 4
discordier Jan 16, 2019
8866bd0
Change branch alias
discordier Jan 16, 2019
7a7b238
Register event listener with class name & fix test
discordier Jan 16, 2019
086997f
Hofix clear DCA rendersettings - we use the same settings as attribut…
zonky2 Feb 25, 2019
9c49a45
Remove obsolete keys from composer.json
MiniModel Mar 5, 2019
1bfd5fb
Update PHPDoc file headers
MiniModel Mar 5, 2019
fd33024
Update PHPDoc class headers
MiniModel Mar 5, 2019
a9f2f22
Update common dependency constraints
MiniModel Mar 5, 2019
e7b5b68
Update file .travis.yml
MiniModel Mar 5, 2019
f8d527e
Merge PR #26 from zonky2
stefanheimes Mar 7, 2019
544bd07
Remove field settings form the dca. This field settings set by attrib…
baumannsven Apr 13, 2017
00df510
Functionality for manual sorting
baumannsven Jun 26, 2017
c5deb0a
Merge branch 'hotfix/fs' into hotfix/2.0.7
baumannsven Mar 22, 2019
5ba8851
Add phpunit test for test fs
baumannsven Mar 23, 2019
4eb881e
PQFS
baumannsven Mar 23, 2019
0934e55
Update some code styles
baumannsven Mar 23, 2019
fc994d8
Inject the main attribute before inject the order attribute
baumannsven Mar 24, 2019
c33b5ab
Add missing value sorting
baumannsven Mar 27, 2019
7ff3729
The final implementation of sorting
baumannsven Mar 28, 2019
ab63741
Remove the internal attribute from the type options
baumannsven Mar 29, 2019
801a237
Merge branch 'hotfix/2.0.7' into release/2.1.0
baumannsven Apr 1, 2019
eb4f706
Require the actual hotfix from the attribute file
baumannsven Apr 1, 2019
e695166
Move the subscriber to the event listener
baumannsven Apr 1, 2019
d90af07
Extract to the build data definition listener from subscriber
baumannsven Apr 1, 2019
e576e42
Refactor the subscriber as listener
baumannsven Apr 1, 2019
320de45
Update phpunit tests
baumannsven Apr 2, 2019
9a1a6db
Static code analyzes
baumannsven Apr 2, 2019
9d65688
Extract the factory services in own service yml
baumannsven Apr 2, 2019
57e9d60
Move the event listeners services in own service yml
baumannsven Apr 2, 2019
ee0e0fc
Using some classes with the dic, for writing workable phpunit tests
baumannsven Apr 2, 2019
fda985b
Use the doctrine dbal connection
baumannsven Apr 2, 2019
c49918f
Quote reserved platform keywords
baumannsven Apr 2, 2019
c6e4280
Load this bundle after the attribute file bundle
baumannsven Apr 2, 2019
96d72f1
Bump the requirements of metamodels/core, attribute file and the dcg
baumannsven Apr 4, 2019
9d42484
Release 2.1
baumannsven Apr 4, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .check-author.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
exclude:
- contao/languages
- /^contao\/languages/

ignore:
- 'Mini Model <minimodel@metamodel.me>'

exclude:
- /^src\/Resources\/contao\/languages/
30 changes: 23 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,42 @@ php:
- "7.3"
- "7.2"
- "7.1"
- "7.0"
- "5.6"

env:
- CONTAO_VERSION=~3.5.5
- CONTAO_VERSION=~4.7.0
- CONTAO_VERSION=~4.6.0
- CONTAO_VERSION=~4.5.0
- CONTAO_VERSION=~4.4.0

# Exclude impossible Contao Version combinations.
matrix:
exclude:
fast_finish: true
allow_failures:
- env: CONTAO_VERSION=~4.7.0
- env: CONTAO_VERSION=~4.6.0
- env: CONTAO_VERSION=~4.5.0

before_script:
- echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- travis_retry composer self-update && composer --version
- travis_retry composer require contao/core $CONTAO_VERSION --no-update
- travis_retry composer require contao/core-bundle $CONTAO_VERSION --no-update
- >
if [ "x${TRAVIS_TAG}" != "x" ]; then
export COMPOSER_ROOT_VERSION=${TRAVIS_TAG}
else
export COMPOSER_ROOT_VERSION=$([[ ${TRAVIS_BRANCH} =~ hotfix/([0-9.]*(-(alpha|beta|rc)[0-9]+)?) ]] \
&& echo ${BASH_REMATCH[1]} \
export COMPOSER_ROOT_VERSION=$([[ ${TRAVIS_BRANCH} =~ (hotfix|release)/([0-9.]*(-(alpha|beta|rc)[0-9]+)?) ]] \
&& echo ${BASH_REMATCH[2]} \
|| echo dev-${TRAVIS_BRANCH})
fi
- echo "Using root version ${COMPOSER_ROOT_VERSION}"
- travis_retry composer update --prefer-dist --no-interaction
- >
echo "PHP version: ${TRAVIS_PHP_VERSION}";
if [ "x${TRAVIS_PHP_VERSION}" == "xnightly" ]; then
travis_retry composer update --ignore-platform-reqs --prefer-dist --no-interaction --no-suggest
else
travis_retry composer update --prefer-dist --no-interaction --no-suggest
fi

script: ant -keep-going

Expand Down
1 change: 1 addition & 0 deletions build.default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@

phpcs.standard=${basedir}/vendor/phpcq/coding-standard/phpcs/PhpCodeQuality/ruleset.xml
phpmd.ruleset=${basedir}/vendor/phpcq/coding-standard/phpmd/ruleset.xml
phpcs.excluded=src/Resources/contao/languages
39 changes: 22 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"file",
"translatable"
],
"type": "contao-module",
"type": "contao-bundle",
"homepage": "http://now.metamodel.me/",
"license": "LGPL-3.0-or-later",
"authors": [
Expand All @@ -32,33 +32,38 @@
"source": "https://github.com/MetaModels/attribute_translatedfile"
},
"require": {
"php": "^5.6 || ^7.0",
"contao-community-alliance/composer-plugin": "^2.4",
"contao-community-alliance/dc-general": "^2.0.0",
"contao/core": "^3.5.5",
"metamodels/core": "^2.0"
"php": "^7.1",
"contao-community-alliance/dc-general": "^2.1.3",
"contao/core-bundle": "^4.4.8",
"metamodels/core": "^2.1.1",
"metamodels/attribute_file": "^2.1.1",
"symfony/dependency-injection": "^3.3 || ^4.0",
"symfony/http-kernel": "^3.3 || ^4.0"
},
"require-dev": {
"metamodels/base-unit-tests": "^1.0.4",
"contao/manager-plugin": "^2.1",
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
"phpcq/all-tasks": "^1.2"
},
"autoload": {
"psr-0": {
"MetaModels": "src/"
"psr-4": {
"MetaModels\\AttributeTranslatedFileBundle\\": "src"
},
"files": [
"src/deprecated-autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"MetaModels\\AttributeTranslatedFileBundle\\Test\\": "tests"
}
},
"extra": {
"contao": {
"symlinks": {
"contao": "system/modules/metamodelsattribute_translatedfile"
}
},
"contao-manager-plugin": "MetaModels\\AttributeTranslatedFileBundle\\ContaoManager\\Plugin",
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-develop": "2.1.x-dev"
"dev-master": "2.1.x-dev"
}
},
"prefer-stable": true,
"config": {
"sort-packages": true
}
Expand Down
7 changes: 0 additions & 7 deletions contao/config/autoload.ini

This file was deleted.

40 changes: 0 additions & 40 deletions contao/config/event_listeners.php

This file was deleted.

115 changes: 0 additions & 115 deletions contao/dca/tl_metamodel_attribute.php

This file was deleted.

76 changes: 0 additions & 76 deletions contao/dca/tl_metamodel_rendersetting.php

This file was deleted.

7 changes: 0 additions & 7 deletions contao/html/.htaccess

This file was deleted.

2 changes: 1 addition & 1 deletion ctb.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"transifex": {
"project": "metamodels",
"prefix": "attribute_translatedfile-",
"languages_cto": "contao/languages",
"languages_cto": "src/Resources/contao/languages",
"languages_tx": ".tx",
"php-file-header": [
"This file is part of MetaModels/attribute_translatedfile.",
Expand Down
Loading