hasen's tech life

Twitter: @hasen

OSX(Mavericks)にLaravel5.0をインストール

Larave5がリリースされたので,早速入れてみた.

$ php -v
> PHP 5.5.21 (cli)
$ php -m | grep 'mcrypt'
> 25:mcrypt
$ composer create-project laravel/laravel
$ cd Laravel
$ php artisan
> Laravel Framework version 5.0
$ php artisan serve
# ブラウザで'localhost:8000'を確認.

f:id:hasen-fus:20150205124329p:plain

ディレクトリ構造は下記.

$ tree -d
.

├── app
│   ├── Commands
│   ├── Console
│   │   └── Commands
│   ├── Events
│   ├── Exceptions
│   ├── Handlers
│   │   ├── Commands
│   │   └── Events
│   ├── Http
│   │   ├── Controllers
│   │   │   └── Auth
│   │   ├── Middleware
│   │   └── Requests
│   ├── Providers
│   └── Services
├── bootstrap
├── config
├── database
│   ├── migrations
│   └── seeds
├── public
│   └── css
├── resources
│   ├── assets
│   │   └── less
│   │   └── bootstrap
│   │   └── mixins
│   ├── lang
│   │   └── en
│   └── views
│   ├── auth
│   ├── emails
│   ├── errors
│   └── vendor
├── storage
│   ├── app
│   ├── framework
│   │   ├── cache
│   │   ├── sessions
│   │   └── views
│   └── logs
├── tests
└── vendor
├── bin
├── classpreloader
│   └── classpreloader
│   └── src
│   ├── Command
│   ├── Exception
│   └── Parser
├── composer
├── danielstjules
│   └── stringy
│   ├── src
│   └── tests
├── dnoegel
│   └── php-xdg-base-dir
│   ├── src
│   └── tests
├── doctrine
│   ├── inflector
│   │   ├── lib
│   │   │   └── Doctrine
│   │   │   └── Common
│   │   │   └── Inflector
│   │   └── tests
│   │   └── Doctrine
│   │   └── Tests
│   │   └── Common
│   │   └── Inflector
│   └── instantiator
│   ├── src
│   │   └── Doctrine
│   │   └── Instantiator
│   │   └── Exception
│   └── tests
│   └── DoctrineTest
│   ├── InstantiatorPerformance
│   ├── InstantiatorTest
│   │   └── Exception
│   └── InstantiatorTestAsset
├── ircmaxell
│   └── password-compat
│   └── lib
├── jakub-onderka
│   ├── php-console-color
│   │   ├── src
│   │   │   └── JakubOnderka
│   │   │   └── PhpConsoleColor
│   │   └── tests
│   │   └── JakubOnderka
│   │   └── PhpConsoleColor
│   └── php-console-highlighter
│   ├── examples
│   ├── src
│   │   └── JakubOnderka
│   │   └── PhpConsoleHighlighter
│   └── tests
│   └── JakubOnderka
│   └── PhpConsoleHighligter
├── jeremeamia
│   └── SuperClosure
│   └── src
│   ├── Analyzer
│   │   └── Visitor
│   └── Exception
├── laravel
│   └── framework
│   └── src
│   └── Illuminate
│   ├── Auth
│   │   ├── Console
│   │   ├── Middleware
│   │   └── Passwords
│   ├── Bus
│   ├── Cache
│   │   └── Console
│   │   └── stubs
│   ├── Config
│   ├── Console
│   │   └── Scheduling
│   ├── Container
│   ├── Contracts
│   │   ├── Auth
│   │   ├── Bus
│   │   ├── Cache
│   │   ├── Config
│   │   ├── Console
│   │   ├── Container
│   │   ├── Cookie
│   │   ├── Database
│   │   ├── Debug
│   │   ├── Encryption
│   │   ├── Events
│   │   ├── Filesystem
│   │   ├── Foundation
│   │   ├── Hashing
│   │   ├── Http
│   │   ├── Logging
│   │   ├── Mail
│   │   ├── Pagination
│   │   ├── Pipeline
│   │   ├── Queue
│   │   ├── Redis
│   │   ├── Routing
│   │   ├── Support
│   │   ├── Validation
│   │   └── View
│   ├── Cookie
│   │   └── Middleware
│   ├── Database
│   │   ├── Capsule
│   │   ├── Connectors
│   │   ├── Console
│   │   │   └── Migrations
│   │   ├── Eloquent
│   │   │   └── Relations
│   │   ├── Migrations
│   │   │   └── stubs
│   │   ├── Query
│   │   │   ├── Grammars
│   │   │   └── Processors
│   │   └── Schema
│   │   └── Grammars
│   ├── Encryption
│   ├── Events
│   ├── Filesystem
│   ├── Foundation
│   │   ├── Auth
│   │   ├── Bootstrap
│   │   ├── Bus
│   │   ├── Console
│   │   │   ├── Optimize
│   │   │   └── stubs
│   │   │   └── fresh
│   │   ├── Exceptions
│   │   ├── Http
│   │   │   └── Middleware
│   │   ├── Providers
│   │   ├── Support
│   │   │   └── Providers
│   │   ├── Testing
│   │   └── Validation
│   ├── Hashing
│   ├── Http
│   │   ├── Exception
│   │   └── Middleware
│   ├── Log
│   ├── Mail
│   │   └── Transport
│   ├── Pagination
│   ├── Pipeline
│   ├── Queue
│   │   ├── Capsule
│   │   ├── Connectors
│   │   ├── Console
│   │   │   └── stubs
│   │   ├── Failed
│   │   └── Jobs
│   ├── Redis
│   ├── Routing
│   │   ├── Console
│   │   │   └── stubs
│   │   └── Matching
│   ├── Session
│   │   ├── Console
│   │   │   └── stubs
│   │   └── Middleware
│   ├── Support
│   │   ├── Debug
│   │   ├── Facades
│   │   └── Traits
│   ├── Translation
│   ├── Validation
│   └── View
│   ├── Compilers
│   ├── Engines
│   └── Middleware
├── league
│   └── flysystem
│   └── src
│   ├── Adapter
│   │   └── Polyfill
│   ├── Plugin
│   └── Util
├── monolog
│   └── monolog
│   ├── doc
│   ├── src
│   │   └── Monolog
│   │   ├── Formatter
│   │   ├── Handler
│   │   │   ├── FingersCrossed
│   │   │   └── SyslogUdp
│   │   └── Processor
│   └── tests
│   └── Monolog
│   ├── Formatter
│   ├── Functional
│   │   └── Handler
│   ├── Handler
│   │   └── Fixtures
│   └── Processor
├── mtdowling
│   └── cron-expression
│   ├── src
│   │   └── Cron
│   └── tests
│   └── Cron
├── nesbot
│   └── carbon
│   ├── src
│   │   └── Carbon
│   └── tests
├── nikic
│   └── php-parser
│   ├── bin
│   ├── grammar
│   └── lib
│   └── PhpParser
│   ├── Builder
│   ├── Comment
│   ├── Lexer
│   ├── Node
│   │   ├── Expr
│   │   │   ├── AssignOp
│   │   │   ├── BinaryOp
│   │   │   └── Cast
│   │   ├── Name
│   │   ├── Scalar
│   │   │   └── MagicConst
│   │   └── Stmt
│   │   └── TraitUseAdaptation
│   ├── NodeVisitor
│   ├── PrettyPrinter
│   ├── Serializer
│   └── Unserializer
├── phpdocumentor
│   └── reflection-docblock
│   ├── src
│   │   └── phpDocumentor
│   │   └── Reflection
│   │   └── DocBlock
│   │   ├── Tag
│   │   └── Type
│   └── tests
│   └── phpDocumentor
│   └── Reflection
│   └── DocBlock
│   ├── Tag
│   └── Type
├── phpspec
│   ├── php-diff
│   │   ├── example
│   │   └── lib
│   │   └── Diff
│   │   └── Renderer
│   │   ├── Html
│   │   └── Text
│   ├── phpspec
│   │   ├── bin
│   │   ├── features
│   │   │   ├── bootstrap
│   │   │   │   ├── Fake
│   │   │   │   └── Matcher
│   │   │   ├── code_generation
│   │   │   ├── construction
│   │   │   ├── exception_handling
│   │   │   ├── formatter
│   │   │   ├── matchers
│   │   │   ├── options
│   │   │   └── runner
│   │   ├── spec
│   │   │   └── PhpSpec
│   │   │   ├── CodeGenerator
│   │   │   │   └── Generator
│   │   │   ├── Config
│   │   │   ├── Console
│   │   │   ├── Event
│   │   │   ├── Exception
│   │   │   │   ├── Example
│   │   │   │   └── Fracture
│   │   │   ├── Formatter
│   │   │   │   ├── Html
│   │   │   │   └── Presenter
│   │   │   │   └── Differ
│   │   │   ├── Listener
│   │   │   ├── Loader
│   │   │   │   └── Node
│   │   │   ├── Locator
│   │   │   │   └── PSR0
│   │   │   ├── Matcher
│   │   │   ├── Process
│   │   │   │   └── ReRunner
│   │   │   ├── Runner
│   │   │   │   └── Maintainer
│   │   │   ├── Util
│   │   │   └── Wrapper
│   │   │   └── Subject
│   │   │   └── Expectation
│   │   └── src
│   │   └── PhpSpec
│   │   ├── CodeGenerator
│   │   │   └── Generator
│   │   │   └── templates
│   │   ├── Config
│   │   ├── Console
│   │   │   └── Command
│   │   ├── Event
│   │   ├── Exception
│   │   │   ├── Example
│   │   │   ├── Fracture
│   │   │   └── Wrapper
│   │   ├── Extension
│   │   ├── Factory
│   │   ├── Formatter
│   │   │   ├── Html
│   │   │   │   └── Template
│   │   │   └── Presenter
│   │   │   └── Differ
│   │   ├── IO
│   │   ├── Listener
│   │   ├── Loader
│   │   │   └── Node
│   │   ├── Locator
│   │   │   └── PSR0
│   │   ├── Matcher
│   │   ├── Process
│   │   │   └── ReRunner
│   │   ├── Resources
│   │   │   └── schema
│   │   ├── Runner
│   │   │   └── Maintainer
│   │   ├── Util
│   │   └── Wrapper
│   │   └── Subject
│   │   └── Expectation
│   └── prophecy
│   ├── spec
│   │   └── Prophecy
│   │   ├── Argument
│   │   │   └── Token
│   │   ├── Call
│   │   ├── Doubler
│   │   │   ├── ClassPatch
│   │   │   └── Generator
│   │   │   └── Node
│   │   ├── Exception
│   │   │   ├── Call
│   │   │   ├── Doubler
│   │   │   ├── Prediction
│   │   │   └── Prophecy
│   │   ├── Prediction
│   │   ├── Promise
│   │   ├── Prophecy
│   │   └── Util
│   └── src
│   └── Prophecy
│   ├── Argument
│   │   └── Token
│   ├── Call
│   ├── Doubler
│   │   ├── ClassPatch
│   │   └── Generator
│   │   └── Node
│   ├── Exception
│   │   ├── Call
│   │   ├── Doubler
│   │   ├── Prediction
│   │   └── Prophecy
│   ├── Prediction
│   ├── Promise
│   ├── Prophecy
│   └── Util
├── phpunit
│   ├── php-code-coverage
│   │   ├── build
│   │   ├── scripts
│   │   ├── src
│   │   │   └── CodeCoverage
│   │   │   ├── Driver
│   │   │   ├── Exception
│   │   │   ├── Report
│   │   │   │   ├── HTML
│   │   │   │   │   └── Renderer
│   │   │   │   │   └── Template
│   │   │   │   │   ├── css
│   │   │   │   │   ├── fonts
│   │   │   │   │   └── js
│   │   │   │   ├── Node
│   │   │   │   └── XML
│   │   │   │   └── File
│   │   │   └── Util
│   │   └── tests
│   │   ├── PHP
│   │   │   └── CodeCoverage
│   │   │   └── Report
│   │   └── _files
│   ├── php-file-iterator
│   │   ├── File
│   │   │   └── Iterator
│   │   └── build
│   │   └── PHPCS
│   │   └── Sniffs
│   │   ├── ControlStructures
│   │   └── Whitespace
│   ├── php-text-template
│   │   ├── Text
│   │   │   └── Template
│   │   └── build
│   │   └── PHPCS
│   │   └── Sniffs
│   │   ├── ControlStructures
│   │   └── Whitespace
│   ├── php-timer
│   │   ├── PHP
│   │   │   └── Timer
│   │   ├── Tests
│   │   └── build
│   │   └── PHPCS
│   │   └── Sniffs
│   │   ├── ControlStructures
│   │   └── Whitespace
│   ├── php-token-stream
│   │   ├── build
│   │   ├── src
│   │   │   └── Token
│   │   │   └── Stream
│   │   └── tests
│   │   ├── Token
│   │   └── _fixture
│   ├── phpunit
│   │   ├── build
│   │   ├── src
│   │   │   ├── Extensions
│   │   │   ├── Framework
│   │   │   │   ├── Assert
│   │   │   │   ├── Constraint
│   │   │   │   │   └── JsonMatches
│   │   │   │   ├── Error
│   │   │   │   └── TestSuite
│   │   │   ├── Runner
│   │   │   │   └── Filter
│   │   │   │   └── Group
│   │   │   ├── TextUI
│   │   │   └── Util
│   │   │   ├── Log
│   │   │   ├── PHP
│   │   │   │   └── Template
│   │   │   └── TestDox
│   │   │   └── ResultPrinter
│   │   └── tests
│   │   ├── Extensions
│   │   ├── Fail
│   │   ├── Framework
│   │   │   └── Constraint
│   │   │   └── JsonMatches
│   │   ├── Regression
│   │   │   ├── 1021
│   │   │   ├── 523
│   │   │   ├── 578
│   │   │   ├── 684
│   │   │   ├── 783
│   │   │   └── GitHub
│   │   │   ├── 1149
│   │   │   ├── 1216
│   │   │   ├── 1265
│   │   │   ├── 1330
│   │   │   ├── 1335
│   │   │   ├── 1337
│   │   │   ├── 1340
│   │   │   ├── 1348
│   │   │   ├── 1351
│   │   │   ├── 1374
│   │   │   ├── 1437
│   │   │   ├── 1468
│   │   │   ├── 1471
│   │   │   ├── 1472
│   │   │   ├── 1570
│   │   │   ├── 244
│   │   │   ├── 322
│   │   │   ├── 433
│   │   │   ├── 445
│   │   │   ├── 498
│   │   │   ├── 503
│   │   │   ├── 581
│   │   │   ├── 74
│   │   │   ├── 765
│   │   │   ├── 797
│   │   │   └── 873
│   │   ├── Runner
│   │   ├── TextUI
│   │   ├── Util
│   │   │   └── TestDox
│   │   └── _files
│   │   ├── Inheritance
│   │   └── JsonData
│   └── phpunit-mock-objects
│   ├── build
│   ├── src
│   │   └── Framework
│   │   └── MockObject
│   │   ├── Builder
│   │   ├── Exception
│   │   ├── Generator
│   │   ├── Invocation
│   │   ├── Matcher
│   │   └── Stub
│   └── tests
│   ├── MockObject
│   │   ├── Invocation
│   │   └── Matcher
│   └── _fixture
├── psr
│   └── log
│   └── Psr
│   └── Log
│   └── Test
├── psy
│   └── psysh
│   ├── bin
│   ├── src
│   │   └── Psy
│   │   ├── CodeCleaner
│   │   ├── Command
│   │   │   └── ListCommand
│   │   ├── Exception
│   │   ├── ExecutionLoop
│   │   ├── Formatter
│   │   ├── Output
│   │   ├── Presenter
│   │   ├── Readline
│   │   ├── Reflection
│   │   └── Util
│   └── test
│   ├── Psy
│   │   └── Test
│   │   ├── CodeCleaner
│   │   ├── Exception
│   │   ├── Formatter
│   │   ├── Presenter
│   │   │   └── Fixtures
│   │   ├── Readline
│   │   ├── Reflection
│   │   └── Util
│   ├── fixtures
│   │   ├── default
│   │   │   ├── .config
│   │   │   │   └── psysh
│   │   │   └── .local
│   │   │   └── share
│   │   │   └── psysh
│   │   ├── legacy
│   │   │   └── .psysh
│   │   └── mixed
│   │   └── .psysh
│   └── tools
├── sebastian
│   ├── comparator
│   │   ├── build
│   │   ├── src
│   │   └── tests
│   │   └── _files
│   ├── diff
│   │   ├── src
│   │   │   └── LCS
│   │   └── tests
│   ├── environment
│   │   ├── src
│   │   └── tests
│   ├── exporter
│   │   ├── src
│   │   └── tests
│   ├── global-state
│   │   ├── build
│   │   ├── src
│   │   └── tests
│   │   └── _fixture
│   ├── recursion-context
│   │   ├── src
│   │   └── tests
│   └── version
│   ├── build
│   ├── src
│   └── tests
├── swiftmailer
│   └── swiftmailer
│   ├── doc
│   │   └── uml
│   ├── lib
│   │   ├── classes
│   │   │   └── Swift
│   │   │   ├── ByteStream
│   │   │   ├── CharacterReader
│   │   │   ├── CharacterReaderFactory
│   │   │   ├── CharacterStream
│   │   │   ├── Encoder
│   │   │   ├── Events
│   │   │   ├── KeyCache
│   │   │   ├── Mailer
│   │   │   ├── Mime
│   │   │   │   ├── ContentEncoder
│   │   │   │   ├── HeaderEncoder
│   │   │   │   └── Headers
│   │   │   ├── Plugins
│   │   │   │   ├── Decorator
│   │   │   │   ├── Loggers
│   │   │   │   ├── Pop
│   │   │   │   └── Reporters
│   │   │   ├── Signers
│   │   │   ├── StreamFilters
│   │   │   └── Transport
│   │   │   └── Esmtp
│   │   │   └── Auth
│   │   └── dependency_maps
│   ├── notes
│   │   └── rfc
│   └── tests
│   ├── _samples
│   │   ├── charsets
│   │   │   ├── iso-2022-jp
│   │   │   ├── iso-8859-1
│   │   │   └── utf-8
│   │   ├── dkim
│   │   ├── files
│   │   └── smime
│   ├── acceptance
│   │   └── Swift
│   │   ├── ByteStream
│   │   ├── CharacterReaderFactory
│   │   ├── Encoder
│   │   ├── KeyCache
│   │   ├── Mime
│   │   │   ├── ContentEncoder
│   │   │   └── HeaderEncoder
│   │   └── Transport
│   │   └── StreamBuffer
│   ├── bug
│   │   └── Swift
│   ├── fixtures
│   ├── smoke
│   │   └── Swift
│   │   └── Smoke
│   └── unit
│   └── Swift
│   ├── ByteStream
│   ├── CharacterReader
│   ├── CharacterStream
│   ├── Encoder
│   ├── Events
│   ├── KeyCache
│   ├── Mailer
│   ├── Mime
│   │   ├── ContentEncoder
│   │   ├── HeaderEncoder
│   │   └── Headers
│   ├── Plugins
│   │   ├── Loggers
│   │   └── Reporters
│   ├── Signers
│   ├── StreamFilters
│   └── Transport
│   ├── Esmtp
│   │   └── Auth
│   └── EsmtpTransport
├── symfony
│   ├── console
│   │   └── Symfony
│   │   └── Component
│   │   └── Console
│   │   ├── Command
│   │   ├── Descriptor
│   │   ├── Event
│   │   ├── Formatter
│   │   ├── Helper
│   │   ├── Input
│   │   ├── Logger
│   │   ├── Output
│   │   ├── Question
│   │   ├── Resources
│   │   │   └── bin
│   │   ├── Tester
│   │   └── Tests
│   │   ├── Command
│   │   ├── Descriptor
│   │   ├── Fixtures
│   │   ├── Formatter
│   │   ├── Helper
│   │   ├── Input
│   │   ├── Logger
│   │   ├── Output
│   │   └── Tester
│   ├── debug
│   │   └── Symfony
│   │   └── Component
│   │   └── Debug
│   │   ├── Exception
│   │   ├── FatalErrorHandler
│   │   ├── Resources
│   │   │   └── ext
│   │   │   └── tests
│   │   └── Tests
│   │   ├── Exception
│   │   ├── FatalErrorHandler
│   │   └── Fixtures
│   │   └── psr4
│   ├── event-dispatcher
│   │   └── Symfony
│   │   └── Component
│   │   └── EventDispatcher
│   │   ├── Debug
│   │   ├── DependencyInjection
│   │   └── Tests
│   │   ├── Debug
│   │   └── DependencyInjection
│   ├── filesystem
│   │   └── Symfony
│   │   └── Component
│   │   └── Filesystem
│   │   ├── Exception
│   │   └── Tests
│   ├── finder
│   │   └── Symfony
│   │   └── Component
│   │   └── Finder
│   │   ├── Adapter
│   │   ├── Comparator
│   │   ├── Exception
│   │   ├── Expression
│   │   ├── Iterator
│   │   ├── Shell
│   │   └── Tests
│   │   ├── Comparator
│   │   ├── Expression
│   │   ├── FakeAdapter
│   │   ├── Fixtures
│   │   │   ├── A
│   │   │   │   └── B
│   │   │   │   └── C
│   │   │   ├── copy
│   │   │   │   └── A
│   │   │   │   └── B
│   │   │   │   └── C
│   │   │   ├── one
│   │   │   │   └── b
│   │   │   ├── r+e.gex[c]a(r)s
│   │   │   │   └── dir
│   │   │   └── with space
│   │   └── Iterator
│   ├── http-foundation
│   │   └── Symfony
│   │   └── Component
│   │   └── HttpFoundation
│   │   ├── File
│   │   │   ├── Exception
│   │   │   └── MimeType
│   │   ├── Resources
│   │   │   └── stubs
│   │   ├── Session
│   │   │   ├── Attribute
│   │   │   ├── Flash
│   │   │   └── Storage
│   │   │   ├── Handler
│   │   │   └── Proxy
│   │   └── Tests
│   │   ├── File
│   │   │   ├── Fixtures
│   │   │   │   └── directory
│   │   │   └── MimeType
│   │   └── Session
│   │   ├── Attribute
│   │   ├── Flash
│   │   └── Storage
│   │   ├── Handler
│   │   └── Proxy
│   ├── http-kernel
│   │   └── Symfony
│   │   └── Component
│   │   └── HttpKernel
│   │   ├── Bundle
│   │   ├── CacheClearer
│   │   ├── CacheWarmer
│   │   ├── Config
│   │   ├── Controller
│   │   ├── DataCollector
│   │   │   └── Util
│   │   ├── Debug
│   │   ├── DependencyInjection
│   │   ├── Event
│   │   ├── EventListener
│   │   ├── Exception
│   │   ├── Fragment
│   │   ├── HttpCache
│   │   ├── Log
│   │   ├── Profiler
│   │   └── Tests
│   │   ├── Bundle
│   │   ├── CacheClearer
│   │   ├── CacheWarmer
│   │   ├── Config
│   │   ├── Controller
│   │   ├── DataCollector
│   │   │   └── Util
│   │   ├── Debug
│   │   ├── DependencyInjection
│   │   ├── EventListener
│   │   ├── Fixtures
│   │   │   ├── BaseBundle
│   │   │   │   └── Resources
│   │   │   ├── Bundle1Bundle
│   │   │   │   └── Resources
│   │   │   ├── Bundle2Bundle
│   │   │   ├── ChildBundle
│   │   │   │   └── Resources
│   │   │   ├── ExtensionAbsentBundle
│   │   │   ├── ExtensionLoadedBundle
│   │   │   │   └── DependencyInjection
│   │   │   ├── ExtensionPresentBundle
│   │   │   │   ├── Command
│   │   │   │   └── DependencyInjection
│   │   │   └── Resources
│   │   │   ├── BaseBundle
│   │   │   ├── Bundle1Bundle
│   │   │   ├── ChildBundle
│   │   │   └── FooBundle
│   │   ├── Fragment
│   │   ├── HttpCache
│   │   └── Profiler
│   │   └── Mock
│   ├── process
│   │   └── Symfony
│   │   └── Component
│   │   └── Process
│   │   ├── Exception
│   │   ├── Pipes
│   │   └── Tests
│   ├── routing
│   │   └── Symfony
│   │   └── Component
│   │   └── Routing
│   │   ├── Annotation
│   │   ├── Exception
│   │   ├── Generator
│   │   │   └── Dumper
│   │   ├── Loader
│   │   │   └── schema
│   │   │   └── routing
│   │   ├── Matcher
│   │   │   └── Dumper
│   │   └── Tests
│   │   ├── Annotation
│   │   ├── Fixtures
│   │   │   ├── AnnotatedClasses
│   │   │   └── dumper
│   │   ├── Generator
│   │   │   └── Dumper
│   │   ├── Loader
│   │   └── Matcher
│   │   └── Dumper
│   ├── security-core
│   │   └── Symfony
│   │   └── Component
│   │   └── Security
│   │   └── Core
│   │   ├── Authentication
│   │   │   ├── Provider
│   │   │   ├── RememberMe
│   │   │   └── Token
│   │   │   └── Storage
│   │   ├── Authorization
│   │   │   └── Voter
│   │   ├── Encoder
│   │   ├── Event
│   │   ├── Exception
│   │   ├── Resources
│   │   │   └── translations
│   │   ├── Role
│   │   ├── Tests
│   │   │   ├── Authentication
│   │   │   │   ├── Provider
│   │   │   │   ├── RememberMe
│   │   │   │   └── Token
│   │   │   │   └── Storage
│   │   │   ├── Authorization
│   │   │   │   └── Voter
│   │   │   ├── Encoder
│   │   │   ├── Exception
│   │   │   ├── Role
│   │   │   ├── User
│   │   │   ├── Util
│   │   │   └── Validator
│   │   │   └── Constraints
│   │   ├── User
│   │   ├── Util
│   │   └── Validator
│   │   └── Constraints
│   ├── translation
│   │   └── Symfony
│   │   └── Component
│   │   └── Translation
│   │   ├── Catalogue
│   │   ├── Dumper
│   │   ├── Exception
│   │   ├── Extractor
│   │   ├── Loader
│   │   │   └── schema
│   │   │   └── dic
│   │   │   └── xliff-core
│   │   ├── Tests
│   │   │   ├── Catalogue
│   │   │   ├── Dumper
│   │   │   ├── Loader
│   │   │   └── fixtures
│   │   │   └── resourcebundle
│   │   │   ├── corrupted
│   │   │   ├── dat
│   │   │   └── res
│   │   └── Writer
│   ├── var-dumper
│   │   └── Symfony
│   │   └── Component
│   │   └── VarDumper
│   │   ├── Caster
│   │   ├── Cloner
│   │   ├── Dumper
│   │   ├── Exception
│   │   ├── Resources
│   │   │   └── functions
│   │   └── Tests
│   │   ├── Caster
│   │   └── Fixtures
│   └── yaml
│   └── Symfony
│   └── Component
│   └── Yaml
│   ├── Exception
│   └── Tests
│   └── Fixtures
└── vlucas
└── phpdotenv
├── src
└── tests
├── Dotenv
└── fixtures