Skip to content

Commit

Permalink
Umc 42 (#43)
Browse files Browse the repository at this point in the history
* WIP: umc-42: refactoring

* More refactoring

* more refactoring

* more refactoring

* more refactoring

* More refactoring

* More refactoring

* Some unit tests

* Some unit tests

* More tests

* moar tests

* Upgrade symfony

* more refactoring. what else?

* even more tests

* refactoring

* frontend refactoring

* yeah....refactoring

* Getting close to a stable version

* multi-platform support

* separate factories per platform support

* almost done splitting stuff

* adding flags to types

* partial settings save

* menu refactoring

* frontend refactor & some unittests and some cleanup

* more unit tests

* More generated unit tests

* more generated tests & fixed dynamic fields code generation

* more generated unit tests. sorted 'use' statements. started on validation

* settings save and added validator

* cleanup

* more unit tests

* more unit tests

* more unit tests

* more unit tests

* generated unit tests

* add help section

* compatible with magento 2.4.0

* make compatible with 2.4

* updates & rewrites

* validation fixes
  • Loading branch information
UltimateModuleCreator authored Jun 26, 2020
1 parent 78dfe81 commit 714bf36
Show file tree
Hide file tree
Showing 806 changed files with 77,607 additions and 42,988 deletions.
Empty file modified .env.dist
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
###> symfony/framework-bundle ###
/.env
/public/bundles/
/bundles/
/var/
/vendor/
###< symfony/framework-bundle ###
Expand Down
6 changes: 6 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
26 changes: 12 additions & 14 deletions composer.json
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,29 @@
"type": "project",
"license": "MIT",
"require": {
"php": "^7.1.3",
"php": ">=7.2.5",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-zip": "*",
"ext-json": "*",
"magento-ecg/coding-standard": "^3.1",
"ext-zip": "*",
"magento/magento-coding-standard": "*",
"sensio/framework-extra-bundle": "^5.5",
"squizlabs/php_codesniffer": "^3.3",
"symfony/asset": "*",
"symfony/console": "*",
"symfony/finder": "*",
"symfony/flex": "^1.1",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/mime": "5.*",
"symfony/process": "*",
"symfony/twig-bundle": "*",
"symfony/yaml": "*",
"twig/extensions": "^1.5",
"squizlabs/php_codesniffer": "^3.3"
"twig/extensions": "^1.5"
},
"require-dev": {
"symfony/dotenv": "*",
"symfony/phpunit-bridge": "*"
"symfony/phpunit-bridge": "^5.0",
"symfony/profiler-pack": "^1.0"
},
"config": {
"preferred-install": {
Expand All @@ -35,11 +37,6 @@
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-ctype": "*",
Expand All @@ -66,7 +63,8 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "4.1.*"
}
"require": "5.*"
},
"public-dir": "."
}
}
Loading

0 comments on commit 714bf36

Please sign in to comment.