Skip to content

Commit 6b700ff

Browse files
committed
Init
0 parents  commit 6b700ff

File tree

3 files changed

+105
-0
lines changed

3 files changed

+105
-0
lines changed

LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2013, Eye4web
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without modification,
5+
are permitted provided that the following conditions are met:
6+
7+
Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
Redistributions in binary form must reproduce the above copyright notice, this
11+
list of conditions and the following disclaimer in the documentation and/or
12+
other materials provided with the distribution.
13+
14+
Neither the name of the Eye4web nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
ZfcUserProfilePicture
2+
=======
3+
4+
Introduction
5+
------------
6+
This module adds profile picture upload functionality to ZfcUser.
7+
8+
Installation
9+
------------
10+
#### With composer
11+
12+
1. Add this project composer.json:
13+
14+
```json
15+
"require": {
16+
"eye4web/zfc-user-profile-picture": "dev-master"
17+
}
18+
```
19+
20+
2. Now tell composer to download the module by running the command:
21+
22+
```bash
23+
$ php composer.phar update
24+
```
25+
26+
3. Enable it in your `application.config.php` file.
27+
28+
```php
29+
<?php
30+
return array(
31+
'modules' => array(
32+
// ...
33+
'Eye4web\ZfcUser\ProfilePicture'
34+
),
35+
// ...
36+
);
37+
```
38+
39+
4. Copy `config/eye4web.zfcuser.profilepicture.global.php.dist` to `config/autoload/eye4web.zfcuser.profilepicture.global.php` and configure to your needs.
40+
41+
5. Make your User Entity implement `Eye4web\ZfcUser\ProfilePicture\Entity\ProfilePictureInterface`

composer.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "eye4web/zfc-user-profile-picture",
3+
"description": "Adds profile picture functionality to ZfcUser.",
4+
"license": "MIT",
5+
"keywords": [
6+
"zfcuser",
7+
"zendframework",
8+
"module",
9+
"eye4web"
10+
],
11+
"homepage": "https://github.com/Eye4web/ZfcUserProfilePicture",
12+
"authors": [
13+
{
14+
"name": "Daniel Strøm",
15+
"email": "[email protected]",
16+
"homepage": "http://eye4web.dk"
17+
}
18+
],
19+
"extra": {
20+
"branch-alias": {
21+
"dev-master": "0.0.x-dev"
22+
}
23+
},
24+
"require": {
25+
"php": "~5.4",
26+
"zf-commons/zfc-user": "~1.2"
27+
},
28+
"require-dev": {
29+
"phpunit/phpunit": "~4.0.0",
30+
"squizlabs/php_codesniffer": "~2.0.0@DEV"
31+
},
32+
"autoload": {
33+
"psr-0": {
34+
"Eye4web\\ZfcUser\\ProfilePicture\\": "src/"
35+
}
36+
}
37+
}

0 commit comments

Comments
 (0)