Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
- Updated TODO
- Updated composer.json deps to reflect what is specifically used
- Updated install directions to include ZF repo
  • Loading branch information
weierophinney committed Oct 16, 2012
1 parent 4278284 commit 7113174
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 267 deletions.
3 changes: 0 additions & 3 deletions Module.php
Expand Up @@ -2,9 +2,6 @@


namespace PhlyPaste; namespace PhlyPaste;


use Mongo;
use MongoCollection;
use MongoDB;
use Zend\Captcha\Factory as CaptchaFactory; use Zend\Captcha\Factory as CaptchaFactory;


class Module class Module
Expand Down
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -11,6 +11,10 @@ Install via composer:
```javascript ```javascript
{ {
"minimum-stability": "dev" "minimum-stability": "dev"
"repositories": [
"type": "composer",
"url": "http://packages.zendframework.com/"
],
"require": { "require": {
"phly/phly-paste": "dev-master" "phly/phly-paste": "dev-master"
} }
Expand Down
2 changes: 1 addition & 1 deletion TODO.md
Expand Up @@ -15,7 +15,7 @@ X Second tier functionality:
- Third tier functionality: - Third tier functionality:
X DB service X DB service
X API X API
- No CAPTCHA if user is authenticated X No CAPTCHA if user is authenticated
- Display themes - Display themes
- Embed paste via JS - Embed paste via JS
- Array service (?) - Array service (?)
Expand Down
11 changes: 9 additions & 2 deletions composer.json
Expand Up @@ -18,14 +18,21 @@
], ],
"require": { "require": {
"php": ">=5.3.3", "php": ">=5.3.3",
"zendframework/zendframework": "2.*", "zendframework/zend-authentication": "2.*",
"zendframework/zend-captcha": "2.*",
"zendframework/zend-form": "2.*",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-view": "2.*",
"zendframework/zend-stdlib": "2.*",
"doctrine/common": ">=2.1", "doctrine/common": ">=2.1",
"easybook/geshi": "dev-master", "easybook/geshi": "dev-master",
"nick4fake/htmlpurifier": "dev-master" "nick4fake/htmlpurifier": "dev-master"
}, },
"suggest": { "suggest": {
"EdpMarkdown": "Install Markdown to allow markdown pastes: git clone --recursive git://github.com/EvanDotPro/EdpMarkdown.git vendor/EdpMarkdown", "EdpMarkdown": "Install Markdown to allow markdown pastes: git clone --recursive git://github.com/EvanDotPro/EdpMarkdown.git vendor/EdpMarkdown",
"phly/phly-mongo": "Install phly/phly-mongo if you wish to use the Mongo adapters" "phly/phly-mongo": "Install phly/phly-mongo if you wish to use the Mongo adapters",
"zendframework/zend-db": "Install Zend\\Db if you plan to use the TableGatewayPasteService",
"zendframework/zendservice-recaptcha": "Install ReCaptcha service if you plan to use ReCaptcha"
}, },
"autoload": { "autoload": {
"psr-0": { "psr-0": {
Expand Down
261 changes: 0 additions & 261 deletions composer.lock

This file was deleted.

0 comments on commit 7113174

Please sign in to comment.