Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
94c4143
Try Symfony 2.8 to be more compatible with OXID 6
smxsm Dec 8, 2017
ba7d27a
Try Symfony 2.8 to be more compatible with OXID 6
smxsm Dec 8, 2017
e76d3fd
Merge branch 'feature/find_version_on_oxid_6_0_0' into private_base
tmloberon Feb 20, 2018
f9f3fb3
Merge branch 'feature/dbdump' into private_base
tmloberon Feb 20, 2018
09385ec
Merge branch 'private_base' into develop
smxsm Mar 6, 2018
cfa5422
add subshop support for module actions
smxsm Mar 6, 2018
c5b6216
Updated README
smxsm Mar 6, 2018
99de384
improve module active check, shopid handling
smxsm Mar 7, 2018
78c7691
add symfony yaml and new command, wip
smxsm Mar 7, 2018
c090519
multi activate command whitelist support, WIP
smxsm Mar 7, 2018
01103fb
allow to activate modules for all subshops at once, or optionally spe…
smxsm Mar 7, 2018
d9f1c51
added config Export- and Import commands for https://github.com/OXIDp…
smxsm Mar 7, 2018
5da572f
added config:export and -import to README
smxsm Mar 7, 2018
6832c15
added options to skip deactivation and cache clearing for multi-activ…
smxsm Mar 7, 2018
279476f
added new options to readme
smxsm Mar 7, 2018
9b6e5c8
added blacklist support for multi module activation, updated README
smxsm Mar 8, 2018
ce70d56
catch Exceptions for De-/Activation of modules
smxsm Mar 8, 2018
5c6e602
added config:multiset command for saving multiple config values from …
smxsm Mar 9, 2018
b1882a0
refactored Datenbase to Database :)
smxsm Mar 9, 2018
0680094
refactored Datenbase to Database :)
smxsm Mar 9, 2018
7c49c16
Merge branch 'develop'
smxsm Mar 9, 2018
14d94f8
Generated new phar, README updated with usage instructions.
smxsm Mar 9, 2018
973bd24
Merge branch 'develop'
smxsm Mar 9, 2018
5015b76
Updated README
smxsm Mar 15, 2018
5637c48
Merge branch 'develop'
smxsm Mar 15, 2018
2c61d8c
Make code more OXID 6 compatible, cleanup
smxsm Mar 16, 2018
780e0f2
Fix typo
smxsm Mar 16, 2018
e5008ff
Merge branch 'develop'
smxsm Mar 16, 2018
ec7869f
new phar file
smxsm Mar 16, 2018
30662e9
Fixed namespace in module list command
smxsm Mar 16, 2018
de00ca2
Merge branch 'develop'
smxsm Mar 16, 2018
d81afe7
Tweaked existing tests a bit for OXID 6
smxsm Mar 19, 2018
bfe11d7
Fixed some tests for OXID 6, allow to pass YAML as string for multi* …
smxsm Mar 19, 2018
8e42f3f
added blacklist test and multiset test
smxsm Mar 21, 2018
56ef334
fixed password update test by inserting and deleting dummy user
smxsm Mar 21, 2018
16306cb
new phar, for new release, ya know
smxsm Mar 21, 2018
0d70d40
Merge branch 'develop'
smxsm Mar 21, 2018
7a2ab18
Updated and added help and docs
smxsm Mar 25, 2018
eae92fd
Merge branch 'develop'
smxsm Mar 25, 2018
d05dd21
Changed composer project name for PR to origin
smxsm Mar 27, 2018
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
clover.xml
vendor
vendor
.vscode-upload.json
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:

before_script:
- curl -s https://getcomposer.org/installer | php
- php composer.phar config -g github-oauth.github.com "${GITHUB_TOKEN}"
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then php composer.phar config -g github-oauth.github.com "${GITHUB_TOKEN}"; fi'
- php composer.phar install
- mysql -e 'CREATE DATABASE IF NOT EXISTS `oxid`;'
- bin/oxrun install:shop --oxidVersion="${OXID_VERSION}" --dbUser=root --installationFolder=../ --shopURL=http://local.oxrun --adminUser=admin@local.oxrun --adminPassword=oxrunpassword
Expand Down
Loading