├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpspec.yml ├── spec └── Akeneo │ └── Runner │ └── Maintainer │ └── SkipExampleMaintainerSpec.php └── src └── Akeneo ├── Runner └── Maintainer │ └── SkipExampleMaintainer.php └── SkipExampleExtension.php /.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | vendor/* 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/composer.json -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/phpspec.yml -------------------------------------------------------------------------------- /spec/Akeneo/Runner/Maintainer/SkipExampleMaintainerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/spec/Akeneo/Runner/Maintainer/SkipExampleMaintainerSpec.php -------------------------------------------------------------------------------- /src/Akeneo/Runner/Maintainer/SkipExampleMaintainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/src/Akeneo/Runner/Maintainer/SkipExampleMaintainer.php -------------------------------------------------------------------------------- /src/Akeneo/SkipExampleExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akeneo/PhpSpecSkipExampleExtension/HEAD/src/Akeneo/SkipExampleExtension.php --------------------------------------------------------------------------------