Skip to content

Commit cbeaf49

Browse files
committed
adjust license
1 parent 6ec2e26 commit cbeaf49

File tree

9 files changed

+203
-294
lines changed

9 files changed

+203
-294
lines changed

.github/workflows/ecs-fix.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Coding standard refactor
2+
on:
3+
schedule:
4+
- cron: '0 0 * * SUN'
5+
workflow_dispatch: ~
6+
7+
jobs:
8+
ecs-fix:
9+
runs-on: ubuntu-latest
10+
timeout-minutes: 5
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
branch: [ 'master' ]
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
ref: ${{ matrix.branch }}
19+
20+
- name: Setup PHP
21+
uses: shivammathur/setup-php@v2
22+
with:
23+
php-version: 8.3
24+
25+
- name: Composer install
26+
run: composer install --no-interaction --no-scripts
27+
28+
- name: Run ECS
29+
run: |
30+
vendor/bin/ecs check src --fix --config ecs.php
31+
32+
- name: Create Pull Request
33+
uses: peter-evans/create-pull-request@v4
34+
with:
35+
commit-message: '[CS] Refactor'
36+
author: DACHCOM Bot <bot@dachcom.ch>
37+
title: '[CS] Refactor'
38+
body: |
39+
This PR has been generated automatically to fix code-styles
40+
labels: |
41+
Enhancement
42+
branch: coding-standard/refactor-${{ matrix.branch }}
43+
delete-branch: true
44+
base: ${{ matrix.branch }}

.github/workflows/ecs.yml

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

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,9 @@ atlassian-ide-plugin.xml
4040
.project
4141
ehthumbs.db
4242
Thumbs.db
43-
Vagrantfile
44-
.vagrant
4543
php-cgi.core
46-
.sass-cache
44+
/vendor/
45+
/composer.lock
4746

4847
# codeception (only stage *.dist.yaml config files)
4948
/codeception.yaml

LICENSE.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# License
2-
Copyright (C) 2023 DACHCOM.DIGITAL
2+
Copyright (C) DACHCOM.DIGITAL
33

4-
This software is available under the GNU General Public License version 3 (GPLv3).
4+
This software is available under two different licenses:
5+
* GNU General Public License version 3 (GPLv3) as Pimcore Community Edition
6+
* DACHCOM Commercial License (DCL)
57

6-
### GNU General Public License version 3 (GPLv3)
7-
If you decide to choose the GPLv3 license, you must comply with the following terms:
8+
The default Social Data Bundle license, without a valid DACHCOM Commercial License agreement, is the Open-Source GPLv3 license.
9+
10+
## GNU General Public License version 3 (GPLv3)
11+
If you decide to choose the GPLv3 license, you must comply with the following terms:
812

913
This program is free software: you can redistribute it and/or modify
1014
it under the terms of the GNU General Public License as published by
@@ -13,10 +17,14 @@ the Free Software Foundation, either version 3 of the License, or
1317

1418
This program is distributed in the hope that it will be useful,
1519
but WITHOUT ANY WARRANTY; without even the implied warranty of
16-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1721
GNU General Public License for more details.
1822

1923
You should have received a copy of the GNU General Public License
2024
along with this program. If not, see <http://www.gnu.org/licenses/>.
2125

22-
[GNU General Public License](https://www.gnu.org/licenses/gpl-3.0.en.html)
26+
## DACHCOM Commercial License (DCL)
27+
Alternatively, commercial and supported versions of the program - also known as
28+
Commercial Distributions - must be used in accordance with the terms and conditions
29+
contained in a separate written agreement between you and DACHCOM.DIGITAL AG.
30+
For more information about the Social Data Bundle Commercial License (DCL) please contact dcdi@dachcom.ch.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,12 @@ The Toolbox provides a lot of [ready-to-use Bricks](docs/11_ElementsOverview.md)
107107
- Fix the pimcore iframe [maskFrames](public/js/document/edit.js) bug (in some cases the iframe overlay field does not apply to the right position)
108108
- Transforms all the brick config buttons (`pimcore_area_edit_button_*`) to more grateful ones.
109109

110+
## Upgrade Info
111+
Before updating, please [check our upgrade notes!](UPGRADE.md)
112+
110113
## License
111114
**DACHCOM.DIGITAL AG**, Löwenhofstrasse 15, 9424 Rheineck, Schweiz
112115
[dachcom.com](https://www.dachcom.com), dcdi@dachcom.ch
113-
Copyright © 2024 DACHCOM.DIGITAL. All rights reserved.
116+
Copyright © 2025 DACHCOM.DIGITAL. All rights reserved.
114117

115118
For licensing details please visit [LICENSE.md](LICENSE.md)
116-
117-
## Upgrade Info
118-
Before updating, please [check our upgrade notes!](UPGRADE.md)

UPGRADE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Upgrade Notes
22

33
## 5.3.0
4+
- [LICENSE] Dual-License with GPL and Dachcom Commercial License (DCL) added
45
- [ENHANCEMENT] [Quill Editor Bundle](https://github.com/pimcore/quill-bundle) Support added. See [Editor Configuration Section](./docs/13_Wysiwyg_Editor.md#quill)
56

67
## 5.2.2

composer.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
22
"name": "dachcom-digital/toolbox",
33
"type": "pimcore-bundle",
4-
"license": "GPL-3.0-or-later",
4+
"license": [
5+
"GPL-3.0-or-later",
6+
"proprietary"
7+
],
58
"description": "Pimcore Project Kickstarter",
69
"keywords": ["pimcore", "toolbox"],
710
"homepage": "https://github.com/dachcom-digital/pimcore-toolbox",
811
"authors": [
912
{
1013
"name": "DACHCOM.DIGITAL Stefan Hagspiel",
1114
"email": "shagspiel@dachcom.ch",
12-
"homepage": "http://www.dachcom.com/",
15+
"homepage": "https://www.dachcom.com",
1316
"role": "Developer"
1417
}
1518
],
@@ -37,8 +40,8 @@
3740
"codeception/codeception": "^5.0",
3841
"codeception/module-symfony": "^3.1",
3942
"codeception/module-webdriver": "^4.0",
40-
"phpstan/phpstan": "^1.0",
41-
"phpstan/phpstan-symfony": "^1.0",
42-
"symplify/easy-coding-standard": "^9.0"
43+
"phpstan/phpstan": "^2.0",
44+
"phpstan/phpstan-symfony": "^2.0",
45+
"symplify/easy-coding-standard": "~12.2.0"
4346
}
4447
}

0 commit comments

Comments
 (0)