ZendFramework2で初となる日本語の書籍『Zend Framework 2徹底解説』



以前から徐々にお知らせしていました、
私が執筆したZendFramework2の書籍『Zend Framework 2徹底解説』が遂に発売となります。
今までは仮の状態でしか公開出来なかった情報も確定しましたので、
発売日と共にご報告します。

  1. 『Zend Framework 2徹底解説』書籍情報
  2. 『Zend Framework 2徹底解説』の目次
  3. 『Zend Framework 2徹底解説』の内容紹介
『ZendFramework2で初となる日本語の書籍『Zend Framework 2徹底解説』』を続きを読む »

書籍『Zend Framework 2 徹底解説』の発売日が決定!目次を公開!





先日ご報告いたしましたZendFramework2(ZF2)の書籍を遂に書き上げ、
現在校正作業中ですが、発売日と目次が決定しましたので
ご報告です。

発売は何とか年内に間に合い、秀和システム様より2013年12月11日に発売となります。
チュートリアルでは、ZendFramework2ZF2)の導入から、
実際にコミュニティサイトを作成する実例を交え、出来るだけ解りやすく、
そして広く情報を網羅できるように意識して執筆しました。

そして後半では、機能毎の詳細を解説する為にリファレンス部分を充実させましたので、
チュートリアルにてZendFramework2(ZF2)を習得された方にも永くお使いいただけるかと思います。


発売の際には是非ともよろしくお願いいたします。

  1. 『Zend Framework 2 徹底解説』目次
『書籍『Zend Framework 2 徹底解説』の発売日が決定!目次を公開!』を続きを読む »

ZendFramework2(ZF2)の書籍を執筆する事になりました





表題の通り、ZendFramework2(ZF2)についての書籍を執筆する事になりました。

2013年12月中旬に、秀和システム様より発売予定です。現在急ピッチで執筆中ですが、
ある程度の目次が決まりましたので、ご報告させて頂きます。

ZendFramework2(ZF2)はまだまだ日本語の情報が少ないので、
もしかしたらZendFramework2(ZF2)に関する唯一の書籍になるかも知れません。

ブログでは書ききれない事を詳細に、解り易く纏めて行きますので
発売の折には是非とも宜しくお願い致します。

  1. 『Zend Framework 2 徹底解説』(仮)
『ZendFramework2(ZF2)の書籍を執筆する事になりました』を続きを読む »

レイアウトをコントローラから動的に変更するLayoutPlugin!!ZendFramework2(ZF2)


勘違いや誤解が多く、実はあまり知られていないレイアウト機能について
解説します。

これが意外とハマり所で、苦労している方も多いのでは無いでしょうか?

レイアウトは基本的となるヘッダーやフッターなどを共通化し、
フレームの様に扱う便利な機能です。

しかし、全てのページでまったく同じレイアウトを使うだけだと
使い道が限られ、あまり便利さを感じません。

そこで、例えばモジュール毎にレイアウトを分けたいとか、
コントローラによって分けたいとか、アクションによって分けたいとか、
閲覧ブラウザや、閲覧者の権限や設定等で分けたいなど、
色々と要望が出てくるかと思います。


今回は、そんなレイアウト機能を簡単に、動的に変更する方法を解説します

  1. 勘違いの元、基本的なデフォルト設定に記述場所
  2. Controller PluginsのLayout Pluginでレイアウト指定!
『レイアウトをコントローラから動的に変更するLayoutPlugin!!ZendFramework2(ZF2)』を続きを読む »

ZendFramework2(ZF2)のflashMessengerを使いリダイレクト先に完了メッセージを渡す



追加、編集、削除等の処理後に重複処理を避ける為に
リダイレクトするのは良くある処理の一つです。
そこで、リダイレクト先の処理完了画面へ、
メッセージを送りたい事があります。
例えば、『○○の編集が完了しました』等です。
これは、何を処理したかはリダイレクトされる前の画面の話ですので、
前の画面からリダイレクト先へ値を渡さないと
完了画面では何が処理されて来たのかを知る事が出来ません。

そこで、一般的にはセッションの利用を思いつくかと思います。
セッション変数に値をセットし、リダイレクト先でセッションから
値を取得し・・・

ちょっと面倒ですよね?


ZendFramework2(ZF2)では、その辺りの処理を簡単に行える様に
便利なプラグインが用意されています。
その名も『flashMessenger』


今回は、そんなflashMessengerの使用方法をソースコード付きで解説したいと思います

  1. flashMessengerを使って完了メッセージを引き渡そう
『ZendFramework2(ZF2)のflashMessengerを使いリダイレクト先に完了メッセージを渡す』を続きを読む »

ZendFramework2(ZF2)流の『取得』『追加』『更新』『削除』とデータベース接続アダプタの生成



今回は、基本的な処理として『取得』『追加』『更新』『削除』のクエリの作成と、
実際にデータベースへアクセスする為のアダプタの作成方法を
ソースコード付きで解説します。

  1. ZendFramework2(ZF2)流のデータベース接続用アダプタを作成しよう
  2. ZendFramework2(ZF2)流の簡単なクエリの作成と実行
  3. ZendFramework2(ZF2)流のセレクト文を使用してみよう
  4. ZendFramework2(ZF2)流のインサート文を使用してみよう
  5. ZendFramework2(ZF2)流にレコードを更新してみよう
  6. ZendFramework2(ZF2)流にレコードを削除しよう
