• Stars
    star
    180
  • Rank 212,430 (Top 5 %)
  • Language
    PHP
  • Created almost 10 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Magento Project Mess Detector (for n98-magerun)

Magento Project Mess Detector

Author: Fabrizio Branca (fbrnc.net / @fbrnc)

Build Status

Some additional commands for the excellent n98-magerun Magento command-line tool that will help you find out how messed up a Magento instance is :)

n98-magerun.phar | grep mpmd
mpmd
 mpmd:codepooloverrides                  Find all code pool overrides
 mpmd:corehacks                          Find all core hacks
 mpmd:dependencycheck                    Find dependencies
 mpmd:dependencycheck:configured         Returns the list of modules that are CONFIGURED in these module's config xml.
 mpmd:dependencycheck:graph:class        Creates a class graph
 mpmd:dependencycheck:graph:configured   Creates a graph of all configured depencencies.
 mpmd:dependencycheck:graph:module       Creates a module graph
 mpmd:dependencycheck:verify             Checks if found dependencies match a given module's xml file

Table of Contents

Installation

There are a few options. You can check out the different options in the MageRun docs.

Here's the easiest:

  1. Install n98-magerun if you haven't already. Find the instructions on the n98-magerun wiki.

  2. Create ~/.n98-magerun/modules/ if it doesn't already exist. (or /usr/local/share/n98-magerun/modules or put your modules inside your Magento instance in lib/n98-magerun/modules if you prefer that)

mkdir -p ~/.n98-magerun/modules/
  1. Clone the mpmd repository in there.
git clone https://github.com/AOEpeople/mpmd.git ~/.n98-magerun/modules/mpmd
  1. It should be installed. To verify that it was installed correctly, check if the new commands show up in the command list:
n98-magerun.phar | grep mpmd

Commands

Command mpmd:corehacks

Usage:
 mpmd:corehacks [--format[="..."]] pathToVanillaCore [htmlReportOutputPath] [skipDirectories]

Arguments:
 pathToVanillaCore     Path to Vanilla Core used for comparison
 htmlReportOutputPath  Path to where the HTML report will be written
 skipDirectories       ':'-separated list of directories that will not be considered (defaults to '.svn:.git')

This command requires a vanilla version of Magento (same version and edition! Run n98-magerun.phar sys:info for more details) to be present somewhere in the filesystem. It will then traverse all project files and compare them with the original files. This command will also be able to tell the difference between whitespace or code comments changes and real code changes. It will generate a HTML report that also includes the diffs.

$ cd /var/www/magento/htdocs
$ n98-magerun.phar mpmd:corehacks /path/to/vanilla/magento /path/to/report.html
Comparing project files in 'var/www/magento/htdocs' to vanilla Magento code in '/path/to/vanilla/magento'...
+----------------------+-------+
| Type                 | Count |
+----------------------+-------+
| differentFileContent | 2     |
| identicalFiles       | 16049 |
| fileMissingInB       | 1     |
| sameFileButComments  | 0     |
+----------------------+-------+
Generating detailed HTML Report

Report preview:

Image

Command: mpmd:codepooloverrides

Usage:
 mpmd:codepooloverrides [--format[="..."]] [htmlReportOutputPath] [skipDirectories]

Arguments:
 htmlReportOutputPath  Path to where the HTML report will be written
 skipDirectories       ':'-separated list of directories that will not be considered (defaults to '.svn:.git')

This command will compare all code pools with each other and detect files that are overriding each other. It will show identical files (What's the point of these? But yes, seen projects where this happened), copied files with changes in comments and whitespace only, and real changes. Of course with diff...

Report preview:

Image

Dependency Checker

The dependency checker parses one or more files or directories and detects PHP classes that are being "used" there.

How does it work?

The dependency checker is a "semi" static code analysis tool. That means it does the job without actually executing any of the PHP code you're pointing it to, but it does need that module to be installed correctly and it will invoke the Magento framework to resolve classpaths (catalog/product -> Mage_Catalog_Model_Product)

Why?

While tools like pdepend exist those tools don't know anything about Magento in general, Magento's special classpaths and where they are being used. Also sometimes the numbers generated by pdepend are a little overwhelming and after all what are you going to do knowing that you're module has an avarage cyclomatic complexity of x?

The mpmd:dependencychecker will

  • help you to detect other Magento modules that the module you're currently looking at depends on.
  • check you module's configuration and let's you know if all actual dependencies are declared correctly and will also show if the module is declaring dependencies that this tool didn't detect (Note: this tool isn't perfect, so please double check before removing any dependencies)
  • show you the relations between modules and individual classes
  • produce pretty graphs that you can render with Graphviz
  • help you detect code that requires some refactoring and will help you create cleaner - less dependent - modules in the first place.

