Saša Stamenković

Results 60 issues of Saša Stamenković

https://github.com/mvdbos/php-spider

I am thinking to switch this project to JavaScript. I am considering [PhantomJS](http://phantomjs.org/) and simple plugin system (similar to https://github.com/umpirsky/centipede/issues/26) with [Cucumber.js](https://github.com/cucumber/cucumber-js) or [CodeceptJS](https://github.com/Codeception/CodeceptJS).

centipede.yml: ``` yml rules: foo: url: https://github.com/foo status: 200 text: Foo bar: url: https://github.com/bar status: 200 text: Bar ignore: - https://github.com/ignore - https://github.com/ignored ```

Support for custom text check per url in `centipede.yml` config. ``` yml text: example.com/foo: 'This is foo page!' ```

Support for custom status code per url in `centipede.yml` config. ``` yml status: example.com/foo: 403 ```

Simple url ignore list in `centipede.yml` config. ``` yml ignore: - example.com/foo - example.com/bar ```

Maybe support multiple output formatters.

enhancement

``` composer require --dev theofidry/alice-data-fixtures \ doctrine-orm \ doctrine/data-fixtures Using version ^1.4 for theofidry/alice-data-fixtures Using version ^2.1 for symfony/orm-pack Using version ^1.5 for doctrine/data-fixtures ./composer.json has been updated Running composer...

bug

I have custom core bundle in my Sylius app, and have `src/Umpirsky/Bundle/CoreBundle/Resources/config/finite.yml` file where I override: ``` yml finite_finite: sylius_order_shipping: ... ``` The problem is that `sylius_payment` callbacks are not...

bug