『ZendFramework2(ZF2)流の『取得』『追加』『更新』『削除』とデータベース接続アダプタの生成』を続きを読む »

ZendFramework2(ZF2)でログイン処理を行う認証モデルの作成からセッションでの状態保持



会員サイトを作成する際に必須となるログイン機能をモデルの作成からソースコード付きで解説します。

今回はZendFramework2でのログイン処理をコード付きで解説したいと思います。
認証用のロジックは汎用的に使いまわせる様にモデルとして作成し、
コントローラから認証が必要な際にモデルの機能を呼ぶといった実装内容とします。

モデルの機能と致しましては、
  • ログイン処理⇒認証を行い、認証結果をセッションとして保存する
  • ログアウト処理⇒セッションに保存された認証情報を破棄する
  • ログイン状態の確認⇒セッションの値を確認し、現在ログイン中が否かを取得
  • ログインユーザ情報の取得⇒セッションに保存されているユーザ情報を取得する

といった、ログイン関係に良く使うであろうシンプルなものとなっています。

後は状況によって追加して行ければモデルとしての機能も強化されるかと思います。

  1. 認証用モデルを作成しよう
  2. ログイン機能の実装
  3. ログアウトをサクッと実装しよう
  4. 現在のログイン状態を確認しよう
  5. ログインしているユーザの情報を取得しよう
  6. 作成した認証用モデルを使ってみよう
『ZendFramework2(ZF2)でログイン処理を行う認証モデルの作成からセッションでの状態保持』を続きを読む »

ZendFramework2(ZF2)における各リクエストパラメータの取得と、HTTP関係への制御



今回は、ユーザがWEBアプリに対して送る様々なリクエストをキャッチする方法から
HTTP通信に対するURLの取得やヘッダー情報の操作等を纏めてご紹介いたします

  1. リクエストパラメータを専用メソッドで取得しよう
  2. HTTPリクエストに対する操作
『ZendFramework2(ZF2)における各リクエストパラメータの取得と、HTTP関係への制御』を続きを読む »

ZendFramework2(ZF2)におけるページング処理[Paginator]


大量のDBデータを一覧表示する時に
同じ画面上に全て表示するのは処理速度的にも
UI的にも良い判断とは言えません。

やはり、見易く、扱いやすい様に
ある程度の数で区切ってページ分けした方が得策です。

今回は、そんなデータベースデータのページング処理について解説したいと思います。

ZendFramework2(ZF2)ではページング処理専用のクラスが用意されていますので、
そのAPIを使用し、ページングを組み立てて行きましょう。

  1. ページャーに検索結果を入れる為のアダプタを作成しよう
  2. コントローラでページャーを操作する
  3. ビュー側で行うページングナビゲーションの作成
『ZendFramework2(ZF2)におけるページング処理[Paginator]』を続きを読む »

ZendFramework2(ZF2)におけるモデルの作成からデータベースアクセスまでの4ステップ!



レコードを表すモデルとテーブルを表すモデルを作成し、
今回はMySQLデータベースへアクセスして、データの出し入れ、
一覧の取得を行える様にソースコード付きで解説します。


まだまだZendFramework2(ZF2)は日本語の情報が少ないので、
チュートリアル的に参考にして頂けたら幸いです。

  1. モデルクラスの作成
  2. ServiceManageにモデルクラスを登録する
  3. データベースへのアクセス情報の設定
  4. コントローラから実際にデータベースへアクセスする
『ZendFramework2(ZF2)におけるモデルの作成からデータベースアクセスまでの4ステップ!』を続きを読む »

ZendFramework2(ZF2)でSmarty3を使う方法!!


ZendFramework2(ZF2)ではview機構がかなり強化され、
いわゆるphtmlファイルでも出来る幅が広がりました。

しかし、いつも使い慣れているSmartyを使いたいという需要は高い様です。

今回は、そんなZendFramework2(ZF2)でもSmartyを使いたいという方向けに
ZendFramework2(ZF2)用ののSmartyモジュールを使用した
Smartyの導入方法について解説致します。

  1. Smarty3最新版を準備しよう
  2. ZendFramework2(ZF2)専用のSmartyモジュールを入手しよう
  3. ZendFramework2(ZF2)にZendSmarty(ZSmarty)を導入する
  4. モジュールの追加をアプリに設定しよう
  5. コントローラ内でのSmarty3の使用方法
『ZendFramework2(ZF2)でSmarty3を使う方法!!』を続きを読む »

【日本語版】ZendFramework2(ZF2)チュートリアル



日本語のチュートリアルが無く、スタートアップに苦労したので
ソースコード付きの解説をエントリーします。

【日本語版】ZendFramework2(ZF2)チュートリアルをエントリーポイントからコントローラ、
ビューへの値渡しからモジュールの設定まで、初めに必要な事をソースコード付きで解説します

  1. 大きく変わったZendFramework2(ZF2)
  2. スケルトンプロジェクトを用意しよう!
  3. スケルトンプロジェクトからZendFramework2を使える様にする
  4. コントローラの定義と実装、ビューへの値渡し
  5. モジュールの情報を設定しよう
『【日本語版】ZendFramework2(ZF2)チュートリアル』を続きを読む »

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

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

人気の投稿

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)