Parsers

The dependency checker comes with two different parsers (and allows you to add new ones:)

Parser Will process How it works
Tokenizer *.php, *.phtml The tokenizer parser will split the PHP file into tokens and traverses them. Handlers can subscribe to token to detect various class usages.
Xpath *.xml The xpath parser will read the file into a SimpleXMLElement object and will pass this to all the subscribed handlers

How to add your own parser

Add a new parser via n98-magerun's YAML configuration

commands:
  Mpmd\Magento\DependencyCheckCommand:
    parsers:
      - Mpmd\DependencyChecker\Parser\Tokenizer
      - Mpmd\DependencyChecker\Parser\Xpath
      - (... add your parser here ...)

All parsers need to implement Mpmd\DependencyChecker\Parser\ParserInterface. Also checkout the AbstractParser that implements that interface and might be a good starting point.

Handlers

Every parser comes with a number of handlers. Here's the list of default handlers that come with the dependency checker:

Parser Handler Will process What it does
Tokenizer Interfaces T_IMPLEMENTS Finds interfaces: class A implements B {}
Tokenizer WhitespaceString T_NEW, T_EXTENDS, T_CLASS Finds classes instantiated with 'new': $a = new B();
Finds extended classes: class A extends B {}
Tokenizer StaticCalls T_DOUBLE_COLON Finds static calls: A::B and A::B()
Tokenizer TypeHints T_FUNCTION Finds type hints: function a (B $b) {}
Tokenizer MagentoFactoryMethods T_STRING for specific keywords Finds classes instantiated with one of Magento's factory methods and resolves them to real PHP classes not taking rewrites into account:
Mage::getModel()
Mage::getSingleton()
Mage::getResourceModel()
Mage::getResourceSingleton()
$this->getLayout()->createBlock()
Mage::getBlockSingleton()
Mage::helper()
Mage::getResourceHelper()
Mage::getControllerInstance()
Xpath LayoutXml All xml files Finds blocks and resolves them into real PHP classes: <block type="core/text">
Xpath SystemXml All xml files Finds references to models in system.xml files:
<frontend_model>adminhtml/system_config_form_field_notification</frontend_model>
<source_model>adminhtml/system_config_source_yesno</source_model>
<backend_model>adminhtml/system_config_backend_store</backend_model>

Note: MagentoFactoryMethods, LayoutXml and SystemXml need to resolve Magento classpaths into real PHP classes. The challenge hereby is NOT to take rewrites into account since rewriting a class is a mechanism that was introduced to ALLOW decoupling without dependending on each other. In order to leverage Magento and it's configuration to resolve the class paths but not take the rewrite into accounts

  • the module that we're testing needs to be installed into a functioning Magento environment and all dependencies must be fulfilled
  • we need to "trick" something into being Mage_Core_Model_Config having access to the same data but doing things slightly differently. Mpmd\Util\MagentoFactory takes care of that and provides access to some of the original functions like getModelClassName() and getBlockClassName()...

How to add your own handler

Add a new handler via n98-magerun's YAML configuration (also checkout n98-magerun's documentation for custom commands)

commands:
  Mpmd\Magento\DependencyCheckCommand:
	Mpmd\DependencyChecker\Parser\Tokenizer:
      handlers:
        - Mpmd\DependencyChecker\Parser\Tokenizer\Handler\WhitespaceString
        - Mpmd\DependencyChecker\Parser\Tokenizer\Handler\Interfaces
        - (... add your tokenizer handler here ...)
    <Parser>:
      handlers:
        - (... add your <parser> handler here ...)    

