Skip to content

Commit e51fdf1

Browse files
committed
Merge branch 'development'
2 parents 795e415 + 3acc3f1 commit e51fdf1

64 files changed

Lines changed: 3169 additions & 962 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
language: php
2+
php:
3+
- 5.4
4+
- 5.5
5+
- 5.6
6+
matrix:
7+
exclude:
8+
- php: 5.6
9+
env: MAGENTO_VERSION=magento-mirror-1.7.0.2
10+
- php: 5.6
11+
env: MAGENTO_VERSION=magento-mirror-1.8.0.0
12+
- php: 5.6
13+
env: MAGENTO_VERSION=magento-mirror-1.8.1.0
14+
- php: 5.6
15+
env: MAGENTO_VERSION=magento-mirror-1.9.0.1
16+
env:
17+
- MAGENTO_VERSION=magento-mirror-1.9.2.2
18+
- MAGENTO_VERSION=magento-mirror-1.9.1.0
19+
- MAGENTO_VERSION=magento-mirror-1.9.0.1
20+
- MAGENTO_VERSION=magento-mirror-1.8.1.0
21+
- MAGENTO_VERSION=magento-mirror-1.7.0.2
22+
script:
23+
- composer install --dev --no-interaction
24+
- phpunit
25+
- curl -sSL https://raw.githubusercontent.com/schmengler/MageTestStand/master/setup.sh | bash

README.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
IntegerNet_Anonymizer
2+
=====================
3+
This module allows anonymizing customer data in a sensible way. It uses dummy data provided by Faker and maintains associations like customer address <=> order address.
4+
5+
Facts
6+
-----
7+
[![Build Status (development)](https://travis-ci.org/integer-net/Anonymizer.svg?branch=development)](https://travis-ci.org/integer-net/Anonymizer) [![Scrutinizer Code Quality (development](https://scrutinizer-ci.com/g/integer-net/Anonymizer/badges/quality-score.png?b=development)](https://scrutinizer-ci.com/g/integer-net/Anonymizer/?branch=development)
8+
9+
- version: 2.0.0-rc2
10+
- extension key: integer-net/anonymizer
11+
- [extension on GitHub](https://github.com/integer-net/Anonymizer)
12+
- [direct download link](https://github.com/integer-net/Anonymizer/archive/master.zip)
13+
14+
Usage
15+
-----------
16+
Run the anonymizer via command line:
17+
18+
cd shell
19+
php anonymizer.php
20+
21+
To display progress in real time:
22+
23+
php anonymizer.php --progress
24+
25+
To only update the progress display every 100 entities:
26+
27+
php anonymizer.php --progress 100
28+
29+
If you have n98-magerun installed, you can also use this command:
30+
31+
n98-magerun db:anonymize
32+
33+
Requirements
34+
------------
35+
- PHP >= 5.4
36+
- [Faker](https://github.com/fzaninotto/faker)
37+
- [Magento-PSR-0-Autoloader](https://github.com/magento-hackathon/Magento-PSR-0-Autoloader)
38+
39+
Compatibility
40+
-------------
41+
- Magento CE 1.7, 1.8, 1.9
42+
- Magento EE 1.12, 1.13, 1.14
43+
44+
Installation Instructions
45+
-------------------------
46+
1. Install via composer: `composer require integer-net/anonymizer`
47+
2. Configure Magento-PSR-0-Autoloader to use the composer autoloader. Add this to the `global` node of your `app/etc/local.xml`: `<composer_vendor_path><![CDATA[{{root_dir}}/vendor]]></composer_vendor_path>`
48+
49+
Support
50+
-------
51+
If you have any issues with this extension, open an issue on [GitHub](https://github.com/integer-net/Anonymizer/issues).
52+
53+
Contribution
54+
------------
55+
Any contribution is highly appreciated. The best way to contribute code is to open a [pull request on GitHub](https://help.github.com/articles/using-pull-requests).
56+
57+
Developer
58+
---------
59+
Fabian Schmengler, [integer_net GmbH](http://www.integer-net.de)
60+
61+
Twitter: [@fschmengler](https://twitter.com/fschmengler) [@integer_net](https://twitter.com/integer_net)
62+
63+
Licence
64+
-------
65+
[OSL - Open Software Licence 3.0](http://opensource.org/licenses/osl-3.0.php)
66+
67+
Copyright
68+
---------
69+
© 2015 integer_net GmbH

app/code/community/IntegerNet/Anonymizer/Block/Anonymizer.php

Lines changed: 0 additions & 27 deletions
This file was deleted.

app/code/community/IntegerNet/Anonymizer/Helper/Data.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)