Stephan Hochdörfer
Stephan Hochdörfer
When `patch` is not installed, the plugin will error with the generic "Cannot apply patch" error message. It took me quite a while today to figure out why things were...
When my composer.json file contains a custom Composer repository (e.g. an inhouse satis repo) it would be nice if the search would also take that repository into account when executing...
For some weird reason the `Access-Control-Allow-Origin: *` header did not work for me. I decided to set the headers in the PHP application by using the `tuupola/cors-middleware` package. Unfortunately nginx...
As discussed in #575 introduce a setting for the organization to define the default for new packages. When a new organization is created the default value for the `enable_security_scan` configuration...
I tried to send a bit more complex search query like this one from the [dev docs](https://devdocs.magento.com/guides/v2.2/rest/performing-searches.html) combining Logical AND and OR: ``` searchCriteria[filter_groups][0][filters][0][field]=sku& searchCriteria[filter_groups][0][filters][0][value]=WSH%2529%25& searchCriteria[filter_groups][0][filters][0][condition_type]=like& searchCriteria[filter_groups][0][filters][1][field]=sku& searchCriteria[filter_groups][0][filters][1][value]=WP%2529%25& searchCriteria[filter_groups][0][filters][1][condition_type]=like& searchCriteria[filter_groups][1][filters][0][field]=price&...
Via [this blog post](https://blog.acolyer.org/2019/04/08/how-bad-can-it-git-characterizing-secret-leakage-in-public-github-repositories/) I came across [this paper](https://www.ndss-symposium.org/wp-content/uploads/2019/02/ndss2019_04B-3_Meli_paper.pdf) which contains a list of regex expressions to characterize potential passwords. It would be cool to have an action which could...
We should make use of [PHIVE](https://phar.io) to install dev toolings like phpstan, phpdocumentor, php-coveralls.
As discussed with @Ocramius today it would make sense for Disco to be able to support autowiring for bean instances to reduce the amount of configuration code needed and to...
Currently the ConfigurationGenerator is working with a fixed set of annotations which is ok for now but in the future I`d like to see a way to add custom annotation...
PhpStorm supports a so-called [Meta file](https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Advanced+Metadata) helping with autocompletion for container calls. Add a (Phing) task to generate such a file for the given container configuration to enable autocomplete support...