[vagrant@localhost ~]$ heroku –version
heroku/7.27.1 linux-x64 node-v11.14.0
[vagrant@localhost ~]$ heroku login
heroku: Press any key to open up the browser to login or q to exit:
Opening browser to https://cli-auth.heroku.com/auth/browser/54d1a025-4f83-4774-93e8-afe0faba719a
 ›   Warning: Cannot open browser.
heroku: Waiting for login… ⣯
^C
[vagrant@localhost ~]$ heroku login –interactive
heroku: Enter your login credentials
Email: 
Herokuを使おう
やっと戻って来ました

toolbeltはCLIのようですね。
https://devcenter.heroku.com/articles/heroku-cli
[vagrant@localhost ~]$ curl https://cli-assets.heroku.com/install.sh | sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
105  1892  105  1892    0     0   2942      0 –:–:– –:–:– –:–:– 19306
This script requires superuser access.
You will be prompted for your password by sudo.
Your path is missing /usr/local/bin, you need to add this to use this installer.
[vagrant@localhost ~]$ sudo curl https://cli-assets.heroku.com/install.sh | sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
105  1892  105  1892    0     0   5341      0 –:–:– –:–:– –:–:– 25567
This script requires superuser access.
You will be prompted for your password by sudo.
Your path is missing /usr/local/bin, you need to add this to use this installer.
[vagrant@localhost ~]$ wget https://cli-assets.heroku.com/branches/stable/heroku-linux-amd64.tar.gz
–2019-08-09 00:02:07–  https://cli-assets.heroku.com/branches/stable/heroku-linux-amd64.tar.gz
cli-assets.heroku.com をDNSに問いあわせています… 13.32.54.88, 13.32.54.49, 13.32.54.116, …
cli-assets.heroku.com|13.32.54.88|:443 に接続しています… 接続しました。
HTTP による接続要求を送信しました、応答を待っています… 301 Moved Permanently
場所: https://cli-assets.heroku.com/heroku-linux-x64.tar.gz [続く]
–2019-08-09 00:02:08–  https://cli-assets.heroku.com/heroku-linux-x64.tar.gz
cli-assets.heroku.com:443 への接続を再利用します。
HTTP による接続要求を送信しました、応答を待っています… 200 OK
長さ: 29106114 (28M) [application/gzip]
`heroku-linux-amd64.tar.gz’ に保存中
100%[==============================================================================>] 29,106,114 1.58M/s 時間 16s
2019-08-09 00:02:24 (1.76 MB/s) – `heroku-linux-amd64.tar.gz’ へ保存完了 [29106114/29106114]
[vagrant@localhost ~]$ ls
centos6  heroku-linux-amd64.tar.gz  index.php  zend
[vagrant@localhost ~]$ ls
centos6  heroku-linux-amd64.tar.gz  index.php  zend
[vagrant@localhost ~]$ tar xf heroku-linux-amd64.tar.gz
[vagrant@localhost ~]$ ls
centos6  heroku  heroku-linux-amd64.tar.gz  index.php  zend
[vagrant@localhost ~]$ sed -i -e “/^export PATH$/i PATH=\$HOME/heroku/bin:\$PATH” ~/.bash_profile
[vagrant@localhost ~]$ export PATH=$HOME/heroku-client/bin:$PATH
[vagrant@localhost ~]$ heroku –version
bash: heroku: コマンドが見つかりません
[vagrant@localhost ~]$ export PATH=$HOME/heroku/bin:$PATH
[vagrant@localhost ~]$ heroku –version
heroku/7.27.1 linux-x64 node-v11.14.0
おいおいおい
[vagrant@localhost .ssh]$ ssh-keygen -t rsa -b 4096
Generating public/private rsa key pair.
Enter file in which to save the key (/home/vagrant/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/vagrant/.ssh/id_rsa.
Your public key has been saved in /home/vagrant/.ssh/id_rsa.pub.
The key fingerprint is:
65:0a:17:62:84:01:83:3e:c4:44:43:b5:e1:d0:63:0a vagrant@localhost.localdomain
The key’s randomart image is:
+–[ RSA 4096]—-+
|=B=+.++ .        |
|Eo+=+. . .       |
|+ oo. . . o      |
| +     o +       |
|  .     S        |
|                 |
|                 |
|                 |
|                 |
+—————–+
[vagrant@localhost .ssh]$ ls
authorized_keys  id_rsa  id_rsa.pub
なんか眠くなって来た。
sudo passwd postgres
[vagrant@localhost ~]$ sudo find / -name pg_hba.conf
/var/lib/pgsql/9.6/data/pg_hba.conf
[vagrant@localhost ~]$ sudo cat /var/lib/pgsql/9.6/data/pg_hba.conf
local   all             all                                     peer
# IPv4 local connections:
host    all             all             127.0.0.1/32            ident
# IPv6 local connections:
host    all             all             ::1/128                 ident
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local   replication     postgres                                peer
#host    replication     postgres        127.0.0.1/32            ident
#host    replication     postgres        ::1/128                 ident
[vagrant@localhost ~]$ sudo passwd postgres
ユーザー postgres のパスワードを変更。
新しいパスワード:
よくないパスワード: 辞書の単語に基づいています
新しいパスワードを再入力してください:
passwd: 全ての認証トークンが正しく更新できました。
[vagrant@localhost ~]$ su – postgres
パスワード:
-bash-4.1$ psql
psql (9.6.15)
“help” でヘルプを表示します.
postgres=# \q
-bash-4.1$ exit
logout
来た!事前準備にどれだけ時間かかってるんじゃ、という感じ。
postgresをインストールする
sudo yum install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-centos96-9.6-3.noarch.rpm
sudo yum update
sudo yum install postgresql96 postgresql96-server postgresql96-libs
[vagrant@localhost ~]$ rpm -qa | grep postgres
postgresql96-server-9.6.15-1PGDG.rhel6.x86_64
postgresql96-9.6.15-1PGDG.rhel6.x86_64
postgresql96-libs-9.6.15-1PGDG.rhel6.x86_64
[vagrant@localhost ~]$ service postgresql-9.6 initdb
データベースを初期化中: mkdir: ディレクトリ `/var/lib/pgsql’ を作成できません: 許可がありません
[vagrant@localhost ~]$ sudo service postgresql-9.6 initdb
データベースを初期化中:                                    [  OK  ]
[vagrant@localhost ~]$ sudo service postgresql-9.6 start
postgresql-9.6 サービスを開始中:                           [  OK  ]
[vagrant@localhost ~]$ service postgresql-9.6 status
postgresql-9.6 (pid  20665) を実行中…
[vagrant@localhost ~]$ chkconfig postgresql-9.6 –list
postgresql-9.6 	0:off	1:off	2:off	3:off	4:off	5:off	6:off
[vagrant@localhost ~]$ chkconfig postgresql-9.6 on
この操作を実行するためには権限が十分ではありません。
[vagrant@localhost ~]$ sudo chkconfig postgresql-9.6 on
[vagrant@localhost ~]$ chkconfig postgresql-9.6 –list
postgresql-9.6 	0:off	1:off	2:on	3:on	4:on	5:on	6:off
[vagrant@localhost ~]$ su – postgres
パスワード:
su: パスワードが違います
なにいいいいいいいいいいいい
ip a
Address information is displayed for each network device.
[vagrant@localhost public]$ ip a
1: lo: 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0: 
    link/ether 08:00:27:40:17:62 brd ff:ff:ff:ff:ff:ff
    inet 10.0.2.15/24 brd 10.0.2.255 scope global eth0
    inet6 fe80::a00:27ff:fe40:1762/64 scope link
       valid_lft forever preferred_lft forever
3: eth1: 
    link/ether 08:00:27:65:e0:5c brd ff:ff:ff:ff:ff:ff
    inet 192.168.33.10/24 brd 192.168.33.255 scope global eth1
    inet6 fe80::a00:27ff:fe65:e05c/64 scope link
       valid_lft forever preferred_lft forever
[vagrant@localhost public]$ ruby -v
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-linux]
[vagrant@localhost public]$ rails -v
bash: rails: コマンドが見つかりません
[vagrant@localhost public]$ git –version
git version 1.7.1
[vagrant@localhost public]$ psql –version
bash: psql: コマンドが見つかりません
railsと、psqlのインストールが必要か。
[vagrant@localhost ~]$ gem update –system
gem install rails
[vagrant@localhost ~]$ gem install bundler
Fetching bundler-2.0.2.gem
bundler’s executable “bundle” conflicts with /home/vagrant/.rbenv/versions/2.3.1/bin/bundle
Overwrite the executable? [yN]  y
Successfully installed bundler-2.0.2
Parsing documentation for bundler-2.0.2
Installing ri documentation for bundler-2.0.2
Done installing documentation for bundler after 4 seconds
1 gem installed
[vagrant@localhost ~]$ rails -v
Rails 5.2.3
php.ini session.save_handler
/etc/php.ini
[Session] ; Handler used to store/retrieve data. ; http://php.net/session.save-handler session.save_handler = files
session.save_hanlder defines the hanlder to use when saving and retrieving data related to the session. The default is files. Npte that each extension can use its own save_handler.
先ほどElastiCacheで作成したmemcacheのエンドポイントをphp.iniに設定する
;session.save_handler = files ;session.save_path = "/tmp" session.save_handler = "memcached" session.save_path = "php-session.xxxxx.cfg.apne1.cache.amazonaws.com:11211""
続いて動作確認
session_start();
echo "This is Web Server 1<br>";
if (isset($_SESSION["username"])){
	echo $_SESSION["username"];
} else {
	$_SESSION["username"] = "hoge";
}
なるほど、sessionを共有する両方のphp.iniファイルで、エンドポイントを指定して共有しているのね。
$m = new Memcached();
$m->addServer('localhost', 11211);
$m->set('foo', 'var',60);
var_dump($m->get('foo'));
$m->add('hoge', 'fuga', 60);
$m->add('hoge', 'piyo', 60);
var_dump($m->get('hoge'));
$m->flush();
var_dump($m->get('foo'));
	memcached
[vagrant@localhost public]$ yum list installed | grep memcached
[vagrant@localhost public]$ yum list installed | grep php
php.x86_64                         5.6.40-12.el6.remi                @remi-php56
php-cli.x86_64                     5.6.40-12.el6.remi                @remi-php56
php-common.x86_64                  5.6.40-12.el6.remi                @remi-php56
php-devel.x86_64                   5.6.40-12.el6.remi                @remi-php56
php-gd.x86_64                      5.6.40-12.el6.remi                @remi-php56
php-intl.x86_64                    5.6.40-12.el6.remi                @remi-php56
php-mbstring.x86_64                5.6.40-12.el6.remi                @remi-php56
php-mysqlnd.x86_64                 5.6.40-12.el6.remi                @remi-php56
php-pdo.x86_64                     5.6.40-12.el6.remi                @remi-php56
php-pecl-jsonc.x86_64              1.3.10-2.el6.remi.5.6             @remi-php56
php-pecl-jsonc-devel.x86_64        1.3.10-2.el6.remi.5.6             @remi-php56
php-pecl-zip.x86_64                1.15.4-1.el6.remi.5.6             @remi-php56
php-xml.x86_64                     5.6.40-12.el6.remi                @remi-php56
[vagrant@localhost public]$ php -v
PHP 5.6.40 (cli) (built: Jul 30 2019 11:02:37)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
[vagrant@localhost public]$ sudo yum search php memcached
読み込んだプラグイン:fastestmirror
Loading mirror speeds from cached hostfile
epel/metalink                                                                                    | 7.6 kB     00:00
 * base: ftp.jaist.ac.jp
 * epel: ftp.jaist.ac.jp
 * extras: ftp.jaist.ac.jp
 * remi-safe: ftp.riken.jp
 * updates: ftp.jaist.ac.jp
base                                                                                             | 3.7 kB     00:00
epel                                                                                             | 5.3 kB     00:00
epel/primary_db                                                                                  | 6.1 MB     00:05
extras                                                                                           | 3.4 kB     00:00
mysql-connectors-community                                                                       | 2.5 kB     00:00
mysql-tools-community                                                                            | 2.5 kB     00:00
mysql56-community                                                                                | 2.5 kB     00:00
nodesource                                                                                       | 2.5 kB     00:00
remi-safe                                                                                        | 3.0 kB     00:00
updates                                                                                          | 3.4 kB     00:00
============================================= N/S Matched: php, memcached ==============================================
php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon
php54-php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php54-php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon
php55-php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php55-php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon
php56-php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php56-php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon
php70-php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php70-php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon
php71-php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php71-php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon
php72-php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php72-php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon
php73-php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php73-php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon
php-ZendFramework-Cache-Backend-Libmemcached.noarch : Zend Framework libmemcache cache backend
php-ZendFramework-Cache-Backend-Memcached.noarch : Zend Framework memcache cache backend
Full name and summary matches only, use “search all” for everything.
ElastiCache
ElastiCache is a managed service related to AWS’s in-memory cache.
The cache engine can be selected from Redis and memcached.
There are units of nodes, shards, and clusters.
Node
– cache server
– the smallest unit of ElastiCache
– The performance(memory, CPU, etc.) varies depending on the selected node type.
Sharde
– A group that organizes nodes
– One shard has one primary node(read / write) and 0-5 read replicas (read only)
Cluster
– A group that organizes shards
– A cache engine can be selected for each cluster. Cluster mode can be enabled or disabled.
ll -d $(find ./)
なるほどーーーーー
[vagrant@localhost zend]$ ll -d $(find ./)
drwxrwxr-x.  7 vagrant vagrant   4096  8月  5 20:49 2019 ./
-rw-rw-r–.  1 vagrant vagrant     94 10月 31 23:23 2017 ./.gitignore
-rw-rw-r–.  1 vagrant vagrant   2378 10月 31 23:23 2017 ./CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   6878 10月 31 23:23 2017 ./CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant    398 10月 31 23:23 2017 ./Dockerfile
-rw-rw-r–.  1 vagrant vagrant   1517 10月 31 23:23 2017 ./LICENSE.md
-rw-rw-r–.  1 vagrant vagrant   6526 10月 31 23:23 2017 ./README.md
-rw-rw-r–.  1 vagrant vagrant    504 10月 31 23:23 2017 ./TODO.md
-rw-rw-r–.  1 vagrant vagrant   1828 10月 31 23:23 2017 ./Vagrantfile
-rw-rw-r–.  1 vagrant vagrant   1282  8月  5 20:50 2019 ./composer.json
-rw-rw-r–.  1 vagrant vagrant  37916  8月  5 20:50 2019 ./composer.lock
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:50 2019 ./config
-rw-rw-r–.  1 vagrant vagrant   2894 10月 31 23:23 2017 ./config/application.config.php
drwxrwxr-x.  2 vagrant vagrant   4096  8月  5 20:50 2019 ./config/autoload
-rw-rw-r–.  1 vagrant vagrant     22 10月 31 23:23 2017 ./config/autoload/.gitignore
-rw-rw-r–.  1 vagrant vagrant    376 10月 31 23:23 2017 ./config/autoload/README.md
-rw-rw-r–.  1 vagrant vagrant    527  8月  5 20:50 2019 ./config/autoload/development.local.php
-rw-rw-r–.  1 vagrant vagrant    527 10月 31 23:23 2017 ./config/autoload/development.local.php.dist
-rw-rw-r–.  1 vagrant vagrant    425 10月 31 23:23 2017 ./config/autoload/global.php
-rw-rw-r–.  1 vagrant vagrant    513 10月 31 23:23 2017 ./config/autoload/local.php.dist
-rw-rw-r–.  1 vagrant vagrant   5922 10月 31 23:23 2017 ./config/autoload/zend-developer-tools.local-development.php
-rw-rw-r–.  1 vagrant vagrant    665  8月  5 20:50 2019 ./config/development.config.php
-rw-rw-r–.  1 vagrant vagrant    665 10月 31 23:23 2017 ./config/development.config.php.dist
-rw-rw-r–.  1 vagrant vagrant    485 10月 31 23:23 2017 ./config/modules.config.php
drwxrwxr-x.  3 vagrant vagrant   4096 10月 31 23:23 2017 ./data
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./data/cache
-rw-rw-r–.  1 vagrant vagrant      0 10月 31 23:23 2017 ./data/cache/.gitkeep
-rw-rw-r–.  1 vagrant vagrant     91 10月 31 23:23 2017 ./docker-compose.yml
drwxrwxr-x.  3 vagrant vagrant   4096 10月 31 23:23 2017 ./module
drwxrwxr-x.  6 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/config
-rw-rw-r–.  1 vagrant vagrant   2087 10月 31 23:23 2017 ./module/Application/config/module.config.php
drwxrwxr-x.  3 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/src
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/src/Controller
-rw-rw-r–.  1 vagrant vagrant    534 10月 31 23:23 2017 ./module/Application/src/Controller/IndexController.php
-rw-rw-r–.  1 vagrant vagrant    464 10月 31 23:23 2017 ./module/Application/src/Module.php
drwxrwxr-x.  3 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/test
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/test/Controller
-rw-rw-r–.  1 vagrant vagrant   1793 10月 31 23:23 2017 ./module/Application/test/Controller/IndexControllerTest.php
drwxrwxr-x.  5 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/view
drwxrwxr-x.  3 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/view/application
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/view/application/index
-rw-rw-r–.  1 vagrant vagrant   3486 10月 31 23:23 2017 ./module/Application/view/application/index/index.phtml
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/view/error
-rw-rw-r–.  1 vagrant vagrant   3324 10月 31 23:23 2017 ./module/Application/view/error/404.phtml
-rw-rw-r–.  1 vagrant vagrant   1840 10月 31 23:23 2017 ./module/Application/view/error/index.phtml
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./module/Application/view/layout
-rw-rw-r–.  1 vagrant vagrant   2352 10月 31 23:23 2017 ./module/Application/view/layout/layout.phtml
-rw-rw-r–.  1 vagrant vagrant    997 10月 31 23:23 2017 ./phpcs.xml
-rw-rw-r–.  1 vagrant vagrant    253 10月 31 23:23 2017 ./phpunit.xml.dist
drwxrwxr-x.  6 vagrant vagrant   4096 10月 31 23:23 2017 ./public
-rw-rw-r–.  1 vagrant vagrant    748 10月 31 23:23 2017 ./public/.htaccess
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./public/css
-rw-rw-r–.  1 vagrant vagrant  26132 10月 31 23:23 2017 ./public/css/bootstrap-theme.css
-rw-rw-r–.  1 vagrant vagrant  47706 10月 31 23:23 2017 ./public/css/bootstrap-theme.css.map
-rw-rw-r–.  1 vagrant vagrant  23409 10月 31 23:23 2017 ./public/css/bootstrap-theme.min.css
-rw-rw-r–.  1 vagrant vagrant  25648 10月 31 23:23 2017 ./public/css/bootstrap-theme.min.css.map
-rw-rw-r–.  1 vagrant vagrant 146010 10月 31 23:23 2017 ./public/css/bootstrap.css
-rw-rw-r–.  1 vagrant vagrant 389287 10月 31 23:23 2017 ./public/css/bootstrap.css.map
-rw-rw-r–.  1 vagrant vagrant 121200 10月 31 23:23 2017 ./public/css/bootstrap.min.css
-rw-rw-r–.  1 vagrant vagrant 542194 10月 31 23:23 2017 ./public/css/bootstrap.min.css.map
-rw-rw-r–.  1 vagrant vagrant    931 10月 31 23:23 2017 ./public/css/style.css
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./public/fonts
-rw-rw-r–.  1 vagrant vagrant  20127 10月 31 23:23 2017 ./public/fonts/glyphicons-halflings-regular.eot
-rw-rw-r–.  1 vagrant vagrant 108738 10月 31 23:23 2017 ./public/fonts/glyphicons-halflings-regular.svg
-rw-rw-r–.  1 vagrant vagrant  45404 10月 31 23:23 2017 ./public/fonts/glyphicons-halflings-regular.ttf
-rw-rw-r–.  1 vagrant vagrant  23424 10月 31 23:23 2017 ./public/fonts/glyphicons-halflings-regular.woff
-rw-rw-r–.  1 vagrant vagrant  18028 10月 31 23:23 2017 ./public/fonts/glyphicons-halflings-regular.woff2
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./public/img
-rw-rw-r–.  1 vagrant vagrant   1406 10月 31 23:23 2017 ./public/img/favicon.ico
-rw-rw-r–.  1 vagrant vagrant    606 10月 31 23:23 2017 ./public/img/zf-logo-mark.svg
-rw-rw-r–.  1 vagrant vagrant   1255 10月 31 23:23 2017 ./public/index.php
drwxrwxr-x.  2 vagrant vagrant   4096 10月 31 23:23 2017 ./public/js
-rw-rw-r–.  1 vagrant vagrant  69707 10月 31 23:23 2017 ./public/js/bootstrap.js
-rw-rw-r–.  1 vagrant vagrant  37045 10月 31 23:23 2017 ./public/js/bootstrap.min.js
-rw-rw-r–.  1 vagrant vagrant  86351 10月 31 23:23 2017 ./public/js/jquery-3.1.0.min.js
-rw-rw-r–.  1 vagrant vagrant   1032 10月 31 23:23 2017 ./public/web.config
drwxrwxr-x.  8 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor
-rw-rw-r–.  1 vagrant vagrant    178  8月  5 20:50 2019 ./vendor/autoload.php
drwxrwxr-x.  2 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/bin
lrwxrwxrwx.  1 vagrant vagrant     73  8月  5 20:50 2019 ./vendor/bin/generate-deps-for-config-factory -> ../zendframework/zend-servicemanager/bin/generate-deps-for-config-factory
lrwxrwxrwx.  1 vagrant vagrant     67  8月  5 20:50 2019 ./vendor/bin/generate-factory-for-class -> ../zendframework/zend-servicemanager/bin/generate-factory-for-class
lrwxrwxrwx.  1 vagrant vagrant     56  8月  5 20:50 2019 ./vendor/bin/templatemap_generator.php -> ../zendframework/zend-view/bin/templatemap_generator.php
lrwxrwxrwx.  1 vagrant vagrant     55  8月  5 20:50 2019 ./vendor/bin/zf-development-mode -> ../zfcampus/zf-development-mode/bin/zf-development-mode
drwxrwxr-x.  2 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/composer
-rw-rw-r–.  1 vagrant vagrant  13459  8月  5 20:50 2019 ./vendor/composer/ClassLoader.php
-rw-rw-r–.  1 vagrant vagrant   1070  8月  5 20:50 2019 ./vendor/composer/LICENSE
-rw-rw-r–.  1 vagrant vagrant    147  8月  5 20:50 2019 ./vendor/composer/autoload_classmap.php
-rw-rw-r–.  1 vagrant vagrant    149  8月  5 20:50 2019 ./vendor/composer/autoload_namespaces.php
-rw-rw-r–.  1 vagrant vagrant   1800  8月  5 20:50 2019 ./vendor/composer/autoload_psr4.php
-rw-rw-r–.  1 vagrant vagrant   1762  8月  5 20:50 2019 ./vendor/composer/autoload_real.php
-rw-rw-r–.  1 vagrant vagrant   4196  8月  5 20:50 2019 ./vendor/composer/autoload_static.php
-rw-rw-r–.  1 vagrant vagrant  36661  8月  5 20:50 2019 ./vendor/composer/installed.json
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/container-interop
drwxrwxr-x.  4 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/container-interop/container-interop
-rw-rw-r–.  1 vagrant vagrant     37  2月 15 04:40 2017 ./vendor/container-interop/container-interop/.gitignore
-rw-rw-r–.  1 vagrant vagrant   1084  2月 15 04:40 2017 ./vendor/container-interop/container-interop/LICENSE
-rw-rw-r–.  1 vagrant vagrant   8725  2月 15 04:40 2017 ./vendor/container-interop/container-interop/README.md
-rw-rw-r–.  1 vagrant vagrant    434  2月 15 04:40 2017 ./vendor/container-interop/container-interop/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs
-rw-rw-r–.  1 vagrant vagrant   5342  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs/ContainerInterface-meta.md
-rw-rw-r–.  1 vagrant vagrant   5990  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs/ContainerInterface.md
-rw-rw-r–.  1 vagrant vagrant  12492  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs/Delegate-lookup-meta.md
-rw-rw-r–.  1 vagrant vagrant   2940  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs/Delegate-lookup.md
drwxrwxr-x.  2 vagrant vagrant   4096  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs/images
-rw-rw-r–.  1 vagrant vagrant  25738  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs/images/interoperating_containers.png
-rw-rw-r–.  1 vagrant vagrant  16252  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs/images/priority.png
-rw-rw-r–.  1 vagrant vagrant  16265  2月 15 04:40 2017 ./vendor/container-interop/container-interop/docs/images/side_by_side_containers.png
drwxrwxr-x.  3 vagrant vagrant   4096  2月 15 04:40 2017 ./vendor/container-interop/container-interop/src
drwxrwxr-x.  3 vagrant vagrant   4096  2月 15 04:40 2017 ./vendor/container-interop/container-interop/src/Interop
drwxrwxr-x.  3 vagrant vagrant   4096  2月 15 04:40 2017 ./vendor/container-interop/container-interop/src/Interop/Container
-rw-rw-r–.  1 vagrant vagrant    354  2月 15 04:40 2017 ./vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php
drwxrwxr-x.  2 vagrant vagrant   4096  2月 15 04:40 2017 ./vendor/container-interop/container-interop/src/Interop/Container/Exception
-rw-rw-r–.  1 vagrant vagrant    356  2月 15 04:40 2017 ./vendor/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php
-rw-rw-r–.  1 vagrant vagrant    345  2月 15 04:40 2017 ./vendor/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/psr
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/psr/container
-rw-rw-r–.  1 vagrant vagrant     37  2月 15 01:28 2017 ./vendor/psr/container/.gitignore
-rw-rw-r–.  1 vagrant vagrant   1145  2月 15 01:28 2017 ./vendor/psr/container/LICENSE
-rw-rw-r–.  1 vagrant vagrant    278  2月 15 01:28 2017 ./vendor/psr/container/README.md
-rw-rw-r–.  1 vagrant vagrant    654  2月 15 01:28 2017 ./vendor/psr/container/composer.json
drwxrwxr-x.  2 vagrant vagrant   4096  2月 15 01:28 2017 ./vendor/psr/container/src
-rw-rw-r–.  1 vagrant vagrant    248  2月 15 01:28 2017 ./vendor/psr/container/src/ContainerExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant   1098  2月 15 01:28 2017 ./vendor/psr/container/src/ContainerInterface.php
-rw-rw-r–.  1 vagrant vagrant    256  2月 15 01:28 2017 ./vendor/psr/container/src/NotFoundExceptionInterface.php
drwxrwxr-x. 16 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework
drwxrwxr-x.  4 vagrant vagrant   4096  8月  5 20:49 2019 ./vendor/zendframework/zend-component-installer
-rw-rw-r–.  1 vagrant vagrant    105  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/.zf-mkdoc-theme-preserve
-rw-rw-r–.  1 vagrant vagrant   7926  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7318  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant   2558  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/README.md
-rw-rw-r–.  1 vagrant vagrant   1410  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/composer.json
-rw-rw-r–.  1 vagrant vagrant  83268  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/composer.lock
drwxrwxr-x.  3 vagrant vagrant   4096  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/doc
drwxrwxr-x.  2 vagrant vagrant   4096  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/doc/book
-rw-rw-r–.  1 vagrant vagrant  10425  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/doc/book/index.html
lrwxrwxrwx.  1 vagrant vagrant     15  8月  5 20:49 2019 ./vendor/zendframework/zend-component-installer/doc/book/index.md -> ../../README.md
-rw-rw-r–.  1 vagrant vagrant    303  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/mkdocs.yml
drwxrwxr-x.  5 vagrant vagrant   4096  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src
-rw-rw-r–.  1 vagrant vagrant   6161  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Collection.php
-rw-rw-r–.  1 vagrant vagrant  23054  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ComponentInstaller.php
drwxrwxr-x.  2 vagrant vagrant   4096  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery
-rw-rw-r–.  1 vagrant vagrant   4379  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery.php
-rw-rw-r–.  1 vagrant vagrant   1621  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/AbstractDiscovery.php
-rw-rw-r–.  1 vagrant vagrant    757  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/ApplicationConfig.php
-rw-rw-r–.  1 vagrant vagrant   1087  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/ConfigAggregator.php
-rw-rw-r–.  1 vagrant vagrant    574  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DevelopmentConfig.php
-rw-rw-r–.  1 vagrant vagrant    573  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DevelopmentWorkConfig.php
-rw-rw-r–.  1 vagrant vagrant   1600  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DiscoveryChain.php
-rw-rw-r–.  1 vagrant vagrant    562  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DiscoveryChainInterface.php
-rw-rw-r–.  1 vagrant vagrant    779  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DiscoveryInterface.php
-rw-rw-r–.  1 vagrant vagrant   1092  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/ExpressiveConfig.php
-rw-rw-r–.  1 vagrant vagrant    730  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/ModulesConfig.php
-rw-rw-r–.  1 vagrant vagrant   1051  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/ConfigOption.php
drwxrwxr-x.  2 vagrant vagrant   4096  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Exception
-rw-rw-r–.  1 vagrant vagrant    415  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Exception/RuntimeException.php
drwxrwxr-x.  2 vagrant vagrant   4096  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector
-rw-rw-r–.  1 vagrant vagrant  10468  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/AbstractInjector.php
-rw-rw-r–.  1 vagrant vagrant   1913  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/ApplicationConfigInjector.php
-rw-rw-r–.  1 vagrant vagrant   1835  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/ConditionalDiscoveryTrait.php
-rw-rw-r–.  1 vagrant vagrant   2622  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/ConfigAggregatorInjector.php
-rw-rw-r–.  1 vagrant vagrant   4102  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/ConfigInjectorChain.php
-rw-rw-r–.  1 vagrant vagrant    581  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/DevelopmentConfigInjector.php
-rw-rw-r–.  1 vagrant vagrant    580  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/DevelopmentWorkConfigInjector.php
-rw-rw-r–.  1 vagrant vagrant   2611  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/ExpressiveConfigInjector.php
-rw-rw-r–.  1 vagrant vagrant   1968  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/InjectorInterface.php
-rw-rw-r–.  1 vagrant vagrant   1814  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/ModulesConfigInjector.php
-rw-rw-r–.  1 vagrant vagrant   1293  2月 23 02:44 2017 ./vendor/zendframework/zend-component-installer/src/Injector/NoopInjector.php
drwxrwxr-x.  4 vagrant vagrant   4096  8月  5 20:49 2019 ./vendor/zendframework/zend-config
-rw-rw-r–.  1 vagrant vagrant   1658  2月  5 08:01 2016 ./vendor/zendframework/zend-config/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   7546  2月  5 08:01 2016 ./vendor/zendframework/zend-config/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  2月  5 08:01 2016 ./vendor/zendframework/zend-config/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    768  2月  5 08:01 2016 ./vendor/zendframework/zend-config/README.md
-rw-rw-r–.  1 vagrant vagrant   1500  2月  5 08:01 2016 ./vendor/zendframework/zend-config/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc
drwxrwxr-x.  2 vagrant vagrant   4096  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc/book
-rw-rw-r–.  1 vagrant vagrant   1823  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc/book/factory.md
-rw-rw-r–.  1 vagrant vagrant    240  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc/book/index.html
lrwxrwxrwx.  1 vagrant vagrant     15  8月  5 20:49 2019 ./vendor/zendframework/zend-config/doc/book/index.md -> ../../README.md
-rw-rw-r–.  1 vagrant vagrant   2529  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc/book/intro.md
-rw-rw-r–.  1 vagrant vagrant   4069  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc/book/processor.md
-rw-rw-r–.  1 vagrant vagrant  10625  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc/book/reader.md
-rw-rw-r–.  1 vagrant vagrant   3059  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc/book/theory.md
-rw-rw-r–.  1 vagrant vagrant   7907  2月  5 08:01 2016 ./vendor/zendframework/zend-config/doc/book/writer.md
-rw-rw-r–.  1 vagrant vagrant    518  2月  5 08:01 2016 ./vendor/zendframework/zend-config/mkdocs.yml
drwxrwxr-x.  6 vagrant vagrant   4096  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src
-rw-rw-r–.  1 vagrant vagrant   5124  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/AbstractConfigFactory.php
-rw-rw-r–.  1 vagrant vagrant   9199  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Config.php
drwxrwxr-x.  2 vagrant vagrant   4096  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Exception
-rw-rw-r–.  1 vagrant vagrant    377  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    443  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    427  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant   9076  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Factory.php
drwxrwxr-x.  2 vagrant vagrant   4096  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Processor
-rw-rw-r–.  1 vagrant vagrant   2139  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Processor/Constant.php
-rw-rw-r–.  1 vagrant vagrant   1961  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Processor/Filter.php
-rw-rw-r–.  1 vagrant vagrant    745  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Processor/ProcessorInterface.php
-rw-rw-r–.  1 vagrant vagrant   1371  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Processor/Queue.php
-rw-rw-r–.  1 vagrant vagrant   6424  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Processor/Token.php
-rw-rw-r–.  1 vagrant vagrant   3146  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Processor/Translator.php
drwxrwxr-x.  2 vagrant vagrant   4096  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Reader
-rw-rw-r–.  1 vagrant vagrant   6028  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Reader/Ini.php
-rw-rw-r–.  1 vagrant vagrant   4017  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Reader/JavaProperties.php
-rw-rw-r–.  1 vagrant vagrant   2884  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Reader/Json.php
-rw-rw-r–.  1 vagrant vagrant    699  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Reader/ReaderInterface.php
-rw-rw-r–.  1 vagrant vagrant   5222  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Reader/Xml.php
-rw-rw-r–.  1 vagrant vagrant   4199  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Reader/Yaml.php
-rw-rw-r–.  1 vagrant vagrant   3474  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/ReaderPluginManager.php
drwxrwxr-x.  2 vagrant vagrant   4096  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Writer
-rw-rw-r–.  1 vagrant vagrant   2356  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Writer/AbstractWriter.php
-rw-rw-r–.  1 vagrant vagrant   4670  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Writer/Ini.php
-rw-rw-r–.  1 vagrant vagrant    644  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Writer/Json.php
-rw-rw-r–.  1 vagrant vagrant   6618  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Writer/PhpArray.php
-rw-rw-r–.  1 vagrant vagrant    780  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Writer/WriterInterface.php
-rw-rw-r–.  1 vagrant vagrant   2717  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Writer/Xml.php
-rw-rw-r–.  1 vagrant vagrant   2144  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/Writer/Yaml.php
-rw-rw-r–.  1 vagrant vagrant   3375  2月  5 08:01 2016 ./vendor/zendframework/zend-config/src/WriterPluginManager.php
drwxrwxr-x.  4 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-escaper
-rw-rw-r–.  1 vagrant vagrant    728  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7684  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    870  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/README.md
-rw-rw-r–.  1 vagrant vagrant    756  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book
-rw-rw-r–.  1 vagrant vagrant    577  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/configuration.md
-rw-rw-r–.  1 vagrant vagrant   1824  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/escaping-css.md
-rw-rw-r–.  1 vagrant vagrant   3610  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/escaping-html-attributes.md
-rw-rw-r–.  1 vagrant vagrant   1986  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/escaping-html.md
-rw-rw-r–.  1 vagrant vagrant   2998  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/escaping-javascript.md
-rw-rw-r–.  1 vagrant vagrant   1320  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/escaping-url.md
-rw-rw-r–.  1 vagrant vagrant    283  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/index.html
lrwxrwxrwx.  1 vagrant vagrant     15  8月  5 20:50 2019 ./vendor/zendframework/zend-escaper/doc/book/index.md -> ../../README.md
-rw-rw-r–.  1 vagrant vagrant   2292  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/intro.md
-rw-rw-r–.  1 vagrant vagrant   7817  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/doc/book/theory-of-operation.md
-rw-rw-r–.  1 vagrant vagrant    655  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/mkdocs.yml
drwxrwxr-x.  3 vagrant vagrant   4096  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/src
-rw-rw-r–.  1 vagrant vagrant  12316  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/src/Escaper.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/src/Exception
-rw-rw-r–.  1 vagrant vagrant    378  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    486  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    470  7月  1 04:48 2016 ./vendor/zendframework/zend-escaper/src/Exception/RuntimeException.php
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:49 2019 ./vendor/zendframework/zend-eventmanager
-rw-rw-r–.  1 vagrant vagrant   9552 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7611 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant   1359 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/README.md
-rw-rw-r–.  1 vagrant vagrant   1620 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/composer.json
drwxrwxr-x.  5 vagrant vagrant   4096 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src
-rw-rw-r–.  1 vagrant vagrant    825 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/AbstractListenerAggregate.php
-rw-rw-r–.  1 vagrant vagrant   4465 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Event.php
-rw-rw-r–.  1 vagrant vagrant   2078 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/EventInterface.php
-rw-rw-r–.  1 vagrant vagrant   9583 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/EventManager.php
-rw-rw-r–.  1 vagrant vagrant    728 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/EventManagerAwareInterface.php
-rw-rw-r–.  1 vagrant vagrant   2480 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/EventManagerAwareTrait.php
-rw-rw-r–.  1 vagrant vagrant   5485 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/EventManagerInterface.php
-rw-rw-r–.  1 vagrant vagrant    701 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/EventsCapableInterface.php
drwxrwxr-x.  2 vagrant vagrant   4096 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Exception
-rw-rw-r–.  1 vagrant vagrant    461 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Exception/DomainException.php
-rw-rw-r–.  1 vagrant vagrant    449 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    517 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    507 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Exception/InvalidCallbackException.php
-rw-rw-r–.  1 vagrant vagrant    511 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Exception/RuntimeException.php
drwxrwxr-x.  2 vagrant vagrant   4096 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Filter
-rw-rw-r–.  1 vagrant vagrant   1348 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Filter/FilterInterface.php
-rw-rw-r–.  1 vagrant vagrant   3142 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Filter/FilterIterator.php
-rw-rw-r–.  1 vagrant vagrant   2675 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/FilterChain.php
-rw-rw-r–.  1 vagrant vagrant   2116 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/LazyEventListener.php
-rw-rw-r–.  1 vagrant vagrant   3584 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/LazyListener.php
-rw-rw-r–.  1 vagrant vagrant   3569 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/LazyListenerAggregate.php
-rw-rw-r–.  1 vagrant vagrant   1322 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/ListenerAggregateInterface.php
-rw-rw-r–.  1 vagrant vagrant    852 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/ListenerAggregateTrait.php
-rw-rw-r–.  1 vagrant vagrant   1868 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/ResponseCollection.php
-rw-rw-r–.  1 vagrant vagrant   8865 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/SharedEventManager.php
-rw-rw-r–.  1 vagrant vagrant   2100 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/SharedEventManagerInterface.php
-rw-rw-r–.  1 vagrant vagrant    693 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/SharedEventsCapableInterface.php
drwxrwxr-x.  2 vagrant vagrant   4096 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Test
-rw-rw-r–.  1 vagrant vagrant   5119 12月 20 06:47 2016 ./vendor/zendframework/zend-eventmanager/src/Test/EventListenerIntrospectionTrait.php
drwxrwxr-x.  4 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-http
-rw-rw-r–.  1 vagrant vagrant   4338  1月 31 23:41 2017 ./vendor/zendframework/zend-http/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  1月 31 23:41 2017 ./vendor/zendframework/zend-http/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7548  1月 31 23:41 2017 ./vendor/zendframework/zend-http/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  1月 31 23:41 2017 ./vendor/zendframework/zend-http/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    849  1月 31 23:41 2017 ./vendor/zendframework/zend-http/README.md
-rw-rw-r–.  1 vagrant vagrant   1345  1月 31 23:41 2017 ./vendor/zendframework/zend-http/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc
drwxrwxr-x.  3 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book
drwxrwxr-x.  2 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/client
-rw-rw-r–.  1 vagrant vagrant  20702  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/client/adapters.md
-rw-rw-r–.  1 vagrant vagrant  13474  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/client/advanced.md
-rw-rw-r–.  1 vagrant vagrant   5851  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/client/cookies.md
-rw-rw-r–.  1 vagrant vagrant   9709  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/client/intro.md
-rw-rw-r–.  1 vagrant vagrant   1609  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/client/static.md
-rw-rw-r–.  1 vagrant vagrant  26299  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/headers.md
-rw-rw-r–.  1 vagrant vagrant    388  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/index.html
lrwxrwxrwx.  1 vagrant vagrant     15  8月  5 20:50 2019 ./vendor/zendframework/zend-http/doc/book/index.md -> ../../README.md
-rw-rw-r–.  1 vagrant vagrant   1705  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/intro.md
-rw-rw-r–.  1 vagrant vagrant   9611  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/request.md
-rw-rw-r–.  1 vagrant vagrant   6415  1月 31 23:41 2017 ./vendor/zendframework/zend-http/doc/book/response.md
-rw-rw-r–.  1 vagrant vagrant    632  1月 31 23:41 2017 ./vendor/zendframework/zend-http/mkdocs.yml
-rw-rw-r–.  1 vagrant vagrant    279  1月 31 23:41 2017 ./vendor/zendframework/zend-http/phpcs.xml
drwxrwxr-x.  7 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src
-rw-rw-r–.  1 vagrant vagrant   2628  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/AbstractMessage.php
drwxrwxr-x.  4 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client
-rw-rw-r–.  1 vagrant vagrant  44685  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client.php
drwxrwxr-x.  3 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter
-rw-rw-r–.  1 vagrant vagrant   1539  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php
-rw-rw-r–.  1 vagrant vagrant  18868  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Curl.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Exception
-rw-rw-r–.  1 vagrant vagrant    493  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    424  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Exception/InitializationException.php
-rw-rw-r–.  1 vagrant vagrant    510  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    500  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Exception/OutOfRangeException.php
-rw-rw-r–.  1 vagrant vagrant    494  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant    478  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Exception/TimeoutException.php
-rw-rw-r–.  1 vagrant vagrant   9406  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Proxy.php
-rw-rw-r–.  1 vagrant vagrant  23078  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Socket.php
-rw-rw-r–.  1 vagrant vagrant    782  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/StreamInterface.php
-rw-rw-r–.  1 vagrant vagrant   5478  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Adapter/Test.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Exception
-rw-rw-r–.  1 vagrant vagrant    466  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    495  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    477  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Exception/OutOfRangeException.php
-rw-rw-r–.  1 vagrant vagrant    479  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Client/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant   2964  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/ClientStatic.php
-rw-rw-r–.  1 vagrant vagrant  12219  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Cookies.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Exception
-rw-rw-r–.  1 vagrant vagrant    375  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    445  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    431  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Exception/OutOfRangeException.php
-rw-rw-r–.  1 vagrant vagrant    429  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Exception/RuntimeException.php
drwxrwxr-x.  4 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header
-rw-rw-r–.  1 vagrant vagrant  14432  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/AbstractAccept.php
-rw-rw-r–.  1 vagrant vagrant   7203  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/AbstractDate.php
-rw-rw-r–.  1 vagrant vagrant   3844  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/AbstractLocation.php
drwxrwxr-x.  3 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Accept
-rw-rw-r–.  1 vagrant vagrant   3146  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Accept.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart
-rw-rw-r–.  1 vagrant vagrant   2436  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php
-rw-rw-r–.  1 vagrant vagrant    946  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/AcceptFieldValuePart.php
-rw-rw-r–.  1 vagrant vagrant    675  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/CharsetFieldValuePart.php
-rw-rw-r–.  1 vagrant vagrant    677  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/EncodingFieldValuePart.php
-rw-rw-r–.  1 vagrant vagrant    833  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/LanguageFieldValuePart.php
-rw-rw-r–.  1 vagrant vagrant   1877  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/AcceptCharset.php
-rw-rw-r–.  1 vagrant vagrant   1888  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/AcceptEncoding.php
-rw-rw-r–.  1 vagrant vagrant   2949  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/AcceptLanguage.php
-rw-rw-r–.  1 vagrant vagrant   1655  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/AcceptRanges.php
-rw-rw-r–.  1 vagrant vagrant   2513  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Age.php
-rw-rw-r–.  1 vagrant vagrant   4633  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Allow.php
-rw-rw-r–.  1 vagrant vagrant   1551  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/AuthenticationInfo.php
-rw-rw-r–.  1 vagrant vagrant   1550  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Authorization.php
-rw-rw-r–.  1 vagrant vagrant   6551  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/CacheControl.php
-rw-rw-r–.  1 vagrant vagrant   2670  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Connection.php
-rw-rw-r–.  1 vagrant vagrant   1580  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentDisposition.php
-rw-rw-r–.  1 vagrant vagrant   1544  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentEncoding.php
-rw-rw-r–.  1 vagrant vagrant   1565  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentLanguage.php
-rw-rw-r–.  1 vagrant vagrant   1564  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentLength.php
-rw-rw-r–.  1 vagrant vagrant    660  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentLocation.php
-rw-rw-r–.  1 vagrant vagrant   1489  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentMD5.php
-rw-rw-r–.  1 vagrant vagrant   1550  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentRange.php
-rw-rw-r–.  1 vagrant vagrant   4329  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentSecurityPolicy.php
-rw-rw-r–.  1 vagrant vagrant   1640  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentTransferEncoding.php
-rw-rw-r–.  1 vagrant vagrant  10192  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ContentType.php
-rw-rw-r–.  1 vagrant vagrant   3707  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Cookie.php
-rw-rw-r–.  1 vagrant vagrant    618  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Date.php
-rw-rw-r–.  1 vagrant vagrant   1455  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Etag.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Exception
-rw-rw-r–.  1 vagrant vagrant    430  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Exception/DomainException.php
-rw-rw-r–.  1 vagrant vagrant    466  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    487  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    471  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant   1465  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Expect.php
-rw-rw-r–.  1 vagrant vagrant    874  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Expires.php
-rw-rw-r–.  1 vagrant vagrant   1455  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/From.php
-rw-rw-r–.  1 vagrant vagrant   4212  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/GenericHeader.php
-rw-rw-r–.  1 vagrant vagrant   1499  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/GenericMultiHeader.php
-rw-rw-r–.  1 vagrant vagrant   1128  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/HeaderInterface.php
-rw-rw-r–.  1 vagrant vagrant   2895  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/HeaderValue.php
-rw-rw-r–.  1 vagrant vagrant   1455  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Host.php
-rw-rw-r–.  1 vagrant vagrant   1474  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/IfMatch.php
-rw-rw-r–.  1 vagrant vagrant    655  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/IfModifiedSince.php
-rw-rw-r–.  1 vagrant vagrant   1549  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/IfNoneMatch.php
-rw-rw-r–.  1 vagrant vagrant   1473  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/IfRange.php
-rw-rw-r–.  1 vagrant vagrant    661  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/IfUnmodifiedSince.php
-rw-rw-r–.  1 vagrant vagrant   1452  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/KeepAlive.php
-rw-rw-r–.  1 vagrant vagrant    644  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/LastModified.php
-rw-rw-r–.  1 vagrant vagrant    637  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Location.php
-rw-rw-r–.  1 vagrant vagrant   1545  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/MaxForwards.php
-rw-rw-r–.  1 vagrant vagrant    462  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/MultipleHeaderInterface.php
-rw-rw-r–.  1 vagrant vagrant   1668  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Origin.php
-rw-rw-r–.  1 vagrant vagrant   1465  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Pragma.php
-rw-rw-r–.  1 vagrant vagrant   2133  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ProxyAuthenticate.php
-rw-rw-r–.  1 vagrant vagrant   1580  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/ProxyAuthorization.php
-rw-rw-r–.  1 vagrant vagrant   1462  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Range.php
-rw-rw-r–.  1 vagrant vagrant    993  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Referer.php
-rw-rw-r–.  1 vagrant vagrant   1425  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Refresh.php
-rw-rw-r–.  1 vagrant vagrant   2430  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/RetryAfter.php
-rw-rw-r–.  1 vagrant vagrant   1465  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Server.php
-rw-rw-r–.  1 vagrant vagrant  17101  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/SetCookie.php
-rw-rw-r–.  1 vagrant vagrant   1445  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/TE.php
-rw-rw-r–.  1 vagrant vagrant   1469  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Trailer.php
-rw-rw-r–.  1 vagrant vagrant   1548  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/TransferEncoding.php
-rw-rw-r–.  1 vagrant vagrant   1470  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Upgrade.php
-rw-rw-r–.  1 vagrant vagrant   1519  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/UserAgent.php
-rw-rw-r–.  1 vagrant vagrant   1455  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Vary.php
-rw-rw-r–.  1 vagrant vagrant   1450  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Via.php
-rw-rw-r–.  1 vagrant vagrant   2117  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/WWWAuthenticate.php
-rw-rw-r–.  1 vagrant vagrant   1470  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Header/Warning.php
-rw-rw-r–.  1 vagrant vagrant   4039  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/HeaderLoader.php
-rw-rw-r–.  1 vagrant vagrant  14143  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Headers.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/PhpEnvironment
-rw-rw-r–.  1 vagrant vagrant   4570  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/PhpEnvironment/RemoteAddress.php
-rw-rw-r–.  1 vagrant vagrant  17629  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/PhpEnvironment/Request.php
-rw-rw-r–.  1 vagrant vagrant   2792  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/PhpEnvironment/Response.php
-rw-rw-r–.  1 vagrant vagrant  15154  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Request.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Response
-rw-rw-r–.  1 vagrant vagrant  15532  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Response.php
-rw-rw-r–.  1 vagrant vagrant   7401  1月 31 23:41 2017 ./vendor/zendframework/zend-http/src/Response/Stream.php
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:49 2019 ./vendor/zendframework/zend-loader
-rw-rw-r–.  1 vagrant vagrant   7546  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    560  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/README.md
-rw-rw-r–.  1 vagrant vagrant    753  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src
-rw-rw-r–.  1 vagrant vagrant   7196  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/AutoloaderFactory.php
-rw-rw-r–.  1 vagrant vagrant   5929  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/ClassMapAutoloader.php
drwxrwxr-x.  2 vagrant vagrant   4096  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception
-rw-rw-r–.  1 vagrant vagrant    494  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/BadMethodCallException.php
-rw-rw-r–.  1 vagrant vagrant    476  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/DomainException.php
-rw-rw-r–.  1 vagrant vagrant    377  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    494  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    475  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/InvalidPathException.php
-rw-rw-r–.  1 vagrant vagrant    488  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/MissingResourceNamespaceException.php
-rw-rw-r–.  1 vagrant vagrant    490  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/PluginLoaderException.php
-rw-rw-r–.  1 vagrant vagrant    478  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant    444  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/Exception/SecurityException.php
-rw-rw-r–.  1 vagrant vagrant  13262  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/ModuleAutoloader.php
-rw-rw-r–.  1 vagrant vagrant   5609  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/PluginClassLoader.php
-rw-rw-r–.  1 vagrant vagrant   1032  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/PluginClassLocator.php
-rw-rw-r–.  1 vagrant vagrant    877  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/ShortNameLocator.php
-rw-rw-r–.  1 vagrant vagrant   1557  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/SplAutoloader.php
-rw-rw-r–.  1 vagrant vagrant  10296  6月  3 23:05 2015 ./vendor/zendframework/zend-loader/src/StandardAutoloader.php
drwxrwxr-x.  4 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-modulemanager
-rw-rw-r–.  1 vagrant vagrant   3447  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7726  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant   1004  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/README.md
-rw-rw-r–.  1 vagrant vagrant   1541  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc
drwxrwxr-x.  2 vagrant vagrant   4096  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc/book
-rw-rw-r–.  1 vagrant vagrant   2941  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc/book/best-practices.md
-rw-rw-r–.  1 vagrant vagrant    305  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc/book/index.html
-rw-rw-r–.  1 vagrant vagrant     15  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc/book/index.md
-rw-rw-r–.  1 vagrant vagrant   3330  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc/book/intro.md
-rw-rw-r–.  1 vagrant vagrant   4388  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc/book/module-autoloader.md
-rw-rw-r–.  1 vagrant vagrant   4927  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc/book/module-class.md
-rw-rw-r–.  1 vagrant vagrant  12312  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/doc/book/module-manager.md
-rw-rw-r–.  1 vagrant vagrant    545  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/mkdocs.yml
drwxrwxr-x.  5 vagrant vagrant   4096  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src
drwxrwxr-x.  2 vagrant vagrant   4096  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Exception
-rw-rw-r–.  1 vagrant vagrant    384  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    488  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    478  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Exception/MissingDependencyModuleException.php
-rw-rw-r–.  1 vagrant vagrant    463  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Exception/RuntimeException.php
drwxrwxr-x.  2 vagrant vagrant   4096  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature
-rw-rw-r–.  1 vagrant vagrant    588  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/AutoloaderProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    643  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/BootstrapListenerInterface.php
-rw-rw-r–.  1 vagrant vagrant    546  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/ConfigProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant   1005  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/ConsoleBannerProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant   1465  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/ConsoleUsageProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    619  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/ControllerPluginProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    607  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/ControllerProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    563  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/DependencyIndicatorInterface.php
-rw-rw-r–.  1 vagrant vagrant    599  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/FilterProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    609  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/FormElementProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    603  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/HydratorProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    609  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/InitProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    609  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/InputFilterProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    763  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/LocatorRegisteredInterface.php
-rw-rw-r–.  1 vagrant vagrant    611  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/LogProcessorProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    605  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/LogWriterProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    597  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/RouteProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    471  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/SerializerProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    601  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/ServiceProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    619  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/TranslatorPluginProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    605  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/ValidatorProviderInterface.php
-rw-rw-r–.  1 vagrant vagrant    607  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Feature/ViewHelperProviderInterface.php
drwxrwxr-x.  3 vagrant vagrant   4096  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener
-rw-rw-r–.  1 vagrant vagrant   1517  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/AbstractListener.php
-rw-rw-r–.  1 vagrant vagrant   1004  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/AutoloaderListener.php
-rw-rw-r–.  1 vagrant vagrant  10884  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/ConfigListener.php
-rw-rw-r–.  1 vagrant vagrant    762  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/ConfigMergerInterface.php
-rw-rw-r–.  1 vagrant vagrant   3767  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/DefaultListenerAggregate.php
drwxrwxr-x.  2 vagrant vagrant   4096  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/Exception
-rw-rw-r–.  1 vagrant vagrant    509  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    541  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    516  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant    853  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/InitTrigger.php
-rw-rw-r–.  1 vagrant vagrant   9898  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/ListenerOptions.php
-rw-rw-r–.  1 vagrant vagrant   3741  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/LocatorRegistrationListener.php
-rw-rw-r–.  1 vagrant vagrant   1644  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/ModuleDependencyCheckerListener.php
-rw-rw-r–.  1 vagrant vagrant   3132  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/ModuleLoaderListener.php
-rw-rw-r–.  1 vagrant vagrant    841  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/ModuleResolverListener.php
-rw-rw-r–.  1 vagrant vagrant   1153  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/OnBootstrapListener.php
-rw-rw-r–.  1 vagrant vagrant  11502  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/ServiceListener.php
-rw-rw-r–.  1 vagrant vagrant   1381  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/Listener/ServiceListenerInterface.php
-rw-rw-r–.  1 vagrant vagrant   3287  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/ModuleEvent.php
-rw-rw-r–.  1 vagrant vagrant   8933  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/ModuleManager.php
-rw-rw-r–.  1 vagrant vagrant   1489  5月 17 06:21 2016 ./vendor/zendframework/zend-modulemanager/src/ModuleManagerInterface.php
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-mvc
-rw-rw-r–.  1 vagrant vagrant  23063 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7656 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant   1276 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/README.md
-rw-rw-r–.  1 vagrant vagrant   2781 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/composer.json
-rw-rw-r–.  1 vagrant vagrant  81019 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/composer.lock
-rw-rw-r–.  1 vagrant vagrant   1061 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/mkdocs.yml
drwxrwxr-x.  7 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src
-rw-rw-r–.  1 vagrant vagrant  11260 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Application.php
-rw-rw-r–.  1 vagrant vagrant    965 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ApplicationInterface.php
drwxrwxr-x.  3 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller
-rw-rw-r–.  1 vagrant vagrant   2130 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/AbstractActionController.php
-rw-rw-r–.  1 vagrant vagrant   7736 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/AbstractController.php
-rw-rw-r–.  1 vagrant vagrant  18825 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/AbstractRestfulController.php
-rw-rw-r–.  1 vagrant vagrant   5093 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/ControllerManager.php
-rw-rw-r–.  1 vagrant vagrant   6405 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/LazyControllerAbstractFactory.php
drwxrwxr-x.  3 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin
-rw-rw-r–.  1 vagrant vagrant    961 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/AbstractPlugin.php
-rw-rw-r–.  1 vagrant vagrant   8633 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/AcceptableViewModelSelector.php
-rw-rw-r–.  1 vagrant vagrant    780 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/CreateHttpNotFoundModel.php
-rw-rw-r–.  1 vagrant vagrant  11272 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/Forward.php
-rw-rw-r–.  1 vagrant vagrant   2583 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/Layout.php
-rw-rw-r–.  1 vagrant vagrant   3947 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/Params.php
-rw-rw-r–.  1 vagrant vagrant    759 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/PluginInterface.php
-rw-rw-r–.  1 vagrant vagrant   3780 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/Redirect.php
drwxrwxr-x.  2 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/Service
-rw-rw-r–.  1 vagrant vagrant   1763 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/Service/ForwardFactory.php
-rw-rw-r–.  1 vagrant vagrant   3924 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/Plugin/Url.php
-rw-rw-r–.  1 vagrant vagrant   6147 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Controller/PluginManager.php
-rw-rw-r–.  1 vagrant vagrant   8206 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/DispatchListener.php
drwxrwxr-x.  2 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception
-rw-rw-r–.  1 vagrant vagrant    436 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception/BadMethodCallException.php
-rw-rw-r–.  1 vagrant vagrant    422 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception/DomainException.php
-rw-rw-r–.  1 vagrant vagrant    374 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    440 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    427 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception/InvalidControllerException.php
-rw-rw-r–.  1 vagrant vagrant    423 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception/InvalidPluginException.php
-rw-rw-r–.  1 vagrant vagrant    400 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception/MissingLocatorException.php
-rw-rw-r–.  1 vagrant vagrant    424 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant   2878 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/HttpMethodListener.php
-rw-rw-r–.  1 vagrant vagrant    676 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/InjectApplicationEventInterface.php
-rw-rw-r–.  1 vagrant vagrant   4543 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/MiddlewareListener.php
-rw-rw-r–.  1 vagrant vagrant   2453 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ModuleRouteListener.php
-rw-rw-r–.  1 vagrant vagrant   5969 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/MvcEvent.php
drwxrwxr-x.  2 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ResponseSender
-rw-rw-r–.  1 vagrant vagrant   1176 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ResponseSender/AbstractResponseSender.php
-rw-rw-r–.  1 vagrant vagrant   1277 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ResponseSender/HttpResponseSender.php
-rw-rw-r–.  1 vagrant vagrant    921 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ResponseSender/PhpEnvironmentResponseSender.php
-rw-rw-r–.  1 vagrant vagrant    547 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ResponseSender/ResponseSenderInterface.php
-rw-rw-r–.  1 vagrant vagrant   2698 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ResponseSender/SendResponseEvent.php
-rw-rw-r–.  1 vagrant vagrant   1322 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/ResponseSender/SimpleStreamResponseSender.php
-rw-rw-r–.  1 vagrant vagrant   1845 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/RouteListener.php
-rw-rw-r–.  1 vagrant vagrant   4287 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/SendResponseListener.php
drwxrwxr-x.  2 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service
-rw-rw-r–.  1 vagrant vagrant   1635 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/AbstractPluginManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1499 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ApplicationFactory.php
-rw-rw-r–.  1 vagrant vagrant   1694 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ConfigFactory.php
-rw-rw-r–.  1 vagrant vagrant   1841 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ControllerManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant    549 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ControllerPluginManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1322 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/DispatchListenerFactory.php
-rw-rw-r–.  1 vagrant vagrant   2353 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/EventManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1994 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/HttpDefaultRenderingStrategyFactory.php
-rw-rw-r–.  1 vagrant vagrant   2301 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/HttpExceptionStrategyFactory.php
-rw-rw-r–.  1 vagrant vagrant   1719 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/HttpMethodListenerFactory.php
-rw-rw-r–.  1 vagrant vagrant   2840 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/HttpRouteNotFoundStrategyFactory.php
-rw-rw-r–.  1 vagrant vagrant    992 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/HttpViewManagerConfigTrait.php
-rw-rw-r–.  1 vagrant vagrant   1324 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/HttpViewManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1590 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/InjectTemplateListenerFactory.php
-rw-rw-r–.  1 vagrant vagrant   3622 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ModuleManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant    548 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/PaginatorPluginManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1257 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/RequestFactory.php
-rw-rw-r–.  1 vagrant vagrant   1271 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ResponseFactory.php
-rw-rw-r–.  1 vagrant vagrant    716 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/SendResponseListenerFactory.php
-rw-rw-r–.  1 vagrant vagrant  12785 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ServiceListenerFactory.php
-rw-rw-r–.  1 vagrant vagrant   6045 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ServiceManagerConfig.php
-rw-rw-r–.  1 vagrant vagrant   1384 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewFactory.php
-rw-rw-r–.  1 vagrant vagrant   1542 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewFeedStrategyFactory.php
-rw-rw-r–.  1 vagrant vagrant   5409 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewHelperManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1620 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewJsonStrategyFactory.php
-rw-rw-r–.  1 vagrant vagrant   1301 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1391 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewPhpRendererFactory.php
-rw-rw-r–.  1 vagrant vagrant   1340 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewPhpRendererStrategyFactory.php
-rw-rw-r–.  1 vagrant vagrant   1746 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewPrefixPathStackResolverFactory.php
-rw-rw-r–.  1 vagrant vagrant   2369 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewResolverFactory.php
-rw-rw-r–.  1 vagrant vagrant   1834 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewTemplateMapResolverFactory.php
-rw-rw-r–.  1 vagrant vagrant   2209 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/Service/ViewTemplatePathStackFactory.php
drwxrwxr-x.  3 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View
drwxrwxr-x.  2 vagrant vagrant   4096 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http
-rw-rw-r–.  1 vagrant vagrant   1723 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http/CreateViewModelListener.php
-rw-rw-r–.  1 vagrant vagrant   3287 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http/DefaultRenderingStrategy.php
-rw-rw-r–.  1 vagrant vagrant   4298 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http/ExceptionStrategy.php
-rw-rw-r–.  1 vagrant vagrant   2186 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http/InjectRoutematchParamsListener.php
-rw-rw-r–.  1 vagrant vagrant   6167 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http/InjectTemplateListener.php
-rw-rw-r–.  1 vagrant vagrant   1863 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http/InjectViewModelListener.php
-rw-rw-r–.  1 vagrant vagrant   8482 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http/RouteNotFoundStrategy.php
-rw-rw-r–.  1 vagrant vagrant   8891 12月 21 00:33 2016 ./vendor/zendframework/zend-mvc/src/View/Http/ViewManager.php
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-router
-rw-rw-r–.  1 vagrant vagrant   2714  6月  1 05:47 2016 ./vendor/zendframework/zend-router/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  6月  1 05:47 2016 ./vendor/zendframework/zend-router/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7325  6月  1 05:47 2016 ./vendor/zendframework/zend-router/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  6月  1 05:47 2016 ./vendor/zendframework/zend-router/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    973  6月  1 05:47 2016 ./vendor/zendframework/zend-router/README.md
-rw-rw-r–.  1 vagrant vagrant   1616  6月  1 05:47 2016 ./vendor/zendframework/zend-router/composer.json
-rw-rw-r–.  1 vagrant vagrant  54350  6月  1 05:47 2016 ./vendor/zendframework/zend-router/composer.lock
-rw-rw-r–.  1 vagrant vagrant    400  6月  1 05:47 2016 ./vendor/zendframework/zend-router/mkdocs.yml
-rw-rw-r–.  1 vagrant vagrant    579  6月  1 05:47 2016 ./vendor/zendframework/zend-router/phpcs.xml
drwxrwxr-x.  4 vagrant vagrant   4096  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src
-rw-rw-r–.  1 vagrant vagrant   1741  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/ConfigProvider.php
drwxrwxr-x.  2 vagrant vagrant   4096  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Exception
-rw-rw-r–.  1 vagrant vagrant    335  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    401  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    385  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Exception/RuntimeException.php
drwxrwxr-x.  2 vagrant vagrant   4096  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http
-rw-rw-r–.  1 vagrant vagrant   5361  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Chain.php
-rw-rw-r–.  1 vagrant vagrant   9687  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Hostname.php
-rw-rw-r–.  1 vagrant vagrant   1719  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/HttpRouterFactory.php
-rw-rw-r–.  1 vagrant vagrant   3409  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Literal.php
-rw-rw-r–.  1 vagrant vagrant   3148  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Method.php
-rw-rw-r–.  1 vagrant vagrant   7384  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Part.php
-rw-rw-r–.  1 vagrant vagrant   4513  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Regex.php
-rw-rw-r–.  1 vagrant vagrant    573  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/RouteInterface.php
-rw-rw-r–.  1 vagrant vagrant   1819  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/RouteMatch.php
-rw-rw-r–.  1 vagrant vagrant   3145  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Scheme.php
-rw-rw-r–.  1 vagrant vagrant  14032  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Segment.php
-rw-rw-r–.  1 vagrant vagrant   4799  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/TranslatorAwareTreeRouteStack.php
-rw-rw-r–.  1 vagrant vagrant  14907  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/TreeRouteStack.php
-rw-rw-r–.  1 vagrant vagrant   5067  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Http/Wildcard.php
-rw-rw-r–.  1 vagrant vagrant    737  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/Module.php
-rw-rw-r–.  1 vagrant vagrant    420  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/PriorityList.php
-rw-rw-r–.  1 vagrant vagrant   1055  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/RouteInterface.php
-rw-rw-r–.  1 vagrant vagrant   4458  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/RouteInvokableFactory.php
-rw-rw-r–.  1 vagrant vagrant   1872  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/RouteMatch.php
-rw-rw-r–.  1 vagrant vagrant   5081  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/RoutePluginManager.php
-rw-rw-r–.  1 vagrant vagrant   1280  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/RoutePluginManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1137  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/RouteStackInterface.php
-rw-rw-r–.  1 vagrant vagrant   1224  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/RouterConfigTrait.php
-rw-rw-r–.  1 vagrant vagrant   1430  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/RouterFactory.php
-rw-rw-r–.  1 vagrant vagrant   8643  6月  1 05:47 2016 ./vendor/zendframework/zend-router/src/SimpleRouteStack.php
drwxrwxr-x.  6 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-servicemanager
-rw-rw-r–.  1 vagrant vagrant  18180  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7515  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant   1390  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/README.md
drwxrwxr-x.  3 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset
-rw-rw-r–.  1 vagrant vagrant    839  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/AbstractFactoryFoo.php
-rw-rw-r–.  1 vagrant vagrant    454  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Bar.php
-rw-rw-r–.  1 vagrant vagrant    340  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Dependency.php
-rw-rw-r–.  1 vagrant vagrant    606  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/FactoryFoo.php
-rw-rw-r–.  1 vagrant vagrant    454  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Foo.php
-rw-rw-r–.  1 vagrant vagrant    502  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/ServiceDependingOnConfig.php
-rw-rw-r–.  1 vagrant vagrant    578  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/ServiceWithDependency.php
-rw-rw-r–.  1 vagrant vagrant   2982  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/FetchCachedServicesBench.php
-rw-rw-r–.  1 vagrant vagrant   1569  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceManagerBench.php
-rw-rw-r–.  1 vagrant vagrant   2627  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceUsingConfigAbstractFactoryAsFactoryBench.php
-rw-rw-r–.  1 vagrant vagrant   2222  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceUsingReflectionAbstractFactoryAsFactoryBench.php
-rw-rw-r–.  1 vagrant vagrant   2412  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceViaConfigAbstractFactoryBench.php
-rw-rw-r–.  1 vagrant vagrant   1989  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceViaReflectionAbstractFactoryBench.php
-rw-rw-r–.  1 vagrant vagrant   4016  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServicesBench.php
-rw-rw-r–.  1 vagrant vagrant   2334  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/benchmarks/SetNewServicesBench.php
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/bin
-rwxrwxr-x.  1 vagrant vagrant    813  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/bin/generate-deps-for-config-factory
-rwxrwxr-x.  1 vagrant vagrant    815  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/bin/generate-factory-for-class
-rw-rw-r–.  1 vagrant vagrant   2003  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc
drwxrwxr-x.  3 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book
-rw-rw-r–.  1 vagrant vagrant   4148  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/config-abstract-factory.md
-rw-rw-r–.  1 vagrant vagrant  19425  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/configuring-the-service-manager.md
-rw-rw-r–.  1 vagrant vagrant   2886  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/console-tools.md
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/cookbook
-rw-rw-r–.  1 vagrant vagrant   4020  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/cookbook/factories-vs-abstract-factories.md
-rw-rw-r–.  1 vagrant vagrant   4710  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/delegators.md
-rw-rw-r–.  1 vagrant vagrant    266  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/index.html
lrwxrwxrwx.  1 vagrant vagrant     15  8月  5 20:50 2019 ./vendor/zendframework/zend-servicemanager/doc/book/index.md -> ../../README.md
-rw-rw-r–.  1 vagrant vagrant   3966  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/lazy-services.md
-rw-rw-r–.  1 vagrant vagrant  45003  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/migration.md
-rw-rw-r–.  1 vagrant vagrant   3186  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/plugin-managers.md
-rw-rw-r–.  1 vagrant vagrant   2055  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/psr-11.md
-rw-rw-r–.  1 vagrant vagrant   1971  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/quick-start.md
-rw-rw-r–.  1 vagrant vagrant   6743  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/doc/book/reflection-abstract-factory.md
-rw-rw-r–.  1 vagrant vagrant    960  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/mkdocs.yml
-rw-rw-r–.  1 vagrant vagrant    112  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/phpbench.json
-rw-rw-r–.  1 vagrant vagrant    326  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/phpcs.xml
drwxrwxr-x.  9 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/AbstractFactory
-rw-rw-r–.  1 vagrant vagrant   2646  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/AbstractFactory/ConfigAbstractFactory.php
-rw-rw-r–.  1 vagrant vagrant   7864  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/AbstractFactory/ReflectionBasedAbstractFactory.php
-rw-rw-r–.  1 vagrant vagrant   2456  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/AbstractFactoryInterface.php
-rw-rw-r–.  1 vagrant vagrant   6609  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/AbstractPluginManager.php
-rw-rw-r–.  1 vagrant vagrant   3712  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Config.php
-rw-rw-r–.  1 vagrant vagrant   1406  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/ConfigInterface.php
-rw-rw-r–.  1 vagrant vagrant   2090  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/DelegatorFactoryInterface.php
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Exception
-rw-rw-r–.  1 vagrant vagrant    469  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Exception/ContainerModificationsNotAllowedException.php
-rw-rw-r–.  1 vagrant vagrant   3739  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Exception/CyclicAliasException.php
-rw-rw-r–.  1 vagrant vagrant    497  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    504  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    585  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Exception/InvalidServiceException.php
-rw-rw-r–.  1 vagrant vagrant    670  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Exception/ServiceNotCreatedException.php
-rw-rw-r–.  1 vagrant vagrant    681  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Exception/ServiceNotFoundException.php
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Factory
-rw-rw-r–.  1 vagrant vagrant   1188  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Factory/AbstractFactoryInterface.php
-rw-rw-r–.  1 vagrant vagrant   1510  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Factory/DelegatorFactoryInterface.php
-rw-rw-r–.  1 vagrant vagrant   1404  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Factory/FactoryInterface.php
-rw-rw-r–.  1 vagrant vagrant   1014  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Factory/InvokableFactory.php
-rw-rw-r–.  1 vagrant vagrant   1480  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/FactoryInterface.php
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Initializer
-rw-rw-r–.  1 vagrant vagrant    834  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Initializer/InitializerInterface.php
-rw-rw-r–.  1 vagrant vagrant   1524  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/InitializerInterface.php
-rw-rw-r–.  1 vagrant vagrant    966  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/PluginManagerInterface.php
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Proxy
-rw-rw-r–.  1 vagrant vagrant   2279  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Proxy/LazyServiceFactory.php
-rw-rw-r–.  1 vagrant vagrant   1206  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/ServiceLocatorInterface.php
-rw-rw-r–.  1 vagrant vagrant  31715  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/ServiceManager.php
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Test
-rw-rw-r–.  1 vagrant vagrant   3773  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Test/CommonPluginManagerTrait.php
drwxrwxr-x.  2 vagrant vagrant   4096  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Tool
-rw-rw-r–.  1 vagrant vagrant   7593  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Tool/ConfigDumper.php
-rw-rw-r–.  1 vagrant vagrant   6756  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Tool/ConfigDumperCommand.php
-rw-rw-r–.  1 vagrant vagrant   3783  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Tool/FactoryCreator.php
-rw-rw-r–.  1 vagrant vagrant   3994  3月  2 07:08 2017 ./vendor/zendframework/zend-servicemanager/src/Tool/FactoryCreatorCommand.php
drwxrwxr-x.  5 vagrant vagrant   4096  8月  5 20:49 2019 ./vendor/zendframework/zend-stdlib
-rw-rw-r–.  1 vagrant vagrant   8027  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7956  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    663  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/README.md
drwxrwxr-x.  2 vagrant vagrant   4096  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/benchmark
-rw-rw-r–.  1 vagrant vagrant   1445  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/benchmark/ExtractPriorityQueue.php
-rw-rw-r–.  1 vagrant vagrant   1216  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/benchmark/InsertPriorityQueue.php
-rw-rw-r–.  1 vagrant vagrant   1151  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/benchmark/RemovePriorityQueue.php
-rw-rw-r–.  1 vagrant vagrant   1057  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/doc
drwxrwxr-x.  2 vagrant vagrant   4096  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/doc/book
-rw-rw-r–.  1 vagrant vagrant   3678  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/doc/book/console-helper.md
-rw-rw-r–.  1 vagrant vagrant    263  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/doc/book/index.html
lrwxrwxrwx.  1 vagrant vagrant     15  8月  5 20:49 2019 ./vendor/zendframework/zend-stdlib/doc/book/index.md -> ../../README.md
-rw-rw-r–.  1 vagrant vagrant   2124  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/doc/book/migration.md
-rw-rw-r–.  1 vagrant vagrant    573  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/doc/bookdown.json
-rw-rw-r–.  1 vagrant vagrant    355  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/mkdocs.yml
-rw-rw-r–.  1 vagrant vagrant    794  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/phpcs.xml
drwxrwxr-x.  6 vagrant vagrant   4096  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src
-rw-rw-r–.  1 vagrant vagrant   4778  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/AbstractOptions.php
-rw-rw-r–.  1 vagrant vagrant   9666  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ArrayObject.php
-rw-rw-r–.  1 vagrant vagrant    680  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ArraySerializableInterface.php
-rw-rw-r–.  1 vagrant vagrant    855  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ArrayStack.php
drwxrwxr-x.  2 vagrant vagrant   4096  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ArrayUtils
-rw-rw-r–.  1 vagrant vagrant   9528  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ArrayUtils.php
-rw-rw-r–.  1 vagrant vagrant    376  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeRemoveKey.php
-rw-rw-r–.  1 vagrant vagrant    699  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php
-rw-rw-r–.  1 vagrant vagrant    561  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKeyInterface.php
-rw-rw-r–.  1 vagrant vagrant   4530  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ConsoleHelper.php
-rw-rw-r–.  1 vagrant vagrant    629  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/DispatchableInterface.php
-rw-rw-r–.  1 vagrant vagrant   2583  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ErrorHandler.php
drwxrwxr-x.  2 vagrant vagrant   4096  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Exception
-rw-rw-r–.  1 vagrant vagrant    476  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Exception/BadMethodCallException.php
-rw-rw-r–.  1 vagrant vagrant    453  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Exception/DomainException.php
-rw-rw-r–.  1 vagrant vagrant    415  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    449  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Exception/ExtensionNotLoadedException.php
-rw-rw-r–.  1 vagrant vagrant    481  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    450  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Exception/LogicException.php
-rw-rw-r–.  1 vagrant vagrant    456  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant   8325  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/FastPriorityQueue.php
-rw-rw-r–.  1 vagrant vagrant   5625  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Glob.php
drwxrwxr-x.  2 vagrant vagrant   4096  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Guard
-rw-rw-r–.  1 vagrant vagrant    497  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Guard/AllGuardsTrait.php
-rw-rw-r–.  1 vagrant vagrant   1261  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Guard/ArrayOrTraversableGuardTrait.php
-rw-rw-r–.  1 vagrant vagrant   1009  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Guard/EmptyGuardTrait.php
-rw-rw-r–.  1 vagrant vagrant   1006  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Guard/NullGuardTrait.php
-rw-rw-r–.  1 vagrant vagrant    531  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/InitializableInterface.php
-rw-rw-r–.  1 vagrant vagrant    469  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/JsonSerializable.php
-rw-rw-r–.  1 vagrant vagrant   2912  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Message.php
-rw-rw-r–.  1 vagrant vagrant    923  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/MessageInterface.php
-rw-rw-r–.  1 vagrant vagrant    796  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ParameterObjectInterface.php
-rw-rw-r–.  1 vagrant vagrant   2424  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Parameters.php
-rw-rw-r–.  1 vagrant vagrant   1852  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ParametersInterface.php
-rw-rw-r–.  1 vagrant vagrant   5338  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/PriorityList.php
-rw-rw-r–.  1 vagrant vagrant   7885  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/PriorityQueue.php
-rw-rw-r–.  1 vagrant vagrant    434  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Request.php
-rw-rw-r–.  1 vagrant vagrant    390  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/RequestInterface.php
-rw-rw-r–.  1 vagrant vagrant    437  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/Response.php
-rw-rw-r–.  1 vagrant vagrant    391  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/ResponseInterface.php
-rw-rw-r–.  1 vagrant vagrant   2129  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/SplPriorityQueue.php
-rw-rw-r–.  1 vagrant vagrant   1092  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/SplQueue.php
-rw-rw-r–.  1 vagrant vagrant   1101  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/SplStack.php
-rw-rw-r–.  1 vagrant vagrant   5442  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/StringUtils.php
drwxrwxr-x.  2 vagrant vagrant   4096  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/StringWrapper
-rw-rw-r–.  1 vagrant vagrant   8587  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/StringWrapper/AbstractStringWrapper.php
-rw-rw-r–.  1 vagrant vagrant   6638  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/StringWrapper/Iconv.php
-rw-rw-r–.  1 vagrant vagrant   2190  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/StringWrapper/Intl.php
-rw-rw-r–.  1 vagrant vagrant   3348  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/StringWrapper/MbString.php
-rw-rw-r–.  1 vagrant vagrant   3807  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/StringWrapper/Native.php
-rw-rw-r–.  1 vagrant vagrant   3078  9月 13 23:38 2016 ./vendor/zendframework/zend-stdlib/src/StringWrapper/StringWrapperInterface.php
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-uri
-rw-rw-r–.  1 vagrant vagrant    442  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   7525  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    731  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/README.md
-rw-rw-r–.  1 vagrant vagrant    872  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src
drwxrwxr-x.  2 vagrant vagrant   4096  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/Exception
-rw-rw-r–.  1 vagrant vagrant    408  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    440  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    469  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/Exception/InvalidUriException.php
-rw-rw-r–.  1 vagrant vagrant    816  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/Exception/InvalidUriPartException.php
-rw-rw-r–.  1 vagrant vagrant   2214  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/File.php
-rw-rw-r–.  1 vagrant vagrant   5086  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/Http.php
-rw-rw-r–.  1 vagrant vagrant   2600  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/Mailto.php
-rw-rw-r–.  1 vagrant vagrant  38383  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/Uri.php
-rw-rw-r–.  1 vagrant vagrant   3586  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/UriFactory.php
-rw-rw-r–.  1 vagrant vagrant   6033  2月 18 07:38 2016 ./vendor/zendframework/zend-uri/src/UriInterface.php
drwxrwxr-x.  5 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-validator
-rw-rw-r–.  1 vagrant vagrant   8204  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7698  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    688  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/README.md
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/bin
-rw-rw-r–.  1 vagrant vagrant   5485  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/bin/update_hostname_validator.php
-rw-rw-r–.  1 vagrant vagrant   2308  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/composer.json
drwxrwxr-x.  3 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc
drwxrwxr-x.  3 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book
-rw-rw-r–.  1 vagrant vagrant    367  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/index.html
-rw-rw-r–.  1 vagrant vagrant     15  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/index.md
-rw-rw-r–.  1 vagrant vagrant   8610  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/intro.md
-rw-rw-r–.  1 vagrant vagrant   3933  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/messages.md
-rw-rw-r–.  1 vagrant vagrant   1471  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/set.md
-rw-rw-r–.  1 vagrant vagrant   3329  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validator-chains.md
drwxrwxr-x.  3 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators
-rw-rw-r–.  1 vagrant vagrant  12024  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/barcode.md
-rw-rw-r–.  1 vagrant vagrant   1625  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/between.md
-rw-rw-r–.  1 vagrant vagrant   4434  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/callback.md
-rw-rw-r–.  1 vagrant vagrant   5251  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/credit-card.md
-rw-rw-r–.  1 vagrant vagrant    987  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/date.md
-rw-rw-r–.  1 vagrant vagrant   5359  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/db.md
-rw-rw-r–.  1 vagrant vagrant    850  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/digits.md
-rw-rw-r–.  1 vagrant vagrant   8168  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/email-address.md
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file
-rw-rw-r–.  1 vagrant vagrant    797  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/count.md
-rw-rw-r–.  1 vagrant vagrant   1303  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/crc32.md
-rw-rw-r–.  1 vagrant vagrant    319  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/exclude-extension.md
-rw-rw-r–.  1 vagrant vagrant    346  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/exclude-mime-type.md
-rw-rw-r–.  1 vagrant vagrant    868  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/exists.md
-rw-rw-r–.  1 vagrant vagrant   1227  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/extension.md
-rw-rw-r–.  1 vagrant vagrant   1217  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/files-size.md
-rw-rw-r–.  1 vagrant vagrant   1411  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/hash.md
-rw-rw-r–.  1 vagrant vagrant   1610  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/image-size.md
-rw-rw-r–.  1 vagrant vagrant    910  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/intro.md
-rw-rw-r–.  1 vagrant vagrant    635  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/is-compressed.md
-rw-rw-r–.  1 vagrant vagrant    595  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/is-image.md
-rw-rw-r–.  1 vagrant vagrant   1338  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/md5.md
-rw-rw-r–.  1 vagrant vagrant   2321  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/mime-type.md
-rw-rw-r–.  1 vagrant vagrant   1043  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/not-exists.md
-rw-rw-r–.  1 vagrant vagrant   1363  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/sha1.md
-rw-rw-r–.  1 vagrant vagrant    989  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/size.md
-rw-rw-r–.  1 vagrant vagrant    687  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/upload-file.md
-rw-rw-r–.  1 vagrant vagrant    792  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/upload.md
-rw-rw-r–.  1 vagrant vagrant    795  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/file/word-count.md
-rw-rw-r–.  1 vagrant vagrant   1264  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/greater-than.md
-rw-rw-r–.  1 vagrant vagrant    702  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/hex.md
-rw-rw-r–.  1 vagrant vagrant   5020  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/hostname.md
-rw-rw-r–.  1 vagrant vagrant   1681  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/iban.md
-rw-rw-r–.  1 vagrant vagrant   7187  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/identical.md
-rw-rw-r–.  1 vagrant vagrant   5076  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/in-array.md
-rw-rw-r–.  1 vagrant vagrant   2108  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/ip.md
-rw-rw-r–.  1 vagrant vagrant   1868  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/isbn.md
-rw-rw-r–.  1 vagrant vagrant   1141  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/isinstanceof.md
-rw-rw-r–.  1 vagrant vagrant   1240  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/less-than.md
-rw-rw-r–.  1 vagrant vagrant   3230  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/not-empty.md
-rw-rw-r–.  1 vagrant vagrant   3109  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/post-code.md
-rw-rw-r–.  1 vagrant vagrant   1204  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/regex.md
-rw-rw-r–.  1 vagrant vagrant   2342  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/sitemap.md
-rw-rw-r–.  1 vagrant vagrant   1001  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/step.md
-rw-rw-r–.  1 vagrant vagrant   3699  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/string-length.md
-rw-rw-r–.  1 vagrant vagrant   1051  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/timezone.md
-rw-rw-r–.  1 vagrant vagrant    969  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/uri.md
-rw-rw-r–.  1 vagrant vagrant   1294  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/validators/uuid.md
-rw-rw-r–.  1 vagrant vagrant   7615  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/doc/book/writing-validators.md
-rw-rw-r–.  1 vagrant vagrant   2851  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/mkdocs.yml
drwxrwxr-x. 10 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src
-rw-rw-r–.  1 vagrant vagrant  16654  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/AbstractValidator.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode
-rw-rw-r–.  1 vagrant vagrant   5387  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode.php
-rw-rw-r–.  1 vagrant vagrant   7525  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/AbstractAdapter.php
-rw-rw-r–.  1 vagrant vagrant   1578  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/AdapterInterface.php
-rw-rw-r–.  1 vagrant vagrant   1839  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Codabar.php
-rw-rw-r–.  1 vagrant vagrant  15605  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Code128.php
-rw-rw-r–.  1 vagrant vagrant    639  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Code25.php
-rw-rw-r–.  1 vagrant vagrant    669  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Code25interleaved.php
-rw-rw-r–.  1 vagrant vagrant   1800  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Code39.php
-rw-rw-r–.  1 vagrant vagrant    595  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Code39ext.php
-rw-rw-r–.  1 vagrant vagrant   2422  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Code93.php
-rw-rw-r–.  1 vagrant vagrant    595  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Code93ext.php
-rw-rw-r–.  1 vagrant vagrant    601  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Ean12.php
-rw-rw-r–.  1 vagrant vagrant    601  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Ean13.php
-rw-rw-r–.  1 vagrant vagrant    601  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Ean14.php
-rw-rw-r–.  1 vagrant vagrant    601  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Ean18.php
-rw-rw-r–.  1 vagrant vagrant    598  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Ean2.php
-rw-rw-r–.  1 vagrant vagrant    613  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Ean5.php
-rw-rw-r–.  1 vagrant vagrant    960  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Ean8.php
-rw-rw-r–.  1 vagrant vagrant    602  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Gtin12.php
-rw-rw-r–.  1 vagrant vagrant    602  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Gtin13.php
-rw-rw-r–.  1 vagrant vagrant    602  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Gtin14.php
-rw-rw-r–.  1 vagrant vagrant    914  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Identcode.php
-rw-rw-r–.  1 vagrant vagrant    639  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Intelligentmail.php
-rw-rw-r–.  1 vagrant vagrant   2205  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Issn.php
-rw-rw-r–.  1 vagrant vagrant    601  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Itf14.php
-rw-rw-r–.  1 vagrant vagrant    609  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Leitcode.php
-rw-rw-r–.  1 vagrant vagrant    611  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Planet.php
-rw-rw-r–.  1 vagrant vagrant    618  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Postnet.php
-rw-rw-r–.  1 vagrant vagrant   2891  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Royalmail.php
-rw-rw-r–.  1 vagrant vagrant    600  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Sscc.php
-rw-rw-r–.  1 vagrant vagrant    600  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Upca.php
-rw-rw-r–.  1 vagrant vagrant    963  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Barcode/Upce.php
-rw-rw-r–.  1 vagrant vagrant   4479  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Between.php
-rw-rw-r–.  1 vagrant vagrant   4319  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Bitwise.php
-rw-rw-r–.  1 vagrant vagrant   3793  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Callback.php
-rw-rw-r–.  1 vagrant vagrant    847  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/ConfigProvider.php
-rw-rw-r–.  1 vagrant vagrant  10232  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/CreditCard.php
-rw-rw-r–.  1 vagrant vagrant   8299  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Csrf.php
-rw-rw-r–.  1 vagrant vagrant   5229  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Date.php
-rw-rw-r–.  1 vagrant vagrant  15989  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/DateStep.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Db
-rwxr-xr-x.  1 vagrant vagrant   8444  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Db/AbstractDb.php
-rw-rw-r–.  1 vagrant vagrant    982  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Db/NoRecordExists.php
-rw-rw-r–.  1 vagrant vagrant    976  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Db/RecordExists.php
-rw-rw-r–.  1 vagrant vagrant   1833  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Digits.php
-rw-rw-r–.  1 vagrant vagrant  17867  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/EmailAddress.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Exception
-rw-rw-r–.  1 vagrant vagrant    442  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Exception/BadMethodCallException.php
-rw-rw-r–.  1 vagrant vagrant    380  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    410  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Exception/ExtensionNotLoadedException.php
-rw-rw-r–.  1 vagrant vagrant    446  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    420  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Exception/InvalidMagicMimeFileException.php
-rw-rw-r–.  1 vagrant vagrant    430  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant   5392  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Explode.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File
-rw-rw-r–.  1 vagrant vagrant   6935  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Count.php
-rw-rw-r–.  1 vagrant vagrant   3481  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Crc32.php
-rw-rw-r–.  1 vagrant vagrant   2708  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/ExcludeExtension.php
-rw-rw-r–.  1 vagrant vagrant   3813  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/ExcludeMimeType.php
-rw-rw-r–.  1 vagrant vagrant   5624  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Exists.php
-rw-rw-r–.  1 vagrant vagrant   5842  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Extension.php
-rw-rw-r–.  1 vagrant vagrant   5825  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/FilesSize.php
-rw-rw-r–.  1 vagrant vagrant   4930  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Hash.php
-rw-rw-r–.  1 vagrant vagrant  11236  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/ImageSize.php
-rw-rw-r–.  1 vagrant vagrant   2782  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/IsCompressed.php
-rw-rw-r–.  1 vagrant vagrant   3329  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/IsImage.php
-rw-rw-r–.  1 vagrant vagrant   3450  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Md5.php
-rw-rw-r–.  1 vagrant vagrant  12812  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/MimeType.php
-rw-rw-r–.  1 vagrant vagrant   2646  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/NotExists.php
-rw-rw-r–.  1 vagrant vagrant   3464  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Sha1.php
-rw-rw-r–.  1 vagrant vagrant  10532  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Size.php
-rw-rw-r–.  1 vagrant vagrant   7427  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/Upload.php
-rw-rw-r–.  1 vagrant vagrant   4117  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/UploadFile.php
-rw-rw-r–.  1 vagrant vagrant   6321  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/File/WordCount.php
-rw-rw-r–.  1 vagrant vagrant   3503  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/GpsPoint.php
-rw-rw-r–.  1 vagrant vagrant   3629  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/GreaterThan.php
-rw-rw-r–.  1 vagrant vagrant   1234  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Hex.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Hostname
-rw-rw-r–.  1 vagrant vagrant  61798  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Hostname.php
-rw-rw-r–.  1 vagrant vagrant 251325  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Hostname/Biz.php
-rw-rw-r–.  1 vagrant vagrant 189132  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Hostname/Cn.php
-rw-rw-r–.  1 vagrant vagrant  12949  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Hostname/Com.php
-rw-rw-r–.  1 vagrant vagrant  62012  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Hostname/Jp.php
-rw-rw-r–.  1 vagrant vagrant   9309  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Iban.php
-rw-rw-r–.  1 vagrant vagrant   5068  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Identical.php
-rw-rw-r–.  1 vagrant vagrant   6993  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/InArray.php
-rw-rw-r–.  1 vagrant vagrant   6177  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Ip.php
-rw-rw-r–.  1 vagrant vagrant   2451  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/IsInstanceOf.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Isbn
-rw-rw-r–.  1 vagrant vagrant   4934  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Isbn.php
-rwxr-xr-x.  1 vagrant vagrant   1222  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Isbn/Isbn10.php
-rwxr-xr-x.  1 vagrant vagrant   1257  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Isbn/Isbn13.php
-rw-rw-r–.  1 vagrant vagrant   3725  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/LessThan.php
-rw-rw-r–.  1 vagrant vagrant   1194  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Module.php
-rw-rw-r–.  1 vagrant vagrant   8223  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/NotEmpty.php
-rw-rw-r–.  1 vagrant vagrant   3651  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Regex.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Sitemap
-rw-rw-r–.  1 vagrant vagrant   1890  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Sitemap/Changefreq.php
-rw-rw-r–.  1 vagrant vagrant   1962  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Sitemap/Lastmod.php
-rw-rw-r–.  1 vagrant vagrant   1642  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Sitemap/Loc.php
-rw-rw-r–.  1 vagrant vagrant   1647  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Sitemap/Priority.php
-rw-rw-r–.  1 vagrant vagrant   2389  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/StaticValidator.php
-rw-rw-r–.  1 vagrant vagrant   3561  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Step.php
-rw-rw-r–.  1 vagrant vagrant   5419  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/StringLength.php
-rw-rw-r–.  1 vagrant vagrant   4780  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Timezone.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Translator
-rw-rw-r–.  1 vagrant vagrant   1866  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Translator/TranslatorAwareInterface.php
-rw-rw-r–.  1 vagrant vagrant    597  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Translator/TranslatorInterface.php
-rw-rw-r–.  1 vagrant vagrant   5060  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Uri.php
-rw-rw-r–.  1 vagrant vagrant   1679  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/Uuid.php
-rw-rw-r–.  1 vagrant vagrant   8962  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/ValidatorChain.php
-rw-rw-r–.  1 vagrant vagrant   1285  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/ValidatorInterface.php
-rw-rw-r–.  1 vagrant vagrant  25420  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/ValidatorPluginManager.php
-rw-rw-r–.  1 vagrant vagrant    732  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/ValidatorPluginManagerAwareInterface.php
-rw-rw-r–.  1 vagrant vagrant   1447  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/ValidatorPluginManagerFactory.php
-rw-rw-r–.  1 vagrant vagrant    973  1月 30 02:24 2017 ./vendor/zendframework/zend-validator/src/ValidatorProviderInterface.php
drwxrwxr-x.  5 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zendframework/zend-view
-rw-rw-r–.  1 vagrant vagrant   8101  7月  1 07:28 2016 ./vendor/zendframework/zend-view/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  7月  1 07:28 2016 ./vendor/zendframework/zend-view/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   7663  7月  1 07:28 2016 ./vendor/zendframework/zend-view/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  7月  1 07:28 2016 ./vendor/zendframework/zend-view/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant    624  7月  1 07:28 2016 ./vendor/zendframework/zend-view/README.md
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/bin
-rwxrwxr-x.  1 vagrant vagrant   4766  7月  1 07:28 2016 ./vendor/zendframework/zend-view/bin/templatemap_generator.php
-rw-rw-r–.  1 vagrant vagrant   2923  7月  1 07:28 2016 ./vendor/zendframework/zend-view/composer.json
-rw-rw-r–.  1 vagrant vagrant 124578  7月  1 07:28 2016 ./vendor/zendframework/zend-view/composer.lock
drwxrwxr-x.  3 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc
drwxrwxr-x.  3 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers
-rw-rw-r–.  1 vagrant vagrant   7941  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/advanced-usage.md
-rw-rw-r–.  1 vagrant vagrant   1025  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/base-path.md
-rw-rw-r–.  1 vagrant vagrant   2554  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/cycle.md
-rw-rw-r–.  1 vagrant vagrant   3766  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/doctype.md
-rw-rw-r–.  1 vagrant vagrant   5048  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/flash-messenger.md
-rw-rw-r–.  1 vagrant vagrant   3257  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/gravatar.md
-rw-rw-r–.  1 vagrant vagrant   2582  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/head-link.md
-rw-rw-r–.  1 vagrant vagrant   4880  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/head-meta.md
-rw-rw-r–.  1 vagrant vagrant   6430  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/head-script.md
-rw-rw-r–.  1 vagrant vagrant   7268  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/head-style.md
-rw-rw-r–.  1 vagrant vagrant   3145  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/head-title.md
-rw-rw-r–.  1 vagrant vagrant   2671  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/html-list.md
-rw-rw-r–.  1 vagrant vagrant   2454  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/html-object.md
-rw-rw-r–.  1 vagrant vagrant   1208  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/identity.md
-rw-rw-r–.  1 vagrant vagrant   1919  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/inline-script.md
-rw-rw-r–.  1 vagrant vagrant   4066  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/intro.md
-rw-rw-r–.  1 vagrant vagrant   1044  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/json.md
-rw-rw-r–.  1 vagrant vagrant   4038  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/partial.md
-rw-rw-r–.  1 vagrant vagrant   5036  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/placeholder.md
-rw-rw-r–.  1 vagrant vagrant   6372  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/helpers/url.md
-rw-rw-r–.  1 vagrant vagrant    320  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/index.html
-rw-rw-r–.  1 vagrant vagrant     15  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/index.md
-rw-rw-r–.  1 vagrant vagrant  12758  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/php-renderer.md
-rw-rw-r–.  1 vagrant vagrant  30169  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/quick-start.md
-rw-rw-r–.  1 vagrant vagrant   4809  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/view-event.md
-rw-rw-r–.  1 vagrant vagrant   2793  7月  1 07:28 2016 ./vendor/zendframework/zend-view/doc/book/view-scripts.md
-rw-rw-r–.  1 vagrant vagrant   1301  7月  1 07:28 2016 ./vendor/zendframework/zend-view/mkdocs.yml
drwxrwxr-x.  8 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Exception
-rw-rw-r–.  1 vagrant vagrant    474  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Exception/BadMethodCallException.php
-rw-rw-r–.  1 vagrant vagrant    451  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Exception/DomainException.php
-rw-rw-r–.  1 vagrant vagrant    375  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Exception/ExceptionInterface.php
-rw-rw-r–.  1 vagrant vagrant    479  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Exception/InvalidArgumentException.php
-rw-rw-r–.  1 vagrant vagrant    460  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Exception/InvalidHelperException.php
-rw-rw-r–.  1 vagrant vagrant    454  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Exception/RuntimeException.php
-rw-rw-r–.  1 vagrant vagrant    479  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Exception/UnexpectedValueException.php
drwxrwxr-x.  6 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper
-rw-rw-r–.  1 vagrant vagrant    923  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/AbstractHelper.php
-rw-rw-r–.  1 vagrant vagrant   3112  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/AbstractHtmlElement.php
-rw-rw-r–.  1 vagrant vagrant   1327  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/BasePath.php
-rw-rw-r–.  1 vagrant vagrant   4180  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Cycle.php
-rw-rw-r–.  1 vagrant vagrant   2333  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/DeclareVars.php
-rw-rw-r–.  1 vagrant vagrant   7078  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Doctype.php
-rw-rw-r–.  1 vagrant vagrant    659  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/EscapeCss.php
-rw-rw-r–.  1 vagrant vagrant    661  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/EscapeHtml.php
-rw-rw-r–.  1 vagrant vagrant    669  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/EscapeHtmlAttr.php
-rw-rw-r–.  1 vagrant vagrant    657  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/EscapeJs.php
-rw-rw-r–.  1 vagrant vagrant    659  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/EscapeUrl.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Escaper
-rw-rw-r–.  1 vagrant vagrant   4224  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Escaper/AbstractHelper.php
-rw-rw-r–.  1 vagrant vagrant   9921  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/FlashMessenger.php
-rw-rw-r–.  1 vagrant vagrant   8592  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Gravatar.php
-rw-rw-r–.  1 vagrant vagrant  14186  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HeadLink.php
-rw-rw-r–.  1 vagrant vagrant  13055  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HeadMeta.php
-rw-rw-r–.  1 vagrant vagrant  15786  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HeadScript.php
-rw-rw-r–.  1 vagrant vagrant  11752  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HeadStyle.php
-rw-rw-r–.  1 vagrant vagrant   4550  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HeadTitle.php
-rw-rw-r–.  1 vagrant vagrant    686  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HelperInterface.php
-rw-rw-r–.  1 vagrant vagrant   1123  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HtmlFlash.php
-rw-rw-r–.  1 vagrant vagrant   2215  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HtmlList.php
-rw-rw-r–.  1 vagrant vagrant   2218  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HtmlObject.php
-rw-rw-r–.  1 vagrant vagrant   1400  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HtmlPage.php
-rw-rw-r–.  1 vagrant vagrant   1587  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HtmlQuicktime.php
-rw-rw-r–.  1 vagrant vagrant   3289  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/HtmlTag.php
-rw-rw-r–.  1 vagrant vagrant   1825  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Identity.php
-rw-rw-r–.  1 vagrant vagrant   1372  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/InlineScript.php
-rw-rw-r–.  1 vagrant vagrant   1339  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Json.php
-rw-rw-r–.  1 vagrant vagrant   2250  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Layout.php
drwxrwxr-x.  3 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation
-rw-rw-r–.  1 vagrant vagrant   9423  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation.php
-rw-rw-r–.  1 vagrant vagrant  25164  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/AbstractHelper.php
-rw-rw-r–.  1 vagrant vagrant   9998  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/Breadcrumbs.php
-rw-rw-r–.  1 vagrant vagrant   4010  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/HelperInterface.php
-rw-rw-r–.  1 vagrant vagrant  23071  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/Links.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/Listener
-rw-rw-r–.  1 vagrant vagrant   1626  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/Listener/AclListener.php
-rw-rw-r–.  1 vagrant vagrant  26367  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/Menu.php
-rw-rw-r–.  1 vagrant vagrant   3221  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/PluginManager.php
-rw-rw-r–.  1 vagrant vagrant  12964  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Navigation/Sitemap.php
-rw-rw-r–.  1 vagrant vagrant   4081  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/PaginationControl.php
-rw-rw-r–.  1 vagrant vagrant   2518  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Partial.php
-rw-rw-r–.  1 vagrant vagrant   4320  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/PartialLoop.php
drwxrwxr-x.  3 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Placeholder
-rw-rw-r–.  1 vagrant vagrant   2535  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Placeholder.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Placeholder/Container
-rw-rw-r–.  1 vagrant vagrant    451  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Placeholder/Container.php
-rw-rw-r–.  1 vagrant vagrant   8688  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Placeholder/Container/AbstractContainer.php
-rw-rw-r–.  1 vagrant vagrant   8397  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Placeholder/Container/AbstractStandalone.php
-rw-rw-r–.  1 vagrant vagrant   4253  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Placeholder/Registry.php
-rw-rw-r–.  1 vagrant vagrant   3194  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/RenderChildModel.php
-rw-rw-r–.  1 vagrant vagrant   1164  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/RenderToPlaceholder.php
-rw-rw-r–.  1 vagrant vagrant   8384  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/ServerUrl.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Service
-rw-rw-r–.  1 vagrant vagrant   2439  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Service/FlashMessengerFactory.php
-rw-rw-r–.  1 vagrant vagrant   1582  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Service/IdentityFactory.php
-rw-rw-r–.  1 vagrant vagrant   3081  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/TranslatorAwareTrait.php
-rw-rw-r–.  1 vagrant vagrant   5312  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/Url.php
-rw-rw-r–.  1 vagrant vagrant   1718  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Helper/ViewModel.php
-rw-rw-r–.  1 vagrant vagrant  19136  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/HelperPluginManager.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Model
-rw-rw-r–.  1 vagrant vagrant    665  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Model/ClearableModelInterface.php
-rw-rw-r–.  1 vagrant vagrant   1497  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Model/ConsoleModel.php
-rw-rw-r–.  1 vagrant vagrant   1838  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Model/FeedModel.php
-rw-rw-r–.  1 vagrant vagrant   1697  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Model/JsonModel.php
-rw-rw-r–.  1 vagrant vagrant   3969  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Model/ModelInterface.php
-rw-rw-r–.  1 vagrant vagrant    820  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Model/RetrievableChildrenInterface.php
-rw-rw-r–.  1 vagrant vagrant  11270  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Model/ViewModel.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Renderer
-rw-rw-r–.  1 vagrant vagrant   3985  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Renderer/ConsoleRenderer.php
-rw-rw-r–.  1 vagrant vagrant   4243  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Renderer/FeedRenderer.php
-rw-rw-r–.  1 vagrant vagrant   7206  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Renderer/JsonRenderer.php
-rw-rw-r–.  1 vagrant vagrant  18327  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Renderer/PhpRenderer.php
-rw-rw-r–.  1 vagrant vagrant   1520  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Renderer/RendererInterface.php
-rw-rw-r–.  1 vagrant vagrant    540  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Renderer/TreeRendererInterface.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Resolver
-rw-rw-r–.  1 vagrant vagrant   3108  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Resolver/AggregateResolver.php
-rw-rw-r–.  1 vagrant vagrant   1967  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Resolver/PrefixPathStackResolver.php
-rw-rw-r–.  1 vagrant vagrant   2055  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Resolver/RelativeFallbackResolver.php
-rw-rw-r–.  1 vagrant vagrant    680  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Resolver/ResolverInterface.php
-rw-rw-r–.  1 vagrant vagrant   4627  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Resolver/TemplateMapResolver.php
-rw-rw-r–.  1 vagrant vagrant   8835  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Resolver/TemplatePathStack.php
drwxrwxr-x.  2 vagrant vagrant   4096  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Strategy
-rw-rw-r–.  1 vagrant vagrant   3085  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Strategy/FeedStrategy.php
-rw-rw-r–.  1 vagrant vagrant   3537  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Strategy/JsonStrategy.php
-rw-rw-r–.  1 vagrant vagrant   3295  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Strategy/PhpRendererStrategy.php
-rw-rw-r–.  1 vagrant vagrant   4383  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Stream.php
-rw-rw-r–.  1 vagrant vagrant   4025  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/Variables.php
-rw-rw-r–.  1 vagrant vagrant   7518  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/View.php
-rw-rw-r–.  1 vagrant vagrant   5604  7月  1 07:28 2016 ./vendor/zendframework/zend-view/src/ViewEvent.php
drwxrwxr-x.  3 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zfcampus
drwxrwxr-x.  5 vagrant vagrant   4096  8月  5 20:50 2019 ./vendor/zfcampus/zf-development-mode
-rw-rw-r–.  1 vagrant vagrant     61  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/.coveralls.yml
-rw-rw-r–.  1 vagrant vagrant     67  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/.gitignore
-rw-rw-r–.  1 vagrant vagrant    977  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/.travis.yml
-rw-rw-r–.  1 vagrant vagrant   1802  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/CHANGELOG.md
-rw-rw-r–.  1 vagrant vagrant   2378  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/CONDUCT.md
-rw-rw-r–.  1 vagrant vagrant   3185  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/CONTRIBUTING.md
-rw-rw-r–.  1 vagrant vagrant   1517  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/LICENSE.md
-rw-rw-r–.  1 vagrant vagrant   3180  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/README.md
drwxrwxr-x.  2 vagrant vagrant   4096  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/bin
-rwxrwxr-x.  1 vagrant vagrant    687  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/bin/zf-development-mode
-rw-rw-r–.  1 vagrant vagrant   1149  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/composer.json
-rw-rw-r–.  1 vagrant vagrant    238  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/development.config.php.dist
-rw-rw-r–.  1 vagrant vagrant     87  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/development.local.php.dist
-rw-rw-r–.  1 vagrant vagrant    719  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/phpcs.xml
-rw-rw-r–.  1 vagrant vagrant    647  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/phpunit.xml.dist
drwxrwxr-x.  2 vagrant vagrant   4096  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/src
-rw-rw-r–.  1 vagrant vagrant   1370  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/src/Command.php
-rw-rw-r–.  1 vagrant vagrant   3881  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/src/ConfigDiscoveryTrait.php
-rw-rw-r–.  1 vagrant vagrant   2055  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/src/Disable.php
-rw-rw-r–.  1 vagrant vagrant   2801  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/src/Enable.php
-rw-rw-r–.  1 vagrant vagrant   1840  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/src/Help.php
-rw-rw-r–.  1 vagrant vagrant   1185  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/src/Status.php
drwxrwxr-x.  2 vagrant vagrant   4096  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/test
-rw-rw-r–.  1 vagrant vagrant   5901  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/test/DisableTest.php
-rw-rw-r–.  1 vagrant vagrant   7537  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/test/EnableTest.php
-rw-rw-r–.  1 vagrant vagrant    949  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/test/HelpTest.php
-rw-rw-r–.  1 vagrant vagrant   1659  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/test/RemoveCacheFileTrait.php
-rw-rw-r–.  1 vagrant vagrant   1247  1月 10 08:34 2017 ./vendor/zfcampus/zf-development-mode/test/StatusTest.php
[vagrant@localhost zend]$ 
find ./ ls
find ./ lsでも悪くはない
[vagrant@localhost zend]$ find ./ ls
./
./public
./public/index.php
./public/.htaccess
./public/web.config
./public/js
./public/js/jquery-3.1.0.min.js
./public/js/bootstrap.js
./public/js/bootstrap.min.js
./public/img
./public/img/zf-logo-mark.svg
./public/img/favicon.ico
./public/css
./public/css/bootstrap-theme.css
./public/css/bootstrap-theme.min.css
./public/css/bootstrap-theme.css.map
./public/css/bootstrap.min.css
./public/css/bootstrap.min.css.map
./public/css/style.css
./public/css/bootstrap.css.map
./public/css/bootstrap-theme.min.css.map
./public/css/bootstrap.css
./public/fonts
./public/fonts/glyphicons-halflings-regular.woff2
./public/fonts/glyphicons-halflings-regular.ttf
./public/fonts/glyphicons-halflings-regular.eot
./public/fonts/glyphicons-halflings-regular.svg
./public/fonts/glyphicons-halflings-regular.woff
./LICENSE.md
./TODO.md
./Dockerfile
./module
./module/Application
./module/Application/view
./module/Application/view/application
./module/Application/view/application/index
./module/Application/view/application/index/index.phtml
./module/Application/view/layout
./module/Application/view/layout/layout.phtml
./module/Application/view/error
./module/Application/view/error/index.phtml
./module/Application/view/error/404.phtml
./module/Application/src
./module/Application/src/Controller
./module/Application/src/Controller/IndexController.php
./module/Application/src/Module.php
./module/Application/config
./module/Application/config/module.config.php
./module/Application/test
./module/Application/test/Controller
./module/Application/test/Controller/IndexControllerTest.php
./Vagrantfile
./README.md
./data
./data/cache
./data/cache/.gitkeep
./phpunit.xml.dist
./composer.json
./docker-compose.yml
./vendor
./vendor/autoload.php
./vendor/composer
./vendor/composer/autoload_namespaces.php
./vendor/composer/autoload_psr4.php
./vendor/composer/autoload_real.php
./vendor/composer/ClassLoader.php
./vendor/composer/LICENSE
./vendor/composer/autoload_static.php
./vendor/composer/autoload_classmap.php
./vendor/composer/installed.json
./vendor/zendframework
./vendor/zendframework/zend-servicemanager
./vendor/zendframework/zend-servicemanager/benchmarks
./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceManagerBench.php
./vendor/zendframework/zend-servicemanager/benchmarks/SetNewServicesBench.php
./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset
./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/ServiceWithDependency.php
./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Bar.php
./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/FactoryFoo.php
./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/ServiceDependingOnConfig.php
./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Foo.php
./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Dependency.php
./vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/AbstractFactoryFoo.php
./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceViaReflectionAbstractFactoryBench.php
./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceViaConfigAbstractFactoryBench.php
./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceUsingConfigAbstractFactoryAsFactoryBench.php
./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServiceUsingReflectionAbstractFactoryAsFactoryBench.php
./vendor/zendframework/zend-servicemanager/benchmarks/FetchCachedServicesBench.php
./vendor/zendframework/zend-servicemanager/benchmarks/FetchNewServicesBench.php
./vendor/zendframework/zend-servicemanager/phpbench.json
./vendor/zendframework/zend-servicemanager/LICENSE.md
./vendor/zendframework/zend-servicemanager/README.md
./vendor/zendframework/zend-servicemanager/mkdocs.yml
./vendor/zendframework/zend-servicemanager/composer.json
./vendor/zendframework/zend-servicemanager/bin
./vendor/zendframework/zend-servicemanager/bin/generate-deps-for-config-factory
./vendor/zendframework/zend-servicemanager/bin/generate-factory-for-class
./vendor/zendframework/zend-servicemanager/CONTRIBUTING.md
./vendor/zendframework/zend-servicemanager/CHANGELOG.md
./vendor/zendframework/zend-servicemanager/src
./vendor/zendframework/zend-servicemanager/src/Proxy
./vendor/zendframework/zend-servicemanager/src/Proxy/LazyServiceFactory.php
./vendor/zendframework/zend-servicemanager/src/Tool
./vendor/zendframework/zend-servicemanager/src/Tool/ConfigDumperCommand.php
./vendor/zendframework/zend-servicemanager/src/Tool/FactoryCreatorCommand.php
./vendor/zendframework/zend-servicemanager/src/Tool/FactoryCreator.php
./vendor/zendframework/zend-servicemanager/src/Tool/ConfigDumper.php
./vendor/zendframework/zend-servicemanager/src/AbstractFactoryInterface.php
./vendor/zendframework/zend-servicemanager/src/Initializer
./vendor/zendframework/zend-servicemanager/src/Initializer/InitializerInterface.php
./vendor/zendframework/zend-servicemanager/src/AbstractFactory
./vendor/zendframework/zend-servicemanager/src/AbstractFactory/ReflectionBasedAbstractFactory.php
./vendor/zendframework/zend-servicemanager/src/AbstractFactory/ConfigAbstractFactory.php
./vendor/zendframework/zend-servicemanager/src/ServiceManager.php
./vendor/zendframework/zend-servicemanager/src/Factory
./vendor/zendframework/zend-servicemanager/src/Factory/AbstractFactoryInterface.php
./vendor/zendframework/zend-servicemanager/src/Factory/InvokableFactory.php
./vendor/zendframework/zend-servicemanager/src/Factory/DelegatorFactoryInterface.php
./vendor/zendframework/zend-servicemanager/src/Factory/FactoryInterface.php
./vendor/zendframework/zend-servicemanager/src/ConfigInterface.php
./vendor/zendframework/zend-servicemanager/src/Test
./vendor/zendframework/zend-servicemanager/src/Test/CommonPluginManagerTrait.php
./vendor/zendframework/zend-servicemanager/src/Exception
./vendor/zendframework/zend-servicemanager/src/Exception/CyclicAliasException.php
./vendor/zendframework/zend-servicemanager/src/Exception/ServiceNotCreatedException.php
./vendor/zendframework/zend-servicemanager/src/Exception/ServiceNotFoundException.php
./vendor/zendframework/zend-servicemanager/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-servicemanager/src/Exception/ContainerModificationsNotAllowedException.php
./vendor/zendframework/zend-servicemanager/src/Exception/InvalidServiceException.php
./vendor/zendframework/zend-servicemanager/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-servicemanager/src/InitializerInterface.php
./vendor/zendframework/zend-servicemanager/src/DelegatorFactoryInterface.php
./vendor/zendframework/zend-servicemanager/src/Config.php
./vendor/zendframework/zend-servicemanager/src/FactoryInterface.php
./vendor/zendframework/zend-servicemanager/src/PluginManagerInterface.php
./vendor/zendframework/zend-servicemanager/src/ServiceLocatorInterface.php
./vendor/zendframework/zend-servicemanager/src/AbstractPluginManager.php
./vendor/zendframework/zend-servicemanager/CONDUCT.md
./vendor/zendframework/zend-servicemanager/phpcs.xml
./vendor/zendframework/zend-servicemanager/doc
./vendor/zendframework/zend-servicemanager/doc/book
./vendor/zendframework/zend-servicemanager/doc/book/migration.md
./vendor/zendframework/zend-servicemanager/doc/book/index.html
./vendor/zendframework/zend-servicemanager/doc/book/configuring-the-service-manager.md
./vendor/zendframework/zend-servicemanager/doc/book/reflection-abstract-factory.md
./vendor/zendframework/zend-servicemanager/doc/book/delegators.md
./vendor/zendframework/zend-servicemanager/doc/book/console-tools.md
./vendor/zendframework/zend-servicemanager/doc/book/cookbook
./vendor/zendframework/zend-servicemanager/doc/book/cookbook/factories-vs-abstract-factories.md
./vendor/zendframework/zend-servicemanager/doc/book/index.md
./vendor/zendframework/zend-servicemanager/doc/book/plugin-managers.md
./vendor/zendframework/zend-servicemanager/doc/book/psr-11.md
./vendor/zendframework/zend-servicemanager/doc/book/config-abstract-factory.md
./vendor/zendframework/zend-servicemanager/doc/book/quick-start.md
./vendor/zendframework/zend-servicemanager/doc/book/lazy-services.md
./vendor/zendframework/zend-http
./vendor/zendframework/zend-http/LICENSE.md
./vendor/zendframework/zend-http/README.md
./vendor/zendframework/zend-http/mkdocs.yml
./vendor/zendframework/zend-http/composer.json
./vendor/zendframework/zend-http/CONTRIBUTING.md
./vendor/zendframework/zend-http/CHANGELOG.md
./vendor/zendframework/zend-http/src
./vendor/zendframework/zend-http/src/Client.php
./vendor/zendframework/zend-http/src/Client
./vendor/zendframework/zend-http/src/Client/Exception
./vendor/zendframework/zend-http/src/Client/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-http/src/Client/Exception/OutOfRangeException.php
./vendor/zendframework/zend-http/src/Client/Exception/ExceptionInterface.php
./vendor/zendframework/zend-http/src/Client/Exception/RuntimeException.php
./vendor/zendframework/zend-http/src/Client/Adapter
./vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php
./vendor/zendframework/zend-http/src/Client/Adapter/Socket.php
./vendor/zendframework/zend-http/src/Client/Adapter/StreamInterface.php
./vendor/zendframework/zend-http/src/Client/Adapter/Exception
./vendor/zendframework/zend-http/src/Client/Adapter/Exception/TimeoutException.php
./vendor/zendframework/zend-http/src/Client/Adapter/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-http/src/Client/Adapter/Exception/InitializationException.php
./vendor/zendframework/zend-http/src/Client/Adapter/Exception/OutOfRangeException.php
./vendor/zendframework/zend-http/src/Client/Adapter/Exception/ExceptionInterface.php
./vendor/zendframework/zend-http/src/Client/Adapter/Exception/RuntimeException.php
./vendor/zendframework/zend-http/src/Client/Adapter/Test.php
./vendor/zendframework/zend-http/src/Client/Adapter/Proxy.php
./vendor/zendframework/zend-http/src/Client/Adapter/Curl.php
./vendor/zendframework/zend-http/src/Headers.php
./vendor/zendframework/zend-http/src/HeaderLoader.php
./vendor/zendframework/zend-http/src/Response.php
./vendor/zendframework/zend-http/src/PhpEnvironment
./vendor/zendframework/zend-http/src/PhpEnvironment/Response.php
./vendor/zendframework/zend-http/src/PhpEnvironment/RemoteAddress.php
./vendor/zendframework/zend-http/src/PhpEnvironment/Request.php
./vendor/zendframework/zend-http/src/Header
./vendor/zendframework/zend-http/src/Header/AbstractAccept.php
./vendor/zendframework/zend-http/src/Header/MaxForwards.php
./vendor/zendframework/zend-http/src/Header/ContentLength.php
./vendor/zendframework/zend-http/src/Header/Refresh.php
./vendor/zendframework/zend-http/src/Header/Expires.php
./vendor/zendframework/zend-http/src/Header/Trailer.php
./vendor/zendframework/zend-http/src/Header/CacheControl.php
./vendor/zendframework/zend-http/src/Header/HeaderValue.php
./vendor/zendframework/zend-http/src/Header/Allow.php
./vendor/zendframework/zend-http/src/Header/IfNoneMatch.php
./vendor/zendframework/zend-http/src/Header/Pragma.php
./vendor/zendframework/zend-http/src/Header/AcceptLanguage.php
./vendor/zendframework/zend-http/src/Header/ContentSecurityPolicy.php
./vendor/zendframework/zend-http/src/Header/TransferEncoding.php
./vendor/zendframework/zend-http/src/Header/ContentLocation.php
./vendor/zendframework/zend-http/src/Header/LastModified.php
./vendor/zendframework/zend-http/src/Header/Expect.php
./vendor/zendframework/zend-http/src/Header/AbstractDate.php
./vendor/zendframework/zend-http/src/Header/TE.php
./vendor/zendframework/zend-http/src/Header/MultipleHeaderInterface.php
./vendor/zendframework/zend-http/src/Header/Authorization.php
./vendor/zendframework/zend-http/src/Header/Etag.php
./vendor/zendframework/zend-http/src/Header/AbstractLocation.php
./vendor/zendframework/zend-http/src/Header/ContentType.php
./vendor/zendframework/zend-http/src/Header/Upgrade.php
./vendor/zendframework/zend-http/src/Header/ProxyAuthorization.php
./vendor/zendframework/zend-http/src/Header/Via.php
./vendor/zendframework/zend-http/src/Header/ContentDisposition.php
./vendor/zendframework/zend-http/src/Header/IfModifiedSince.php
./vendor/zendframework/zend-http/src/Header/Warning.php
./vendor/zendframework/zend-http/src/Header/GenericMultiHeader.php
./vendor/zendframework/zend-http/src/Header/WWWAuthenticate.php
./vendor/zendframework/zend-http/src/Header/Connection.php
./vendor/zendframework/zend-http/src/Header/Exception
./vendor/zendframework/zend-http/src/Header/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-http/src/Header/Exception/DomainException.php
./vendor/zendframework/zend-http/src/Header/Exception/ExceptionInterface.php
./vendor/zendframework/zend-http/src/Header/Exception/RuntimeException.php
./vendor/zendframework/zend-http/src/Header/Accept.php
./vendor/zendframework/zend-http/src/Header/KeepAlive.php
./vendor/zendframework/zend-http/src/Header/Referer.php
./vendor/zendframework/zend-http/src/Header/IfRange.php
./vendor/zendframework/zend-http/src/Header/Date.php
./vendor/zendframework/zend-http/src/Header/Cookie.php
./vendor/zendframework/zend-http/src/Header/AcceptCharset.php
./vendor/zendframework/zend-http/src/Header/RetryAfter.php
./vendor/zendframework/zend-http/src/Header/IfMatch.php
./vendor/zendframework/zend-http/src/Header/ContentEncoding.php
./vendor/zendframework/zend-http/src/Header/Vary.php
./vendor/zendframework/zend-http/src/Header/ContentTransferEncoding.php
./vendor/zendframework/zend-http/src/Header/AuthenticationInfo.php
./vendor/zendframework/zend-http/src/Header/Origin.php
./vendor/zendframework/zend-http/src/Header/Server.php
./vendor/zendframework/zend-http/src/Header/ContentLanguage.php
./vendor/zendframework/zend-http/src/Header/ContentRange.php
./vendor/zendframework/zend-http/src/Header/AcceptEncoding.php
./vendor/zendframework/zend-http/src/Header/GenericHeader.php
./vendor/zendframework/zend-http/src/Header/Age.php
./vendor/zendframework/zend-http/src/Header/ProxyAuthenticate.php
./vendor/zendframework/zend-http/src/Header/Host.php
./vendor/zendframework/zend-http/src/Header/Location.php
./vendor/zendframework/zend-http/src/Header/HeaderInterface.php
./vendor/zendframework/zend-http/src/Header/SetCookie.php
./vendor/zendframework/zend-http/src/Header/AcceptRanges.php
./vendor/zendframework/zend-http/src/Header/Accept
./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart
./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php
./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/CharsetFieldValuePart.php
./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/EncodingFieldValuePart.php
./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/AcceptFieldValuePart.php
./vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/LanguageFieldValuePart.php
./vendor/zendframework/zend-http/src/Header/Range.php
./vendor/zendframework/zend-http/src/Header/From.php
./vendor/zendframework/zend-http/src/Header/UserAgent.php
./vendor/zendframework/zend-http/src/Header/IfUnmodifiedSince.php
./vendor/zendframework/zend-http/src/Header/ContentMD5.php
./vendor/zendframework/zend-http/src/Cookies.php
./vendor/zendframework/zend-http/src/ClientStatic.php
./vendor/zendframework/zend-http/src/Exception
./vendor/zendframework/zend-http/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-http/src/Exception/OutOfRangeException.php
./vendor/zendframework/zend-http/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-http/src/Exception/RuntimeException.php
./vendor/zendframework/zend-http/src/Request.php
./vendor/zendframework/zend-http/src/AbstractMessage.php
./vendor/zendframework/zend-http/src/Response
./vendor/zendframework/zend-http/src/Response/Stream.php
./vendor/zendframework/zend-http/CONDUCT.md
./vendor/zendframework/zend-http/phpcs.xml
./vendor/zendframework/zend-http/doc
./vendor/zendframework/zend-http/doc/book
./vendor/zendframework/zend-http/doc/book/index.html
./vendor/zendframework/zend-http/doc/book/intro.md
./vendor/zendframework/zend-http/doc/book/index.md
./vendor/zendframework/zend-http/doc/book/client
./vendor/zendframework/zend-http/doc/book/client/static.md
./vendor/zendframework/zend-http/doc/book/client/intro.md
./vendor/zendframework/zend-http/doc/book/client/advanced.md
./vendor/zendframework/zend-http/doc/book/client/cookies.md
./vendor/zendframework/zend-http/doc/book/client/adapters.md
./vendor/zendframework/zend-http/doc/book/request.md
./vendor/zendframework/zend-http/doc/book/headers.md
./vendor/zendframework/zend-http/doc/book/response.md
./vendor/zendframework/zend-view
./vendor/zendframework/zend-view/LICENSE.md
./vendor/zendframework/zend-view/README.md
./vendor/zendframework/zend-view/mkdocs.yml
./vendor/zendframework/zend-view/composer.json
./vendor/zendframework/zend-view/bin
./vendor/zendframework/zend-view/bin/templatemap_generator.php
./vendor/zendframework/zend-view/CONTRIBUTING.md
./vendor/zendframework/zend-view/CHANGELOG.md
./vendor/zendframework/zend-view/src
./vendor/zendframework/zend-view/src/View.php
./vendor/zendframework/zend-view/src/Variables.php
./vendor/zendframework/zend-view/src/Helper
./vendor/zendframework/zend-view/src/Helper/Placeholder.php
./vendor/zendframework/zend-view/src/Helper/HtmlList.php
./vendor/zendframework/zend-view/src/Helper/Layout.php
./vendor/zendframework/zend-view/src/Helper/Service
./vendor/zendframework/zend-view/src/Helper/Service/IdentityFactory.php
./vendor/zendframework/zend-view/src/Helper/Service/FlashMessengerFactory.php
./vendor/zendframework/zend-view/src/Helper/PartialLoop.php
./vendor/zendframework/zend-view/src/Helper/HeadScript.php
./vendor/zendframework/zend-view/src/Helper/ServerUrl.php
./vendor/zendframework/zend-view/src/Helper/Navigation
./vendor/zendframework/zend-view/src/Helper/Navigation/Links.php
./vendor/zendframework/zend-view/src/Helper/Navigation/Menu.php
./vendor/zendframework/zend-view/src/Helper/Navigation/PluginManager.php
./vendor/zendframework/zend-view/src/Helper/Navigation/Sitemap.php
./vendor/zendframework/zend-view/src/Helper/Navigation/HelperInterface.php
./vendor/zendframework/zend-view/src/Helper/Navigation/Listener
./vendor/zendframework/zend-view/src/Helper/Navigation/Listener/AclListener.php
./vendor/zendframework/zend-view/src/Helper/Navigation/AbstractHelper.php
./vendor/zendframework/zend-view/src/Helper/Navigation/Breadcrumbs.php
./vendor/zendframework/zend-view/src/Helper/EscapeJs.php
./vendor/zendframework/zend-view/src/Helper/EscapeHtmlAttr.php
./vendor/zendframework/zend-view/src/Helper/ViewModel.php
./vendor/zendframework/zend-view/src/Helper/HeadTitle.php
./vendor/zendframework/zend-view/src/Helper/Json.php
./vendor/zendframework/zend-view/src/Helper/RenderChildModel.php
./vendor/zendframework/zend-view/src/Helper/HtmlQuicktime.php
./vendor/zendframework/zend-view/src/Helper/TranslatorAwareTrait.php
./vendor/zendframework/zend-view/src/Helper/InlineScript.php
./vendor/zendframework/zend-view/src/Helper/HtmlTag.php
./vendor/zendframework/zend-view/src/Helper/EscapeUrl.php
./vendor/zendframework/zend-view/src/Helper/Partial.php
./vendor/zendframework/zend-view/src/Helper/FlashMessenger.php
./vendor/zendframework/zend-view/src/Helper/AbstractHtmlElement.php
./vendor/zendframework/zend-view/src/Helper/BasePath.php
./vendor/zendframework/zend-view/src/Helper/Url.php
./vendor/zendframework/zend-view/src/Helper/HtmlFlash.php
./vendor/zendframework/zend-view/src/Helper/EscapeCss.php
./vendor/zendframework/zend-view/src/Helper/Navigation.php
./vendor/zendframework/zend-view/src/Helper/Placeholder
./vendor/zendframework/zend-view/src/Helper/Placeholder/Container
./vendor/zendframework/zend-view/src/Helper/Placeholder/Container/AbstractContainer.php
./vendor/zendframework/zend-view/src/Helper/Placeholder/Container/AbstractStandalone.php
./vendor/zendframework/zend-view/src/Helper/Placeholder/Container.php
./vendor/zendframework/zend-view/src/Helper/Placeholder/Registry.php
./vendor/zendframework/zend-view/src/Helper/HeadMeta.php
./vendor/zendframework/zend-view/src/Helper/HtmlObject.php
./vendor/zendframework/zend-view/src/Helper/EscapeHtml.php
./vendor/zendframework/zend-view/src/Helper/Gravatar.php
./vendor/zendframework/zend-view/src/Helper/Doctype.php
./vendor/zendframework/zend-view/src/Helper/Identity.php
./vendor/zendframework/zend-view/src/Helper/RenderToPlaceholder.php
./vendor/zendframework/zend-view/src/Helper/HtmlPage.php
./vendor/zendframework/zend-view/src/Helper/DeclareVars.php
./vendor/zendframework/zend-view/src/Helper/HeadLink.php
./vendor/zendframework/zend-view/src/Helper/Escaper
./vendor/zendframework/zend-view/src/Helper/Escaper/AbstractHelper.php
./vendor/zendframework/zend-view/src/Helper/HelperInterface.php
./vendor/zendframework/zend-view/src/Helper/PaginationControl.php
./vendor/zendframework/zend-view/src/Helper/Cycle.php
./vendor/zendframework/zend-view/src/Helper/HeadStyle.php
./vendor/zendframework/zend-view/src/Helper/AbstractHelper.php
./vendor/zendframework/zend-view/src/HelperPluginManager.php
./vendor/zendframework/zend-view/src/Model
./vendor/zendframework/zend-view/src/Model/RetrievableChildrenInterface.php
./vendor/zendframework/zend-view/src/Model/ViewModel.php
./vendor/zendframework/zend-view/src/Model/FeedModel.php
./vendor/zendframework/zend-view/src/Model/ModelInterface.php
./vendor/zendframework/zend-view/src/Model/ClearableModelInterface.php
./vendor/zendframework/zend-view/src/Model/ConsoleModel.php
./vendor/zendframework/zend-view/src/Model/JsonModel.php
./vendor/zendframework/zend-view/src/Stream.php
./vendor/zendframework/zend-view/src/Renderer
./vendor/zendframework/zend-view/src/Renderer/FeedRenderer.php
./vendor/zendframework/zend-view/src/Renderer/RendererInterface.php
./vendor/zendframework/zend-view/src/Renderer/TreeRendererInterface.php
./vendor/zendframework/zend-view/src/Renderer/PhpRenderer.php
./vendor/zendframework/zend-view/src/Renderer/JsonRenderer.php
./vendor/zendframework/zend-view/src/Renderer/ConsoleRenderer.php
./vendor/zendframework/zend-view/src/Exception
./vendor/zendframework/zend-view/src/Exception/BadMethodCallException.php
./vendor/zendframework/zend-view/src/Exception/UnexpectedValueException.php
./vendor/zendframework/zend-view/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-view/src/Exception/DomainException.php
./vendor/zendframework/zend-view/src/Exception/InvalidHelperException.php
./vendor/zendframework/zend-view/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-view/src/Exception/RuntimeException.php
./vendor/zendframework/zend-view/src/Strategy
./vendor/zendframework/zend-view/src/Strategy/PhpRendererStrategy.php
./vendor/zendframework/zend-view/src/Strategy/FeedStrategy.php
./vendor/zendframework/zend-view/src/Strategy/JsonStrategy.php
./vendor/zendframework/zend-view/src/ViewEvent.php
./vendor/zendframework/zend-view/src/Resolver
./vendor/zendframework/zend-view/src/Resolver/TemplatePathStack.php
./vendor/zendframework/zend-view/src/Resolver/AggregateResolver.php
./vendor/zendframework/zend-view/src/Resolver/PrefixPathStackResolver.php
./vendor/zendframework/zend-view/src/Resolver/TemplateMapResolver.php
./vendor/zendframework/zend-view/src/Resolver/RelativeFallbackResolver.php
./vendor/zendframework/zend-view/src/Resolver/ResolverInterface.php
./vendor/zendframework/zend-view/CONDUCT.md
./vendor/zendframework/zend-view/doc
./vendor/zendframework/zend-view/doc/book
./vendor/zendframework/zend-view/doc/book/index.html
./vendor/zendframework/zend-view/doc/book/view-event.md
./vendor/zendframework/zend-view/doc/book/view-scripts.md
./vendor/zendframework/zend-view/doc/book/index.md
./vendor/zendframework/zend-view/doc/book/php-renderer.md
./vendor/zendframework/zend-view/doc/book/quick-start.md
./vendor/zendframework/zend-view/doc/book/helpers
./vendor/zendframework/zend-view/doc/book/helpers/head-script.md
./vendor/zendframework/zend-view/doc/book/helpers/html-list.md
./vendor/zendframework/zend-view/doc/book/helpers/head-title.md
./vendor/zendframework/zend-view/doc/book/helpers/url.md
./vendor/zendframework/zend-view/doc/book/helpers/advanced-usage.md
./vendor/zendframework/zend-view/doc/book/helpers/intro.md
./vendor/zendframework/zend-view/doc/book/helpers/head-style.md
./vendor/zendframework/zend-view/doc/book/helpers/gravatar.md
./vendor/zendframework/zend-view/doc/book/helpers/cycle.md
./vendor/zendframework/zend-view/doc/book/helpers/flash-messenger.md
./vendor/zendframework/zend-view/doc/book/helpers/identity.md
./vendor/zendframework/zend-view/doc/book/helpers/html-object.md
./vendor/zendframework/zend-view/doc/book/helpers/inline-script.md
./vendor/zendframework/zend-view/doc/book/helpers/placeholder.md
./vendor/zendframework/zend-view/doc/book/helpers/base-path.md
./vendor/zendframework/zend-view/doc/book/helpers/head-meta.md
./vendor/zendframework/zend-view/doc/book/helpers/doctype.md
./vendor/zendframework/zend-view/doc/book/helpers/json.md
./vendor/zendframework/zend-view/doc/book/helpers/partial.md
./vendor/zendframework/zend-view/doc/book/helpers/head-link.md
./vendor/zendframework/zend-view/composer.lock
./vendor/zendframework/zend-component-installer
./vendor/zendframework/zend-component-installer/.zf-mkdoc-theme-preserve
./vendor/zendframework/zend-component-installer/LICENSE.md
./vendor/zendframework/zend-component-installer/README.md
./vendor/zendframework/zend-component-installer/mkdocs.yml
./vendor/zendframework/zend-component-installer/composer.json
./vendor/zendframework/zend-component-installer/CONTRIBUTING.md
./vendor/zendframework/zend-component-installer/CHANGELOG.md
./vendor/zendframework/zend-component-installer/src
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DevelopmentConfig.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DevelopmentWorkConfig.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/AbstractDiscovery.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DiscoveryChainInterface.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DiscoveryInterface.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/DiscoveryChain.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/ApplicationConfig.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/ExpressiveConfig.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/ModulesConfig.php
./vendor/zendframework/zend-component-installer/src/ConfigDiscovery/ConfigAggregator.php
./vendor/zendframework/zend-component-installer/src/Exception
./vendor/zendframework/zend-component-installer/src/Exception/RuntimeException.php
./vendor/zendframework/zend-component-installer/src/Injector
./vendor/zendframework/zend-component-installer/src/Injector/ModulesConfigInjector.php
./vendor/zendframework/zend-component-installer/src/Injector/InjectorInterface.php
./vendor/zendframework/zend-component-installer/src/Injector/ConfigInjectorChain.php
./vendor/zendframework/zend-component-installer/src/Injector/AbstractInjector.php
./vendor/zendframework/zend-component-installer/src/Injector/NoopInjector.php
./vendor/zendframework/zend-component-installer/src/Injector/ExpressiveConfigInjector.php
./vendor/zendframework/zend-component-installer/src/Injector/ConfigAggregatorInjector.php
./vendor/zendframework/zend-component-installer/src/Injector/ConditionalDiscoveryTrait.php
./vendor/zendframework/zend-component-installer/src/Injector/ApplicationConfigInjector.php
./vendor/zendframework/zend-component-installer/src/Injector/DevelopmentConfigInjector.php
./vendor/zendframework/zend-component-installer/src/Injector/DevelopmentWorkConfigInjector.php
./vendor/zendframework/zend-component-installer/src/ConfigOption.php
./vendor/zendframework/zend-component-installer/src/Collection.php
./vendor/zendframework/zend-component-installer/src/ComponentInstaller.php
./vendor/zendframework/zend-component-installer/CONDUCT.md
./vendor/zendframework/zend-component-installer/doc
./vendor/zendframework/zend-component-installer/doc/book
./vendor/zendframework/zend-component-installer/doc/book/index.html
./vendor/zendframework/zend-component-installer/doc/book/index.md
./vendor/zendframework/zend-component-installer/composer.lock
./vendor/zendframework/zend-eventmanager
./vendor/zendframework/zend-eventmanager/LICENSE.md
./vendor/zendframework/zend-eventmanager/README.md
./vendor/zendframework/zend-eventmanager/composer.json
./vendor/zendframework/zend-eventmanager/CONTRIBUTING.md
./vendor/zendframework/zend-eventmanager/CHANGELOG.md
./vendor/zendframework/zend-eventmanager/src
./vendor/zendframework/zend-eventmanager/src/EventManagerAwareInterface.php
./vendor/zendframework/zend-eventmanager/src/SharedEventManagerInterface.php
./vendor/zendframework/zend-eventmanager/src/LazyEventListener.php
./vendor/zendframework/zend-eventmanager/src/AbstractListenerAggregate.php
./vendor/zendframework/zend-eventmanager/src/Test
./vendor/zendframework/zend-eventmanager/src/Test/EventListenerIntrospectionTrait.php
./vendor/zendframework/zend-eventmanager/src/SharedEventsCapableInterface.php
./vendor/zendframework/zend-eventmanager/src/EventsCapableInterface.php
./vendor/zendframework/zend-eventmanager/src/Filter
./vendor/zendframework/zend-eventmanager/src/Filter/FilterInterface.php
./vendor/zendframework/zend-eventmanager/src/Filter/FilterIterator.php
./vendor/zendframework/zend-eventmanager/src/Exception
./vendor/zendframework/zend-eventmanager/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-eventmanager/src/Exception/InvalidCallbackException.php
./vendor/zendframework/zend-eventmanager/src/Exception/DomainException.php
./vendor/zendframework/zend-eventmanager/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-eventmanager/src/Exception/RuntimeException.php
./vendor/zendframework/zend-eventmanager/src/EventManager.php
./vendor/zendframework/zend-eventmanager/src/EventManagerInterface.php
./vendor/zendframework/zend-eventmanager/src/Event.php
./vendor/zendframework/zend-eventmanager/src/LazyListener.php
./vendor/zendframework/zend-eventmanager/src/ListenerAggregateInterface.php
./vendor/zendframework/zend-eventmanager/src/ListenerAggregateTrait.php
./vendor/zendframework/zend-eventmanager/src/LazyListenerAggregate.php
./vendor/zendframework/zend-eventmanager/src/EventInterface.php
./vendor/zendframework/zend-eventmanager/src/ResponseCollection.php
./vendor/zendframework/zend-eventmanager/src/SharedEventManager.php
./vendor/zendframework/zend-eventmanager/src/EventManagerAwareTrait.php
./vendor/zendframework/zend-eventmanager/src/FilterChain.php
./vendor/zendframework/zend-eventmanager/CONDUCT.md
./vendor/zendframework/zend-uri
./vendor/zendframework/zend-uri/LICENSE.md
./vendor/zendframework/zend-uri/README.md
./vendor/zendframework/zend-uri/composer.json
./vendor/zendframework/zend-uri/CONTRIBUTING.md
./vendor/zendframework/zend-uri/CHANGELOG.md
./vendor/zendframework/zend-uri/src
./vendor/zendframework/zend-uri/src/UriInterface.php
./vendor/zendframework/zend-uri/src/Exception
./vendor/zendframework/zend-uri/src/Exception/InvalidUriPartException.php
./vendor/zendframework/zend-uri/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-uri/src/Exception/InvalidUriException.php
./vendor/zendframework/zend-uri/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-uri/src/UriFactory.php
./vendor/zendframework/zend-uri/src/Http.php
./vendor/zendframework/zend-uri/src/Mailto.php
./vendor/zendframework/zend-uri/src/File.php
./vendor/zendframework/zend-uri/src/Uri.php
./vendor/zendframework/zend-validator
./vendor/zendframework/zend-validator/LICENSE.md
./vendor/zendframework/zend-validator/README.md
./vendor/zendframework/zend-validator/mkdocs.yml
./vendor/zendframework/zend-validator/composer.json
./vendor/zendframework/zend-validator/bin
./vendor/zendframework/zend-validator/bin/update_hostname_validator.php
./vendor/zendframework/zend-validator/CONTRIBUTING.md
./vendor/zendframework/zend-validator/CHANGELOG.md
./vendor/zendframework/zend-validator/src
./vendor/zendframework/zend-validator/src/LessThan.php
./vendor/zendframework/zend-validator/src/Between.php
./vendor/zendframework/zend-validator/src/GreaterThan.php
./vendor/zendframework/zend-validator/src/InArray.php
./vendor/zendframework/zend-validator/src/GpsPoint.php
./vendor/zendframework/zend-validator/src/DateStep.php
./vendor/zendframework/zend-validator/src/CreditCard.php
./vendor/zendframework/zend-validator/src/ValidatorInterface.php
./vendor/zendframework/zend-validator/src/Step.php
./vendor/zendframework/zend-validator/src/StaticValidator.php
./vendor/zendframework/zend-validator/src/ValidatorPluginManager.php
./vendor/zendframework/zend-validator/src/Uuid.php
./vendor/zendframework/zend-validator/src/Bitwise.php
./vendor/zendframework/zend-validator/src/Module.php
./vendor/zendframework/zend-validator/src/Sitemap
./vendor/zendframework/zend-validator/src/Sitemap/Priority.php
./vendor/zendframework/zend-validator/src/Sitemap/Changefreq.php
./vendor/zendframework/zend-validator/src/Sitemap/Lastmod.php
./vendor/zendframework/zend-validator/src/Sitemap/Loc.php
./vendor/zendframework/zend-validator/src/Barcode
./vendor/zendframework/zend-validator/src/Barcode/Gtin12.php
./vendor/zendframework/zend-validator/src/Barcode/AbstractAdapter.php
./vendor/zendframework/zend-validator/src/Barcode/Leitcode.php
./vendor/zendframework/zend-validator/src/Barcode/Itf14.php
./vendor/zendframework/zend-validator/src/Barcode/Code93ext.php
./vendor/zendframework/zend-validator/src/Barcode/AdapterInterface.php
./vendor/zendframework/zend-validator/src/Barcode/Ean5.php
./vendor/zendframework/zend-validator/src/Barcode/Codabar.php
./vendor/zendframework/zend-validator/src/Barcode/Royalmail.php
./vendor/zendframework/zend-validator/src/Barcode/Ean14.php
./vendor/zendframework/zend-validator/src/Barcode/Sscc.php
./vendor/zendframework/zend-validator/src/Barcode/Gtin13.php
./vendor/zendframework/zend-validator/src/Barcode/Ean8.php
./vendor/zendframework/zend-validator/src/Barcode/Ean18.php
./vendor/zendframework/zend-validator/src/Barcode/Ean2.php
./vendor/zendframework/zend-validator/src/Barcode/Intelligentmail.php
./vendor/zendframework/zend-validator/src/Barcode/Planet.php
./vendor/zendframework/zend-validator/src/Barcode/Ean12.php
./vendor/zendframework/zend-validator/src/Barcode/Code25.php
./vendor/zendframework/zend-validator/src/Barcode/Code93.php
./vendor/zendframework/zend-validator/src/Barcode/Code39ext.php
./vendor/zendframework/zend-validator/src/Barcode/Code25interleaved.php
./vendor/zendframework/zend-validator/src/Barcode/Postnet.php
./vendor/zendframework/zend-validator/src/Barcode/Issn.php
./vendor/zendframework/zend-validator/src/Barcode/Upca.php
./vendor/zendframework/zend-validator/src/Barcode/Upce.php
./vendor/zendframework/zend-validator/src/Barcode/Gtin14.php
./vendor/zendframework/zend-validator/src/Barcode/Identcode.php
./vendor/zendframework/zend-validator/src/Barcode/Code39.php
./vendor/zendframework/zend-validator/src/Barcode/Ean13.php
./vendor/zendframework/zend-validator/src/Barcode/Code128.php
./vendor/zendframework/zend-validator/src/Isbn
./vendor/zendframework/zend-validator/src/Isbn/Isbn10.php
./vendor/zendframework/zend-validator/src/Isbn/Isbn13.php
./vendor/zendframework/zend-validator/src/NotEmpty.php
./vendor/zendframework/zend-validator/src/Isbn.php
./vendor/zendframework/zend-validator/src/Ip.php
./vendor/zendframework/zend-validator/src/AbstractValidator.php
./vendor/zendframework/zend-validator/src/Regex.php
./vendor/zendframework/zend-validator/src/ConfigProvider.php
./vendor/zendframework/zend-validator/src/ValidatorPluginManagerAwareInterface.php
./vendor/zendframework/zend-validator/src/Iban.php
./vendor/zendframework/zend-validator/src/Translator
./vendor/zendframework/zend-validator/src/Translator/TranslatorAwareInterface.php
./vendor/zendframework/zend-validator/src/Translator/TranslatorInterface.php
./vendor/zendframework/zend-validator/src/Hostname.php
./vendor/zendframework/zend-validator/src/Exception
./vendor/zendframework/zend-validator/src/Exception/BadMethodCallException.php
./vendor/zendframework/zend-validator/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-validator/src/Exception/ExtensionNotLoadedException.php
./vendor/zendframework/zend-validator/src/Exception/InvalidMagicMimeFileException.php
./vendor/zendframework/zend-validator/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-validator/src/Exception/RuntimeException.php
./vendor/zendframework/zend-validator/src/Callback.php
./vendor/zendframework/zend-validator/src/IsInstanceOf.php
./vendor/zendframework/zend-validator/src/Hex.php
./vendor/zendframework/zend-validator/src/ValidatorChain.php
./vendor/zendframework/zend-validator/src/Date.php
./vendor/zendframework/zend-validator/src/File
./vendor/zendframework/zend-validator/src/File/ExcludeMimeType.php
./vendor/zendframework/zend-validator/src/File/Count.php
./vendor/zendframework/zend-validator/src/File/MimeType.php
./vendor/zendframework/zend-validator/src/File/Crc32.php
./vendor/zendframework/zend-validator/src/File/FilesSize.php
./vendor/zendframework/zend-validator/src/File/Md5.php
./vendor/zendframework/zend-validator/src/File/Extension.php
./vendor/zendframework/zend-validator/src/File/ImageSize.php
./vendor/zendframework/zend-validator/src/File/Hash.php
./vendor/zendframework/zend-validator/src/File/IsImage.php
./vendor/zendframework/zend-validator/src/File/Exists.php
./vendor/zendframework/zend-validator/src/File/Sha1.php
./vendor/zendframework/zend-validator/src/File/NotExists.php
./vendor/zendframework/zend-validator/src/File/Size.php
./vendor/zendframework/zend-validator/src/File/Upload.php
./vendor/zendframework/zend-validator/src/File/ExcludeExtension.php
./vendor/zendframework/zend-validator/src/File/IsCompressed.php
./vendor/zendframework/zend-validator/src/File/UploadFile.php
./vendor/zendframework/zend-validator/src/File/WordCount.php
./vendor/zendframework/zend-validator/src/ValidatorProviderInterface.php
./vendor/zendframework/zend-validator/src/Identical.php
./vendor/zendframework/zend-validator/src/ValidatorPluginManagerFactory.php
./vendor/zendframework/zend-validator/src/Hostname
./vendor/zendframework/zend-validator/src/Hostname/Biz.php
./vendor/zendframework/zend-validator/src/Hostname/Jp.php
./vendor/zendframework/zend-validator/src/Hostname/Cn.php
./vendor/zendframework/zend-validator/src/Hostname/Com.php
./vendor/zendframework/zend-validator/src/EmailAddress.php
./vendor/zendframework/zend-validator/src/Digits.php
./vendor/zendframework/zend-validator/src/Barcode.php
./vendor/zendframework/zend-validator/src/Timezone.php
./vendor/zendframework/zend-validator/src/Uri.php
./vendor/zendframework/zend-validator/src/Csrf.php
./vendor/zendframework/zend-validator/src/StringLength.php
./vendor/zendframework/zend-validator/src/Db
./vendor/zendframework/zend-validator/src/Db/AbstractDb.php
./vendor/zendframework/zend-validator/src/Db/RecordExists.php
./vendor/zendframework/zend-validator/src/Db/NoRecordExists.php
./vendor/zendframework/zend-validator/src/Explode.php
./vendor/zendframework/zend-validator/CONDUCT.md
./vendor/zendframework/zend-validator/doc
./vendor/zendframework/zend-validator/doc/book
./vendor/zendframework/zend-validator/doc/book/set.md
./vendor/zendframework/zend-validator/doc/book/validator-chains.md
./vendor/zendframework/zend-validator/doc/book/writing-validators.md
./vendor/zendframework/zend-validator/doc/book/index.html
./vendor/zendframework/zend-validator/doc/book/intro.md
./vendor/zendframework/zend-validator/doc/book/index.md
./vendor/zendframework/zend-validator/doc/book/messages.md
./vendor/zendframework/zend-validator/doc/book/validators
./vendor/zendframework/zend-validator/doc/book/validators/post-code.md
./vendor/zendframework/zend-validator/doc/book/validators/greater-than.md
./vendor/zendframework/zend-validator/doc/book/validators/step.md
./vendor/zendframework/zend-validator/doc/book/validators/credit-card.md
./vendor/zendframework/zend-validator/doc/book/validators/uri.md
./vendor/zendframework/zend-validator/doc/book/validators/email-address.md
./vendor/zendframework/zend-validator/doc/book/validators/sitemap.md
./vendor/zendframework/zend-validator/doc/book/validators/file
./vendor/zendframework/zend-validator/doc/book/validators/file/image-size.md
./vendor/zendframework/zend-validator/doc/book/validators/file/word-count.md
./vendor/zendframework/zend-validator/doc/book/validators/file/intro.md
./vendor/zendframework/zend-validator/doc/book/validators/file/is-compressed.md
./vendor/zendframework/zend-validator/doc/book/validators/file/upload-file.md
./vendor/zendframework/zend-validator/doc/book/validators/file/exclude-extension.md
./vendor/zendframework/zend-validator/doc/book/validators/file/upload.md
./vendor/zendframework/zend-validator/doc/book/validators/file/is-image.md
./vendor/zendframework/zend-validator/doc/book/validators/file/size.md
./vendor/zendframework/zend-validator/doc/book/validators/file/not-exists.md
./vendor/zendframework/zend-validator/doc/book/validators/file/extension.md
./vendor/zendframework/zend-validator/doc/book/validators/file/sha1.md
./vendor/zendframework/zend-validator/doc/book/validators/file/files-size.md
./vendor/zendframework/zend-validator/doc/book/validators/file/exists.md
./vendor/zendframework/zend-validator/doc/book/validators/file/exclude-mime-type.md
./vendor/zendframework/zend-validator/doc/book/validators/file/count.md
./vendor/zendframework/zend-validator/doc/book/validators/file/md5.md
./vendor/zendframework/zend-validator/doc/book/validators/file/hash.md
./vendor/zendframework/zend-validator/doc/book/validators/file/mime-type.md
./vendor/zendframework/zend-validator/doc/book/validators/file/crc32.md
./vendor/zendframework/zend-validator/doc/book/validators/timezone.md
./vendor/zendframework/zend-validator/doc/book/validators/barcode.md
./vendor/zendframework/zend-validator/doc/book/validators/date.md
./vendor/zendframework/zend-validator/doc/book/validators/isinstanceof.md
./vendor/zendframework/zend-validator/doc/book/validators/hostname.md
./vendor/zendframework/zend-validator/doc/book/validators/between.md
./vendor/zendframework/zend-validator/doc/book/validators/isbn.md
./vendor/zendframework/zend-validator/doc/book/validators/identical.md
./vendor/zendframework/zend-validator/doc/book/validators/ip.md
./vendor/zendframework/zend-validator/doc/book/validators/string-length.md
./vendor/zendframework/zend-validator/doc/book/validators/regex.md
./vendor/zendframework/zend-validator/doc/book/validators/iban.md
./vendor/zendframework/zend-validator/doc/book/validators/uuid.md
./vendor/zendframework/zend-validator/doc/book/validators/hex.md
./vendor/zendframework/zend-validator/doc/book/validators/digits.md
./vendor/zendframework/zend-validator/doc/book/validators/db.md
./vendor/zendframework/zend-validator/doc/book/validators/in-array.md
./vendor/zendframework/zend-validator/doc/book/validators/less-than.md
./vendor/zendframework/zend-validator/doc/book/validators/callback.md
./vendor/zendframework/zend-validator/doc/book/validators/not-empty.md
./vendor/zendframework/zend-router
./vendor/zendframework/zend-router/LICENSE.md
./vendor/zendframework/zend-router/README.md
./vendor/zendframework/zend-router/mkdocs.yml
./vendor/zendframework/zend-router/composer.json
./vendor/zendframework/zend-router/CONTRIBUTING.md
./vendor/zendframework/zend-router/CHANGELOG.md
./vendor/zendframework/zend-router/src
./vendor/zendframework/zend-router/src/RouterFactory.php
./vendor/zendframework/zend-router/src/PriorityList.php
./vendor/zendframework/zend-router/src/Module.php
./vendor/zendframework/zend-router/src/ConfigProvider.php
./vendor/zendframework/zend-router/src/Exception
./vendor/zendframework/zend-router/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-router/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-router/src/Exception/RuntimeException.php
./vendor/zendframework/zend-router/src/RouteMatch.php
./vendor/zendframework/zend-router/src/Http
./vendor/zendframework/zend-router/src/Http/Scheme.php
./vendor/zendframework/zend-router/src/Http/HttpRouterFactory.php
./vendor/zendframework/zend-router/src/Http/Part.php
./vendor/zendframework/zend-router/src/Http/Segment.php
./vendor/zendframework/zend-router/src/Http/Regex.php
./vendor/zendframework/zend-router/src/Http/Hostname.php
./vendor/zendframework/zend-router/src/Http/TreeRouteStack.php
./vendor/zendframework/zend-router/src/Http/RouteMatch.php
./vendor/zendframework/zend-router/src/Http/Chain.php
./vendor/zendframework/zend-router/src/Http/TranslatorAwareTreeRouteStack.php
./vendor/zendframework/zend-router/src/Http/RouteInterface.php
./vendor/zendframework/zend-router/src/Http/Wildcard.php
./vendor/zendframework/zend-router/src/Http/Literal.php
./vendor/zendframework/zend-router/src/Http/Method.php
./vendor/zendframework/zend-router/src/RouteInterface.php
./vendor/zendframework/zend-router/src/RouteInvokableFactory.php
./vendor/zendframework/zend-router/src/RoutePluginManager.php
./vendor/zendframework/zend-router/src/RoutePluginManagerFactory.php
./vendor/zendframework/zend-router/src/RouteStackInterface.php
./vendor/zendframework/zend-router/src/RouterConfigTrait.php
./vendor/zendframework/zend-router/src/SimpleRouteStack.php
./vendor/zendframework/zend-router/CONDUCT.md
./vendor/zendframework/zend-router/phpcs.xml
./vendor/zendframework/zend-router/composer.lock
./vendor/zendframework/zend-loader
./vendor/zendframework/zend-loader/LICENSE.md
./vendor/zendframework/zend-loader/README.md
./vendor/zendframework/zend-loader/composer.json
./vendor/zendframework/zend-loader/CONTRIBUTING.md
./vendor/zendframework/zend-loader/src
./vendor/zendframework/zend-loader/src/ModuleAutoloader.php
./vendor/zendframework/zend-loader/src/PluginClassLoader.php
./vendor/zendframework/zend-loader/src/StandardAutoloader.php
./vendor/zendframework/zend-loader/src/ShortNameLocator.php
./vendor/zendframework/zend-loader/src/PluginClassLocator.php
./vendor/zendframework/zend-loader/src/ClassMapAutoloader.php
./vendor/zendframework/zend-loader/src/Exception
./vendor/zendframework/zend-loader/src/Exception/BadMethodCallException.php
./vendor/zendframework/zend-loader/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-loader/src/Exception/InvalidPathException.php
./vendor/zendframework/zend-loader/src/Exception/MissingResourceNamespaceException.php
./vendor/zendframework/zend-loader/src/Exception/PluginLoaderException.php
./vendor/zendframework/zend-loader/src/Exception/DomainException.php
./vendor/zendframework/zend-loader/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-loader/src/Exception/SecurityException.php
./vendor/zendframework/zend-loader/src/Exception/RuntimeException.php
./vendor/zendframework/zend-loader/src/SplAutoloader.php
./vendor/zendframework/zend-loader/src/AutoloaderFactory.php
./vendor/zendframework/zend-escaper
./vendor/zendframework/zend-escaper/LICENSE.md
./vendor/zendframework/zend-escaper/README.md
./vendor/zendframework/zend-escaper/mkdocs.yml
./vendor/zendframework/zend-escaper/composer.json
./vendor/zendframework/zend-escaper/CONTRIBUTING.md
./vendor/zendframework/zend-escaper/CHANGELOG.md
./vendor/zendframework/zend-escaper/src
./vendor/zendframework/zend-escaper/src/Escaper.php
./vendor/zendframework/zend-escaper/src/Exception
./vendor/zendframework/zend-escaper/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-escaper/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-escaper/src/Exception/RuntimeException.php
./vendor/zendframework/zend-escaper/CONDUCT.md
./vendor/zendframework/zend-escaper/doc
./vendor/zendframework/zend-escaper/doc/book
./vendor/zendframework/zend-escaper/doc/book/theory-of-operation.md
./vendor/zendframework/zend-escaper/doc/book/escaping-url.md
./vendor/zendframework/zend-escaper/doc/book/index.html
./vendor/zendframework/zend-escaper/doc/book/intro.md
./vendor/zendframework/zend-escaper/doc/book/escaping-html-attributes.md
./vendor/zendframework/zend-escaper/doc/book/configuration.md
./vendor/zendframework/zend-escaper/doc/book/escaping-css.md
./vendor/zendframework/zend-escaper/doc/book/escaping-html.md
./vendor/zendframework/zend-escaper/doc/book/index.md
./vendor/zendframework/zend-escaper/doc/book/escaping-javascript.md
./vendor/zendframework/zend-mvc
./vendor/zendframework/zend-mvc/LICENSE.md
./vendor/zendframework/zend-mvc/README.md
./vendor/zendframework/zend-mvc/mkdocs.yml
./vendor/zendframework/zend-mvc/composer.json
./vendor/zendframework/zend-mvc/CONTRIBUTING.md
./vendor/zendframework/zend-mvc/CHANGELOG.md
./vendor/zendframework/zend-mvc/src
./vendor/zendframework/zend-mvc/src/Service
./vendor/zendframework/zend-mvc/src/Service/ServiceListenerFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewTemplatePathStackFactory.php
./vendor/zendframework/zend-mvc/src/Service/HttpDefaultRenderingStrategyFactory.php
./vendor/zendframework/zend-mvc/src/Service/EventManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/RequestFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewFactory.php
./vendor/zendframework/zend-mvc/src/Service/ConfigFactory.php
./vendor/zendframework/zend-mvc/src/Service/HttpViewManagerConfigTrait.php
./vendor/zendframework/zend-mvc/src/Service/HttpExceptionStrategyFactory.php
./vendor/zendframework/zend-mvc/src/Service/ControllerManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/HttpMethodListenerFactory.php
./vendor/zendframework/zend-mvc/src/Service/HttpViewManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/ApplicationFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewFeedStrategyFactory.php
./vendor/zendframework/zend-mvc/src/Service/ResponseFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewPhpRendererStrategyFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewPhpRendererFactory.php
./vendor/zendframework/zend-mvc/src/Service/DispatchListenerFactory.php
./vendor/zendframework/zend-mvc/src/Service/ControllerPluginManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/AbstractPluginManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/ServiceManagerConfig.php
./vendor/zendframework/zend-mvc/src/Service/InjectTemplateListenerFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewJsonStrategyFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewResolverFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewHelperManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/SendResponseListenerFactory.php
./vendor/zendframework/zend-mvc/src/Service/ModuleManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewPrefixPathStackResolverFactory.php
./vendor/zendframework/zend-mvc/src/Service/ViewTemplateMapResolverFactory.php
./vendor/zendframework/zend-mvc/src/Service/PaginatorPluginManagerFactory.php
./vendor/zendframework/zend-mvc/src/Service/HttpRouteNotFoundStrategyFactory.php
./vendor/zendframework/zend-mvc/src/ApplicationInterface.php
./vendor/zendframework/zend-mvc/src/RouteListener.php
./vendor/zendframework/zend-mvc/src/View
./vendor/zendframework/zend-mvc/src/View/Http
./vendor/zendframework/zend-mvc/src/View/Http/DefaultRenderingStrategy.php
./vendor/zendframework/zend-mvc/src/View/Http/InjectRoutematchParamsListener.php
./vendor/zendframework/zend-mvc/src/View/Http/InjectTemplateListener.php
./vendor/zendframework/zend-mvc/src/View/Http/RouteNotFoundStrategy.php
./vendor/zendframework/zend-mvc/src/View/Http/CreateViewModelListener.php
./vendor/zendframework/zend-mvc/src/View/Http/ExceptionStrategy.php
./vendor/zendframework/zend-mvc/src/View/Http/ViewManager.php
./vendor/zendframework/zend-mvc/src/View/Http/InjectViewModelListener.php
./vendor/zendframework/zend-mvc/src/Controller
./vendor/zendframework/zend-mvc/src/Controller/LazyControllerAbstractFactory.php
./vendor/zendframework/zend-mvc/src/Controller/AbstractRestfulController.php
./vendor/zendframework/zend-mvc/src/Controller/AbstractActionController.php
./vendor/zendframework/zend-mvc/src/Controller/ControllerManager.php
./vendor/zendframework/zend-mvc/src/Controller/PluginManager.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin
./vendor/zendframework/zend-mvc/src/Controller/Plugin/Layout.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/Service
./vendor/zendframework/zend-mvc/src/Controller/Plugin/Service/ForwardFactory.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/Redirect.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/AcceptableViewModelSelector.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/Params.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/CreateHttpNotFoundModel.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/AbstractPlugin.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/PluginInterface.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/Url.php
./vendor/zendframework/zend-mvc/src/Controller/Plugin/Forward.php
./vendor/zendframework/zend-mvc/src/Controller/AbstractController.php
./vendor/zendframework/zend-mvc/src/HttpMethodListener.php
./vendor/zendframework/zend-mvc/src/DispatchListener.php
./vendor/zendframework/zend-mvc/src/SendResponseListener.php
./vendor/zendframework/zend-mvc/src/MiddlewareListener.php
./vendor/zendframework/zend-mvc/src/Exception
./vendor/zendframework/zend-mvc/src/Exception/BadMethodCallException.php
./vendor/zendframework/zend-mvc/src/Exception/InvalidControllerException.php
./vendor/zendframework/zend-mvc/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-mvc/src/Exception/MissingLocatorException.php
./vendor/zendframework/zend-mvc/src/Exception/InvalidPluginException.php
./vendor/zendframework/zend-mvc/src/Exception/DomainException.php
./vendor/zendframework/zend-mvc/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-mvc/src/Exception/RuntimeException.php
./vendor/zendframework/zend-mvc/src/Application.php
./vendor/zendframework/zend-mvc/src/ModuleRouteListener.php
./vendor/zendframework/zend-mvc/src/ResponseSender
./vendor/zendframework/zend-mvc/src/ResponseSender/ResponseSenderInterface.php
./vendor/zendframework/zend-mvc/src/ResponseSender/PhpEnvironmentResponseSender.php
./vendor/zendframework/zend-mvc/src/ResponseSender/SendResponseEvent.php
./vendor/zendframework/zend-mvc/src/ResponseSender/HttpResponseSender.php
./vendor/zendframework/zend-mvc/src/ResponseSender/AbstractResponseSender.php
./vendor/zendframework/zend-mvc/src/ResponseSender/SimpleStreamResponseSender.php
./vendor/zendframework/zend-mvc/src/InjectApplicationEventInterface.php
./vendor/zendframework/zend-mvc/src/MvcEvent.php
./vendor/zendframework/zend-mvc/CONDUCT.md
./vendor/zendframework/zend-mvc/composer.lock
./vendor/zendframework/zend-config
./vendor/zendframework/zend-config/LICENSE.md
./vendor/zendframework/zend-config/README.md
./vendor/zendframework/zend-config/mkdocs.yml
./vendor/zendframework/zend-config/composer.json
./vendor/zendframework/zend-config/CONTRIBUTING.md
./vendor/zendframework/zend-config/CHANGELOG.md
./vendor/zendframework/zend-config/src
./vendor/zendframework/zend-config/src/ReaderPluginManager.php
./vendor/zendframework/zend-config/src/WriterPluginManager.php
./vendor/zendframework/zend-config/src/Processor
./vendor/zendframework/zend-config/src/Processor/Token.php
./vendor/zendframework/zend-config/src/Processor/Filter.php
./vendor/zendframework/zend-config/src/Processor/Translator.php
./vendor/zendframework/zend-config/src/Processor/Queue.php
./vendor/zendframework/zend-config/src/Processor/ProcessorInterface.php
./vendor/zendframework/zend-config/src/Processor/Constant.php
./vendor/zendframework/zend-config/src/Exception
./vendor/zendframework/zend-config/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-config/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-config/src/Exception/RuntimeException.php
./vendor/zendframework/zend-config/src/Config.php
./vendor/zendframework/zend-config/src/Writer
./vendor/zendframework/zend-config/src/Writer/Json.php
./vendor/zendframework/zend-config/src/Writer/Xml.php
./vendor/zendframework/zend-config/src/Writer/Ini.php
./vendor/zendframework/zend-config/src/Writer/PhpArray.php
./vendor/zendframework/zend-config/src/Writer/Yaml.php
./vendor/zendframework/zend-config/src/Writer/WriterInterface.php
./vendor/zendframework/zend-config/src/Writer/AbstractWriter.php
./vendor/zendframework/zend-config/src/AbstractConfigFactory.php
./vendor/zendframework/zend-config/src/Reader
./vendor/zendframework/zend-config/src/Reader/JavaProperties.php
./vendor/zendframework/zend-config/src/Reader/ReaderInterface.php
./vendor/zendframework/zend-config/src/Reader/Json.php
./vendor/zendframework/zend-config/src/Reader/Xml.php
./vendor/zendframework/zend-config/src/Reader/Ini.php
./vendor/zendframework/zend-config/src/Reader/Yaml.php
./vendor/zendframework/zend-config/src/Factory.php
./vendor/zendframework/zend-config/doc
./vendor/zendframework/zend-config/doc/book
./vendor/zendframework/zend-config/doc/book/reader.md
./vendor/zendframework/zend-config/doc/book/index.html
./vendor/zendframework/zend-config/doc/book/intro.md
./vendor/zendframework/zend-config/doc/book/writer.md
./vendor/zendframework/zend-config/doc/book/factory.md
./vendor/zendframework/zend-config/doc/book/index.md
./vendor/zendframework/zend-config/doc/book/processor.md
./vendor/zendframework/zend-config/doc/book/theory.md
./vendor/zendframework/zend-modulemanager
./vendor/zendframework/zend-modulemanager/LICENSE.md
./vendor/zendframework/zend-modulemanager/README.md
./vendor/zendframework/zend-modulemanager/mkdocs.yml
./vendor/zendframework/zend-modulemanager/composer.json
./vendor/zendframework/zend-modulemanager/CONTRIBUTING.md
./vendor/zendframework/zend-modulemanager/CHANGELOG.md
./vendor/zendframework/zend-modulemanager/src
./vendor/zendframework/zend-modulemanager/src/ModuleManager.php
./vendor/zendframework/zend-modulemanager/src/Feature
./vendor/zendframework/zend-modulemanager/src/Feature/ConsoleUsageProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/ControllerProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/BootstrapListenerInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/LogWriterProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/DependencyIndicatorInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/ViewHelperProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/InputFilterProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/LocatorRegisteredInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/TranslatorPluginProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/ConsoleBannerProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/ConfigProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/LogProcessorProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/RouteProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/ValidatorProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/InitProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/SerializerProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/FormElementProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/FilterProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/HydratorProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/ServiceProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/ControllerPluginProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Feature/AutoloaderProviderInterface.php
./vendor/zendframework/zend-modulemanager/src/Exception
./vendor/zendframework/zend-modulemanager/src/Exception/MissingDependencyModuleException.php
./vendor/zendframework/zend-modulemanager/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-modulemanager/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-modulemanager/src/Exception/RuntimeException.php
./vendor/zendframework/zend-modulemanager/src/ModuleEvent.php
./vendor/zendframework/zend-modulemanager/src/Listener
./vendor/zendframework/zend-modulemanager/src/Listener/AbstractListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/ModuleResolverListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/ServiceListenerInterface.php
./vendor/zendframework/zend-modulemanager/src/Listener/ListenerOptions.php
./vendor/zendframework/zend-modulemanager/src/Listener/AutoloaderListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/ModuleDependencyCheckerListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/Exception
./vendor/zendframework/zend-modulemanager/src/Listener/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-modulemanager/src/Listener/Exception/ExceptionInterface.php
./vendor/zendframework/zend-modulemanager/src/Listener/Exception/RuntimeException.php
./vendor/zendframework/zend-modulemanager/src/Listener/ServiceListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/LocatorRegistrationListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/ModuleLoaderListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/ConfigListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/ConfigMergerInterface.php
./vendor/zendframework/zend-modulemanager/src/Listener/DefaultListenerAggregate.php
./vendor/zendframework/zend-modulemanager/src/Listener/OnBootstrapListener.php
./vendor/zendframework/zend-modulemanager/src/Listener/InitTrigger.php
./vendor/zendframework/zend-modulemanager/src/ModuleManagerInterface.php
./vendor/zendframework/zend-modulemanager/CONDUCT.md
./vendor/zendframework/zend-modulemanager/doc
./vendor/zendframework/zend-modulemanager/doc/book
./vendor/zendframework/zend-modulemanager/doc/book/index.html
./vendor/zendframework/zend-modulemanager/doc/book/intro.md
./vendor/zendframework/zend-modulemanager/doc/book/module-manager.md
./vendor/zendframework/zend-modulemanager/doc/book/module-autoloader.md
./vendor/zendframework/zend-modulemanager/doc/book/module-class.md
./vendor/zendframework/zend-modulemanager/doc/book/index.md
./vendor/zendframework/zend-modulemanager/doc/book/best-practices.md
./vendor/zendframework/zend-stdlib
./vendor/zendframework/zend-stdlib/LICENSE.md
./vendor/zendframework/zend-stdlib/README.md
./vendor/zendframework/zend-stdlib/mkdocs.yml
./vendor/zendframework/zend-stdlib/composer.json
./vendor/zendframework/zend-stdlib/CONTRIBUTING.md
./vendor/zendframework/zend-stdlib/CHANGELOG.md
./vendor/zendframework/zend-stdlib/src
./vendor/zendframework/zend-stdlib/src/ArrayObject.php
./vendor/zendframework/zend-stdlib/src/FastPriorityQueue.php
./vendor/zendframework/zend-stdlib/src/ArraySerializableInterface.php
./vendor/zendframework/zend-stdlib/src/StringWrapper
./vendor/zendframework/zend-stdlib/src/StringWrapper/Iconv.php
./vendor/zendframework/zend-stdlib/src/StringWrapper/Intl.php
./vendor/zendframework/zend-stdlib/src/StringWrapper/Native.php
./vendor/zendframework/zend-stdlib/src/StringWrapper/StringWrapperInterface.php
./vendor/zendframework/zend-stdlib/src/StringWrapper/AbstractStringWrapper.php
./vendor/zendframework/zend-stdlib/src/StringWrapper/MbString.php
./vendor/zendframework/zend-stdlib/src/PriorityQueue.php
./vendor/zendframework/zend-stdlib/src/PriorityList.php
./vendor/zendframework/zend-stdlib/src/InitializableInterface.php
./vendor/zendframework/zend-stdlib/src/Parameters.php
./vendor/zendframework/zend-stdlib/src/SplPriorityQueue.php
./vendor/zendframework/zend-stdlib/src/AbstractOptions.php
./vendor/zendframework/zend-stdlib/src/Message.php
./vendor/zendframework/zend-stdlib/src/DispatchableInterface.php
./vendor/zendframework/zend-stdlib/src/ConsoleHelper.php
./vendor/zendframework/zend-stdlib/src/ArrayUtils.php
./vendor/zendframework/zend-stdlib/src/ResponseInterface.php
./vendor/zendframework/zend-stdlib/src/Response.php
./vendor/zendframework/zend-stdlib/src/Glob.php
./vendor/zendframework/zend-stdlib/src/Exception
./vendor/zendframework/zend-stdlib/src/Exception/BadMethodCallException.php
./vendor/zendframework/zend-stdlib/src/Exception/InvalidArgumentException.php
./vendor/zendframework/zend-stdlib/src/Exception/ExtensionNotLoadedException.php
./vendor/zendframework/zend-stdlib/src/Exception/LogicException.php
./vendor/zendframework/zend-stdlib/src/Exception/DomainException.php
./vendor/zendframework/zend-stdlib/src/Exception/ExceptionInterface.php
./vendor/zendframework/zend-stdlib/src/Exception/RuntimeException.php
./vendor/zendframework/zend-stdlib/src/JsonSerializable.php
./vendor/zendframework/zend-stdlib/src/ErrorHandler.php
./vendor/zendframework/zend-stdlib/src/SplStack.php
./vendor/zendframework/zend-stdlib/src/StringUtils.php
./vendor/zendframework/zend-stdlib/src/ParametersInterface.php
./vendor/zendframework/zend-stdlib/src/MessageInterface.php
./vendor/zendframework/zend-stdlib/src/ArrayStack.php
./vendor/zendframework/zend-stdlib/src/ParameterObjectInterface.php
./vendor/zendframework/zend-stdlib/src/Request.php
./vendor/zendframework/zend-stdlib/src/Guard
./vendor/zendframework/zend-stdlib/src/Guard/AllGuardsTrait.php
./vendor/zendframework/zend-stdlib/src/Guard/EmptyGuardTrait.php
./vendor/zendframework/zend-stdlib/src/Guard/NullGuardTrait.php
./vendor/zendframework/zend-stdlib/src/Guard/ArrayOrTraversableGuardTrait.php
./vendor/zendframework/zend-stdlib/src/RequestInterface.php
./vendor/zendframework/zend-stdlib/src/SplQueue.php
./vendor/zendframework/zend-stdlib/src/ArrayUtils
./vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php
./vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKeyInterface.php
./vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeRemoveKey.php
./vendor/zendframework/zend-stdlib/CONDUCT.md
./vendor/zendframework/zend-stdlib/benchmark
./vendor/zendframework/zend-stdlib/benchmark/InsertPriorityQueue.php
./vendor/zendframework/zend-stdlib/benchmark/ExtractPriorityQueue.php
./vendor/zendframework/zend-stdlib/benchmark/RemovePriorityQueue.php
./vendor/zendframework/zend-stdlib/phpcs.xml
./vendor/zendframework/zend-stdlib/doc
./vendor/zendframework/zend-stdlib/doc/book
./vendor/zendframework/zend-stdlib/doc/book/migration.md
./vendor/zendframework/zend-stdlib/doc/book/index.html
./vendor/zendframework/zend-stdlib/doc/book/console-helper.md
./vendor/zendframework/zend-stdlib/doc/book/index.md
./vendor/zendframework/zend-stdlib/doc/bookdown.json
./vendor/psr
./vendor/psr/container
./vendor/psr/container/README.md
./vendor/psr/container/LICENSE
./vendor/psr/container/composer.json
./vendor/psr/container/.gitignore
./vendor/psr/container/src
./vendor/psr/container/src/ContainerExceptionInterface.php
./vendor/psr/container/src/ContainerInterface.php
./vendor/psr/container/src/NotFoundExceptionInterface.php
./vendor/bin
./vendor/bin/generate-deps-for-config-factory
./vendor/bin/generate-factory-for-class
./vendor/bin/templatemap_generator.php
./vendor/bin/zf-development-mode
./vendor/zfcampus
./vendor/zfcampus/zf-development-mode
./vendor/zfcampus/zf-development-mode/LICENSE.md
./vendor/zfcampus/zf-development-mode/README.md
./vendor/zfcampus/zf-development-mode/phpunit.xml.dist
./vendor/zfcampus/zf-development-mode/composer.json
./vendor/zfcampus/zf-development-mode/bin
./vendor/zfcampus/zf-development-mode/bin/zf-development-mode
./vendor/zfcampus/zf-development-mode/.gitignore
./vendor/zfcampus/zf-development-mode/CONTRIBUTING.md
./vendor/zfcampus/zf-development-mode/CHANGELOG.md
./vendor/zfcampus/zf-development-mode/src
./vendor/zfcampus/zf-development-mode/src/Command.php
./vendor/zfcampus/zf-development-mode/src/Disable.php
./vendor/zfcampus/zf-development-mode/src/ConfigDiscoveryTrait.php
./vendor/zfcampus/zf-development-mode/src/Enable.php
./vendor/zfcampus/zf-development-mode/src/Help.php
./vendor/zfcampus/zf-development-mode/src/Status.php
./vendor/zfcampus/zf-development-mode/CONDUCT.md
./vendor/zfcampus/zf-development-mode/phpcs.xml
./vendor/zfcampus/zf-development-mode/development.local.php.dist
./vendor/zfcampus/zf-development-mode/.coveralls.yml
./vendor/zfcampus/zf-development-mode/development.config.php.dist
./vendor/zfcampus/zf-development-mode/test
./vendor/zfcampus/zf-development-mode/test/HelpTest.php
./vendor/zfcampus/zf-development-mode/test/RemoveCacheFileTrait.php
./vendor/zfcampus/zf-development-mode/test/StatusTest.php
./vendor/zfcampus/zf-development-mode/test/EnableTest.php
./vendor/zfcampus/zf-development-mode/test/DisableTest.php
./vendor/zfcampus/zf-development-mode/.travis.yml
./vendor/container-interop
./vendor/container-interop/container-interop
./vendor/container-interop/container-interop/README.md
./vendor/container-interop/container-interop/LICENSE
./vendor/container-interop/container-interop/composer.json
./vendor/container-interop/container-interop/docs
./vendor/container-interop/container-interop/docs/ContainerInterface.md
./vendor/container-interop/container-interop/docs/images
./vendor/container-interop/container-interop/docs/images/side_by_side_containers.png
./vendor/container-interop/container-interop/docs/images/priority.png
./vendor/container-interop/container-interop/docs/images/interoperating_containers.png
./vendor/container-interop/container-interop/docs/Delegate-lookup-meta.md
./vendor/container-interop/container-interop/docs/ContainerInterface-meta.md
./vendor/container-interop/container-interop/docs/Delegate-lookup.md
./vendor/container-interop/container-interop/.gitignore
./vendor/container-interop/container-interop/src
./vendor/container-interop/container-interop/src/Interop
./vendor/container-interop/container-interop/src/Interop/Container
./vendor/container-interop/container-interop/src/Interop/Container/Exception
./vendor/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php
./vendor/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php
./vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php
./.gitignore
./CONTRIBUTING.md
./CONDUCT.md
./phpcs.xml
./config
./config/modules.config.php
./config/autoload
./config/autoload/global.php
./config/autoload/development.local.php
./config/autoload/README.md
./config/autoload/local.php.dist
./config/autoload/.gitignore
./config/autoload/zend-developer-tools.local-development.php
./config/autoload/development.local.php.dist
./config/development.config.php
./config/development.config.php.dist
./config/application.config.php
./composer.lock
find: `ls’: そのようなファイルやディレクトリはありません
[vagrant@localhost zend]$