- ★ZendFramework2(ZF2)流の『取得』『追加』『更新』『削除』とデータベース接続アダプタの生成方法をソースコード付きで解説します。 『http://web-terminal.blogspot.jp/2013/02/zendframework2zf2_24.html』 『取得』『追加』『更新』『削除』はWEBアプリに置いてとても良く使うクエリ処理です!
23:45
2013年2月24日(日)のツイート履歴
ZendFramework2(ZF2)流の『取得』『追加』『更新』『削除』とデータベース接続アダプタの生成
今回は、基本的な処理として『取得』『追加』『更新』『削除』のクエリの作成と、
実際にデータベースへアクセスする為のアダプタの作成方法を
ソースコード付きで解説します。
- ZendFramework2(ZF2)流のデータベース接続用アダプタを作成しよう
- ZendFramework2(ZF2)流の簡単なクエリの作成と実行
- ZendFramework2(ZF2)流のセレクト文を使用してみよう
- ZendFramework2(ZF2)流のインサート文を使用してみよう
- ZendFramework2(ZF2)流にレコードを更新してみよう
- ZendFramework2(ZF2)流にレコードを削除しよう
2013年2月21日(木)のツイート履歴
- iPhone/iPad/iPodアプリ開発において、GPSが使えるか判断する際に[CLLocationManger locationServicesEnabled]にて判定するかと思いますが、端末のGPSがON・OFFかを判定する事は出来ても、アプリ毎の位置情報が許可されているかは判断出来ません
17:19 - ZendFramework2のtableGatewayでselectを行った時、該当するデータが見つからなかったとしても結果セットが返却されてきますが、current()メソッドを起動する事により返却データが得られなかった時はBOOL値のfalseが返却されてきます。
03:29
Categories:
TwitterLog
2013年2月19日(火)のツイート履歴
-
- ★ZendFramework2でログイン処理を行う為のモデルの作成から使い方までをソースコード付きで解説します。セッションを用いて永続的にログイン状態を保持出来ますので、会員制サイト等の構築も可能になりまうす。便利メソッドも実装!!『http://web-terminal.blogspot.jp/2013/02/zendframework2zf2_19.html』
04:54 - ZendFramework2で、global.phpに書いたDB情報にてDB接続アダプタを取得したい時は、サービスマネージャーから取得。$dbAdapter = $this->getServiceLocator()->get('Zend\Db\Adapter\Adapter');
00:37
Categories:
TwitterLog
ZendFramework2(ZF2)でログイン処理を行う認証モデルの作成からセッションでの状態保持
会員サイトを作成する際に必須となるログイン機能をモデルの作成からソースコード付きで解説します。
今回はZendFramework2でのログイン処理をコード付きで解説したいと思います。
認証用のロジックは汎用的に使いまわせる様にモデルとして作成し、
コントローラから認証が必要な際にモデルの機能を呼ぶといった実装内容とします。
モデルの機能と致しましては、
- ログイン処理⇒認証を行い、認証結果をセッションとして保存する
- ログアウト処理⇒セッションに保存された認証情報を破棄する
- ログイン状態の確認⇒セッションの値を確認し、現在ログイン中が否かを取得
- ログインユーザ情報の取得⇒セッションに保存されているユーザ情報を取得する
といった、ログイン関係に良く使うであろうシンプルなものとなっています。
後は状況によって追加して行ければモデルとしての機能も強化されるかと思います。
『ZendFramework2(ZF2)でログイン処理を行う認証モデルの作成からセッションでの状態保持』を続きを読む »
Categories:
ZendFramework2
2013年2月15日(金)のツイート履歴
- ZendFramework2(ZF2)にて別のアクションへリダイレクトさせたい時はtoUrl()メソッドにアクション名を渡し、アクションから返却する事でリダイレクトが可能です。return( $this->redirect()->toUrl( 'index' ) );
05:42
Categories:
TwitterLog
2013年2月14日(木)のツイート履歴
- ★ZendFramework2(ZF2)における各リクエストパラメータの取得メソッドの紹介と、HTTP関係への制御を行うメソッド一覧を纏めました 『http://web-terminal.blogspot.jp/2013/02/zendframework2zf2http.html』 ユーザーからの様々な要求を得るのに必須な技術ですので、しっかりと身につけましょう!
02:54 - ★ZendFramework2(ZF2)におけるページング処理を専用APIの[Paginator]を使用してソースコード付きで解説します。 『http://web-terminal.blogspot.jp/2013/02/zendframework2zf2paginator.html』 ページングはとても良く使う処理かと思いますので、とても簡単に汎用的な実装を紹介します。
00:52
Categories:
TwitterLog
2013年2月13日(水)のツイート履歴
- ZendFramework2でpaginatorから該当ページの情報を抽出した場合、新しいresultSetを作成し、バッファを初期化する事でビュー側でforeachかけれる様になります。その際に、toArrayにて配列にしておくと分かりやすいかも知れません
13:35 - ZendFramework2でGETパラメータを取得するには$this->params()->fromQuery()を使用します。第一引数にパラメータキー、第二引数にはパラメータキーが見つからなかった時のデフォルト値を設定します。
13:33 - ZendFramework2でURL絡みのリクエスト情報を取得するには$this->getRequest()->getUri()を使用します。URLオブジェクトが取得出来るので、getHost()やgetPath()等で分割して取得も出来ます。
13:30 - ZendFramework2でページングをさせるには、TableGatewayから直接Paginatorは作れないので、DbSelect等でadapterを生成してからPaginatorへ渡しましょう。
07:49 - ZendFramework2のパラメータ取得サンプル $this->params()->fromPost('paramname'); // From POST $this->params()->fromQuery('paramname'); // From GET
06:45 - ZendFramework2におけるパラメータの取得方法は5つあります。fromPostはPOST,fromQueryはGET,fromRouteはルート,fromHeaderはヘッダ,fromFilesはアップロードされたファイルを取得します何れも引数にパラメータ名を与えます。
06:44 - 2013年2月11日(月)のツイート履歴: ZendFramework2(ZF2)におけるモデルの作成からデータベースアクセスまでの4ステップ!: レコードを表すモデルとテーブルを表すモデルを作成し、今回はMySql... http://web-terminal.blogspot.jp/2013/02/2013211.html?utm_source=twitterfeed&utm_medium=twitter
00:33
Categories:
TwitterLog
ZendFramework2(ZF2)における各リクエストパラメータの取得と、HTTP関係への制御
今回は、ユーザがWEBアプリに対して送る様々なリクエストをキャッチする方法から
HTTP通信に対するURLの取得やヘッダー情報の操作等を纏めてご紹介いたします
『ZendFramework2(ZF2)における各リクエストパラメータの取得と、HTTP関係への制御』を続きを読む »
Categories:
ZendFramework2
ZendFramework2(ZF2)におけるページング処理[Paginator]
大量のDBデータを一覧表示する時に
同じ画面上に全て表示するのは処理速度的にも
UI的にも良い判断とは言えません。
やはり、見易く、扱いやすい様に
ある程度の数で区切ってページ分けした方が得策です。
今回は、そんなデータベースデータのページング処理について解説したいと思います。
ZendFramework2(ZF2)ではページング処理専用のクラスが用意されていますので、
そのAPIを使用し、ページングを組み立てて行きましょう。
『ZendFramework2(ZF2)におけるページング処理[Paginator]』を続きを読む »
Categories:
ZendFramework2
2013年2月11日(月)のツイート履歴
- ZendFramework2(ZF2)におけるモデルの作成からデータベースアクセスまでの4ステップ!: レコードを表すモデルとテーブルを表すモデルを作成し、今回はMySQLデータベースへアクセスして、データの出し入れ、一覧の... http://web-terminal.blogspot.jp/2013/02/zendframework2zf24.html?utm_source=twitterfeed&utm_medium=twitter
06:04 - iPhone/iPad/iPodアプリ開発において、iOSのバージョンによって処理を変えたい事があります。その場合のiOS判定の為にバージョンを取得する方法です。NSString *osversion = [UIDevice currentDevice].systemVersion;文字列で受けます
06:03 - ★ZendFramework2(ZF2)におけるモデルの作成からデータベースアクセスまでの4ステップをソースコード付きで解説します。 『http://web-terminal.blogspot.jp/2013/02/zendframework2zf24.html』 主にTableGatewayを使ったDB操作です。データベースはMySQLを使用します。
05:02 - 2013年2月10日(日)のツイート履歴: 2013年2月9日(土)のツイート履歴: ZendFramework2(ZF2)でSmarty3を使う方法!!: ZendFramework2(ZF2)ではview... http://web-terminal.blogspot.jp/2013/02/2013210.html?utm_source=twitterfeed&utm_medium=twitter
04:47 - This result is a forward only result set, calling rewind() after moving forward is not supportedの解決策は、データベースから一覧を作成した後にbuffer()メソッドを起動する事で解決
03:53 - ZendFramework2でデータベースから一覧を取得し、列挙する際に This result is a forward only result set, calling rewind() after moving forward is not supportedと出てしまう
03:52
Categories:
TwitterLog
ZendFramework2(ZF2)におけるモデルの作成からデータベースアクセスまでの4ステップ!
レコードを表すモデルとテーブルを表すモデルを作成し、
今回はMySQLデータベースへアクセスして、データの出し入れ、
一覧の取得を行える様にソースコード付きで解説します。
まだまだZendFramework2(ZF2)は日本語の情報が少ないので、
チュートリアル的に参考にして頂けたら幸いです。
『ZendFramework2(ZF2)におけるモデルの作成からデータベースアクセスまでの4ステップ!』を続きを読む »
Categories:
MySQL,
ZendFramework2
2013年2月10日(日)のツイート履歴
- 2013年2月9日(土)のツイート履歴: ZendFramework2(ZF2)でSmarty3を使う方法!!: ZendFramework2(ZF2)ではview機構がかなり強化され、いわゆるphtmlファイルでも... http://web-terminal.blogspot.jp/2013/02/201329.html?utm_source=twitterfeed&utm_medium=twitter
06:38
Categories:
TwitterLog
2013年2月9日(土)のツイート履歴
- ZendFramework2(ZF2)でSmarty3を使う方法!!: ZendFramework2(ZF2)ではview機構がかなり強化され、いわゆるphtmlファイルでも出来る幅が広がりました。しかし、いつも使い慣れてい... http://web-terminal.blogspot.jp/2013/02/zendframework2zf2smarty3.html?utm_source=twitterfeed&utm_medium=twitter
16:38 - ★ソースコード付きで順序だててZendFramework2(ZF2)でSmarty3を使う方法を解説します。『http://web-terminal.blogspot.jp/2013/02/zendframework2zf2smarty3.html』 まだまだ日本語の情報が少ないZendFramework2(ZF2)ですが、普段使い慣れたSmartyを使いたい人向けの記事です
16:14 - 2013年2月8日(金)のツイート履歴: Fatal error: Can't use method return value in write context inは、isset()やempty()に変数以外の引数... http://web-terminal.blogspot.jp/2013/02/201328.html?utm_source=twitterfeed&utm_medium=twitter
11:13
Categories:
TwitterLog
ZendFramework2(ZF2)でSmarty3を使う方法!!
ZendFramework2(ZF2)ではview機構がかなり強化され、
いわゆるphtmlファイルでも出来る幅が広がりました。
しかし、いつも使い慣れているSmartyを使いたいという需要は高い様です。
今回は、そんなZendFramework2(ZF2)でもSmartyを使いたいという方向けに
ZendFramework2(ZF2)用ののSmartyモジュールを使用した
Smartyの導入方法について解説致します。
- Smarty3最新版を準備しよう
- ZendFramework2(ZF2)専用のSmartyモジュールを入手しよう
- ZendFramework2(ZF2)にZendSmarty(ZSmarty)を導入する
- モジュールの追加をアプリに設定しよう
- コントローラ内でのSmarty3の使用方法
Categories:
Smarty,
ZendFramework2
2013年2月8日(金)のツイート履歴
- Fatal error: Can't use method return value in write context inは、isset()やempty()に変数以外の引数を与えた時に発生するエラーです。一度変数へ格納してから与えてあげる事でエラーを取り除く事が出来ます。
16:31 - PHPのisset()やempty()は関数に見えて、実は言語構文です。この二つの言語構文はシンボルテーブルを見に行きますので、必ず変数を渡して上げなくてはいけません。なので、empty( $this->get_parameter("data") ) の様な事は出来ません。
16:30 - Launching simulator process failed [ERROR] : Error: ENOENT, no such file or directory '/Users/(user_name)/.titanium/auth_session.json'
00:40 -
Categories:
TwitterLog
2013年2月7日(木)のツイート履歴
- 忍者ツールズのアクセス解析系サービスを使用すると、タグを埋め込んだサイトをスマホで見ると広告が表示されてしまいます。『http://www.ninja.co.jp/information/all_category/info/4188/』自分で独自の広告を埋め込む事で忍者ツールズ側の広告は遠慮してくれる様ですが、広告設定を強要されるのはマイナス評価です。
23:07
Categories:
TwitterLog
2013年2月5日(火)のツイート履歴
- 2013年2月4日(月)のツイート履歴: 【日本語版】ZendFramework2(ZF2)チュートリアル: 日本語のチュートリアルが無く、スタートアップに苦労したのでソースコード付きの解説をエントリーします。【日本... http://web-terminal.blogspot.jp/2013/02/201324.html?utm_source=twitterfeed&utm_medium=twitter
10:51
Categories:
TwitterLog
2013年2月4日(月)のツイート履歴
- 【日本語版】ZendFramework2(ZF2)チュートリアル: 日本語のチュートリアルが無く、スタートアップに苦労したのでソースコード付きの解説をエントリーします。【日本語版】ZendFramework2(ZF2)チュー... http://web-terminal.blogspot.jp/2013/02/zendframework2zf2.html?utm_source=twitterfeed&utm_medium=twitter
08:52 - ★【日本語版】ZendFramework2(ZF2)チュートリアルを公開しました。『http://web-terminal.blogspot.jp/2013/02/zendframework2zf2.html』日本語の情報がまだまだ少ないので、ZendFramework2の導入チュートリアルをスケルトンプロジェクトを元にソースコード付きで解説しました。
08:28 - ZendFramework2のリクエストパラメータURIのルールは、『ドメイン/モジュール/コントローラ/アクション』が基本となります。また、モジュール名は省略する事も出来ますし、それぞれのデフォルトも設定できます。『ドメイン/キー』で特定画面とする事だって可能です。中々柔軟です
06:55 - 2013年2月3日(日)のツイート履歴: ZendFramework2のスケルトンプロジェクト『ZendSkeletonApplication』のディレクトリ構造とファイル構成: ZendFramework2のスケル... http://web-terminal.blogspot.jp/2013/02/201323.html?utm_source=twitterfeed&utm_medium=twitter
06:01 - ZendFramework2 にて、モジュール名もコントローラ名もアクション名も指定しない、パラメータ無し状態のデフォルト設定を行うには、routesに対してhomeをキーにしてデフォルト設定を配列で渡してあげる事で、初期コントローラやアクション等を指定する事が出来る
04:05 - MySQLのクライアントソフト『HeidiSQL』はリモートでTCP/IP接続やSSHで接続出来る上にとても軽量で使い勝手の良いデスクトップアプリケーションです。 また、コード補完機能が素晴らしく、狙ったコマンドやテーブル名、フィールド名等コントロール+スペースで一発で出てきます
01:58
Categories:
TwitterLog
【日本語版】ZendFramework2(ZF2)チュートリアル
日本語のチュートリアルが無く、スタートアップに苦労したので
ソースコード付きの解説をエントリーします。
【日本語版】ZendFramework2(ZF2)チュートリアルをエントリーポイントからコントローラ、
ビューへの値渡しからモジュールの設定まで、初めに必要な事をソースコード付きで解説します
- 大きく変わったZendFramework2(ZF2)
- スケルトンプロジェクトを用意しよう!
- スケルトンプロジェクトからZendFramework2を使える様にする
- コントローラの定義と実装、ビューへの値渡し
- モジュールの情報を設定しよう
Categories:
ZendFramework2
2013年2月3日(日)のツイート履歴
- ZendFramework2のスケルトンプロジェクト『ZendSkeletonApplication』のディレクトリ構造とファイル構成: ZendFramework2のスケルトンプロジェクトである『ZendSkeletonA... http://web-terminal.blogspot.jp/2013/02/zendframework2zendskeletonapplication.html?utm_source=twitterfeed&utm_medium=twitter
04:23 - ★ZendFramework2のスケルトンプロジェクト『ZendSkeletonApplication』のディレクトリ構造とファイル構成を分かりやすく纏めました『http://web-terminal.blogspot.jp/2013/02/zendframework2zendskeletonapplication.html』スケルトンプロジェクトを見渡して把握したい時に参考にして下さい。
04:22 - ★ディレクトリ構造とファイル構成を簡単にテキストベースで表現する方法を公開しました。『http://web-terminal.blogspot.jp/2013/02/blog-post.html』Windowsコマンドを使った方法ですので、Windowsユーザの方は是非ともご覧下さい。意外と知られていないコマンドでも便利なのが沢山あるんですね!
04:21 - ZendFramework-2.0.6のディレクトリ構造&ファイル構成: ZendFramework-2.0.6のディレクトリ構造&ファイル構成をメモとして載せておきます。全体を把握したり、目的のファイルを探す時に役立てて下... http://web-terminal.blogspot.jp/2013/02/zendframework-206.html?utm_source=twitterfeed&utm_medium=twitter
03:07 - 2013年1月のツイート履歴: ZendFramework2のアクション名は頭文字が小文字です。返却値にViewModel()を当てる事で、view/モジュール名/コントローラ名/アクション名.phtmlが呼ばれる... http://web-terminal.blogspot.jp/2013/02/20131.html?utm_source=twitterfeed&utm_medium=twitter
00:07
Categories:
TwitterLog
ZendFramework2のスケルトンプロジェクト『ZendSkeletonApplication』のディレクトリ構造とファイル構成
ZendFramework2のスケルトンプロジェクトである『ZendSkeletonApplication』の
ディレクトリ構造と、ファイル構成を纏めておきます。
スケルトンプロジェクトのダウンロード先はこちら
https://github.com/zendframework/ZendSkeletonApplication
スケルトンプログラムを改変するのに、全体を見渡したり
目的のファイルを見つけるのに役立てて下さい。
C:. │ .gitignore │ .gitmodules │ composer.json │ composer.phar │ init_autoloader.php │ LICENSE.txt │ README.md │ tree.txt │ ├─config │ │ application.config.php │ │ │ └─autoload │ .gitignore │ global.php │ local.php.dist │ README.md │ ├─data │ └─cache │ .gitignore │ ├─module │ └─Application │ │ Module.php │ │ │ ├─config │ │ module.config.php │ │ │ ├─language │ │ ar_SY.mo │ │ ar_SY.po │ │ cs_CZ.mo │ │ cs_CZ.po │ │ de_DE.mo │ │ de_DE.po │ │ en_US.mo │ │ en_US.po │ │ es_ES.mo │ │ es_ES.po │ │ fr_CA.mo │ │ fr_CA.po │ │ fr_FR.mo │ │ fr_FR.po │ │ it_IT.mo │ │ it_IT.po │ │ ja_JP.mo │ │ ja_JP.po │ │ nb_NO.mo │ │ nb_NO.po │ │ nl_NL.mo │ │ nl_NL.po │ │ pl_PL.mo │ │ pl_PL.po │ │ pt_BR.mo │ │ pt_BR.po │ │ ru_RU.mo │ │ ru_RU.po │ │ tr_TR.mo │ │ tr_TR.po │ │ zh_CN.mo │ │ zh_CN.po │ │ zh_TW.mo │ │ zh_TW.po │ │ │ ├─src │ │ └─Application │ │ └─Controller │ │ IndexController.php │ │ │ └─view │ ├─application │ │ └─index │ │ index.phtml │ │ │ ├─error │ │ 404.phtml │ │ index.phtml │ │ │ └─layout │ layout.phtml │ ├─public │ │ .htaccess │ │ index.php │ │ │ ├─css │ │ bootstrap-responsive.min.css │ │ bootstrap.min.css │ │ style.css │ │ │ ├─images │ │ favicon.ico │ │ zf2-logo.png │ │ │ └─js │ bootstrap.min.js │ html5.js │ jquery.min.js │ └─vendor │ .gitignore │ README.md │ └─ZF2
Categories:
ZendFramework2
テキストで表現するディレクトリ構造とファイル構成!
プログラム関係の技術ブログを運営していると、
フォルダの中身を説明しないとならない時が結構あります。
その度に、ディレクトリ構造とファイル構成をどの様に表現したら良いのか悩んでいた所、
そんな悩みをいっぱつで吹き飛ばすようなコマンドがWindowsにありました。
そのコマンド名はズバリ『treeコマンド』
このコマンドを使えば、下記の様なディレクトリ構造表記をテキストベースで簡単に作成する事が出来ます。
C:. │ .htaccess │ index.php │ ├─common │ │ │ ├─css_main │ │ main.css │ │ │ ├─img_set │ │ logout.png │ │ tigon_logo_text.png │ │ tigon_logo_white_text.png │ │ user.png │ │ yen.png │ │ │ ├─js_framework │ │ │ SmoothScroll.js │ │ │ │ │ └─jquery │ │ jquery-1.6.1.js │ │ │ └─js_functions │ always_osmosis_function.js │ number_functions.js │ utility_functions.js │ ├─css │ design.css │ ├─images ├─js │ index.js │ └─sh SyntaxHighlighter.css
『テキストで表現するディレクトリ構造とファイル構成!』を続きを読む »
Categories:
Windows
ZendFramework-2.0.6のディレクトリ構造&ファイル構成
ZendFramework-2.0.6のディレクトリ構造&ファイル構成をメモとして載せておきます。
全体を把握したり、目的のファイルを探す時に役立てて下さい。
公式からダウンロードしたてのディレクトリ構造ですので、
実際にサイトへ導入する時には使用しないものも含まれています。
C:. │ composer.json │ LICENSE.txt │ README.md │ tree.txt │ ├─bin │ autoload_example.php │ autoload_examples.php │ classmap_generator.php │ createAutoloadTestClasses.php │ pluginmap_generator.php │ ├─demos │ └─Zend │ ├─Feeds │ │ consume-feed.php │ │ │ ├─ProgressBar │ │ animation.gif │ │ JsPush.php │ │ Upload.php │ │ ZendForm.php │ │ │ └─XmlRpc │ xmlrpc-upc-lookup.php │ ├─library │ └─Zend │ ├─Authentication │ │ │ AuthenticationService.php │ │ │ composer.json │ │ │ Result.php │ │ │ │ │ ├─Adapter │ │ │ │ AdapterInterface.php │ │ │ │ DbTable.php │ │ │ │ Digest.php │ │ │ │ Http.php │ │ │ │ Ldap.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ RuntimeException.php │ │ │ │ UnexpectedValueException.php │ │ │ │ │ │ │ └─Http │ │ │ │ FileResolver.php │ │ │ │ ResolverInterface.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ └─Storage │ │ NonPersistent.php │ │ Session.php │ │ StorageInterface.php │ │ │ ├─Barcode │ │ │ Barcode.php │ │ │ composer.json │ │ │ ObjectPluginManager.php │ │ │ RendererPluginManager.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ OutOfRangeException.php │ │ │ RendererCreationException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ ├─Object │ │ │ │ AbstractObject.php │ │ │ │ Codabar.php │ │ │ │ Code128.php │ │ │ │ Code25.php │ │ │ │ Code25interleaved.php │ │ │ │ Code39.php │ │ │ │ Ean13.php │ │ │ │ Ean2.php │ │ │ │ Ean5.php │ │ │ │ Ean8.php │ │ │ │ Error.php │ │ │ │ Identcode.php │ │ │ │ Itf14.php │ │ │ │ Leitcode.php │ │ │ │ ObjectInterface.php │ │ │ │ Planet.php │ │ │ │ Postnet.php │ │ │ │ Royalmail.php │ │ │ │ Upca.php │ │ │ │ Upce.php │ │ │ │ │ │ │ └─Exception │ │ │ BarcodeValidationException.php │ │ │ ExceptionInterface.php │ │ │ ExtensionNotLoadedException.php │ │ │ InvalidArgumentException.php │ │ │ OutOfRangeException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Renderer │ │ │ AbstractRenderer.php │ │ │ Image.php │ │ │ Pdf.php │ │ │ RendererInterface.php │ │ │ Svg.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ OutOfRangeException.php │ │ RuntimeException.php │ │ UnexpectedValueException.php │ │ │ ├─Cache │ │ │ composer.json │ │ │ PatternFactory.php │ │ │ PatternPluginManager.php │ │ │ StorageFactory.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ ExtensionNotLoadedException.php │ │ │ InvalidArgumentException.php │ │ │ LogicException.php │ │ │ MissingDependencyException.php │ │ │ MissingKeyException.php │ │ │ OutOfSpaceException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ UnsupportedMethodCallException.php │ │ │ │ │ ├─Pattern │ │ │ AbstractPattern.php │ │ │ CallbackCache.php │ │ │ CaptureCache.php │ │ │ ClassCache.php │ │ │ ObjectCache.php │ │ │ OutputCache.php │ │ │ PatternInterface.php │ │ │ PatternOptions.php │ │ │ │ │ └─Storage │ │ │ AdapterPluginManager.php │ │ │ AvailableSpaceCapableInterface.php │ │ │ Capabilities.php │ │ │ ClearByNamespaceInterface.php │ │ │ ClearByPrefixInterface.php │ │ │ ClearExpiredInterface.php │ │ │ Event.php │ │ │ ExceptionEvent.php │ │ │ FlushableInterface.php │ │ │ IterableInterface.php │ │ │ IteratorInterface.php │ │ │ OptimizableInterface.php │ │ │ PluginManager.php │ │ │ PostEvent.php │ │ │ StorageInterface.php │ │ │ TaggableInterface.php │ │ │ TotalSpaceCapableInterface.php │ │ │ │ │ ├─Adapter │ │ │ AbstractAdapter.php │ │ │ AbstractZendServer.php │ │ │ AdapterOptions.php │ │ │ Apc.php │ │ │ ApcIterator.php │ │ │ ApcOptions.php │ │ │ Dba.php │ │ │ DbaIterator.php │ │ │ DbaOptions.php │ │ │ Filesystem.php │ │ │ FilesystemIterator.php │ │ │ FilesystemOptions.php │ │ │ KeyListIterator.php │ │ │ Memcached.php │ │ │ MemcachedOptions.php │ │ │ Memory.php │ │ │ MemoryOptions.php │ │ │ WinCache.php │ │ │ WinCacheOptions.php │ │ │ ZendServerDisk.php │ │ │ ZendServerShm.php │ │ │ │ │ └─Plugin │ │ AbstractPlugin.php │ │ ClearExpiredByFactor.php │ │ ExceptionHandler.php │ │ IgnoreUserAbort.php │ │ OptimizeByFactor.php │ │ PluginInterface.php │ │ PluginOptions.php │ │ Serializer.php │ │ │ ├─Captcha │ │ │ AbstractAdapter.php │ │ │ AbstractWord.php │ │ │ AdapterInterface.php │ │ │ composer.json │ │ │ Dumb.php │ │ │ Factory.php │ │ │ Figlet.php │ │ │ Image.php │ │ │ ReCaptcha.php │ │ │ │ │ └─Exception │ │ DomainException.php │ │ ExceptionInterface.php │ │ ExtensionNotLoadedException.php │ │ ImageNotLoadableException.php │ │ InvalidArgumentException.php │ │ NoFontProvidedException.php │ │ RuntimeException.php │ │ │ ├─Code │ │ │ composer.json │ │ │ NameInformation.php │ │ │ │ │ ├─Annotation │ │ │ │ AnnotationCollection.php │ │ │ │ AnnotationInterface.php │ │ │ │ AnnotationManager.php │ │ │ │ │ │ │ └─Parser │ │ │ DoctrineAnnotationParser.php │ │ │ GenericAnnotationParser.php │ │ │ ParserInterface.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Generator │ │ │ │ AbstractGenerator.php │ │ │ │ AbstractMemberGenerator.php │ │ │ │ BodyGenerator.php │ │ │ │ ClassGenerator.php │ │ │ │ DocBlockGenerator.php │ │ │ │ FileGenerator.php │ │ │ │ FileGeneratorRegistry.php │ │ │ │ GeneratorInterface.php │ │ │ │ MethodGenerator.php │ │ │ │ ParameterGenerator.php │ │ │ │ PropertyGenerator.php │ │ │ │ PropertyValueGenerator.php │ │ │ │ ValueGenerator.php │ │ │ │ │ │ │ ├─DocBlock │ │ │ │ │ Tag.php │ │ │ │ │ │ │ │ │ └─Tag │ │ │ │ LicenseTag.php │ │ │ │ ParamTag.php │ │ │ │ ReturnTag.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Reflection │ │ │ │ ClassReflection.php │ │ │ │ DocBlockReflection.php │ │ │ │ FileReflection.php │ │ │ │ FunctionReflection.php │ │ │ │ MethodReflection.php │ │ │ │ ParameterReflection.php │ │ │ │ PropertyReflection.php │ │ │ │ ReflectionInterface.php │ │ │ │ │ │ │ ├─DocBlock │ │ │ │ │ TagManager.php │ │ │ │ │ │ │ │ │ └─Tag │ │ │ │ GenericTag.php │ │ │ │ MethodTag.php │ │ │ │ ParamTag.php │ │ │ │ PropertyTag.php │ │ │ │ ReturnTag.php │ │ │ │ TagInterface.php │ │ │ │ │ │ │ └─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Scanner │ │ AggregateDirectoryScanner.php │ │ AnnotationScanner.php │ │ CachingFileScanner.php │ │ ClassScanner.php │ │ DerivedClassScanner.php │ │ DirectoryScanner.php │ │ DocBlockScanner.php │ │ FileScanner.php │ │ FunctionScanner.php │ │ MethodScanner.php │ │ ParameterScanner.php │ │ ScannerInterface.php │ │ TokenArrayScanner.php │ │ Util.php │ │ ValueScanner.php │ │ │ ├─Config │ │ │ composer.json │ │ │ Config.php │ │ │ Factory.php │ │ │ ReaderPluginManager.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Processor │ │ │ Constant.php │ │ │ Filter.php │ │ │ ProcessorInterface.php │ │ │ Queue.php │ │ │ Token.php │ │ │ Translator.php │ │ │ │ │ ├─Reader │ │ │ Ini.php │ │ │ Json.php │ │ │ ReaderInterface.php │ │ │ Xml.php │ │ │ Yaml.php │ │ │ │ │ └─Writer │ │ AbstractWriter.php │ │ Ini.php │ │ Json.php │ │ PhpArray.php │ │ WriterInterface.php │ │ Xml.php │ │ Yaml.php │ │ │ ├─Console │ │ │ ColorInterface.php │ │ │ composer.json │ │ │ Console.php │ │ │ Getopt.php │ │ │ Request.php │ │ │ Response.php │ │ │ │ │ ├─Adapter │ │ │ AbstractAdapter.php │ │ │ AdapterInterface.php │ │ │ Posix.php │ │ │ Virtual.php │ │ │ Windows.php │ │ │ WindowsAnsicon.php │ │ │ │ │ ├─Charset │ │ │ Ascii.php │ │ │ AsciiExtended.php │ │ │ CharsetInterface.php │ │ │ DECSG.php │ │ │ Utf8.php │ │ │ Utf8Heavy.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Prompt │ │ AbstractPrompt.php │ │ Char.php │ │ Confirm.php │ │ Line.php │ │ Number.php │ │ PromptInterface.php │ │ Select.php │ │ │ ├─Crypt │ │ │ BlockCipher.php │ │ │ composer.json │ │ │ Hash.php │ │ │ Hmac.php │ │ │ SymmetricPluginManager.php │ │ │ Utils.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Key │ │ │ └─Derivation │ │ │ │ Pbkdf2.php │ │ │ │ SaltedS2k.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Password │ │ │ │ Bcrypt.php │ │ │ │ PasswordInterface.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─PublicKey │ │ │ │ DiffieHellman.php │ │ │ │ Rsa.php │ │ │ │ RsaOptions.php │ │ │ │ │ │ │ └─Rsa │ │ │ │ AbstractKey.php │ │ │ │ PrivateKey.php │ │ │ │ PublicKey.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Symmetric │ │ │ Mcrypt.php │ │ │ PaddingPluginManager.php │ │ │ SymmetricInterface.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Padding │ │ PaddingInterface.php │ │ Pkcs7.php │ │ │ ├─Db │ │ │ composer.json │ │ │ │ │ ├─Adapter │ │ │ │ Adapter.php │ │ │ │ AdapterAwareInterface.php │ │ │ │ AdapterServiceFactory.php │ │ │ │ ParameterContainer.php │ │ │ │ StatementContainer.php │ │ │ │ StatementContainerInterface.php │ │ │ │ │ │ │ ├─Driver │ │ │ │ │ ConnectionInterface.php │ │ │ │ │ DriverInterface.php │ │ │ │ │ ResultInterface.php │ │ │ │ │ StatementInterface.php │ │ │ │ │ │ │ │ │ ├─Feature │ │ │ │ │ AbstractFeature.php │ │ │ │ │ DriverFeatureInterface.php │ │ │ │ │ │ │ │ │ ├─Mysqli │ │ │ │ │ Connection.php │ │ │ │ │ Mysqli.php │ │ │ │ │ Result.php │ │ │ │ │ Statement.php │ │ │ │ │ │ │ │ │ ├─Pdo │ │ │ │ │ │ Connection.php │ │ │ │ │ │ Pdo.php │ │ │ │ │ │ Result.php │ │ │ │ │ │ Statement.php │ │ │ │ │ │ │ │ │ │ │ └─Feature │ │ │ │ │ SqliteRowCounter.php │ │ │ │ │ │ │ │ │ ├─Pgsql │ │ │ │ │ Connection.php │ │ │ │ │ Pgsql.php │ │ │ │ │ Result.php │ │ │ │ │ Statement.php │ │ │ │ │ │ │ │ │ └─Sqlsrv │ │ │ │ │ Connection.php │ │ │ │ │ Result.php │ │ │ │ │ Sqlsrv.php │ │ │ │ │ Statement.php │ │ │ │ │ │ │ │ │ └─Exception │ │ │ │ ErrorException.php │ │ │ │ ExceptionInterface.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ ErrorException.php │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ InvalidConnectionParametersException.php │ │ │ │ InvalidQueryException.php │ │ │ │ RuntimeException.php │ │ │ │ UnexpectedValueException.php │ │ │ │ │ │ │ └─Platform │ │ │ Mysql.php │ │ │ PlatformInterface.php │ │ │ Postgresql.php │ │ │ Sql92.php │ │ │ Sqlite.php │ │ │ SqlServer.php │ │ │ │ │ ├─Exception │ │ │ ErrorException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ ├─Metadata │ │ │ │ Metadata.php │ │ │ │ MetadataInterface.php │ │ │ │ │ │ │ ├─Object │ │ │ │ AbstractTableObject.php │ │ │ │ ColumnObject.php │ │ │ │ ConstraintObject.php │ │ │ │ TableObject.php │ │ │ │ TriggerObject.php │ │ │ │ ViewObject.php │ │ │ │ │ │ │ └─Source │ │ │ AbstractSource.php │ │ │ MysqlMetadata.php │ │ │ PostgresqlMetadata.php │ │ │ SqliteMetadata.php │ │ │ SqlServerMetadata.php │ │ │ │ │ ├─ResultSet │ │ │ │ AbstractResultSet.php │ │ │ │ HydratingResultSet.php │ │ │ │ ResultSet.php │ │ │ │ ResultSetInterface.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─RowGateway │ │ │ │ AbstractRowGateway.php │ │ │ │ RowGateway.php │ │ │ │ RowGatewayInterface.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ RuntimeException.php │ │ │ │ │ │ │ └─Feature │ │ │ AbstractFeature.php │ │ │ FeatureSet.php │ │ │ │ │ ├─Sql │ │ │ │ AbstractSql.php │ │ │ │ Delete.php │ │ │ │ Expression.php │ │ │ │ ExpressionInterface.php │ │ │ │ Having.php │ │ │ │ Insert.php │ │ │ │ PreparableSqlInterface.php │ │ │ │ Select.php │ │ │ │ Sql.php │ │ │ │ SqlInterface.php │ │ │ │ TableIdentifier.php │ │ │ │ Update.php │ │ │ │ Where.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ RuntimeException.php │ │ │ │ │ │ │ ├─Platform │ │ │ │ │ AbstractPlatform.php │ │ │ │ │ Platform.php │ │ │ │ │ PlatformDecoratorInterface.php │ │ │ │ │ │ │ │ │ ├─Mysql │ │ │ │ │ Mysql.php │ │ │ │ │ SelectDecorator.php │ │ │ │ │ │ │ │ │ └─SqlServer │ │ │ │ SelectDecorator.php │ │ │ │ SqlServer.php │ │ │ │ │ │ │ └─Predicate │ │ │ Between.php │ │ │ Expression.php │ │ │ In.php │ │ │ IsNotNull.php │ │ │ IsNull.php │ │ │ Like.php │ │ │ Operator.php │ │ │ Predicate.php │ │ │ PredicateInterface.php │ │ │ PredicateSet.php │ │ │ │ │ └─TableGateway │ │ │ AbstractTableGateway.php │ │ │ TableGateway.php │ │ │ TableGatewayInterface.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Feature │ │ │ AbstractFeature.php │ │ │ EventFeature.php │ │ │ FeatureSet.php │ │ │ GlobalAdapterFeature.php │ │ │ MasterSlaveFeature.php │ │ │ MetadataFeature.php │ │ │ RowGatewayFeature.php │ │ │ │ │ └─EventFeature │ │ TableGatewayEvent.php │ │ │ ├─Debug │ │ composer.json │ │ Debug.php │ │ │ ├─Di │ │ │ composer.json │ │ │ Config.php │ │ │ DefinitionList.php │ │ │ DependencyInjectionInterface.php │ │ │ Di.php │ │ │ InstanceManager.php │ │ │ LocatorInterface.php │ │ │ ServiceLocator.php │ │ │ ServiceLocatorInterface.php │ │ │ TODO │ │ │ │ │ ├─Definition │ │ │ │ ArrayDefinition.php │ │ │ │ BuilderDefinition.php │ │ │ │ ClassDefinition.php │ │ │ │ CompilerDefinition.php │ │ │ │ DefinitionInterface.php │ │ │ │ IntrospectionStrategy.php │ │ │ │ PartialMarker.php │ │ │ │ RuntimeDefinition.php │ │ │ │ │ │ │ ├─Annotation │ │ │ │ Inject.php │ │ │ │ Instantiator.php │ │ │ │ │ │ │ └─Builder │ │ │ InjectionMethod.php │ │ │ PhpClass.php │ │ │ │ │ ├─Display │ │ │ Console.php │ │ │ │ │ ├─Exception │ │ │ CircularDependencyException.php │ │ │ ClassNotFoundException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ InvalidCallbackException.php │ │ │ InvalidParamNameException.php │ │ │ InvalidPositionException.php │ │ │ MissingPropertyException.php │ │ │ RuntimeException.php │ │ │ UndefinedReferenceException.php │ │ │ │ │ └─ServiceLocator │ │ DependencyInjectorProxy.php │ │ Generator.php │ │ GeneratorInstance.php │ │ │ ├─Dom │ │ │ composer.json │ │ │ Css2Xpath.php │ │ │ NodeList.php │ │ │ Query.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ RuntimeException.php │ │ │ ├─Escaper │ │ │ composer.json │ │ │ Escaper.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─EventManager │ │ │ composer.json │ │ │ Event.php │ │ │ EventInterface.php │ │ │ EventManager.php │ │ │ EventManagerAwareInterface.php │ │ │ EventManagerInterface.php │ │ │ EventsCapableInterface.php │ │ │ FilterChain.php │ │ │ GlobalEventManager.php │ │ │ ListenerAggregateInterface.php │ │ │ ProvidesEvents.php │ │ │ ResponseCollection.php │ │ │ SharedEventManager.php │ │ │ SharedEventManagerAwareInterface.php │ │ │ SharedEventManagerInterface.php │ │ │ StaticEventManager.php │ │ │ │ │ ├─Exception │ │ │ DomainException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ InvalidCallbackException.php │ │ │ │ │ └─Filter │ │ FilterInterface.php │ │ FilterIterator.php │ │ │ ├─Feed │ │ │ composer.json │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─PubSubHubbub │ │ │ │ AbstractCallback.php │ │ │ │ CallbackInterface.php │ │ │ │ HttpResponse.php │ │ │ │ Publisher.php │ │ │ │ PubSubHubbub.php │ │ │ │ Subscriber.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ RuntimeException.php │ │ │ │ │ │ │ ├─Model │ │ │ │ AbstractModel.php │ │ │ │ Subscription.php │ │ │ │ SubscriptionPersistenceInterface.php │ │ │ │ │ │ │ └─Subscriber │ │ │ Callback.php │ │ │ │ │ ├─Reader │ │ │ │ AbstractEntry.php │ │ │ │ AbstractFeed.php │ │ │ │ Collection.php │ │ │ │ ExtensionManager.php │ │ │ │ FeedSet.php │ │ │ │ Reader.php │ │ │ │ │ │ │ ├─Collection │ │ │ │ AbstractCollection.php │ │ │ │ Author.php │ │ │ │ Category.php │ │ │ │ Collection.php │ │ │ │ │ │ │ ├─Entry │ │ │ │ AbstractEntry.php │ │ │ │ Atom.php │ │ │ │ EntryInterface.php │ │ │ │ Rss.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ BadMethodCallException.php │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ RuntimeException.php │ │ │ │ │ │ │ ├─Extension │ │ │ │ │ AbstractEntry.php │ │ │ │ │ AbstractFeed.php │ │ │ │ │ │ │ │ │ ├─Atom │ │ │ │ │ Entry.php │ │ │ │ │ Feed.php │ │ │ │ │ │ │ │ │ ├─Content │ │ │ │ │ Entry.php │ │ │ │ │ │ │ │ │ ├─CreativeCommons │ │ │ │ │ Entry.php │ │ │ │ │ Feed.php │ │ │ │ │ │ │ │ │ ├─DublinCore │ │ │ │ │ Entry.php │ │ │ │ │ Feed.php │ │ │ │ │ │ │ │ │ ├─Podcast │ │ │ │ │ Entry.php │ │ │ │ │ Feed.php │ │ │ │ │ │ │ │ │ ├─Slash │ │ │ │ │ Entry.php │ │ │ │ │ │ │ │ │ ├─Syndication │ │ │ │ │ Feed.php │ │ │ │ │ │ │ │ │ ├─Thread │ │ │ │ │ Entry.php │ │ │ │ │ │ │ │ │ └─WellFormedWeb │ │ │ │ Entry.php │ │ │ │ │ │ │ └─Feed │ │ │ │ AbstractFeed.php │ │ │ │ Atom.php │ │ │ │ FeedInterface.php │ │ │ │ Rss.php │ │ │ │ │ │ │ └─Atom │ │ │ Source.php │ │ │ │ │ └─Writer │ │ │ AbstractFeed.php │ │ │ Deleted.php │ │ │ Entry.php │ │ │ ExtensionManager.php │ │ │ Feed.php │ │ │ FeedFactory.php │ │ │ Source.php │ │ │ Writer.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Extension │ │ │ │ AbstractRenderer.php │ │ │ │ RendererInterface.php │ │ │ │ │ │ │ ├─Atom │ │ │ │ └─Renderer │ │ │ │ Feed.php │ │ │ │ │ │ │ ├─Content │ │ │ │ └─Renderer │ │ │ │ Entry.php │ │ │ │ │ │ │ ├─DublinCore │ │ │ │ └─Renderer │ │ │ │ Entry.php │ │ │ │ Feed.php │ │ │ │ │ │ │ ├─ITunes │ │ │ │ │ Entry.php │ │ │ │ │ Feed.php │ │ │ │ │ │ │ │ │ └─Renderer │ │ │ │ Entry.php │ │ │ │ Feed.php │ │ │ │ │ │ │ ├─Slash │ │ │ │ └─Renderer │ │ │ │ Entry.php │ │ │ │ │ │ │ ├─Threading │ │ │ │ └─Renderer │ │ │ │ Entry.php │ │ │ │ │ │ │ └─WellFormedWeb │ │ │ └─Renderer │ │ │ Entry.php │ │ │ │ │ └─Renderer │ │ │ AbstractRenderer.php │ │ │ RendererInterface.php │ │ │ │ │ ├─Entry │ │ │ │ Atom.php │ │ │ │ AtomDeleted.php │ │ │ │ Rss.php │ │ │ │ │ │ │ └─Atom │ │ │ Deleted.php │ │ │ │ │ └─Feed │ │ │ AbstractAtom.php │ │ │ Atom.php │ │ │ AtomSource.php │ │ │ Rss.php │ │ │ │ │ └─Atom │ │ AbstractAtom.php │ │ Source.php │ │ │ ├─File │ │ │ ClassFileLocator.php │ │ │ composer.json │ │ │ PhpClassFile.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Transfer │ │ │ Transfer.php │ │ │ │ │ ├─Adapter │ │ │ AbstractAdapter.php │ │ │ FilterPluginManager.php │ │ │ Http.php │ │ │ ValidatorPluginManager.php │ │ │ │ │ └─Exception │ │ BadMethodCallException.php │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ PhpEnvironmentException.php │ │ RuntimeException.php │ │ │ ├─Filter │ │ │ AbstractFilter.php │ │ │ AbstractUnicode.php │ │ │ BaseName.php │ │ │ Boolean.php │ │ │ Callback.php │ │ │ composer.json │ │ │ Compress.php │ │ │ Decompress.php │ │ │ Decrypt.php │ │ │ Digits.php │ │ │ Dir.php │ │ │ Encrypt.php │ │ │ FilterChain.php │ │ │ FilterInterface.php │ │ │ FilterPluginManager.php │ │ │ HtmlEntities.php │ │ │ Inflector.php │ │ │ Int.php │ │ │ Null.php │ │ │ PregReplace.php │ │ │ RealPath.php │ │ │ StaticFilter.php │ │ │ StringToLower.php │ │ │ StringToUpper.php │ │ │ StringTrim.php │ │ │ StripNewlines.php │ │ │ StripTags.php │ │ │ │ │ ├─Compress │ │ │ AbstractCompressionAlgorithm.php │ │ │ Bz2.php │ │ │ CompressionAlgorithmInterface.php │ │ │ Gz.php │ │ │ Lzf.php │ │ │ Rar.php │ │ │ Tar.php │ │ │ Zip.php │ │ │ │ │ ├─Encrypt │ │ │ BlockCipher.php │ │ │ EncryptionAlgorithmInterface.php │ │ │ Openssl.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ DomainException.php │ │ │ ExceptionInterface.php │ │ │ ExtensionNotLoadedException.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─File │ │ │ Decrypt.php │ │ │ Encrypt.php │ │ │ LowerCase.php │ │ │ Rename.php │ │ │ UpperCase.php │ │ │ │ │ └─Word │ │ AbstractSeparator.php │ │ CamelCaseToDash.php │ │ CamelCaseToSeparator.php │ │ CamelCaseToUnderscore.php │ │ DashToCamelCase.php │ │ DashToSeparator.php │ │ DashToUnderscore.php │ │ SeparatorToCamelCase.php │ │ SeparatorToDash.php │ │ SeparatorToSeparator.php │ │ UnderscoreToCamelCase.php │ │ UnderscoreToDash.php │ │ UnderscoreToSeparator.php │ │ │ ├─Form │ │ │ composer.json │ │ │ Element.php │ │ │ ElementInterface.php │ │ │ ElementPrepareAwareInterface.php │ │ │ Factory.php │ │ │ Fieldset.php │ │ │ FieldsetInterface.php │ │ │ FieldsetPrepareAwareInterface.php │ │ │ Form.php │ │ │ FormFactoryAwareInterface.php │ │ │ FormInterface.php │ │ │ │ │ ├─Annotation │ │ │ AbstractAnnotationsListener.php │ │ │ AbstractArrayAnnotation.php │ │ │ AbstractStringAnnotation.php │ │ │ AllowEmpty.php │ │ │ AnnotationBuilder.php │ │ │ Attributes.php │ │ │ ComposedObject.php │ │ │ ElementAnnotationsListener.php │ │ │ ErrorMessage.php │ │ │ Exclude.php │ │ │ Filter.php │ │ │ Flags.php │ │ │ FormAnnotationsListener.php │ │ │ Hydrator.php │ │ │ Input.php │ │ │ InputFilter.php │ │ │ Name.php │ │ │ Object.php │ │ │ Options.php │ │ │ Required.php │ │ │ Type.php │ │ │ ValidationGroup.php │ │ │ Validator.php │ │ │ │ │ ├─Element │ │ │ Button.php │ │ │ Captcha.php │ │ │ Checkbox.php │ │ │ Collection.php │ │ │ Color.php │ │ │ Csrf.php │ │ │ Date.php │ │ │ DateTime.php │ │ │ DateTimeLocal.php │ │ │ Email.php │ │ │ File.php │ │ │ Hidden.php │ │ │ Image.php │ │ │ Month.php │ │ │ MultiCheckbox.php │ │ │ Number.php │ │ │ Password.php │ │ │ Radio.php │ │ │ Range.php │ │ │ Select.php │ │ │ Submit.php │ │ │ Text.php │ │ │ Textarea.php │ │ │ Time.php │ │ │ Url.php │ │ │ Week.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ DomainException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ └─View │ │ │ HelperConfig.php │ │ │ │ │ └─Helper │ │ │ AbstractHelper.php │ │ │ Form.php │ │ │ FormButton.php │ │ │ FormCaptcha.php │ │ │ FormCheckbox.php │ │ │ FormCollection.php │ │ │ FormColor.php │ │ │ FormDate.php │ │ │ FormDateTime.php │ │ │ FormDateTimeLocal.php │ │ │ FormElement.php │ │ │ FormElementErrors.php │ │ │ FormEmail.php │ │ │ FormFile.php │ │ │ FormHidden.php │ │ │ FormImage.php │ │ │ FormInput.php │ │ │ FormLabel.php │ │ │ FormMonth.php │ │ │ FormMultiCheckbox.php │ │ │ FormNumber.php │ │ │ FormPassword.php │ │ │ FormRadio.php │ │ │ FormRange.php │ │ │ FormReset.php │ │ │ FormRow.php │ │ │ FormSearch.php │ │ │ FormSelect.php │ │ │ FormSubmit.php │ │ │ FormTel.php │ │ │ FormText.php │ │ │ FormTextarea.php │ │ │ FormTime.php │ │ │ FormUrl.php │ │ │ FormWeek.php │ │ │ │ │ └─Captcha │ │ AbstractWord.php │ │ Dumb.php │ │ Figlet.php │ │ Image.php │ │ ReCaptcha.php │ │ │ ├─Http │ │ │ AbstractMessage.php │ │ │ Client.php │ │ │ ClientStatic.php │ │ │ composer.json │ │ │ Cookies.php │ │ │ HeaderLoader.php │ │ │ Headers.php │ │ │ Request.php │ │ │ Response.php │ │ │ │ │ ├─Client │ │ │ │ Cookies.php │ │ │ │ │ │ │ ├─Adapter │ │ │ │ │ AdapterInterface.php │ │ │ │ │ Curl.php │ │ │ │ │ Proxy.php │ │ │ │ │ Socket.php │ │ │ │ │ StreamInterface.php │ │ │ │ │ Test.php │ │ │ │ │ │ │ │ │ └─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InitializationException.php │ │ │ │ InvalidArgumentException.php │ │ │ │ OutOfRangeException.php │ │ │ │ RuntimeException.php │ │ │ │ TimeoutException.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ OutOfRangeException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ OutOfRangeException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Header │ │ │ │ AbstractAccept.php │ │ │ │ AbstractDate.php │ │ │ │ AbstractLocation.php │ │ │ │ Accept.php │ │ │ │ AcceptCharset.php │ │ │ │ AcceptEncoding.php │ │ │ │ AcceptLanguage.php │ │ │ │ AcceptRanges.php │ │ │ │ Age.php │ │ │ │ Allow.php │ │ │ │ AuthenticationInfo.php │ │ │ │ Authorization.php │ │ │ │ CacheControl.php │ │ │ │ Connection.php │ │ │ │ ContentDisposition.php │ │ │ │ ContentEncoding.php │ │ │ │ ContentLanguage.php │ │ │ │ ContentLength.php │ │ │ │ ContentLocation.php │ │ │ │ ContentMD5.php │ │ │ │ ContentRange.php │ │ │ │ ContentType.php │ │ │ │ Cookie.php │ │ │ │ Date.php │ │ │ │ Etag.php │ │ │ │ Expect.php │ │ │ │ Expires.php │ │ │ │ From.php │ │ │ │ GenericHeader.php │ │ │ │ GenericMultiHeader.php │ │ │ │ HeaderInterface.php │ │ │ │ Host.php │ │ │ │ IfMatch.php │ │ │ │ IfModifiedSince.php │ │ │ │ IfNoneMatch.php │ │ │ │ IfRange.php │ │ │ │ IfUnmodifiedSince.php │ │ │ │ KeepAlive.php │ │ │ │ LastModified.php │ │ │ │ Location.php │ │ │ │ MaxForwards.php │ │ │ │ MultipleHeaderInterface.php │ │ │ │ Pragma.php │ │ │ │ ProxyAuthenticate.php │ │ │ │ ProxyAuthorization.php │ │ │ │ Range.php │ │ │ │ Referer.php │ │ │ │ Refresh.php │ │ │ │ RetryAfter.php │ │ │ │ Server.php │ │ │ │ SetCookie.php │ │ │ │ TE.php │ │ │ │ Trailer.php │ │ │ │ TransferEncoding.php │ │ │ │ Upgrade.php │ │ │ │ UserAgent.php │ │ │ │ Vary.php │ │ │ │ Via.php │ │ │ │ Warning.php │ │ │ │ WWWAuthenticate.php │ │ │ │ │ │ │ ├─Accept │ │ │ │ └─FieldValuePart │ │ │ │ AbstractFieldValuePart.php │ │ │ │ AcceptFieldValuePart.php │ │ │ │ CharsetFieldValuePart.php │ │ │ │ EncodingFieldValuePart.php │ │ │ │ LanguageFieldValuePart.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─PhpEnvironment │ │ │ RemoteAddress.php │ │ │ Request.php │ │ │ Response.php │ │ │ │ │ └─Response │ │ Stream.php │ │ │ ├─I18n │ │ │ composer.json │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ OutOfBoundsException.php │ │ │ ParseException.php │ │ │ RangeException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Filter │ │ │ AbstractLocale.php │ │ │ Alnum.php │ │ │ Alpha.php │ │ │ NumberFormat.php │ │ │ │ │ ├─Translator │ │ │ │ LoaderPluginManager.php │ │ │ │ TextDomain.php │ │ │ │ Translator.php │ │ │ │ TranslatorAwareInterface.php │ │ │ │ TranslatorServiceFactory.php │ │ │ │ │ │ │ ├─Loader │ │ │ │ FileLoaderInterface.php │ │ │ │ Gettext.php │ │ │ │ PhpArray.php │ │ │ │ RemoteLoaderInterface.php │ │ │ │ │ │ │ └─Plural │ │ │ Parser.php │ │ │ Rule.php │ │ │ Symbol.php │ │ │ │ │ ├─Validator │ │ │ Alnum.php │ │ │ Alpha.php │ │ │ Float.php │ │ │ Int.php │ │ │ PostCode.php │ │ │ │ │ └─View │ │ │ HelperConfig.php │ │ │ │ │ └─Helper │ │ AbstractTranslatorHelper.php │ │ CurrencyFormat.php │ │ DateFormat.php │ │ NumberFormat.php │ │ Translate.php │ │ TranslatePlural.php │ │ │ ├─InputFilter │ │ │ BaseInputFilter.php │ │ │ composer.json │ │ │ Factory.php │ │ │ Input.php │ │ │ InputFilter.php │ │ │ InputFilterAwareInterface.php │ │ │ InputFilterInterface.php │ │ │ InputFilterProviderInterface.php │ │ │ InputInterface.php │ │ │ InputProviderInterface.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─Json │ │ │ composer.json │ │ │ Decoder.php │ │ │ Encoder.php │ │ │ Expr.php │ │ │ Json.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RecursionException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Server │ │ │ Cache.php │ │ │ Client.php │ │ │ Error.php │ │ │ Request.php │ │ │ Response.php │ │ │ Server.php │ │ │ Smd.php │ │ │ │ │ ├─Exception │ │ │ ErrorException.php │ │ │ ExceptionInterface.php │ │ │ HttpException.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Request │ │ │ Http.php │ │ │ │ │ ├─Response │ │ │ Http.php │ │ │ │ │ └─Smd │ │ Service.php │ │ │ ├─Ldap │ │ │ Attribute.php │ │ │ Collection.php │ │ │ composer.json │ │ │ Dn.php │ │ │ Filter.php │ │ │ Ldap.php │ │ │ Node.php │ │ │ │ │ ├─Collection │ │ │ DefaultIterator.php │ │ │ │ │ ├─Converter │ │ │ │ Converter.php │ │ │ │ │ │ │ └─Exception │ │ │ ConverterException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ LdapException.php │ │ │ │ │ ├─Filter │ │ │ │ AbstractFilter.php │ │ │ │ AbstractLogicalFilter.php │ │ │ │ AndFilter.php │ │ │ │ MaskFilter.php │ │ │ │ NotFilter.php │ │ │ │ OrFilter.php │ │ │ │ StringFilter.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ FilterException.php │ │ │ │ │ ├─Ldif │ │ │ Encoder.php │ │ │ │ │ └─Node │ │ │ AbstractNode.php │ │ │ ChildrenIterator.php │ │ │ Collection.php │ │ │ RootDse.php │ │ │ Schema.php │ │ │ │ │ ├─RootDse │ │ │ ActiveDirectory.php │ │ │ eDirectory.php │ │ │ OpenLdap.php │ │ │ │ │ └─Schema │ │ │ AbstractItem.php │ │ │ ActiveDirectory.php │ │ │ OpenLdap.php │ │ │ │ │ ├─AttributeType │ │ │ ActiveDirectory.php │ │ │ AttributeTypeInterface.php │ │ │ OpenLdap.php │ │ │ │ │ └─ObjectClass │ │ ActiveDirectory.php │ │ ObjectClassInterface.php │ │ OpenLdap.php │ │ │ ├─Loader │ │ │ AutoloaderFactory.php │ │ │ ClassMapAutoloader.php │ │ │ composer.json │ │ │ ModuleAutoloader.php │ │ │ PluginClassLoader.php │ │ │ PluginClassLocator.php │ │ │ ShortNameLocator.php │ │ │ SplAutoloader.php │ │ │ StandardAutoloader.php │ │ │ │ │ └─Exception │ │ BadMethodCallException.php │ │ DomainException.php │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ InvalidPathException.php │ │ MissingResourceNamespaceException.php │ │ PluginLoaderException.php │ │ RuntimeException.php │ │ SecurityException.php │ │ │ ├─Log │ │ │ composer.json │ │ │ Logger.php │ │ │ LoggerAwareInterface.php │ │ │ LoggerInterface.php │ │ │ WriterPluginManager.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Filter │ │ │ FilterInterface.php │ │ │ Mock.php │ │ │ Priority.php │ │ │ Regex.php │ │ │ SuppressFilter.php │ │ │ Validator.php │ │ │ │ │ ├─Formatter │ │ │ Base.php │ │ │ Db.php │ │ │ ErrorHandler.php │ │ │ ExceptionHandler.php │ │ │ FirePhp.php │ │ │ FormatterInterface.php │ │ │ Simple.php │ │ │ Xml.php │ │ │ │ │ └─Writer │ │ │ AbstractWriter.php │ │ │ Db.php │ │ │ FilterPluginManager.php │ │ │ FirePhp.php │ │ │ Mail.php │ │ │ Mock.php │ │ │ MongoDB.php │ │ │ Null.php │ │ │ Stream.php │ │ │ Syslog.php │ │ │ WriterInterface.php │ │ │ ZendMonitor.php │ │ │ │ │ └─FirePhp │ │ FirePhpBridge.php │ │ FirePhpInterface.php │ │ │ ├─Mail │ │ │ Address.php │ │ │ AddressList.php │ │ │ composer.json │ │ │ Headers.php │ │ │ Message.php │ │ │ Storage.php │ │ │ │ │ ├─Address │ │ │ AddressInterface.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ DomainException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ OutOfBoundsException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Header │ │ │ │ AbstractAddressList.php │ │ │ │ Bcc.php │ │ │ │ Cc.php │ │ │ │ ContentType.php │ │ │ │ Date.php │ │ │ │ From.php │ │ │ │ GenericHeader.php │ │ │ │ GenericMultiHeader.php │ │ │ │ HeaderInterface.php │ │ │ │ HeaderLoader.php │ │ │ │ HeaderWrap.php │ │ │ │ MessageId.php │ │ │ │ MimeVersion.php │ │ │ │ MultipleHeadersInterface.php │ │ │ │ Received.php │ │ │ │ ReplyTo.php │ │ │ │ Sender.php │ │ │ │ StructuredInterface.php │ │ │ │ Subject.php │ │ │ │ To.php │ │ │ │ UnstructuredInterface.php │ │ │ │ │ │ │ └─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Protocol │ │ │ │ AbstractProtocol.php │ │ │ │ Imap.php │ │ │ │ Pop3.php │ │ │ │ Smtp.php │ │ │ │ SmtpPluginManager.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ RuntimeException.php │ │ │ │ │ │ │ └─Smtp │ │ │ └─Auth │ │ │ Crammd5.php │ │ │ Login.php │ │ │ Plain.php │ │ │ │ │ ├─Storage │ │ │ │ AbstractStorage.php │ │ │ │ Folder.php │ │ │ │ Imap.php │ │ │ │ Maildir.php │ │ │ │ Mbox.php │ │ │ │ Message.php │ │ │ │ Part.php │ │ │ │ Pop3.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ OutOfBoundsException.php │ │ │ │ RuntimeException.php │ │ │ │ │ │ │ ├─Folder │ │ │ │ FolderInterface.php │ │ │ │ Maildir.php │ │ │ │ Mbox.php │ │ │ │ │ │ │ ├─Message │ │ │ │ File.php │ │ │ │ MessageInterface.php │ │ │ │ │ │ │ ├─Part │ │ │ │ │ File.php │ │ │ │ │ PartInterface.php │ │ │ │ │ │ │ │ │ └─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ RuntimeException.php │ │ │ │ │ │ │ └─Writable │ │ │ Maildir.php │ │ │ WritableInterface.php │ │ │ │ │ └─Transport │ │ │ File.php │ │ │ FileOptions.php │ │ │ Sendmail.php │ │ │ Smtp.php │ │ │ SmtpOptions.php │ │ │ TransportInterface.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─Math │ │ │ composer.json │ │ │ Rand.php │ │ │ │ │ ├─BigInteger │ │ │ │ AdapterPluginManager.php │ │ │ │ BigInteger.php │ │ │ │ │ │ │ ├─Adapter │ │ │ │ AdapterInterface.php │ │ │ │ Bcmath.php │ │ │ │ Gmp.php │ │ │ │ │ │ │ └─Exception │ │ │ DivisionByZeroException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Exception │ │ DomainException.php │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─Memory │ │ │ composer.json │ │ │ MemoryManager.php │ │ │ Value.php │ │ │ │ │ ├─Container │ │ │ AbstractContainer.php │ │ │ AccessController.php │ │ │ ContainerInterface.php │ │ │ Locked.php │ │ │ Movable.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─Mime │ │ │ composer.json │ │ │ Decode.php │ │ │ Message.php │ │ │ Mime.php │ │ │ Part.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ RuntimeException.php │ │ │ ├─ModuleManager │ │ │ composer.json │ │ │ ModuleEvent.php │ │ │ ModuleManager.php │ │ │ ModuleManagerInterface.php │ │ │ README.md │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Feature │ │ │ AutoloaderProviderInterface.php │ │ │ BootstrapListenerInterface.php │ │ │ ConfigProviderInterface.php │ │ │ ConsoleBannerProviderInterface.php │ │ │ ConsoleUsageProviderInterface.php │ │ │ ControllerPluginProviderInterface.php │ │ │ ControllerProviderInterface.php │ │ │ InitProviderInterface.php │ │ │ LocatorRegisteredInterface.php │ │ │ ServiceProviderInterface.php │ │ │ ViewHelperProviderInterface.php │ │ │ │ │ └─Listener │ │ │ AbstractListener.php │ │ │ AutoloaderListener.php │ │ │ ConfigListener.php │ │ │ ConfigMergerInterface.php │ │ │ DefaultListenerAggregate.php │ │ │ InitTrigger.php │ │ │ ListenerOptions.php │ │ │ LocatorRegistrationListener.php │ │ │ ModuleResolverListener.php │ │ │ OnBootstrapListener.php │ │ │ ServiceListener.php │ │ │ ServiceListenerInterface.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─Mvc │ │ │ Application.php │ │ │ ApplicationInterface.php │ │ │ composer.json │ │ │ DispatchListener.php │ │ │ InjectApplicationEventInterface.php │ │ │ ModuleRouteListener.php │ │ │ MvcEvent.php │ │ │ RouteListener.php │ │ │ │ │ ├─Controller │ │ │ │ AbstractActionController.php │ │ │ │ AbstractController.php │ │ │ │ AbstractRestfulController.php │ │ │ │ ControllerManager.php │ │ │ │ PluginManager.php │ │ │ │ │ │ │ └─Plugin │ │ │ AbstractPlugin.php │ │ │ AcceptableViewModelSelector.php │ │ │ FlashMessenger.php │ │ │ Forward.php │ │ │ Layout.php │ │ │ Params.php │ │ │ PluginInterface.php │ │ │ PostRedirectGet.php │ │ │ Redirect.php │ │ │ Url.php │ │ │ │ │ ├─Exception │ │ │ DomainException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ InvalidControllerException.php │ │ │ InvalidPluginException.php │ │ │ MissingLocatorException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Router │ │ │ │ PriorityList.php │ │ │ │ RouteInterface.php │ │ │ │ RouteMatch.php │ │ │ │ RoutePluginManager.php │ │ │ │ RouteStackInterface.php │ │ │ │ SimpleRouteStack.php │ │ │ │ │ │ │ ├─Console │ │ │ │ Catchall.php │ │ │ │ RouteInterface.php │ │ │ │ RouteMatch.php │ │ │ │ Simple.php │ │ │ │ SimpleRouteStack.php │ │ │ │ │ │ │ ├─Exception │ │ │ │ ExceptionInterface.php │ │ │ │ InvalidArgumentException.php │ │ │ │ RuntimeException.php │ │ │ │ │ │ │ └─Http │ │ │ Hostname.php │ │ │ Literal.php │ │ │ Method.php │ │ │ Part.php │ │ │ Query.php │ │ │ Regex.php │ │ │ RouteInterface.php │ │ │ RouteMatch.php │ │ │ Scheme.php │ │ │ Segment.php │ │ │ TreeRouteStack.php │ │ │ Wildcard.php │ │ │ │ │ ├─Service │ │ │ AbstractPluginManagerFactory.php │ │ │ ApplicationFactory.php │ │ │ ConfigFactory.php │ │ │ ConsoleAdapterFactory.php │ │ │ ControllerLoaderFactory.php │ │ │ ControllerPluginManagerFactory.php │ │ │ DiFactory.php │ │ │ DiStrictAbstractServiceFactory.php │ │ │ EventManagerFactory.php │ │ │ ModuleManagerFactory.php │ │ │ RequestFactory.php │ │ │ ResponseFactory.php │ │ │ RouterFactory.php │ │ │ ServiceListenerFactory.php │ │ │ ServiceManagerConfig.php │ │ │ ViewFeedRendererFactory.php │ │ │ ViewFeedStrategyFactory.php │ │ │ ViewHelperManagerFactory.php │ │ │ ViewJsonRendererFactory.php │ │ │ ViewJsonStrategyFactory.php │ │ │ ViewManagerFactory.php │ │ │ ViewResolverFactory.php │ │ │ ViewTemplateMapResolverFactory.php │ │ │ ViewTemplatePathStackFactory.php │ │ │ │ │ └─View │ │ │ SendResponseListener.php │ │ │ │ │ ├─Console │ │ │ CreateViewModelListener.php │ │ │ DefaultRenderingStrategy.php │ │ │ ExceptionStrategy.php │ │ │ InjectNamedConsoleParamsListener.php │ │ │ InjectViewModelListener.php │ │ │ RouteNotFoundStrategy.php │ │ │ ViewManager.php │ │ │ │ │ └─Http │ │ CreateViewModelListener.php │ │ DefaultRenderingStrategy.php │ │ ExceptionStrategy.php │ │ InjectRoutematchParamsListener.php │ │ InjectTemplateListener.php │ │ InjectViewModelListener.php │ │ RouteNotFoundStrategy.php │ │ ViewManager.php │ │ │ ├─Navigation │ │ │ AbstractContainer.php │ │ │ composer.json │ │ │ Navigation.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ DomainException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ OutOfBoundsException.php │ │ │ │ │ ├─Page │ │ │ AbstractPage.php │ │ │ Mvc.php │ │ │ Uri.php │ │ │ │ │ ├─Service │ │ │ AbstractNavigationFactory.php │ │ │ ConstructedNavigationFactory.php │ │ │ DefaultNavigationFactory.php │ │ │ │ │ └─View │ │ HelperConfig.php │ │ │ ├─Paginator │ │ │ AdapterAggregateInterface.php │ │ │ composer.json │ │ │ Paginator.php │ │ │ ScrollingStylePluginManager.php │ │ │ SerializableLimitIterator.php │ │ │ │ │ ├─Adapter │ │ │ │ AdapterInterface.php │ │ │ │ ArrayAdapter.php │ │ │ │ DbSelect.php │ │ │ │ Iterator.php │ │ │ │ Null.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ └─ScrollingStyle │ │ All.php │ │ Elastic.php │ │ Jumping.php │ │ ScrollingStyleInterface.php │ │ Sliding.php │ │ │ ├─Permissions │ │ └─Acl │ │ │ Acl.php │ │ │ composer.json │ │ │ │ │ ├─Assertion │ │ │ AssertionInterface.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Resource │ │ │ GenericResource.php │ │ │ ResourceInterface.php │ │ │ │ │ └─Role │ │ GenericRole.php │ │ Registry.php │ │ RoleInterface.php │ │ │ ├─ProgressBar │ │ │ composer.json │ │ │ ProgressBar.php │ │ │ │ │ ├─Adapter │ │ │ │ AbstractAdapter.php │ │ │ │ Console.php │ │ │ │ JsPull.php │ │ │ │ JsPush.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ OutOfRangeException.php │ │ RuntimeException.php │ │ │ ├─Serializer │ │ │ AdapterPluginManager.php │ │ │ composer.json │ │ │ Serializer.php │ │ │ │ │ ├─Adapter │ │ │ AbstractAdapter.php │ │ │ AdapterInterface.php │ │ │ AdapterOptions.php │ │ │ IgBinary.php │ │ │ Json.php │ │ │ JsonOptions.php │ │ │ PhpCode.php │ │ │ PhpSerialize.php │ │ │ PythonPickle.php │ │ │ PythonPickleOptions.php │ │ │ Wddx.php │ │ │ WddxOptions.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ ExtensionNotLoadedException.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─Server │ │ │ AbstractServer.php │ │ │ Cache.php │ │ │ Client.php │ │ │ composer.json │ │ │ Definition.php │ │ │ Reflection.php │ │ │ Server.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Method │ │ │ Callback.php │ │ │ Definition.php │ │ │ Parameter.php │ │ │ Prototype.php │ │ │ │ │ └─Reflection │ │ │ AbstractFunction.php │ │ │ Node.php │ │ │ Prototype.php │ │ │ ReflectionClass.php │ │ │ ReflectionFunction.php │ │ │ ReflectionMethod.php │ │ │ ReflectionParameter.php │ │ │ ReflectionReturnValue.php │ │ │ │ │ └─Exception │ │ BadMethodCallException.php │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─ServiceManager │ │ │ AbstractFactoryInterface.php │ │ │ AbstractPluginManager.php │ │ │ composer.json │ │ │ Config.php │ │ │ ConfigInterface.php │ │ │ FactoryInterface.php │ │ │ InitializerInterface.php │ │ │ ServiceLocatorAwareInterface.php │ │ │ ServiceLocatorInterface.php │ │ │ ServiceManager.php │ │ │ ServiceManagerAwareInterface.php │ │ │ │ │ ├─Di │ │ │ DiAbstractServiceFactory.php │ │ │ DiInstanceManagerProxy.php │ │ │ DiServiceFactory.php │ │ │ DiServiceInitializer.php │ │ │ │ │ └─Exception │ │ CircularDependencyFoundException.php │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ InvalidServiceNameException.php │ │ RuntimeException.php │ │ ServiceNotCreatedException.php │ │ ServiceNotFoundException.php │ │ │ ├─Session │ │ │ AbstractManager.php │ │ │ composer.json │ │ │ Container.php │ │ │ ManagerInterface.php │ │ │ SessionManager.php │ │ │ ValidatorChain.php │ │ │ │ │ ├─Config │ │ │ ConfigInterface.php │ │ │ SessionConfig.php │ │ │ StandardConfig.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─SaveHandler │ │ │ Cache.php │ │ │ DbTableGateway.php │ │ │ DbTableGatewayOptions.php │ │ │ SaveHandlerInterface.php │ │ │ │ │ ├─Storage │ │ │ ArrayStorage.php │ │ │ SessionStorage.php │ │ │ StorageInterface.php │ │ │ │ │ └─Validator │ │ HttpUserAgent.php │ │ RemoteAddr.php │ │ ValidatorInterface.php │ │ │ ├─Soap │ │ │ AutoDiscover.php │ │ │ Client.php │ │ │ composer.json │ │ │ Server.php │ │ │ Wsdl.php │ │ │ │ │ ├─AutoDiscover │ │ │ └─DiscoveryStrategy │ │ │ DiscoveryStrategyInterface.php │ │ │ ReflectionDiscovery.php │ │ │ │ │ ├─Client │ │ │ Common.php │ │ │ DotNet.php │ │ │ Local.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ ExtensionNotLoadedException.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ ├─Server │ │ │ DocumentLiteralWrapper.php │ │ │ │ │ └─Wsdl │ │ └─ComplexTypeStrategy │ │ AbstractComplexTypeStrategy.php │ │ AnyType.php │ │ ArrayOfTypeComplex.php │ │ ArrayOfTypeSequence.php │ │ ComplexTypeStrategyInterface.php │ │ Composite.php │ │ DefaultComplexType.php │ │ │ ├─Stdlib │ │ │ AbstractOptions.php │ │ │ ArraySerializableInterface.php │ │ │ ArrayStack.php │ │ │ ArrayUtils.php │ │ │ CallbackHandler.php │ │ │ composer.json │ │ │ DispatchableInterface.php │ │ │ ErrorHandler.php │ │ │ Glob.php │ │ │ Message.php │ │ │ MessageInterface.php │ │ │ ParameterObjectInterface.php │ │ │ Parameters.php │ │ │ ParametersInterface.php │ │ │ PriorityQueue.php │ │ │ Request.php │ │ │ RequestInterface.php │ │ │ Response.php │ │ │ ResponseInterface.php │ │ │ SplPriorityQueue.php │ │ │ SplQueue.php │ │ │ SplStack.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ DomainException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ InvalidCallbackException.php │ │ │ LogicException.php │ │ │ │ │ └─Hydrator │ │ │ AbstractHydrator.php │ │ │ ArraySerializable.php │ │ │ ClassMethods.php │ │ │ HydratorInterface.php │ │ │ ObjectProperty.php │ │ │ Reflection.php │ │ │ StrategyEnabledInterface.php │ │ │ │ │ └─Strategy │ │ DefaultStrategy.php │ │ StrategyInterface.php │ │ │ ├─Tag │ │ │ Cloud.php │ │ │ composer.json │ │ │ Item.php │ │ │ ItemList.php │ │ │ TaggableInterface.php │ │ │ │ │ ├─Cloud │ │ │ │ DecoratorPluginManager.php │ │ │ │ │ │ │ └─Decorator │ │ │ │ AbstractCloud.php │ │ │ │ AbstractDecorator.php │ │ │ │ AbstractTag.php │ │ │ │ DecoratorInterface.php │ │ │ │ HtmlCloud.php │ │ │ │ HtmlTag.php │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ InvalidAttributeNameException.php │ │ InvalidElementNameException.php │ │ OutOfBoundsException.php │ │ │ ├─Text │ │ │ composer.json │ │ │ MultiByte.php │ │ │ │ │ ├─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ OutOfBoundsException.php │ │ │ OverflowException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ ├─Figlet │ │ │ │ Figlet.php │ │ │ │ zend-framework.flf │ │ │ │ │ │ │ └─Exception │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ RuntimeException.php │ │ │ UnexpectedValueException.php │ │ │ │ │ └─Table │ │ │ Column.php │ │ │ DecoratorManager.php │ │ │ Row.php │ │ │ Table.php │ │ │ │ │ ├─Decorator │ │ │ Ascii.php │ │ │ Blank.php │ │ │ DecoratorInterface.php │ │ │ Unicode.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ InvalidDecoratorException.php │ │ OutOfBoundsException.php │ │ OverflowException.php │ │ UnexpectedValueException.php │ │ │ ├─Uri │ │ │ composer.json │ │ │ File.php │ │ │ Http.php │ │ │ Mailto.php │ │ │ Uri.php │ │ │ UriFactory.php │ │ │ UriInterface.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ InvalidUriException.php │ │ InvalidUriPartException.php │ │ │ ├─Validator │ │ │ AbstractValidator.php │ │ │ Barcode.php │ │ │ Between.php │ │ │ Callback.php │ │ │ composer.json │ │ │ CreditCard.php │ │ │ Csrf.php │ │ │ Date.php │ │ │ DateStep.php │ │ │ Digits.php │ │ │ EmailAddress.php │ │ │ Explode.php │ │ │ GreaterThan.php │ │ │ Hex.php │ │ │ Hostname.php │ │ │ Iban.php │ │ │ Identical.php │ │ │ InArray.php │ │ │ Ip.php │ │ │ Isbn.php │ │ │ LessThan.php │ │ │ NotEmpty.php │ │ │ Regex.php │ │ │ StaticValidator.php │ │ │ Step.php │ │ │ StringLength.php │ │ │ Uri.php │ │ │ ValidatorChain.php │ │ │ ValidatorInterface.php │ │ │ ValidatorPluginManager.php │ │ │ │ │ ├─Barcode │ │ │ AbstractAdapter.php │ │ │ AdapterInterface.php │ │ │ Codabar.php │ │ │ Code128.php │ │ │ Code25.php │ │ │ Code25interleaved.php │ │ │ Code39.php │ │ │ Code39ext.php │ │ │ Code93.php │ │ │ Code93ext.php │ │ │ Ean12.php │ │ │ Ean13.php │ │ │ Ean14.php │ │ │ Ean18.php │ │ │ Ean2.php │ │ │ Ean5.php │ │ │ Ean8.php │ │ │ Gtin12.php │ │ │ Gtin13.php │ │ │ Gtin14.php │ │ │ Identcode.php │ │ │ Intelligentmail.php │ │ │ Issn.php │ │ │ Itf14.php │ │ │ Leitcode.php │ │ │ Planet.php │ │ │ Postnet.php │ │ │ Royalmail.php │ │ │ Sscc.php │ │ │ Upca.php │ │ │ Upce.php │ │ │ │ │ ├─Db │ │ │ AbstractDb.php │ │ │ NoRecordExists.php │ │ │ RecordExists.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ ExceptionInterface.php │ │ │ ExtensionNotLoadedException.php │ │ │ InvalidArgumentException.php │ │ │ InvalidMagicMimeFileException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─File │ │ │ Count.php │ │ │ Crc32.php │ │ │ ExcludeExtension.php │ │ │ ExcludeMimeType.php │ │ │ Exists.php │ │ │ Extension.php │ │ │ FilesSize.php │ │ │ Hash.php │ │ │ ImageSize.php │ │ │ IsCompressed.php │ │ │ IsImage.php │ │ │ Md5.php │ │ │ MimeType.php │ │ │ NotExists.php │ │ │ Sha1.php │ │ │ Size.php │ │ │ Upload.php │ │ │ WordCount.php │ │ │ │ │ ├─Hostname │ │ │ Biz.php │ │ │ Cn.php │ │ │ Com.php │ │ │ Jp.php │ │ │ │ │ └─Sitemap │ │ Changefreq.php │ │ Lastmod.php │ │ Loc.php │ │ Priority.php │ │ │ ├─Version │ │ composer.json │ │ Version.php │ │ │ ├─View │ │ │ composer.json │ │ │ HelperPluginManager.php │ │ │ Stream.php │ │ │ Variables.php │ │ │ View.php │ │ │ ViewEvent.php │ │ │ │ │ ├─Exception │ │ │ BadMethodCallException.php │ │ │ DomainException.php │ │ │ ExceptionInterface.php │ │ │ InvalidArgumentException.php │ │ │ InvalidHelperException.php │ │ │ RuntimeException.php │ │ │ │ │ ├─Helper │ │ │ │ AbstractHelper.php │ │ │ │ AbstractHtmlElement.php │ │ │ │ BasePath.php │ │ │ │ Cycle.php │ │ │ │ DeclareVars.php │ │ │ │ Doctype.php │ │ │ │ EscapeCss.php │ │ │ │ EscapeHtml.php │ │ │ │ EscapeHtmlAttr.php │ │ │ │ EscapeJs.php │ │ │ │ EscapeUrl.php │ │ │ │ Gravatar.php │ │ │ │ HeadLink.php │ │ │ │ HeadMeta.php │ │ │ │ HeadScript.php │ │ │ │ HeadStyle.php │ │ │ │ HeadTitle.php │ │ │ │ HelperInterface.php │ │ │ │ HtmlFlash.php │ │ │ │ HtmlList.php │ │ │ │ HtmlObject.php │ │ │ │ HtmlPage.php │ │ │ │ HtmlQuicktime.php │ │ │ │ InlineScript.php │ │ │ │ Json.php │ │ │ │ Layout.php │ │ │ │ Navigation.php │ │ │ │ PaginationControl.php │ │ │ │ Partial.php │ │ │ │ PartialLoop.php │ │ │ │ Placeholder.php │ │ │ │ RenderChildModel.php │ │ │ │ RenderToPlaceholder.php │ │ │ │ ServerUrl.php │ │ │ │ Url.php │ │ │ │ ViewModel.php │ │ │ │ │ │ │ ├─Escaper │ │ │ │ AbstractHelper.php │ │ │ │ │ │ │ ├─Navigation │ │ │ │ AbstractHelper.php │ │ │ │ Breadcrumbs.php │ │ │ │ HelperInterface.php │ │ │ │ Links.php │ │ │ │ Menu.php │ │ │ │ PluginManager.php │ │ │ │ Sitemap.php │ │ │ │ │ │ │ └─Placeholder │ │ │ │ Container.php │ │ │ │ Registry.php │ │ │ │ │ │ │ └─Container │ │ │ AbstractContainer.php │ │ │ AbstractStandalone.php │ │ │ │ │ ├─Model │ │ │ ConsoleModel.php │ │ │ FeedModel.php │ │ │ JsonModel.php │ │ │ ModelInterface.php │ │ │ ViewModel.php │ │ │ │ │ ├─Renderer │ │ │ ConsoleRenderer.php │ │ │ FeedRenderer.php │ │ │ JsonRenderer.php │ │ │ PhpRenderer.php │ │ │ RendererInterface.php │ │ │ TreeRendererInterface.php │ │ │ │ │ ├─Resolver │ │ │ AggregateResolver.php │ │ │ ResolverInterface.php │ │ │ TemplateMapResolver.php │ │ │ TemplatePathStack.php │ │ │ │ │ └─Strategy │ │ FeedStrategy.php │ │ JsonStrategy.php │ │ PhpRendererStrategy.php │ │ │ └─XmlRpc │ │ AbstractValue.php │ │ Client.php │ │ composer.json │ │ Fault.php │ │ Request.php │ │ Response.php │ │ Server.php │ │ │ ├─Client │ │ │ ServerIntrospection.php │ │ │ ServerProxy.php │ │ │ │ │ └─Exception │ │ ExceptionInterface.php │ │ FaultException.php │ │ HttpException.php │ │ IntrospectException.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ ├─Exception │ │ BadMethodCallException.php │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ ValueException.php │ │ │ ├─Generator │ │ AbstractGenerator.php │ │ DomDocument.php │ │ GeneratorInterface.php │ │ XmlWriter.php │ │ │ ├─Request │ │ Http.php │ │ Stdin.php │ │ │ ├─Response │ │ Http.php │ │ │ ├─Server │ │ │ Cache.php │ │ │ Fault.php │ │ │ System.php │ │ │ │ │ └─Exception │ │ BadMethodCallException.php │ │ ExceptionInterface.php │ │ InvalidArgumentException.php │ │ RuntimeException.php │ │ │ └─Value │ AbstractCollection.php │ AbstractScalar.php │ ArrayValue.php │ Base64.php │ BigInteger.php │ Boolean.php │ DateTime.php │ Double.php │ Integer.php │ Nil.php │ String.php │ Struct.php │ ├─resources │ │ composer.json │ │ │ └─languages │ ├─ar │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─bg │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─cs │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─de │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─en │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─es │ │ Zend_Validate.php │ │ │ ├─fi │ │ Zend_Validate.php │ │ │ ├─fr │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─hr │ │ Zend_Validate.php │ │ │ ├─it │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─ja │ │ Zend_Validate.php │ │ │ ├─nl │ │ Zend_Validate.php │ │ │ ├─no │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─pl │ │ Zend_Validate.php │ │ │ ├─pt_BR │ │ Zend_Validate.php │ │ │ ├─ru │ │ Zend_Validate.php │ │ │ ├─se │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─sk │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─sl │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─sr │ │ Zend_Validate.php │ │ │ ├─tr │ │ Zend_Captcha.php │ │ Zend_Validate.php │ │ │ ├─uk │ │ Zend_Validate.php │ │ │ └─zh │ Zend_Captcha.php │ Zend_Validate.php │ └─vendor
Categories:
ZendFramework2
人気の投稿
-
JUnitについての書籍が遂に発売します! Java開発時のユニットテストを加速する「JUnit速効レシピ」 Android アプリ開発で、ある画面から別の画面へ遷移する方法と、 逆に遷移先から元の画面へ戻る方法をソースコード付きで解説します。 Ac...
-
JUnitについての書籍が遂に発売します! Java開発時のユニットテストを加速する「JUnit速効レシピ」 今回は、WebView内に書かれた JavaScript をアプリ側から起動したり、 HTML 内のリンクタップをアプリ側で検知したり、 アプリ側...
-
ブラウザのデベロッパツールのコンソールへlogを出力する方法と、 その際の注意点や解決策についてソースコード付きで解説します。 最終的にはlog出力の完成形として、 IE エラー回避、consoleオブジェクトの記述無し、デバッグ切り替え機能付きの プラグインの...
-
コメントアウトとは、プログラムソース内に処理ロジックとは別に コメントとして残す事を言います。 今回は、様々なプログラム言語やフレームワークで使用する コメントアウト記法を纏めました。 コメントアウトはプログラムを書く上で、とても頻繁に使い、 プログラム言語...
-
JUnitについての書籍が遂に発売します! Java開発時のユニットテストを加速する「JUnit速効レシピ」 Android アプリにて課金処理を行う方法を解説します。 アプリの重要な収入源となりますので、なるべく習得しておきたい技術ですね。 Androi...
-
CEBImagery.com PHP にて重い処理を行おうとすると、ユーザへのレスポンスが遅くなります。 なので、ユーザへレスポンスする必要の無い処理。例えばメールの送信や裏で行うクエリ等は レスポンスを待たずに、次の処理へ進んでもらいたいです...
-
JUnitについての書籍が遂に発売します! Java開発時のユニットテストを加速する「JUnit速効レシピ」 Android アプリ開発では、沢山のActivityが登場し、 画面遷移もある程度の規模になると複雑化します。 そして、一つのActivity内だ...
-
最近良く見かけるモーダルウィンドウですが、 モーダルのサイズが大きいと画面外にはみ出してしまい、全てを表示することが出来ません。 スクロールしたとしても、モーダルの背景であるメインコンテンツがスクロールされてしまいます。 そこで、モーダルが表示されている間のスクロー...
-
皆さん JavaScript で配列の要素数を知りたい時はlengthプロパティを参照しているかと思います。 しかし、このlengthプロパティですが、実は配列の要素数の値では無いんです。 今回のエントリーでは、そんなlengthプロパティの動作をソースコード付き...
-
JavaScript では、本来のオブジェクト指向言語とは少し異なり、 正確なクラスの定義は出来ません。 しかし、 JavaScript では強力な関数定義方法が用意されていますので、関数をクラスとして 実装する事で対応するのが一般的です。 今回の記事では、そんな...
Category
Algorithm
(2)
Android
(8)
ASP/aspx
(1)
Blogger
(2)
C/C++
(1)
Chrome
(5)
CSS
(9)
Firefox
(4)
Fortran
(1)
Google
(9)
GoogleMap
(2)
HTML
(12)
IE
(3)
Information
(4)
iOS
(2)
iPhone/iPad/iPod
(2)
Java
(6)
JavaScript
(16)
jQuery
(9)
JSP
(1)
LifeRecipe
(5)
Linux
(2)
Macintosh
(2)
MapKit
(4)
Marketing
(7)
MySQL
(3)
NAMAZU
(2)
Objective-C
(7)
Other
(7)
Perl
(1)
PHP
(9)
Python
(1)
RSS/Atom
(2)
Ruby
(1)
Safari
(2)
SEO
(11)
Smarty
(2)
SQL
(2)
Tex
(1)
Three.js
(1)
Twitter
(1)
TwitterLog
(313)
UIKit
(5)
Unix
(1)
VBA/VBS
(1)
Windows
(5)
WordPress
(3)
Writing
(5)
XAMPP
(1)
XML
(1)
Yahoo
(2)
ZendFramework2
(14)
Archives
-
▼
2013
(305)
-
▼
2月
(28)
- 2013年2月24日(日)のツイート履歴
- ZendFramework2(ZF2)流の『取得』『追加』『更新』『削除』とデータベース接続アダプタの生成
- 2013年2月23日(土)のツイート履歴
- 2013年2月21日(木)のツイート履歴
- 2013年2月19日(火)のツイート履歴
- ZendFramework2(ZF2)でログイン処理を行う認証モデルの作成からセッションでの状態保持
- 2013年2月15日(金)のツイート履歴
- 2013年2月14日(木)のツイート履歴
- 2013年2月13日(水)のツイート履歴
- ZendFramework2(ZF2)における各リクエストパラメータの取得と、HTTP関係への制御
- ZendFramework2(ZF2)におけるページング処理[Paginator]
- 2013年2月11日(月)のツイート履歴
- ZendFramework2(ZF2)におけるモデルの作成からデータベースアクセスまでの4ステップ!
- 2013年2月10日(日)のツイート履歴
- 2013年2月9日(土)のツイート履歴
- ZendFramework2(ZF2)でSmarty3を使う方法!!
- 2013年2月8日(金)のツイート履歴
- 2013年2月7日(木)のツイート履歴
- 2013年2月5日(火)のツイート履歴
- 2013年2月4日(月)のツイート履歴
- 【日本語版】ZendFramework2(ZF2)チュートリアル
- 2013年2月3日(日)のツイート履歴
- ZendFramework2のスケルトンプロジェクト『ZendSkeletonApplication...
- テキストで表現するディレクトリ構造とファイル構成!
- ZendFramework-2.0.6のディレクトリ構造&ファイル構成
- 2013年1月のツイート履歴
- 2013年2月1日(金)のツイート履歴
- 2013年1月31日(木)のツイート履歴
-
▼
2月
(28)