1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravel5.1 ディレクトリ構造

Posted at

プロジェクト作成後のTREE

# composer create-project laravel/laravel プロジェクト名 --prefer-dist

(2015/6/11)


.
├─app
│  ├─Console
│  │  └─Commands
│  ├─Events
│  ├─Exceptions
│  ├─Http
│  │  ├─Controllers
│  │  │  └─Auth
│  │  ├─Middleware
│  │  └─Requests
│  ├─Jobs
│  ├─Listeners
│  └─Providers
├─bootstrap
│  └─cache
├─config
├─database
│  ├─factories
│  ├─migrations
│  └─seeds
├─public
├─resources
│  ├─assets
│  │  └─less
│  ├─lang
│  │  └─en
│  └─views
│      ├─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
    ├─fzaninotto
    │  └─faker
    │      ├─src
    │      │  └─Faker
    │      │      ├─Calculator
    │      │      ├─Guesser
    │      │      ├─ORM
    │      │      │  ├─CakePHP
    │      │      │  ├─Doctrine
    │      │      │  ├─Mandango
    │      │      │  └─Propel
    │      │      └─Provider
    │      │          ├─ar_JO
    │      │          ├─at_AT
    │      │          ├─be_BE
    │      │          ├─bg_BG
    │      │          ├─bn_BD
    │      │          ├─cs_CZ
    │      │          ├─da_DK
    │      │          ├─de_AT
    │      │          ├─de_DE
    │      │          ├─el_GR
    │      │          ├─en_AU
    │      │          ├─en_CA
    │      │          ├─en_GB
    │      │          ├─en_NZ
    │      │          ├─en_PH
    │      │          ├─en_UG
    │      │          ├─en_US
    │      │          ├─en_ZA
    │      │          ├─es_AR
    │      │          ├─es_ES
    │      │          ├─es_PE
    │      │          ├─es_VE
    │      │          ├─fa_IR
    │      │          ├─fi_FI
    │      │          ├─fr_BE
    │      │          ├─fr_CA
    │      │          ├─fr_FR
    │      │          ├─hu_HU
    │      │          ├─hy_AM
    │      │          ├─id_ID
    │      │          ├─is_IS
    │      │          ├─it_IT
    │      │          ├─ja_JP
    │      │          ├─ka_GE
    │      │          ├─kk_KZ
    │      │          ├─ko_KR
    │      │          ├─lv_LV
    │      │          ├─me_ME
    │      │          ├─ne_NP
    │      │          ├─nl_BE
    │      │          ├─nl_NL
    │      │          ├─no_NO
    │      │          ├─pl_PL
    │      │          ├─pt_BR
    │      │          ├─pt_PT
    │      │          ├─ro_MD
    │      │          ├─ro_RO
    │      │          ├─ru_RU
    │      │          ├─sk_SK
    │      │          ├─sl_SI
    │      │          ├─sr_Cyrl_RS
    │      │          ├─sr_Latn_RS
    │      │          ├─sr_RS
    │      │          ├─sv_SE
    │      │          ├─tr_TR
    │      │          ├─uk_UA
    │      │          ├─vi_VN
    │      │          ├─zh_CN
    │      │          └─zh_TW
    │      └─test
    │          └─Faker
    │              ├─Calculator
    │              └─Provider
    │                  ├─at_AT
    │                  ├─be_BE
    │                  ├─bg_BG
    │                  ├─de_AT
    │                  ├─fr_FR
    │                  ├─id_ID
    │                  ├─ja_JP
    │                  ├─pt_BR
    │                  ├─pt_PT
    │                  ├─ro_RO
    │                  ├─sv_SE
    │                  └─uk_UA
    ├─hamcrest
    │  └─hamcrest-php
    │      ├─generator
    │      │  └─parts
    │      ├─hamcrest
    │      │  └─Hamcrest
    │      │      ├─Arrays
    │      │      ├─Collection
    │      │      ├─Core
    │      │      ├─Internal
    │      │      ├─Number
    │      │      ├─Text
    │      │      ├─Type
    │      │      └─Xml
    │      └─tests
    │          └─Hamcrest
    │              ├─Array
    │              ├─Collection
    │              ├─Core
    │              ├─Number
    │              ├─Text
    │              ├─Type
    │              └─Xml
    ├─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
    │              ├─Broadcasting
    │              │  └─Broadcasters
    │              ├─Bus
    │              ├─Cache
    │              │  └─Console
    │              │      └─stubs
    │              ├─Config
    │              ├─Console
    │              │  └─Scheduling
    │              ├─Container
    │              ├─Contracts
    │              │  ├─Auth
    │              │  ├─Broadcasting
    │              │  ├─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
    │              │  │  └─Seeds
    │              │  │      └─stubs
    │              │  ├─Eloquent
    │              │  │  └─Relations
    │              │  ├─Migrations
    │              │  │  └─stubs
    │              │  ├─Query
    │              │  │  ├─Grammars
    │              │  │  └─Processors
    │              │  └─Schema
    │              │      └─Grammars
    │              ├─Encryption
    │              ├─Events
    │              ├─Filesystem
    │              ├─Foundation
    │              │  ├─Auth
    │              │  ├─Bootstrap
    │              │  ├─Bus
    │              │  ├─Console
    │              │  │  ├─Optimize
    │              │  │  ├─stubs
    │              │  │  └─Tinker
    │              │  │      └─Presenters
    │              │  ├─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
    ├─mockery
    │  └─mockery
    │      ├─docs
    │      │  ├─cookbook
    │      │  ├─getting_started
    │      │  └─reference
    │      │      └─mockery
    │      ├─examples
    │      │  └─starship
    │      ├─library
    │      │  └─Mockery
    │      │      ├─Adapter
    │      │      │  └─Phpunit
    │      │      ├─CountValidator
    │      │      ├─Exception
    │      │      ├─Generator
    │      │      │  └─StringManipulation
    │      │      │      └─Pass
    │      │      ├─Loader
    │      │      └─Matcher
    │      ├─tests
    │      │  └─Mockery
    │      │      ├─Generator
    │      │      │  └─StringManipulation
    │      │      │      └─Pass
    │      │      ├─Loader
    │      │      ├─Test
    │      │      │  └─Generator
    │      │      └─_files
    │      └─travis
    ├─monolog
    │  └─monolog
    │      ├─doc
    │      ├─src
    │      │  └─Monolog
    │      │      ├─Formatter
    │      │      ├─Handler
    │      │      │  ├─FingersCrossed
    │      │      │  └─SyslogUdp
    │      │      └─Processor
    │      └─tests
    │          └─Monolog
    │              ├─Formatter
    │              ├─Handler
    │              │  └─Fixtures
    │              └─Processor
    ├─mtdowling
    │  └─cron-expression
    │      ├─src
    │      │  └─Cron
    │      └─tests
    │          └─Cron
    ├─nesbot
    │  └─carbon
    │      ├─src
    │      │  └─Carbon
    │      │      └─Lang
    │      └─tests
    ├─nikic
    │  └─php-parser
    │      ├─bin
    │      ├─doc
    │      │  └─component
    │      ├─grammar
    │      ├─lib
    │      │  └─PhpParser
    │      │      ├─Builder
    │      │      ├─Comment
    │      │      ├─Lexer
    │      │      ├─Node
    │      │      │  ├─Expr
    │      │      │  │  ├─AssignOp
    │      │      │  │  ├─BinaryOp
    │      │      │  │  └─Cast
    │      │      │  ├─Name
    │      │      │  ├─Scalar
    │      │      │  │  └─MagicConst
    │      │      │  └─Stmt
    │      │      │      └─TraitUseAdaptation
    │      │      ├─NodeVisitor
    │      │      ├─PrettyPrinter
    │      │      ├─Serializer
    │      │      └─Unserializer
    │      ├─test
    │      │  ├─code
    │      │  │  ├─parser
    │      │  │  │  ├─errorHandling
    │      │  │  │  ├─expr
    │      │  │  │  │  └─fetchAndCall
    │      │  │  │  ├─scalar
    │      │  │  │  └─stmt
    │      │  │  │      ├─class
    │      │  │  │      ├─function
    │      │  │  │      ├─loop
    │      │  │  │      └─namespace
    │      │  │  └─prettyPrinter
    │      │  └─PhpParser
    │      │      ├─Builder
    │      │      ├─Lexer
    │      │      ├─Node
    │      │      │  ├─Scalar
    │      │      │  └─Stmt
    │      │      ├─NodeVisitor
    │      │      ├─Serializer
    │      │      └─Unserializer
    │      └─test_old
    ├─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
    │  │  ├─integration
    │  │  │  └─PhpSpec
    │  │  │      └─Console
    │  │  │          └─Prompter
    │  │  ├─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
    │  │          │  └─Prompter
    │  │          ├─Event
    │  │          ├─Exception
    │  │          │  ├─Example
    │  │          │  ├─Fracture
    │  │          │  ├─Locator
    │  │          │  └─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
    │      │      ├─Comparator
    │      │      ├─Doubler
    │      │      │  ├─ClassPatch
    │      │      │  └─Generator
    │      │      │      └─Node
    │      │      ├─Exception
    │      │      │  ├─Call
    │      │      │  ├─Doubler
    │      │      │  ├─Prediction
    │      │      │  └─Prophecy
    │      │      ├─Prediction
    │      │      ├─Promise
    │      │      ├─Prophecy
    │      │      └─Util
    │      └─src
    │          └─Prophecy
    │              ├─Argument
    │              │  └─Token
    │              ├─Call
    │              ├─Comparator
    │              ├─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
    │  │  └─src
    │  ├─php-text-template
    │  │  ├─build
    │  │  │  └─PHPCS
    │  │  │      └─Sniffs
    │  │  │          ├─ControlStructures
    │  │  │          └─Whitespace
    │  │  └─Text
    │  │      └─Template
    │  ├─php-timer
    │  │  ├─build
    │  │  │  └─PHPCS
    │  │  │      └─Sniffs
    │  │  │          ├─ControlStructures
    │  │  │          └─Whitespace
    │  │  ├─PHP
    │  │  │  └─Timer
    │  │  └─Tests
    │  ├─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
    │      │      ├─TabCompletion
    │      │      │  └─Matcher
    │      │      └─Util
    │      └─test
    │          ├─fixtures
    │          │  ├─default
    │          │  │  ├─.config
    │          │  │  │  └─psysh
    │          │  │  └─.local
    │          │  │      └─share
    │          │  │          └─psysh
    │          │  ├─legacy
    │          │  │  └─.psysh
    │          │  └─mixed
    │          │      └─.psysh
    │          ├─Psy
    │          │  └─Test
    │          │      ├─CodeCleaner
    │          │      │  └─Fixtures
    │          │      ├─Exception
    │          │      ├─Formatter
    │          │      ├─Presenter
    │          │      │  └─Fixtures
    │          │      ├─Readline
    │          │      ├─Reflection
    │          │      ├─TabCompletion
    │          │      └─Util
    │          └─tools
    ├─sebastian
    │  ├─comparator
    │  │  ├─build
    │  │  ├─src
    │  │  └─tests
    │  │      └─_files
    │  ├─diff
    │  │  ├─src
    │  │  │  └─LCS
    │  │  └─tests
    │  │      ├─fixtures
    │  │      └─LCS
    │  ├─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
    │      └─tests
    │          ├─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
    │          └─_samples
    │              ├─charsets
    │              │  ├─iso-2022-jp
    │              │  ├─iso-8859-1
    │              │  └─utf-8
    │              ├─dkim
    │              ├─files
    │              └─smime
    ├─symfony
    │  ├─console
    │  │  ├─Command
    │  │  ├─Descriptor
    │  │  ├─Event
    │  │  ├─Formatter
    │  │  ├─Helper
    │  │  ├─Input
    │  │  ├─Logger
    │  │  ├─Output
    │  │  ├─Question
    │  │  ├─Resources
    │  │  │  └─bin
    │  │  ├─Style
    │  │  ├─Tester
    │  │  └─Tests
    │  │      ├─Command
    │  │      ├─Descriptor
    │  │      ├─Fixtures
    │  │      ├─Formatter
    │  │      ├─Helper
    │  │      ├─Input
    │  │      ├─Logger
    │  │      ├─Output
    │  │      └─Tester
    │  ├─css-selector
    │  │  ├─Exception
    │  │  ├─Node
    │  │  ├─Parser
    │  │  │  ├─Handler
    │  │  │  ├─Shortcut
    │  │  │  └─Tokenizer
    │  │  ├─Tests
    │  │  │  ├─Node
    │  │  │  ├─Parser
    │  │  │  │  ├─Handler
    │  │  │  │  └─Shortcut
    │  │  │  └─XPath
    │  │  │      └─Fixtures
    │  │  └─XPath
    │  │      └─Extension
    │  ├─debug
    │  │  ├─Exception
    │  │  ├─FatalErrorHandler
    │  │  ├─Resources
    │  │  │  └─ext
    │  │  │      └─tests
    │  │  └─Tests
    │  │      ├─Exception
    │  │      ├─FatalErrorHandler
    │  │      ├─Fixtures
    │  │      │  └─psr4
    │  │      └─Fixtures2
    │  ├─dom-crawler
    │  │  ├─Field
    │  │  └─Tests
    │  │      ├─Field
    │  │      └─Fixtures
    │  ├─event-dispatcher
    │  │  ├─Debug
    │  │  ├─DependencyInjection
    │  │  └─Tests
    │  │      ├─Debug
    │  │      └─DependencyInjection
    │  ├─filesystem
    │  │  ├─Exception
    │  │  └─Tests
    │  ├─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
    │  │  ├─File
    │  │  │  ├─Exception
    │  │  │  └─MimeType
    │  │  ├─Resources
    │  │  │  └─stubs
    │  │  ├─Session
    │  │  │  ├─Attribute
    │  │  │  ├─Flash
    │  │  │  └─Storage
    │  │  │      ├─Handler
    │  │  │      └─Proxy
    │  │  └─Tests
    │  │      ├─File
    │  │      │  ├─Fixtures
    │  │      │  │  └─directory
    │  │      │  └─MimeType
    │  │      └─Session
    │  │          ├─Attribute
    │  │          ├─Flash
    │  │          └─Storage
    │  │              ├─Handler
    │  │              └─Proxy
    │  ├─http-kernel
    │  │  ├─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
    │  │      │  ├─ExtensionNotValidBundle
    │  │      │  │  └─DependencyInjection
    │  │      │  ├─ExtensionPresentBundle
    │  │      │  │  ├─Command
    │  │      │  │  └─DependencyInjection
    │  │      │  └─Resources
    │  │      │      ├─BaseBundle
    │  │      │      ├─Bundle1Bundle
    │  │      │      ├─ChildBundle
    │  │      │      └─FooBundle
    │  │      ├─Fragment
    │  │      ├─HttpCache
    │  │      └─Profiler
    │  │          └─Mock
    │  ├─process
    │  │  ├─Exception
    │  │  ├─Pipes
    │  │  └─Tests
    │  ├─routing
    │  │  ├─Annotation
    │  │  ├─Exception
    │  │  ├─Generator
    │  │  │  └─Dumper
    │  │  ├─Loader
    │  │  │  └─schema
    │  │  │      └─routing
    │  │  ├─Matcher
    │  │  │  └─Dumper
    │  │  └─Tests
    │  │      ├─Annotation
    │  │      ├─Fixtures
    │  │      │  ├─AnnotatedClasses
    │  │      │  └─dumper
    │  │      ├─Generator
    │  │      │  └─Dumper
    │  │      ├─Loader
    │  │      └─Matcher
    │  │          └─Dumper
    │  ├─translation
    │  │  ├─Catalogue
    │  │  ├─DataCollector
    │  │  ├─Dumper
    │  │  ├─Exception
    │  │  ├─Extractor
    │  │  ├─Loader
    │  │  │  └─schema
    │  │  │      └─dic
    │  │  │          └─xliff-core
    │  │  ├─Tests
    │  │  │  ├─Catalogue
    │  │  │  ├─DataCollector
    │  │  │  ├─Dumper
    │  │  │  ├─fixtures
    │  │  │  │  └─resourcebundle
    │  │  │  │      ├─corrupted
    │  │  │  │      ├─dat
    │  │  │  │      └─res
    │  │  │  └─Loader
    │  │  └─Writer
    │  ├─var-dumper
    │  │  ├─Caster
    │  │  ├─Cloner
    │  │  ├─Dumper
    │  │  ├─Exception
    │  │  ├─Resources
    │  │  │  └─functions
    │  │  ├─Test
    │  │  └─Tests
    │  │      ├─Caster
    │  │      └─Fixtures
    │  └─yaml
    │      ├─Exception
    │      └─Tests
    │          └─Fixtures
    └─vlucas
        └─phpdotenv
            └─src
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?