All handlers need to implement Mpmd\DependencyChecker\HandlerInterface. Also checkout the AbstractHandler and the inheriting abstract handlers for the tokenizer parser and the xpath parser that implement that interface and might be a good starting point.

Specifying sources

Almost every command (and sub-command) of the dependency checker requires you to specify what you want to analyze. This can be one or more files or directories. And glob patterns are also supported. Here are some examples:

# Single file:
$ n98-magerun.phar mpmd:dependencycheck -m app/code/local/My/Module/Model/Test.php

# Full directory:
$ n98-magerun.phar mpmd:dependencycheck -m app/code/local/My/Module/

# Full modman directory (will also find the files you might have in app/design/):
$ n98-magerun.phar mpmd:dependencycheck -m .modman/My_Module

# Glob patterns are supported:
$ n98-magerun.phar mpmd:dependencycheck -m app/code/local/My/*/
$ n98-magerun.phar mpmd:dependencycheck -m app/code/local/*/*/
$ n98-magerun.phar mpmd:dependencycheck -m app/code/*/*/*/

# Multiple locations 
$ n98-magerun.phar mpmd:dependencycheck -m app/code/local/My/Module/ app/code/community/My/OtherModule/ app/design/frontend/mypackage

Note: Please specify absolute paths or paths relative to your Magento root directory (not relative to the current directory, which might be different if n98-magerun detected Magento in a different directory (e.g. htdocs/) or you're using --root-dir=... to tell n98-magerun where to find your Magento root)

Command: mpmd:dependencychecker

This is the main command that gives you access to following options (specify one or more):

Option Short option What it does
--modules -m This shows you all modules that were detected in the specified sources and the modules that this code depends on.
--libraries -l This shows you all the libraries (lib/*) that the specified sources depend on
--classes -c This detects all the classes in the specified sources (where available) and shows what other classes they are using and how.
--details -d This shows all the details (verbose!)

Examples:

Modules -m|--modules
$ n98-magerun.phar mpmd:dependencycheck -m app/code/core/Mage/Captcha

+---------------+----------------+
| Source Module | Target Module  |
+---------------+----------------+
| Mage_Captcha  | Mage_Core      |
| Mage_Captcha  | Mage_Admin     |
| Mage_Captcha  | Mage_Customer  |
| Mage_Captcha  | Mage_Checkout  |
| Mage_Captcha  | Mage_Adminhtml |
+---------------+----------------+
Libraries -l|--libraries
$ n98-magerun.phar mpmd:dependencycheck -l app/code/core/Mage/Captcha

+-----------+
| Libraries |
+-----------+
| Varien    |
| Zend      |
+-----------+
Classes -c|--classes
$ n98-magerun.phar mpmd:dependencycheck -c app/code/core/Mage/Captcha

+------------------------------------------+-----------------------------------------+--------------------------+
| Source class                             | Target Class                            | Access Types             |
+------------------------------------------+-----------------------------------------+--------------------------+
| Mage_Captcha_Block_Captcha               | Mage_Core_Block_Template                | extends                  |
| Mage_Captcha_Block_Captcha               | Mage_Captcha_Helper_Data                | helper                   |
| Mage_Captcha_Block_Captcha_Zend          | Mage_Core_Block_Template                | extends                  |
| Mage_Captcha_Block_Captcha_Zend          | Mage_Captcha_Helper_Data                | helper                   |
| Mage_Captcha_Model_Config_Form_Backend   | Mage_Captcha_Model_Config_Form_Abstract | extends                  |
| Mage_Captcha_Model_Config_Form_Abstract  | Mage_Core_Model_Config_Data             | extends                  |
| Mage_Captcha_Model_Config_Form_Frontend  | Mage_Captcha_Model_Config_Form_Abstract | extends                  |
...
Details -d|--details
$ n98-magerun.phar mpmd:dependencycheck -d app/code/core/Mage/Captcha

+------------------------------------------------------------------------+------------------+-------------------------------------------------+
| File                                                                   | Access Type      | Class                                           |
+------------------------------------------------------------------------+------------------+-------------------------------------------------+
| app/code/core/Mage/Captcha/Block/Captcha.php                           | class            | Mage_Captcha_Block_Captcha                      |
| app/code/core/Mage/Captcha/Block/Captcha.php                           | extends          | Mage_Core_Block_Template                        |
| app/code/core/Mage/Captcha/Block/Captcha.php                           | helper           | Mage_Captcha_Helper_Data                        |
| app/code/core/Mage/Captcha/Block/Captcha/Zend.php                      | class            | Mage_Captcha_Block_Captcha_Zend                 |
| app/code/core/Mage/Captcha/Block/Captcha/Zend.php                      | extends          | Mage_Core_Block_Template                        |
| app/code/core/Mage/Captcha/Block/Captcha/Zend.php                      | helper           | Mage_Captcha_Helper_Data                        |
| app/code/core/Mage/Captcha/etc/system.xml                              | source_model     | Mage_Adminhtml_Model_System_Config_Source_Yesno |
| app/code/core/Mage/Captcha/etc/system.xml                              | source_model     | Mage_Captcha_Model_Config_Font                  |
...

Command: mpmd:dependencychecker:verify

This command compares the actual dependencies detected by looking at the code with the ones declared for a given module (specify with -m <Module_Name>)

Example:

$ n98-magerun.phar mpmd:dependencycheck:verify -m Mage_Catalog app/code/core/Mage/Catalog

+---------------------+---------------------------------------------+--------------+
| Declared Dependency | Actual Dependency                           | Status       |
+---------------------+---------------------------------------------+--------------+
| Mage_Cms            | Mage_Cms                                    | OK           |
| Mage_Dataflow       | Mage_Dataflow                               | OK           |
| Mage_Eav            | Mage_Eav                                    | OK           |
| Mage_Index          | Mage_Index                                  | OK           |
| -                   | Mage_Adminhtml                              |  Undeclared  |
| -                   | Mage_Api2                                   |  Undeclared  |
| -                   | Mage_Api                                    |  Undeclared  |
| -                   | Mage_Bundle                                 |  Undeclared  |
| -                   | Mage_CatalogIndex                           |  Undeclared  |
...

In this example you can see how Mage_Catalog only declares dependencies to Mage_Cms, Mage_Dataflow, Mage_Eav and Mage_Index. But in reality Mage_Catalog depends on many more modules...

Note: Since pointing to a directory in app/code/ will not take the layout and template files into account that might belong to a module and will potentiallu also introduce dependencies it is recommended to always include all relevant directories to the source parameter, or - in case you're using modman and everything lives in a separate directory anyway point this command to that directory instead:

n98-magerun.phar mpmd:dependencycheck:verify -m My_Module ../.modman/My_Module

Command: mpmd:dependencychecker:configured

This command returns a list of all configured dependencies (taken from config xml). This (and the corresponding mpmd:dependencychecker:graph:configured) is the only command that does not analyze any files but only reads the dependencies from the configuration.

The command accepts one or more module and also supports glob-like patterns:

Examples

# Single module
$ n98-magerun.phar mpmd:dependencycheck:configured My_Module

# Two modules 
$ n98-magerun.phar mpmd:dependencycheck:configured My_Module My_OtherModule

# Wildcard(s)
$ n98-magerun.phar mpmd:dependencycheck:configured 'Mage_*' 'Enterprise_*'

# All modules
$ n98-magerun.phar mpmd:dependencycheck:configured '*'

Note: since bash might replace your glob syntax with different paths in case they match something in the current directory you should wrap any glob patterns in 'single quotes'/

Command: mpmd:dependencychecker:graph:module

This command will render a dependency graph for the relevant modules as a dot file. Use the Graphviz tool (Ubuntu: sudo apt-get install graphviz) to create a svg (or many other formats). Feel free to modify the dot-file to match any different styling. Find a full reference on the Graphviz website.

Example:

$ n98-magerun.phar mpmd:dependencycheck:graph:module app/code/core/Mage/* | dot -Tsvg -o mage.svg

# or:
$ n98-magerun.phar mpmd:dependencycheck:graph:module app/code/core/Mage/* > mage.dot
# customize your graph in mage.dot...
$ dot -Tsvg mage.dot -o mage.svg

Here's a tiny(!) crop of the graph generated in this example (click the image for a full-sized svg). Sadly there are a ton of dependencies in the Magento core (and most likely also in your modules) so these graphs can quickly grow pretty huge:

Image

Command: mpmd:dependencychecker:graph:class

While the previous command shows you a higher level view on modules only, mpmd:dependencychecker:graph:class will drill down into individual classes and optionally group them by module. Consider this graph "zooming in" into the modules in order to find out what classes are responsible for the dependency.

The graph shows different line types:

Style Type
Solid Inheritance: extends, implements
Dashed Composition: new, type_hints, get*, blocks, source/backend/frontend_model
Dotted everything else (static calls)

(This might require some better categorization (e.g. implements != inheritance, type hint != composition)

Example:

# ungrouped
$ n98-magerun.phar mpmd:dependencycheck:graph:class app/code/core/Mage/Captcha | dot -Tpng -o Mage_Captcha.png

# grouped
$ n98-magerun.phar mpmd:dependencycheck:graph:class --group app/code/core/Mage/Captcha | dot -Tpng -o Mage_Captcha.png
Ungrouped Grouped
Image Image

Command: mpmd:dependencychecker:graph:configured

This command will create a graph from the configured dependencies. The syntax is the same used in mpmd:dependencychecker:configured:

Example:

$ n98-magerun.phar mpmd:dependencycheck:graph:configured 'Mage_*' | dot -Tsvg -o Mage.svg

Disclaimer: There's a good chance that some dependencies are not detected at all (actually if variables are being used when instanciating object like Mage::getModel($modelClass);, Mage::getModel("acme/$model"); or new $class() then mpmd is ignoring those - and there might be some more scenarious where mpmd might be missing some dependencies). Please do not solely rely on the mpmd report while refactoring or before removing any modules!

How to run the unit tests

This plugin comes with unit tests. These unit tests will run outside of any n98-magerun or Magento context (they will mock everything from there). Running them by simply calling phpunit in the root directory. Also check the project out on Travis CI where the tests will be run on every commit.

phpunit --debug

Interesting Graphviz commands

There's a ton of things you can do with Graphviz. Starting from choosing different layouts to clustering nodes and coloring nodes and/or edges differently (e.g. by namespace or code pool?). Here are some examples:

In the following examples I replaced all nodes with simple black dots connected with black lines:

edge [arrowhead=vee, arrowtail=inv, arrowsize=.7, color="black"];
node [fontname="verdana", fixedsize=true, width="0.3", shape=point, style="filled", fillcolor="black"];

Replace splines with straight lines:

splines=false;

Circle pattern:

layout=circo;

Radial pattern:

layout=twopi;
Configured dependencies
mpmd:dependencycheck:graph:configured 'Mage_*'
Actual dependencies
mpmd:dependencycheck:graph:module 'app/code/core/Mage/*'
Image Image

No overlapping:

overlap=false;
layout=twopi;

(Click for svg) Image

More Repositories

1

Aoe_Scheduler

Cron Scheduler Module for Magento
PHP
374
star
2

aoe_technology_radar

Create your own Technology Radar: A static site generator for a full featured Technology Radar. Features: Quadrants, Rings, Dashboard, Radar Visualization, Item History, Search etc..
TypeScript
255
star
3

Aoe_Profiler

Magento Profiler
PHP
247
star
4

Aoe_TemplateHints

Advanced Template Hints for Magento
JavaScript
194
star
5

vistecture

Visualize Architecture: Microservice Architecture Tool for visualizing, analysing and automatic documentation of (distributed) Software Architectures
Go
82
star
6

magento-deployscripts

Shell
71
star
7

Aoe_LazyCatalogImages

Magento module to lazy render catalog images
PHP
71
star
8

Aoe_DbRetry

PHP
69
star
9

puppeteer-fetchbot

Library and Shell command that provides a simple JSON-API to perform human like interactions and data extractions on any website. Built on top of puppeteer.
TypeScript
60
star
10

MageTestStand

Shell
59
star
11

StackFormation

Lightweight AWS CloudFormation Stack Manager
PHP
45
star
12

Aoe_LayoutConditions

ifconfig for blocks and references
PHP
41
star
13

techradar

The AOE Technology Radar
CSS
38
star
14

Aoe_Queue

Queue implementation for Magento based on Zend Queue
PHP
37
star
15

Aoe_CartApi

More resources for Magento's Api2 (REST)
PHP
37
star
16

geb-spock-reports

Integrates Geb screenshots into the spock-reports library
HTML
36
star
17

Aoe_CacheCleaner

Removes old cache entries in your Magento instance
PHP
36
star
18

composer-installers

PHP
33
star
19

Aoe_Import

XML Importer Framework for Magento
PHP
32
star
20

Aoe_EeIndexerStats

PHP
31
star
21

Magento-2-Module-Skeleton

This Module provides a basic Skeleton for further Magento 2 Modules.
PHP
31
star
22

Magento_Boilerplate

31
star
23

TYPO3_Restler

restler (PHP REST-Framework) for TYPO3
PHP
30
star
24

composer-satis-builder

PHP
29
star
25

Aoe_CacheStats

Gathers cache statistics
PHP
26
star
26

gradle-jenkins-job-dsl-plugin

Plugin for easy management of Jenkins Job DSL scripts with Gradle
Groovy
25
star
27

zettr

PHP
20
star
28

Aoe_BlackHoleSession

PHP
20
star
29

EasyDeploy

(DEPRICATED) Set of PHP Scripts that makes it easy to deploy to local or remote Servers
PHP
20
star
30

chef-devbox

Shell
19
star
31

cfn-lambdahelper

Collection of Lambda Custom Resources for CloudFormation
JavaScript
18
star
32

meals

Tool to book meals. Keycloak/LDAP connection / PayPal integration / meals administration / support for guests / budget management etc..
PHP
18
star
33

semanticore

Semanticore: Your friendly Semantic Release Bot 🤖 🦁 🐉. Autogenerate Release Notes from Commits and automate Github/Gitlab Release generation.
Go
17
star
34

Aoe_Metrics

PHP
17
star
35

Aoe_FraudManager

Magento module for fraud management
PHP
16
star
36

Aoe_AmazonCdn

Onepica_ImageCdn fork (only S3 support is left) with some customizations and improvements
PHP
14
star
37

scheduler_timeline

TYPO3 backend module providing a graphical timeline of running and finished scheduler tasks
PHP
12
star
38

Aoe_Searchperience

Module integrating Searchperience (Solr SaaS solution from AOE Media) with Magento
PHP
12
star
39

Aoe_CacheRefresh

PHP
11
star
40

kubernetes-sidecar-cleaner

Go
11
star
41

Aoe_AddressAutoComplete

Address auto completion for Magento Checkout (highly experimental!)
JavaScript
11
star
42

kube-container-exec

Go
10
star
43

Aoe_Backup

PHP
10
star
44

Tagging

Build-Tool to automatic increase the version and create a tag in the remote VCS repository.
PHP
10
star
45

vistecture-dashboard

Is a simple dashboard for projects that are deployed into kubernetes. It works together with Vistecture and shows the state of the vistecture architecture in kubernetes.
CSS
10
star
46

linkhandler

Officious fork of TYPO3 extension "linkhandler" with support for TYPO3 CMS 6.2.
PHP
9
star
47

Aoe_Restrictions

Magento module to restrict frontend requests based upon the route and/or full action name
PHP
9
star
48

t3deploy

t3deploy extension that helps automating deployments
PHP
9
star
49

felogin_bruteforce_protection

Protects TYPO3s frontend authentication (e.g. fe_login) against brute force attacks.
PHP
9
star
50

TYPO3-varnish

This is a TYPO3-Extension that integrates the popular Varnish HTTP Cache into TYPO3.
PHP
8
star
51

Aoe_SnappyCms

JavaScript
8
star
52

AwsInspector

PHP
8
star
53

desk-compass

"Where's my desk?" - Search no more: Manage your floor plan and space layout; Keep track of item locations; Collaborate to maximize overview for your office, event location or lecture rooms. Written with NestJS, Svelte and Leaflet.
TypeScript
8
star
54

devbox-cookbook

Ruby
7
star
55

awesome-devops

Awesome List for Dev-Ops / Kubernetes / Cloud
JavaScript
7
star
56

k8sdemo

HCL
6
star
57

TYPO3-Imgix

The "imgix" TYPO3 extension provides the Auto Responsive Images feature of imgix called imgix.fluid().
PHP
6
star
58

jenkins-aoe-theme

AOE Theme for Jenkins CI
CSS
6
star
59

Menta_SampleProject

PHP
6
star
60

Aoe_ConfigHelper

PHP
6
star
61

t3ext-cli_update_wizard

TYPO3 extension to execute tasks from the Upgrade Wizard on command line
PHP
6
star
62

PHP_OpenIdDiscovery

A simple library to discover OpenId Providers with the Autodiscovery url. Tested with Keycloak
PHP
6
star
63

Aoe_ExtendedFilter

PHP
6
star
64

sane-url-builder

Concatenate urls without having trailing, leading, missing slash, colon whatever problems
JavaScript
6
star
65

lambda_token_auth

Small Lambda function which performs a Aws:Sts:AssumeRole based on the presented JWT-Token
Go
6
star
66

gitlab-crucible-bridge

Translates GitLab webhooks into Crucible sync triggers
Go
5
star
67

Aoe_DynamoDbSession

AWS DynamoDB session handler for Magento (experimental!)
PHP
5
star
68

Aoe_SessionVars

PHP
5
star
69

Aoe_Translate

Magento Translation System Logging
PHP
5
star
70

Aoe_HealthCheck

Simple module that provides an endpoint for (load balancer) health checks
PHP
5
star
71

cfn-vpc

VPC setup via CloudFormation
5
star
72

Aoe_SearchStaticBlocks

Adds static blocks to the default Magento search result page, base on keywords.
PHP
5
star
73

Aoe_Fingerprint

PHP
5
star
74

TYPO3-Static-Pub

Allows pages to be staticly published as real HTML pages.
PHP
5
star
75

TYPO3-Feature-Flag

Add ability to use feature flags for extensions and content elements
PHP
4
star
76

TYPO3-Update-Refindex

TYPO3-Extension to update the TYPO3-refindex for specified tables via a scheduler-task
PHP
4
star
77

aoe_ipauth

TYPO3 Extension: Authenticates users based on IP address settings
PHP
4
star
78

sentinel

Python
4
star
79

Aoe_TemplateImport

PHP
4
star
80

docker-images

Common docker images from AOE
Shell
4
star
81

Mage_AwsSdk

Wrapping AWS SDK for PHP into a Magento library
4
star
82

Aoe_SalesRule

PHP
4
star
83

happy_feet

Footnote Extension for TYPO3 using Extbase
PHP
4
star
84

raml-validate

Validates RAML files against server
JavaScript
4
star
85

TYPO3-Google-Tag-Manager

Creates an interface for Google Tag Manager.
PHP
4
star
86

TYPO3_RestlerExamples

Examples on how to use/configure Restler (PHP REST-Framework) for TYPO3
PHP
4
star
87

BackupMinify

Small PHP Script to minify backups
PHP
4
star
88

TYPO3-Cache-Management

Provides management of the page caching for high traffic websites.
PHP
4
star
89

languagevisibility

Multi level language fallback for TYPO3 projects
PHP
4
star
90

searchperience-api-client

PHP Library to communicate with the searchperience RestFul API [www.searchperience.com]
PHP
4
star
91

Aoe_TrimPassword

Trims username and passwords while logging in
PHP
3
star
92

magento2-coding-standard

PHP
3
star
93

Aoe_LayoutManager

PHP
3
star
94

meals-android

Android wrapper for the web app
Kotlin
3
star
95

Menta_MagentoComponents

PHP
3
star
96

Aoe_Api2

Magento Mage_Api2 Extension Module
PHP
3
star
97

s3-kontext

Easy Access to Amazon S3 content via kotlin DSL
Kotlin
3
star
98

Aoe_AvaTax

PHP
3
star
99

Aoe_MergedJsCssCdn

Extension on top of Aoe_Cdn and Aoe_JsCssTstamp to upload merged js/css files to cdn and use them on page
PHP
3
star
100

YAD

Shell
3
star