composer.lock 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "96098e473b028cdb2529580554a1ae3e",
  8. "packages": [
  9. {
  10. "name": "dnoegel/php-xdg-base-dir",
  11. "version": "0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  15. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  20. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.2"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "@stable"
  28. },
  29. "type": "project",
  30. "autoload": {
  31. "psr-4": {
  32. "XdgBaseDir\\": "src/"
  33. }
  34. },
  35. "notification-url": "https://packagist.org/downloads/",
  36. "license": [
  37. "MIT"
  38. ],
  39. "description": "implementation of xdg base directory specification for php",
  40. "time": "2014-10-24T07:27:01+00:00"
  41. },
  42. {
  43. "name": "doctrine/inflector",
  44. "version": "v1.1.0",
  45. "source": {
  46. "type": "git",
  47. "url": "https://github.com/doctrine/inflector.git",
  48. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  49. },
  50. "dist": {
  51. "type": "zip",
  52. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  53. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  54. "shasum": ""
  55. },
  56. "require": {
  57. "php": ">=5.3.2"
  58. },
  59. "require-dev": {
  60. "phpunit/phpunit": "4.*"
  61. },
  62. "type": "library",
  63. "extra": {
  64. "branch-alias": {
  65. "dev-master": "1.1.x-dev"
  66. }
  67. },
  68. "autoload": {
  69. "psr-0": {
  70. "Doctrine\\Common\\Inflector\\": "lib/"
  71. }
  72. },
  73. "notification-url": "https://packagist.org/downloads/",
  74. "license": [
  75. "MIT"
  76. ],
  77. "authors": [
  78. {
  79. "name": "Roman Borschel",
  80. "email": "roman@code-factory.org"
  81. },
  82. {
  83. "name": "Benjamin Eberlei",
  84. "email": "kontakt@beberlei.de"
  85. },
  86. {
  87. "name": "Guilherme Blanco",
  88. "email": "guilhermeblanco@gmail.com"
  89. },
  90. {
  91. "name": "Jonathan Wage",
  92. "email": "jonwage@gmail.com"
  93. },
  94. {
  95. "name": "Johannes Schmitt",
  96. "email": "schmittjoh@gmail.com"
  97. }
  98. ],
  99. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  100. "homepage": "http://www.doctrine-project.org",
  101. "keywords": [
  102. "inflection",
  103. "pluralize",
  104. "singularize",
  105. "string"
  106. ],
  107. "time": "2015-11-06T14:35:42+00:00"
  108. },
  109. {
  110. "name": "erusev/parsedown",
  111. "version": "1.6.1",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/erusev/parsedown.git",
  115. "reference": "20ff8bbb57205368b4b42d094642a3e52dac85fb"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/erusev/parsedown/zipball/20ff8bbb57205368b4b42d094642a3e52dac85fb",
  120. "reference": "20ff8bbb57205368b4b42d094642a3e52dac85fb",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": ">=5.3.0"
  125. },
  126. "type": "library",
  127. "autoload": {
  128. "psr-0": {
  129. "Parsedown": ""
  130. }
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "MIT"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Emanuil Rusev",
  139. "email": "hello@erusev.com",
  140. "homepage": "http://erusev.com"
  141. }
  142. ],
  143. "description": "Parser for Markdown.",
  144. "homepage": "http://parsedown.org",
  145. "keywords": [
  146. "markdown",
  147. "parser"
  148. ],
  149. "time": "2016-11-02T15:56:58+00:00"
  150. },
  151. {
  152. "name": "jakub-onderka/php-console-color",
  153. "version": "0.1",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  157. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  162. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "php": ">=5.3.2"
  167. },
  168. "require-dev": {
  169. "jakub-onderka/php-code-style": "1.0",
  170. "jakub-onderka/php-parallel-lint": "0.*",
  171. "jakub-onderka/php-var-dump-check": "0.*",
  172. "phpunit/phpunit": "3.7.*",
  173. "squizlabs/php_codesniffer": "1.*"
  174. },
  175. "type": "library",
  176. "autoload": {
  177. "psr-0": {
  178. "JakubOnderka\\PhpConsoleColor": "src/"
  179. }
  180. },
  181. "notification-url": "https://packagist.org/downloads/",
  182. "license": [
  183. "BSD-2-Clause"
  184. ],
  185. "authors": [
  186. {
  187. "name": "Jakub Onderka",
  188. "email": "jakub.onderka@gmail.com",
  189. "homepage": "http://www.acci.cz"
  190. }
  191. ],
  192. "time": "2014-04-08T15:00:19+00:00"
  193. },
  194. {
  195. "name": "jakub-onderka/php-console-highlighter",
  196. "version": "v0.3.2",
  197. "source": {
  198. "type": "git",
  199. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  200. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  201. },
  202. "dist": {
  203. "type": "zip",
  204. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  205. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  206. "shasum": ""
  207. },
  208. "require": {
  209. "jakub-onderka/php-console-color": "~0.1",
  210. "php": ">=5.3.0"
  211. },
  212. "require-dev": {
  213. "jakub-onderka/php-code-style": "~1.0",
  214. "jakub-onderka/php-parallel-lint": "~0.5",
  215. "jakub-onderka/php-var-dump-check": "~0.1",
  216. "phpunit/phpunit": "~4.0",
  217. "squizlabs/php_codesniffer": "~1.5"
  218. },
  219. "type": "library",
  220. "autoload": {
  221. "psr-0": {
  222. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  223. }
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "MIT"
  228. ],
  229. "authors": [
  230. {
  231. "name": "Jakub Onderka",
  232. "email": "acci@acci.cz",
  233. "homepage": "http://www.acci.cz/"
  234. }
  235. ],
  236. "time": "2015-04-20T18:58:01+00:00"
  237. },
  238. {
  239. "name": "laravel/framework",
  240. "version": "v5.4.15",
  241. "source": {
  242. "type": "git",
  243. "url": "https://github.com/laravel/framework.git",
  244. "reference": "ecc6468b8af30b77566a8519ce8898740ef691d7"
  245. },
  246. "dist": {
  247. "type": "zip",
  248. "url": "https://api.github.com/repos/laravel/framework/zipball/ecc6468b8af30b77566a8519ce8898740ef691d7",
  249. "reference": "ecc6468b8af30b77566a8519ce8898740ef691d7",
  250. "shasum": ""
  251. },
  252. "require": {
  253. "doctrine/inflector": "~1.0",
  254. "erusev/parsedown": "~1.6",
  255. "ext-mbstring": "*",
  256. "ext-openssl": "*",
  257. "league/flysystem": "~1.0",
  258. "monolog/monolog": "~1.11",
  259. "mtdowling/cron-expression": "~1.0",
  260. "nesbot/carbon": "~1.20",
  261. "paragonie/random_compat": "~1.4|~2.0",
  262. "php": ">=5.6.4",
  263. "ramsey/uuid": "~3.0",
  264. "swiftmailer/swiftmailer": "~5.4",
  265. "symfony/console": "~3.2",
  266. "symfony/debug": "~3.2",
  267. "symfony/finder": "~3.2",
  268. "symfony/http-foundation": "~3.2",
  269. "symfony/http-kernel": "~3.2",
  270. "symfony/process": "~3.2",
  271. "symfony/routing": "~3.2",
  272. "symfony/var-dumper": "~3.2",
  273. "tijsverkoyen/css-to-inline-styles": "~2.2",
  274. "vlucas/phpdotenv": "~2.2"
  275. },
  276. "replace": {
  277. "illuminate/auth": "self.version",
  278. "illuminate/broadcasting": "self.version",
  279. "illuminate/bus": "self.version",
  280. "illuminate/cache": "self.version",
  281. "illuminate/config": "self.version",
  282. "illuminate/console": "self.version",
  283. "illuminate/container": "self.version",
  284. "illuminate/contracts": "self.version",
  285. "illuminate/cookie": "self.version",
  286. "illuminate/database": "self.version",
  287. "illuminate/encryption": "self.version",
  288. "illuminate/events": "self.version",
  289. "illuminate/exception": "self.version",
  290. "illuminate/filesystem": "self.version",
  291. "illuminate/hashing": "self.version",
  292. "illuminate/http": "self.version",
  293. "illuminate/log": "self.version",
  294. "illuminate/mail": "self.version",
  295. "illuminate/notifications": "self.version",
  296. "illuminate/pagination": "self.version",
  297. "illuminate/pipeline": "self.version",
  298. "illuminate/queue": "self.version",
  299. "illuminate/redis": "self.version",
  300. "illuminate/routing": "self.version",
  301. "illuminate/session": "self.version",
  302. "illuminate/support": "self.version",
  303. "illuminate/translation": "self.version",
  304. "illuminate/validation": "self.version",
  305. "illuminate/view": "self.version",
  306. "tightenco/collect": "self.version"
  307. },
  308. "require-dev": {
  309. "aws/aws-sdk-php": "~3.0",
  310. "doctrine/dbal": "~2.5",
  311. "mockery/mockery": "~0.9.4",
  312. "pda/pheanstalk": "~3.0",
  313. "phpunit/phpunit": "~5.7",
  314. "predis/predis": "~1.0",
  315. "symfony/css-selector": "~3.2",
  316. "symfony/dom-crawler": "~3.2"
  317. },
  318. "suggest": {
  319. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  320. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  321. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  322. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  323. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  324. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  325. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  326. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  327. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  328. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  329. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).",
  330. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.2).",
  331. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.2).",
  332. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (0.2.*)."
  333. },
  334. "type": "library",
  335. "extra": {
  336. "branch-alias": {
  337. "dev-master": "5.4-dev"
  338. }
  339. },
  340. "autoload": {
  341. "files": [
  342. "src/Illuminate/Foundation/helpers.php",
  343. "src/Illuminate/Support/helpers.php"
  344. ],
  345. "psr-4": {
  346. "Illuminate\\": "src/Illuminate/"
  347. }
  348. },
  349. "notification-url": "https://packagist.org/downloads/",
  350. "license": [
  351. "MIT"
  352. ],
  353. "authors": [
  354. {
  355. "name": "Taylor Otwell",
  356. "email": "taylor@laravel.com"
  357. }
  358. ],
  359. "description": "The Laravel Framework.",
  360. "homepage": "https://laravel.com",
  361. "keywords": [
  362. "framework",
  363. "laravel"
  364. ],
  365. "time": "2017-03-02T14:41:40+00:00"
  366. },
  367. {
  368. "name": "laravel/tinker",
  369. "version": "v1.0.0",
  370. "source": {
  371. "type": "git",
  372. "url": "https://github.com/laravel/tinker.git",
  373. "reference": "3d5b675b55b24ccbf86395964042dbe061d5a965"
  374. },
  375. "dist": {
  376. "type": "zip",
  377. "url": "https://api.github.com/repos/laravel/tinker/zipball/3d5b675b55b24ccbf86395964042dbe061d5a965",
  378. "reference": "3d5b675b55b24ccbf86395964042dbe061d5a965",
  379. "shasum": ""
  380. },
  381. "require": {
  382. "illuminate/console": "~5.1",
  383. "illuminate/contracts": "~5.1",
  384. "illuminate/support": "~5.1",
  385. "php": ">=5.5.9",
  386. "psy/psysh": "0.7.*|0.8.*",
  387. "symfony/var-dumper": "~3.0"
  388. },
  389. "require-dev": {
  390. "phpunit/phpunit": "~4.0|~5.0"
  391. },
  392. "suggest": {
  393. "illuminate/database": "The Illuminate Database package (~5.1)."
  394. },
  395. "type": "library",
  396. "extra": {
  397. "branch-alias": {
  398. "dev-master": "1.0-dev"
  399. }
  400. },
  401. "autoload": {
  402. "psr-4": {
  403. "Laravel\\Tinker\\": "src/"
  404. }
  405. },
  406. "notification-url": "https://packagist.org/downloads/",
  407. "license": [
  408. "MIT"
  409. ],
  410. "authors": [
  411. {
  412. "name": "Taylor Otwell",
  413. "email": "taylor@laravel.com"
  414. }
  415. ],
  416. "description": "Powerful REPL for the Laravel framework.",
  417. "keywords": [
  418. "REPL",
  419. "Tinker",
  420. "laravel",
  421. "psysh"
  422. ],
  423. "time": "2016-12-30T18:13:17+00:00"
  424. },
  425. {
  426. "name": "league/flysystem",
  427. "version": "1.0.35",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/thephpleague/flysystem.git",
  431. "reference": "dda7f3ab94158a002d9846a97dc18ebfb7acc062"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/dda7f3ab94158a002d9846a97dc18ebfb7acc062",
  436. "reference": "dda7f3ab94158a002d9846a97dc18ebfb7acc062",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "php": ">=5.5.9"
  441. },
  442. "conflict": {
  443. "league/flysystem-sftp": "<1.0.6"
  444. },
  445. "require-dev": {
  446. "ext-fileinfo": "*",
  447. "mockery/mockery": "~0.9",
  448. "phpspec/phpspec": "^2.2",
  449. "phpunit/phpunit": "~4.8"
  450. },
  451. "suggest": {
  452. "ext-fileinfo": "Required for MimeType",
  453. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  454. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  455. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  456. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  457. "league/flysystem-copy": "Allows you to use Copy.com storage",
  458. "league/flysystem-dropbox": "Allows you to use Dropbox storage",
  459. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  460. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  461. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  462. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  463. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter"
  464. },
  465. "type": "library",
  466. "extra": {
  467. "branch-alias": {
  468. "dev-master": "1.1-dev"
  469. }
  470. },
  471. "autoload": {
  472. "psr-4": {
  473. "League\\Flysystem\\": "src/"
  474. }
  475. },
  476. "notification-url": "https://packagist.org/downloads/",
  477. "license": [
  478. "MIT"
  479. ],
  480. "authors": [
  481. {
  482. "name": "Frank de Jonge",
  483. "email": "info@frenky.net"
  484. }
  485. ],
  486. "description": "Filesystem abstraction: Many filesystems, one API.",
  487. "keywords": [
  488. "Cloud Files",
  489. "WebDAV",
  490. "abstraction",
  491. "aws",
  492. "cloud",
  493. "copy.com",
  494. "dropbox",
  495. "file systems",
  496. "files",
  497. "filesystem",
  498. "filesystems",
  499. "ftp",
  500. "rackspace",
  501. "remote",
  502. "s3",
  503. "sftp",
  504. "storage"
  505. ],
  506. "time": "2017-02-09T11:33:58+00:00"
  507. },
  508. {
  509. "name": "monolog/monolog",
  510. "version": "1.22.1",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/Seldaek/monolog.git",
  514. "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1e044bc4b34e91743943479f1be7a1d5eb93add0",
  519. "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0",
  520. "shasum": ""
  521. },
  522. "require": {
  523. "php": ">=5.3.0",
  524. "psr/log": "~1.0"
  525. },
  526. "provide": {
  527. "psr/log-implementation": "1.0.0"
  528. },
  529. "require-dev": {
  530. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  531. "doctrine/couchdb": "~1.0@dev",
  532. "graylog2/gelf-php": "~1.0",
  533. "jakub-onderka/php-parallel-lint": "0.9",
  534. "php-amqplib/php-amqplib": "~2.4",
  535. "php-console/php-console": "^3.1.3",
  536. "phpunit/phpunit": "~4.5",
  537. "phpunit/phpunit-mock-objects": "2.3.0",
  538. "ruflin/elastica": ">=0.90 <3.0",
  539. "sentry/sentry": "^0.13",
  540. "swiftmailer/swiftmailer": "~5.3"
  541. },
  542. "suggest": {
  543. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  544. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  545. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  546. "ext-mongo": "Allow sending log messages to a MongoDB server",
  547. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  548. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  549. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  550. "php-console/php-console": "Allow sending log messages to Google Chrome",
  551. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  552. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  553. "sentry/sentry": "Allow sending log messages to a Sentry server"
  554. },
  555. "type": "library",
  556. "extra": {
  557. "branch-alias": {
  558. "dev-master": "2.0.x-dev"
  559. }
  560. },
  561. "autoload": {
  562. "psr-4": {
  563. "Monolog\\": "src/Monolog"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "MIT"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Jordi Boggiano",
  573. "email": "j.boggiano@seld.be",
  574. "homepage": "http://seld.be"
  575. }
  576. ],
  577. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  578. "homepage": "http://github.com/Seldaek/monolog",
  579. "keywords": [
  580. "log",
  581. "logging",
  582. "psr-3"
  583. ],
  584. "time": "2017-03-13T07:08:03+00:00"
  585. },
  586. {
  587. "name": "mtdowling/cron-expression",
  588. "version": "v1.2.0",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/mtdowling/cron-expression.git",
  592. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  597. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "php": ">=5.3.2"
  602. },
  603. "require-dev": {
  604. "phpunit/phpunit": "~4.0|~5.0"
  605. },
  606. "type": "library",
  607. "autoload": {
  608. "psr-4": {
  609. "Cron\\": "src/Cron/"
  610. }
  611. },
  612. "notification-url": "https://packagist.org/downloads/",
  613. "license": [
  614. "MIT"
  615. ],
  616. "authors": [
  617. {
  618. "name": "Michael Dowling",
  619. "email": "mtdowling@gmail.com",
  620. "homepage": "https://github.com/mtdowling"
  621. }
  622. ],
  623. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  624. "keywords": [
  625. "cron",
  626. "schedule"
  627. ],
  628. "time": "2017-01-23T04:29:33+00:00"
  629. },
  630. {
  631. "name": "nesbot/carbon",
  632. "version": "1.22.1",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/briannesbitt/Carbon.git",
  636. "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
  641. "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "php": ">=5.3.0",
  646. "symfony/translation": "~2.6 || ~3.0"
  647. },
  648. "require-dev": {
  649. "friendsofphp/php-cs-fixer": "~2",
  650. "phpunit/phpunit": "~4.0 || ~5.0"
  651. },
  652. "type": "library",
  653. "extra": {
  654. "branch-alias": {
  655. "dev-master": "1.23-dev"
  656. }
  657. },
  658. "autoload": {
  659. "psr-4": {
  660. "Carbon\\": "src/Carbon/"
  661. }
  662. },
  663. "notification-url": "https://packagist.org/downloads/",
  664. "license": [
  665. "MIT"
  666. ],
  667. "authors": [
  668. {
  669. "name": "Brian Nesbitt",
  670. "email": "brian@nesbot.com",
  671. "homepage": "http://nesbot.com"
  672. }
  673. ],
  674. "description": "A simple API extension for DateTime.",
  675. "homepage": "http://carbon.nesbot.com",
  676. "keywords": [
  677. "date",
  678. "datetime",
  679. "time"
  680. ],
  681. "time": "2017-01-16T07:55:07+00:00"
  682. },
  683. {
  684. "name": "nikic/php-parser",
  685. "version": "v3.0.5",
  686. "source": {
  687. "type": "git",
  688. "url": "https://github.com/nikic/PHP-Parser.git",
  689. "reference": "2b9e2f71b722f7c53918ab0c25f7646c2013f17d"
  690. },
  691. "dist": {
  692. "type": "zip",
  693. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2b9e2f71b722f7c53918ab0c25f7646c2013f17d",
  694. "reference": "2b9e2f71b722f7c53918ab0c25f7646c2013f17d",
  695. "shasum": ""
  696. },
  697. "require": {
  698. "ext-tokenizer": "*",
  699. "php": ">=5.5"
  700. },
  701. "require-dev": {
  702. "phpunit/phpunit": "~4.0|~5.0"
  703. },
  704. "bin": [
  705. "bin/php-parse"
  706. ],
  707. "type": "library",
  708. "extra": {
  709. "branch-alias": {
  710. "dev-master": "3.0-dev"
  711. }
  712. },
  713. "autoload": {
  714. "psr-4": {
  715. "PhpParser\\": "lib/PhpParser"
  716. }
  717. },
  718. "notification-url": "https://packagist.org/downloads/",
  719. "license": [
  720. "BSD-3-Clause"
  721. ],
  722. "authors": [
  723. {
  724. "name": "Nikita Popov"
  725. }
  726. ],
  727. "description": "A PHP parser written in PHP",
  728. "keywords": [
  729. "parser",
  730. "php"
  731. ],
  732. "time": "2017-03-05T18:23:57+00:00"
  733. },
  734. {
  735. "name": "paragonie/random_compat",
  736. "version": "v2.0.10",
  737. "source": {
  738. "type": "git",
  739. "url": "https://github.com/paragonie/random_compat.git",
  740. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  745. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  746. "shasum": ""
  747. },
  748. "require": {
  749. "php": ">=5.2.0"
  750. },
  751. "require-dev": {
  752. "phpunit/phpunit": "4.*|5.*"
  753. },
  754. "suggest": {
  755. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  756. },
  757. "type": "library",
  758. "autoload": {
  759. "files": [
  760. "lib/random.php"
  761. ]
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Paragon Initiative Enterprises",
  770. "email": "security@paragonie.com",
  771. "homepage": "https://paragonie.com"
  772. }
  773. ],
  774. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  775. "keywords": [
  776. "csprng",
  777. "pseudorandom",
  778. "random"
  779. ],
  780. "time": "2017-03-13T16:27:32+00:00"
  781. },
  782. {
  783. "name": "psr/log",
  784. "version": "1.0.2",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/php-fig/log.git",
  788. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  793. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "php": ">=5.3.0"
  798. },
  799. "type": "library",
  800. "extra": {
  801. "branch-alias": {
  802. "dev-master": "1.0.x-dev"
  803. }
  804. },
  805. "autoload": {
  806. "psr-4": {
  807. "Psr\\Log\\": "Psr/Log/"
  808. }
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "PHP-FIG",
  817. "homepage": "http://www.php-fig.org/"
  818. }
  819. ],
  820. "description": "Common interface for logging libraries",
  821. "homepage": "https://github.com/php-fig/log",
  822. "keywords": [
  823. "log",
  824. "psr",
  825. "psr-3"
  826. ],
  827. "time": "2016-10-10T12:19:37+00:00"
  828. },
  829. {
  830. "name": "psy/psysh",
  831. "version": "v0.8.2",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/bobthecow/psysh.git",
  835. "reference": "97113db4107a4126bef933b60fea6dbc9f615d41"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/97113db4107a4126bef933b60fea6dbc9f615d41",
  840. "reference": "97113db4107a4126bef933b60fea6dbc9f615d41",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "dnoegel/php-xdg-base-dir": "0.1",
  845. "jakub-onderka/php-console-highlighter": "0.3.*",
  846. "nikic/php-parser": "~1.3|~2.0|~3.0",
  847. "php": ">=5.3.9",
  848. "symfony/console": "~2.3.10|^2.4.2|~3.0",
  849. "symfony/var-dumper": "~2.7|~3.0"
  850. },
  851. "require-dev": {
  852. "friendsofphp/php-cs-fixer": "~1.11",
  853. "hoa/console": "~3.16|~1.14",
  854. "phpunit/phpunit": "~4.4|~5.0",
  855. "symfony/finder": "~2.1|~3.0"
  856. },
  857. "suggest": {
  858. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  859. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  860. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  861. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  862. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  863. },
  864. "bin": [
  865. "bin/psysh"
  866. ],
  867. "type": "library",
  868. "extra": {
  869. "branch-alias": {
  870. "dev-develop": "0.9.x-dev"
  871. }
  872. },
  873. "autoload": {
  874. "files": [
  875. "src/Psy/functions.php"
  876. ],
  877. "psr-4": {
  878. "Psy\\": "src/Psy/"
  879. }
  880. },
  881. "notification-url": "https://packagist.org/downloads/",
  882. "license": [
  883. "MIT"
  884. ],
  885. "authors": [
  886. {
  887. "name": "Justin Hileman",
  888. "email": "justin@justinhileman.info",
  889. "homepage": "http://justinhileman.com"
  890. }
  891. ],
  892. "description": "An interactive shell for modern PHP.",
  893. "homepage": "http://psysh.org",
  894. "keywords": [
  895. "REPL",
  896. "console",
  897. "interactive",
  898. "shell"
  899. ],
  900. "time": "2017-03-01T00:13:29+00:00"
  901. },
  902. {
  903. "name": "ramsey/uuid",
  904. "version": "3.5.2",
  905. "source": {
  906. "type": "git",
  907. "url": "https://github.com/ramsey/uuid.git",
  908. "reference": "5677cfe02397dd6b58c861870dfaa5d9007d3954"
  909. },
  910. "dist": {
  911. "type": "zip",
  912. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5677cfe02397dd6b58c861870dfaa5d9007d3954",
  913. "reference": "5677cfe02397dd6b58c861870dfaa5d9007d3954",
  914. "shasum": ""
  915. },
  916. "require": {
  917. "paragonie/random_compat": "^1.0|^2.0",
  918. "php": ">=5.4"
  919. },
  920. "replace": {
  921. "rhumsaa/uuid": "self.version"
  922. },
  923. "require-dev": {
  924. "apigen/apigen": "^4.1",
  925. "codeception/aspect-mock": "1.0.0",
  926. "doctrine/annotations": "~1.2.0",
  927. "goaop/framework": "1.0.0-alpha.2",
  928. "ircmaxell/random-lib": "^1.1",
  929. "jakub-onderka/php-parallel-lint": "^0.9.0",
  930. "mockery/mockery": "^0.9.4",
  931. "moontoast/math": "^1.1",
  932. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  933. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  934. "satooshi/php-coveralls": "^0.6.1",
  935. "squizlabs/php_codesniffer": "^2.3"
  936. },
  937. "suggest": {
  938. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  939. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  940. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  941. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  942. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  943. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  944. },
  945. "type": "library",
  946. "extra": {
  947. "branch-alias": {
  948. "dev-master": "3.x-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Ramsey\\Uuid\\": "src/"
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Marijn Huizendveld",
  963. "email": "marijn.huizendveld@gmail.com"
  964. },
  965. {
  966. "name": "Thibaud Fabre",
  967. "email": "thibaud@aztech.io"
  968. },
  969. {
  970. "name": "Ben Ramsey",
  971. "email": "ben@benramsey.com",
  972. "homepage": "https://benramsey.com"
  973. }
  974. ],
  975. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  976. "homepage": "https://github.com/ramsey/uuid",
  977. "keywords": [
  978. "guid",
  979. "identifier",
  980. "uuid"
  981. ],
  982. "time": "2016-11-22T19:21:44+00:00"
  983. },
  984. {
  985. "name": "swiftmailer/swiftmailer",
  986. "version": "v5.4.6",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/swiftmailer/swiftmailer.git",
  990. "reference": "81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e",
  995. "reference": "81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "php": ">=5.3.3"
  1000. },
  1001. "require-dev": {
  1002. "mockery/mockery": "~0.9.1",
  1003. "symfony/phpunit-bridge": "~3.2"
  1004. },
  1005. "type": "library",
  1006. "extra": {
  1007. "branch-alias": {
  1008. "dev-master": "5.4-dev"
  1009. }
  1010. },
  1011. "autoload": {
  1012. "files": [
  1013. "lib/swift_required.php"
  1014. ]
  1015. },
  1016. "notification-url": "https://packagist.org/downloads/",
  1017. "license": [
  1018. "MIT"
  1019. ],
  1020. "authors": [
  1021. {
  1022. "name": "Chris Corbyn"
  1023. },
  1024. {
  1025. "name": "Fabien Potencier",
  1026. "email": "fabien@symfony.com"
  1027. }
  1028. ],
  1029. "description": "Swiftmailer, free feature-rich PHP mailer",
  1030. "homepage": "http://swiftmailer.org",
  1031. "keywords": [
  1032. "email",
  1033. "mail",
  1034. "mailer"
  1035. ],
  1036. "time": "2017-02-13T07:52:53+00:00"
  1037. },
  1038. {
  1039. "name": "symfony/console",
  1040. "version": "v3.2.6",
  1041. "source": {
  1042. "type": "git",
  1043. "url": "https://github.com/symfony/console.git",
  1044. "reference": "28fb243a2b5727774ca309ec2d92da240f1af0dd"
  1045. },
  1046. "dist": {
  1047. "type": "zip",
  1048. "url": "https://api.github.com/repos/symfony/console/zipball/28fb243a2b5727774ca309ec2d92da240f1af0dd",
  1049. "reference": "28fb243a2b5727774ca309ec2d92da240f1af0dd",
  1050. "shasum": ""
  1051. },
  1052. "require": {
  1053. "php": ">=5.5.9",
  1054. "symfony/debug": "~2.8|~3.0",
  1055. "symfony/polyfill-mbstring": "~1.0"
  1056. },
  1057. "require-dev": {
  1058. "psr/log": "~1.0",
  1059. "symfony/event-dispatcher": "~2.8|~3.0",
  1060. "symfony/filesystem": "~2.8|~3.0",
  1061. "symfony/process": "~2.8|~3.0"
  1062. },
  1063. "suggest": {
  1064. "psr/log": "For using the console logger",
  1065. "symfony/event-dispatcher": "",
  1066. "symfony/filesystem": "",
  1067. "symfony/process": ""
  1068. },
  1069. "type": "library",
  1070. "extra": {
  1071. "branch-alias": {
  1072. "dev-master": "3.2-dev"
  1073. }
  1074. },
  1075. "autoload": {
  1076. "psr-4": {
  1077. "Symfony\\Component\\Console\\": ""
  1078. },
  1079. "exclude-from-classmap": [
  1080. "/Tests/"
  1081. ]
  1082. },
  1083. "notification-url": "https://packagist.org/downloads/",
  1084. "license": [
  1085. "MIT"
  1086. ],
  1087. "authors": [
  1088. {
  1089. "name": "Fabien Potencier",
  1090. "email": "fabien@symfony.com"
  1091. },
  1092. {
  1093. "name": "Symfony Community",
  1094. "homepage": "https://symfony.com/contributors"
  1095. }
  1096. ],
  1097. "description": "Symfony Console Component",
  1098. "homepage": "https://symfony.com",
  1099. "time": "2017-03-06T19:30:27+00:00"
  1100. },
  1101. {
  1102. "name": "symfony/css-selector",
  1103. "version": "v3.2.6",
  1104. "source": {
  1105. "type": "git",
  1106. "url": "https://github.com/symfony/css-selector.git",
  1107. "reference": "a48f13dc83c168f1253a5d2a5a4fb46c36244c4c"
  1108. },
  1109. "dist": {
  1110. "type": "zip",
  1111. "url": "https://api.github.com/repos/symfony/css-selector/zipball/a48f13dc83c168f1253a5d2a5a4fb46c36244c4c",
  1112. "reference": "a48f13dc83c168f1253a5d2a5a4fb46c36244c4c",
  1113. "shasum": ""
  1114. },
  1115. "require": {
  1116. "php": ">=5.5.9"
  1117. },
  1118. "type": "library",
  1119. "extra": {
  1120. "branch-alias": {
  1121. "dev-master": "3.2-dev"
  1122. }
  1123. },
  1124. "autoload": {
  1125. "psr-4": {
  1126. "Symfony\\Component\\CssSelector\\": ""
  1127. },
  1128. "exclude-from-classmap": [
  1129. "/Tests/"
  1130. ]
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Jean-François Simon",
  1139. "email": "jeanfrancois.simon@sensiolabs.com"
  1140. },
  1141. {
  1142. "name": "Fabien Potencier",
  1143. "email": "fabien@symfony.com"
  1144. },
  1145. {
  1146. "name": "Symfony Community",
  1147. "homepage": "https://symfony.com/contributors"
  1148. }
  1149. ],
  1150. "description": "Symfony CssSelector Component",
  1151. "homepage": "https://symfony.com",
  1152. "time": "2017-02-21T09:12:04+00:00"
  1153. },
  1154. {
  1155. "name": "symfony/debug",
  1156. "version": "v3.2.6",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/symfony/debug.git",
  1160. "reference": "b90c9f91ad8ac37d9f114e369042d3226b34dc1a"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/symfony/debug/zipball/b90c9f91ad8ac37d9f114e369042d3226b34dc1a",
  1165. "reference": "b90c9f91ad8ac37d9f114e369042d3226b34dc1a",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "php": ">=5.5.9",
  1170. "psr/log": "~1.0"
  1171. },
  1172. "conflict": {
  1173. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1174. },
  1175. "require-dev": {
  1176. "symfony/class-loader": "~2.8|~3.0",
  1177. "symfony/http-kernel": "~2.8|~3.0"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "3.2-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-4": {
  1187. "Symfony\\Component\\Debug\\": ""
  1188. },
  1189. "exclude-from-classmap": [
  1190. "/Tests/"
  1191. ]
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Fabien Potencier",
  1200. "email": "fabien@symfony.com"
  1201. },
  1202. {
  1203. "name": "Symfony Community",
  1204. "homepage": "https://symfony.com/contributors"
  1205. }
  1206. ],
  1207. "description": "Symfony Debug Component",
  1208. "homepage": "https://symfony.com",
  1209. "time": "2017-02-18T17:28:00+00:00"
  1210. },
  1211. {
  1212. "name": "symfony/event-dispatcher",
  1213. "version": "v3.2.6",
  1214. "source": {
  1215. "type": "git",
  1216. "url": "https://github.com/symfony/event-dispatcher.git",
  1217. "reference": "b7a1b9e0a0f623ce43b4c8d775eb138f190c9d8d"
  1218. },
  1219. "dist": {
  1220. "type": "zip",
  1221. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7a1b9e0a0f623ce43b4c8d775eb138f190c9d8d",
  1222. "reference": "b7a1b9e0a0f623ce43b4c8d775eb138f190c9d8d",
  1223. "shasum": ""
  1224. },
  1225. "require": {
  1226. "php": ">=5.5.9"
  1227. },
  1228. "require-dev": {
  1229. "psr/log": "~1.0",
  1230. "symfony/config": "~2.8|~3.0",
  1231. "symfony/dependency-injection": "~2.8|~3.0",
  1232. "symfony/expression-language": "~2.8|~3.0",
  1233. "symfony/stopwatch": "~2.8|~3.0"
  1234. },
  1235. "suggest": {
  1236. "symfony/dependency-injection": "",
  1237. "symfony/http-kernel": ""
  1238. },
  1239. "type": "library",
  1240. "extra": {
  1241. "branch-alias": {
  1242. "dev-master": "3.2-dev"
  1243. }
  1244. },
  1245. "autoload": {
  1246. "psr-4": {
  1247. "Symfony\\Component\\EventDispatcher\\": ""
  1248. },
  1249. "exclude-from-classmap": [
  1250. "/Tests/"
  1251. ]
  1252. },
  1253. "notification-url": "https://packagist.org/downloads/",
  1254. "license": [
  1255. "MIT"
  1256. ],
  1257. "authors": [
  1258. {
  1259. "name": "Fabien Potencier",
  1260. "email": "fabien@symfony.com"
  1261. },
  1262. {
  1263. "name": "Symfony Community",
  1264. "homepage": "https://symfony.com/contributors"
  1265. }
  1266. ],
  1267. "description": "Symfony EventDispatcher Component",
  1268. "homepage": "https://symfony.com",
  1269. "time": "2017-02-21T09:12:04+00:00"
  1270. },
  1271. {
  1272. "name": "symfony/finder",
  1273. "version": "v3.2.6",
  1274. "source": {
  1275. "type": "git",
  1276. "url": "https://github.com/symfony/finder.git",
  1277. "reference": "92d7476d2df60cd851a3e13e078664b1deb8ce10"
  1278. },
  1279. "dist": {
  1280. "type": "zip",
  1281. "url": "https://api.github.com/repos/symfony/finder/zipball/92d7476d2df60cd851a3e13e078664b1deb8ce10",
  1282. "reference": "92d7476d2df60cd851a3e13e078664b1deb8ce10",
  1283. "shasum": ""
  1284. },
  1285. "require": {
  1286. "php": ">=5.5.9"
  1287. },
  1288. "type": "library",
  1289. "extra": {
  1290. "branch-alias": {
  1291. "dev-master": "3.2-dev"
  1292. }
  1293. },
  1294. "autoload": {
  1295. "psr-4": {
  1296. "Symfony\\Component\\Finder\\": ""
  1297. },
  1298. "exclude-from-classmap": [
  1299. "/Tests/"
  1300. ]
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Fabien Potencier",
  1309. "email": "fabien@symfony.com"
  1310. },
  1311. {
  1312. "name": "Symfony Community",
  1313. "homepage": "https://symfony.com/contributors"
  1314. }
  1315. ],
  1316. "description": "Symfony Finder Component",
  1317. "homepage": "https://symfony.com",
  1318. "time": "2017-02-21T09:12:04+00:00"
  1319. },
  1320. {
  1321. "name": "symfony/http-foundation",
  1322. "version": "v3.2.6",
  1323. "source": {
  1324. "type": "git",
  1325. "url": "https://github.com/symfony/http-foundation.git",
  1326. "reference": "c57009887010eb4e58bfca2970314a5b820b24b9"
  1327. },
  1328. "dist": {
  1329. "type": "zip",
  1330. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/c57009887010eb4e58bfca2970314a5b820b24b9",
  1331. "reference": "c57009887010eb4e58bfca2970314a5b820b24b9",
  1332. "shasum": ""
  1333. },
  1334. "require": {
  1335. "php": ">=5.5.9",
  1336. "symfony/polyfill-mbstring": "~1.1"
  1337. },
  1338. "require-dev": {
  1339. "symfony/expression-language": "~2.8|~3.0"
  1340. },
  1341. "type": "library",
  1342. "extra": {
  1343. "branch-alias": {
  1344. "dev-master": "3.2-dev"
  1345. }
  1346. },
  1347. "autoload": {
  1348. "psr-4": {
  1349. "Symfony\\Component\\HttpFoundation\\": ""
  1350. },
  1351. "exclude-from-classmap": [
  1352. "/Tests/"
  1353. ]
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "authors": [
  1360. {
  1361. "name": "Fabien Potencier",
  1362. "email": "fabien@symfony.com"
  1363. },
  1364. {
  1365. "name": "Symfony Community",
  1366. "homepage": "https://symfony.com/contributors"
  1367. }
  1368. ],
  1369. "description": "Symfony HttpFoundation Component",
  1370. "homepage": "https://symfony.com",
  1371. "time": "2017-03-04T12:23:14+00:00"
  1372. },
  1373. {
  1374. "name": "symfony/http-kernel",
  1375. "version": "v3.2.6",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/symfony/http-kernel.git",
  1379. "reference": "bc909e85b8585c9edf043d0fca871308c41bb9b4"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/bc909e85b8585c9edf043d0fca871308c41bb9b4",
  1384. "reference": "bc909e85b8585c9edf043d0fca871308c41bb9b4",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "php": ">=5.5.9",
  1389. "psr/log": "~1.0",
  1390. "symfony/debug": "~2.8|~3.0",
  1391. "symfony/event-dispatcher": "~2.8|~3.0",
  1392. "symfony/http-foundation": "~2.8.13|~3.1.6|~3.2"
  1393. },
  1394. "conflict": {
  1395. "symfony/config": "<2.8"
  1396. },
  1397. "require-dev": {
  1398. "symfony/browser-kit": "~2.8|~3.0",
  1399. "symfony/class-loader": "~2.8|~3.0",
  1400. "symfony/config": "~2.8|~3.0",
  1401. "symfony/console": "~2.8|~3.0",
  1402. "symfony/css-selector": "~2.8|~3.0",
  1403. "symfony/dependency-injection": "~2.8|~3.0",
  1404. "symfony/dom-crawler": "~2.8|~3.0",
  1405. "symfony/expression-language": "~2.8|~3.0",
  1406. "symfony/finder": "~2.8|~3.0",
  1407. "symfony/process": "~2.8|~3.0",
  1408. "symfony/routing": "~2.8|~3.0",
  1409. "symfony/stopwatch": "~2.8|~3.0",
  1410. "symfony/templating": "~2.8|~3.0",
  1411. "symfony/translation": "~2.8|~3.0",
  1412. "symfony/var-dumper": "~3.2"
  1413. },
  1414. "suggest": {
  1415. "symfony/browser-kit": "",
  1416. "symfony/class-loader": "",
  1417. "symfony/config": "",
  1418. "symfony/console": "",
  1419. "symfony/dependency-injection": "",
  1420. "symfony/finder": "",
  1421. "symfony/var-dumper": ""
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "3.2-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "psr-4": {
  1431. "Symfony\\Component\\HttpKernel\\": ""
  1432. },
  1433. "exclude-from-classmap": [
  1434. "/Tests/"
  1435. ]
  1436. },
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "MIT"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "Fabien Potencier",
  1444. "email": "fabien@symfony.com"
  1445. },
  1446. {
  1447. "name": "Symfony Community",
  1448. "homepage": "https://symfony.com/contributors"
  1449. }
  1450. ],
  1451. "description": "Symfony HttpKernel Component",
  1452. "homepage": "https://symfony.com",
  1453. "time": "2017-03-10T18:35:31+00:00"
  1454. },
  1455. {
  1456. "name": "symfony/polyfill-mbstring",
  1457. "version": "v1.3.0",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1461. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4",
  1466. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",
  1467. "shasum": ""
  1468. },
  1469. "require": {
  1470. "php": ">=5.3.3"
  1471. },
  1472. "suggest": {
  1473. "ext-mbstring": "For best performance"
  1474. },
  1475. "type": "library",
  1476. "extra": {
  1477. "branch-alias": {
  1478. "dev-master": "1.3-dev"
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Symfony\\Polyfill\\Mbstring\\": ""
  1484. },
  1485. "files": [
  1486. "bootstrap.php"
  1487. ]
  1488. },
  1489. "notification-url": "https://packagist.org/downloads/",
  1490. "license": [
  1491. "MIT"
  1492. ],
  1493. "authors": [
  1494. {
  1495. "name": "Nicolas Grekas",
  1496. "email": "p@tchwork.com"
  1497. },
  1498. {
  1499. "name": "Symfony Community",
  1500. "homepage": "https://symfony.com/contributors"
  1501. }
  1502. ],
  1503. "description": "Symfony polyfill for the Mbstring extension",
  1504. "homepage": "https://symfony.com",
  1505. "keywords": [
  1506. "compatibility",
  1507. "mbstring",
  1508. "polyfill",
  1509. "portable",
  1510. "shim"
  1511. ],
  1512. "time": "2016-11-14T01:06:16+00:00"
  1513. },
  1514. {
  1515. "name": "symfony/process",
  1516. "version": "v3.2.6",
  1517. "source": {
  1518. "type": "git",
  1519. "url": "https://github.com/symfony/process.git",
  1520. "reference": "68bfa8c83f24c0ac04ea7193bcdcda4519f41892"
  1521. },
  1522. "dist": {
  1523. "type": "zip",
  1524. "url": "https://api.github.com/repos/symfony/process/zipball/68bfa8c83f24c0ac04ea7193bcdcda4519f41892",
  1525. "reference": "68bfa8c83f24c0ac04ea7193bcdcda4519f41892",
  1526. "shasum": ""
  1527. },
  1528. "require": {
  1529. "php": ">=5.5.9"
  1530. },
  1531. "type": "library",
  1532. "extra": {
  1533. "branch-alias": {
  1534. "dev-master": "3.2-dev"
  1535. }
  1536. },
  1537. "autoload": {
  1538. "psr-4": {
  1539. "Symfony\\Component\\Process\\": ""
  1540. },
  1541. "exclude-from-classmap": [
  1542. "/Tests/"
  1543. ]
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "authors": [
  1550. {
  1551. "name": "Fabien Potencier",
  1552. "email": "fabien@symfony.com"
  1553. },
  1554. {
  1555. "name": "Symfony Community",
  1556. "homepage": "https://symfony.com/contributors"
  1557. }
  1558. ],
  1559. "description": "Symfony Process Component",
  1560. "homepage": "https://symfony.com",
  1561. "time": "2017-03-04T12:23:14+00:00"
  1562. },
  1563. {
  1564. "name": "symfony/routing",
  1565. "version": "v3.2.6",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/symfony/routing.git",
  1569. "reference": "d6605f9a5767bc5bc4895e1c762ba93964608aee"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/symfony/routing/zipball/d6605f9a5767bc5bc4895e1c762ba93964608aee",
  1574. "reference": "d6605f9a5767bc5bc4895e1c762ba93964608aee",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "php": ">=5.5.9"
  1579. },
  1580. "conflict": {
  1581. "symfony/config": "<2.8"
  1582. },
  1583. "require-dev": {
  1584. "doctrine/annotations": "~1.0",
  1585. "doctrine/common": "~2.2",
  1586. "psr/log": "~1.0",
  1587. "symfony/config": "~2.8|~3.0",
  1588. "symfony/expression-language": "~2.8|~3.0",
  1589. "symfony/http-foundation": "~2.8|~3.0",
  1590. "symfony/yaml": "~2.8|~3.0"
  1591. },
  1592. "suggest": {
  1593. "doctrine/annotations": "For using the annotation loader",
  1594. "symfony/config": "For using the all-in-one router or any loader",
  1595. "symfony/dependency-injection": "For loading routes from a service",
  1596. "symfony/expression-language": "For using expression matching",
  1597. "symfony/http-foundation": "For using a Symfony Request object",
  1598. "symfony/yaml": "For using the YAML loader"
  1599. },
  1600. "type": "library",
  1601. "extra": {
  1602. "branch-alias": {
  1603. "dev-master": "3.2-dev"
  1604. }
  1605. },
  1606. "autoload": {
  1607. "psr-4": {
  1608. "Symfony\\Component\\Routing\\": ""
  1609. },
  1610. "exclude-from-classmap": [
  1611. "/Tests/"
  1612. ]
  1613. },
  1614. "notification-url": "https://packagist.org/downloads/",
  1615. "license": [
  1616. "MIT"
  1617. ],
  1618. "authors": [
  1619. {
  1620. "name": "Fabien Potencier",
  1621. "email": "fabien@symfony.com"
  1622. },
  1623. {
  1624. "name": "Symfony Community",
  1625. "homepage": "https://symfony.com/contributors"
  1626. }
  1627. ],
  1628. "description": "Symfony Routing Component",
  1629. "homepage": "https://symfony.com",
  1630. "keywords": [
  1631. "router",
  1632. "routing",
  1633. "uri",
  1634. "url"
  1635. ],
  1636. "time": "2017-03-02T15:58:09+00:00"
  1637. },
  1638. {
  1639. "name": "symfony/translation",
  1640. "version": "v3.2.6",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/symfony/translation.git",
  1644. "reference": "0e1b15ce8fbf3890f4ccdac430ed5e07fdfe0690"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/symfony/translation/zipball/0e1b15ce8fbf3890f4ccdac430ed5e07fdfe0690",
  1649. "reference": "0e1b15ce8fbf3890f4ccdac430ed5e07fdfe0690",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "php": ">=5.5.9",
  1654. "symfony/polyfill-mbstring": "~1.0"
  1655. },
  1656. "conflict": {
  1657. "symfony/config": "<2.8"
  1658. },
  1659. "require-dev": {
  1660. "psr/log": "~1.0",
  1661. "symfony/config": "~2.8|~3.0",
  1662. "symfony/intl": "^2.8.18|^3.2.5",
  1663. "symfony/yaml": "~2.8|~3.0"
  1664. },
  1665. "suggest": {
  1666. "psr/log": "To use logging capability in translator",
  1667. "symfony/config": "",
  1668. "symfony/yaml": ""
  1669. },
  1670. "type": "library",
  1671. "extra": {
  1672. "branch-alias": {
  1673. "dev-master": "3.2-dev"
  1674. }
  1675. },
  1676. "autoload": {
  1677. "psr-4": {
  1678. "Symfony\\Component\\Translation\\": ""
  1679. },
  1680. "exclude-from-classmap": [
  1681. "/Tests/"
  1682. ]
  1683. },
  1684. "notification-url": "https://packagist.org/downloads/",
  1685. "license": [
  1686. "MIT"
  1687. ],
  1688. "authors": [
  1689. {
  1690. "name": "Fabien Potencier",
  1691. "email": "fabien@symfony.com"
  1692. },
  1693. {
  1694. "name": "Symfony Community",
  1695. "homepage": "https://symfony.com/contributors"
  1696. }
  1697. ],
  1698. "description": "Symfony Translation Component",
  1699. "homepage": "https://symfony.com",
  1700. "time": "2017-03-04T12:23:14+00:00"
  1701. },
  1702. {
  1703. "name": "symfony/var-dumper",
  1704. "version": "v3.2.6",
  1705. "source": {
  1706. "type": "git",
  1707. "url": "https://github.com/symfony/var-dumper.git",
  1708. "reference": "4100f347aff890bc16b0b4b42843b599db257b2d"
  1709. },
  1710. "dist": {
  1711. "type": "zip",
  1712. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4100f347aff890bc16b0b4b42843b599db257b2d",
  1713. "reference": "4100f347aff890bc16b0b4b42843b599db257b2d",
  1714. "shasum": ""
  1715. },
  1716. "require": {
  1717. "php": ">=5.5.9",
  1718. "symfony/polyfill-mbstring": "~1.0"
  1719. },
  1720. "conflict": {
  1721. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  1722. },
  1723. "require-dev": {
  1724. "twig/twig": "~1.20|~2.0"
  1725. },
  1726. "suggest": {
  1727. "ext-symfony_debug": ""
  1728. },
  1729. "type": "library",
  1730. "extra": {
  1731. "branch-alias": {
  1732. "dev-master": "3.2-dev"
  1733. }
  1734. },
  1735. "autoload": {
  1736. "files": [
  1737. "Resources/functions/dump.php"
  1738. ],
  1739. "psr-4": {
  1740. "Symfony\\Component\\VarDumper\\": ""
  1741. },
  1742. "exclude-from-classmap": [
  1743. "/Tests/"
  1744. ]
  1745. },
  1746. "notification-url": "https://packagist.org/downloads/",
  1747. "license": [
  1748. "MIT"
  1749. ],
  1750. "authors": [
  1751. {
  1752. "name": "Nicolas Grekas",
  1753. "email": "p@tchwork.com"
  1754. },
  1755. {
  1756. "name": "Symfony Community",
  1757. "homepage": "https://symfony.com/contributors"
  1758. }
  1759. ],
  1760. "description": "Symfony mechanism for exploring and dumping PHP variables",
  1761. "homepage": "https://symfony.com",
  1762. "keywords": [
  1763. "debug",
  1764. "dump"
  1765. ],
  1766. "time": "2017-02-20T13:45:48+00:00"
  1767. },
  1768. {
  1769. "name": "tijsverkoyen/css-to-inline-styles",
  1770. "version": "2.2.0",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  1774. "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b",
  1779. "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "php": "^5.5 || ^7",
  1784. "symfony/css-selector": "^2.7|~3.0"
  1785. },
  1786. "require-dev": {
  1787. "phpunit/phpunit": "~4.8|5.1.*"
  1788. },
  1789. "type": "library",
  1790. "extra": {
  1791. "branch-alias": {
  1792. "dev-master": "2.0.x-dev"
  1793. }
  1794. },
  1795. "autoload": {
  1796. "psr-4": {
  1797. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  1798. }
  1799. },
  1800. "notification-url": "https://packagist.org/downloads/",
  1801. "license": [
  1802. "BSD-3-Clause"
  1803. ],
  1804. "authors": [
  1805. {
  1806. "name": "Tijs Verkoyen",
  1807. "email": "css_to_inline_styles@verkoyen.eu",
  1808. "role": "Developer"
  1809. }
  1810. ],
  1811. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  1812. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  1813. "time": "2016-09-20T12:50:39+00:00"
  1814. },
  1815. {
  1816. "name": "vlucas/phpdotenv",
  1817. "version": "v2.4.0",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/vlucas/phpdotenv.git",
  1821. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  1826. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  1827. "shasum": ""
  1828. },
  1829. "require": {
  1830. "php": ">=5.3.9"
  1831. },
  1832. "require-dev": {
  1833. "phpunit/phpunit": "^4.8 || ^5.0"
  1834. },
  1835. "type": "library",
  1836. "extra": {
  1837. "branch-alias": {
  1838. "dev-master": "2.4-dev"
  1839. }
  1840. },
  1841. "autoload": {
  1842. "psr-4": {
  1843. "Dotenv\\": "src/"
  1844. }
  1845. },
  1846. "notification-url": "https://packagist.org/downloads/",
  1847. "license": [
  1848. "BSD-3-Clause-Attribution"
  1849. ],
  1850. "authors": [
  1851. {
  1852. "name": "Vance Lucas",
  1853. "email": "vance@vancelucas.com",
  1854. "homepage": "http://www.vancelucas.com"
  1855. }
  1856. ],
  1857. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  1858. "keywords": [
  1859. "dotenv",
  1860. "env",
  1861. "environment"
  1862. ],
  1863. "time": "2016-09-01T10:05:43+00:00"
  1864. }
  1865. ],
  1866. "packages-dev": [
  1867. {
  1868. "name": "doctrine/instantiator",
  1869. "version": "1.0.5",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://github.com/doctrine/instantiator.git",
  1873. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1878. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1879. "shasum": ""
  1880. },
  1881. "require": {
  1882. "php": ">=5.3,<8.0-DEV"
  1883. },
  1884. "require-dev": {
  1885. "athletic/athletic": "~0.1.8",
  1886. "ext-pdo": "*",
  1887. "ext-phar": "*",
  1888. "phpunit/phpunit": "~4.0",
  1889. "squizlabs/php_codesniffer": "~2.0"
  1890. },
  1891. "type": "library",
  1892. "extra": {
  1893. "branch-alias": {
  1894. "dev-master": "1.0.x-dev"
  1895. }
  1896. },
  1897. "autoload": {
  1898. "psr-4": {
  1899. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1900. }
  1901. },
  1902. "notification-url": "https://packagist.org/downloads/",
  1903. "license": [
  1904. "MIT"
  1905. ],
  1906. "authors": [
  1907. {
  1908. "name": "Marco Pivetta",
  1909. "email": "ocramius@gmail.com",
  1910. "homepage": "http://ocramius.github.com/"
  1911. }
  1912. ],
  1913. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1914. "homepage": "https://github.com/doctrine/instantiator",
  1915. "keywords": [
  1916. "constructor",
  1917. "instantiate"
  1918. ],
  1919. "time": "2015-06-14T21:17:01+00:00"
  1920. },
  1921. {
  1922. "name": "fzaninotto/faker",
  1923. "version": "v1.6.0",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/fzaninotto/Faker.git",
  1927. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  1932. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "php": "^5.3.3|^7.0"
  1937. },
  1938. "require-dev": {
  1939. "ext-intl": "*",
  1940. "phpunit/phpunit": "~4.0",
  1941. "squizlabs/php_codesniffer": "~1.5"
  1942. },
  1943. "type": "library",
  1944. "extra": {
  1945. "branch-alias": []
  1946. },
  1947. "autoload": {
  1948. "psr-4": {
  1949. "Faker\\": "src/Faker/"
  1950. }
  1951. },
  1952. "notification-url": "https://packagist.org/downloads/",
  1953. "license": [
  1954. "MIT"
  1955. ],
  1956. "authors": [
  1957. {
  1958. "name": "François Zaninotto"
  1959. }
  1960. ],
  1961. "description": "Faker is a PHP library that generates fake data for you.",
  1962. "keywords": [
  1963. "data",
  1964. "faker",
  1965. "fixtures"
  1966. ],
  1967. "time": "2016-04-29T12:21:54+00:00"
  1968. },
  1969. {
  1970. "name": "hamcrest/hamcrest-php",
  1971. "version": "v1.2.2",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/hamcrest/hamcrest-php.git",
  1975. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c",
  1980. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "php": ">=5.3.2"
  1985. },
  1986. "replace": {
  1987. "cordoval/hamcrest-php": "*",
  1988. "davedevelopment/hamcrest-php": "*",
  1989. "kodova/hamcrest-php": "*"
  1990. },
  1991. "require-dev": {
  1992. "phpunit/php-file-iterator": "1.3.3",
  1993. "satooshi/php-coveralls": "dev-master"
  1994. },
  1995. "type": "library",
  1996. "autoload": {
  1997. "classmap": [
  1998. "hamcrest"
  1999. ],
  2000. "files": [
  2001. "hamcrest/Hamcrest.php"
  2002. ]
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "BSD"
  2007. ],
  2008. "description": "This is the PHP port of Hamcrest Matchers",
  2009. "keywords": [
  2010. "test"
  2011. ],
  2012. "time": "2015-05-11T14:41:42+00:00"
  2013. },
  2014. {
  2015. "name": "mockery/mockery",
  2016. "version": "0.9.9",
  2017. "source": {
  2018. "type": "git",
  2019. "url": "https://github.com/padraic/mockery.git",
  2020. "reference": "6fdb61243844dc924071d3404bb23994ea0b6856"
  2021. },
  2022. "dist": {
  2023. "type": "zip",
  2024. "url": "https://api.github.com/repos/padraic/mockery/zipball/6fdb61243844dc924071d3404bb23994ea0b6856",
  2025. "reference": "6fdb61243844dc924071d3404bb23994ea0b6856",
  2026. "shasum": ""
  2027. },
  2028. "require": {
  2029. "hamcrest/hamcrest-php": "~1.1",
  2030. "lib-pcre": ">=7.0",
  2031. "php": ">=5.3.2"
  2032. },
  2033. "require-dev": {
  2034. "phpunit/phpunit": "~4.0"
  2035. },
  2036. "type": "library",
  2037. "extra": {
  2038. "branch-alias": {
  2039. "dev-master": "0.9.x-dev"
  2040. }
  2041. },
  2042. "autoload": {
  2043. "psr-0": {
  2044. "Mockery": "library/"
  2045. }
  2046. },
  2047. "notification-url": "https://packagist.org/downloads/",
  2048. "license": [
  2049. "BSD-3-Clause"
  2050. ],
  2051. "authors": [
  2052. {
  2053. "name": "Pádraic Brady",
  2054. "email": "padraic.brady@gmail.com",
  2055. "homepage": "http://blog.astrumfutura.com"
  2056. },
  2057. {
  2058. "name": "Dave Marshall",
  2059. "email": "dave.marshall@atstsolutions.co.uk",
  2060. "homepage": "http://davedevelopment.co.uk"
  2061. }
  2062. ],
  2063. "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
  2064. "homepage": "http://github.com/padraic/mockery",
  2065. "keywords": [
  2066. "BDD",
  2067. "TDD",
  2068. "library",
  2069. "mock",
  2070. "mock objects",
  2071. "mockery",
  2072. "stub",
  2073. "test",
  2074. "test double",
  2075. "testing"
  2076. ],
  2077. "time": "2017-02-28T12:52:32+00:00"
  2078. },
  2079. {
  2080. "name": "myclabs/deep-copy",
  2081. "version": "1.6.0",
  2082. "source": {
  2083. "type": "git",
  2084. "url": "https://github.com/myclabs/DeepCopy.git",
  2085. "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe"
  2086. },
  2087. "dist": {
  2088. "type": "zip",
  2089. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/5a5a9fc8025a08d8919be87d6884d5a92520cefe",
  2090. "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe",
  2091. "shasum": ""
  2092. },
  2093. "require": {
  2094. "php": ">=5.4.0"
  2095. },
  2096. "require-dev": {
  2097. "doctrine/collections": "1.*",
  2098. "phpunit/phpunit": "~4.1"
  2099. },
  2100. "type": "library",
  2101. "autoload": {
  2102. "psr-4": {
  2103. "DeepCopy\\": "src/DeepCopy/"
  2104. }
  2105. },
  2106. "notification-url": "https://packagist.org/downloads/",
  2107. "license": [
  2108. "MIT"
  2109. ],
  2110. "description": "Create deep copies (clones) of your objects",
  2111. "homepage": "https://github.com/myclabs/DeepCopy",
  2112. "keywords": [
  2113. "clone",
  2114. "copy",
  2115. "duplicate",
  2116. "object",
  2117. "object graph"
  2118. ],
  2119. "time": "2017-01-26T22:05:40+00:00"
  2120. },
  2121. {
  2122. "name": "phpdocumentor/reflection-common",
  2123. "version": "1.0",
  2124. "source": {
  2125. "type": "git",
  2126. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2127. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  2128. },
  2129. "dist": {
  2130. "type": "zip",
  2131. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  2132. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  2133. "shasum": ""
  2134. },
  2135. "require": {
  2136. "php": ">=5.5"
  2137. },
  2138. "require-dev": {
  2139. "phpunit/phpunit": "^4.6"
  2140. },
  2141. "type": "library",
  2142. "extra": {
  2143. "branch-alias": {
  2144. "dev-master": "1.0.x-dev"
  2145. }
  2146. },
  2147. "autoload": {
  2148. "psr-4": {
  2149. "phpDocumentor\\Reflection\\": [
  2150. "src"
  2151. ]
  2152. }
  2153. },
  2154. "notification-url": "https://packagist.org/downloads/",
  2155. "license": [
  2156. "MIT"
  2157. ],
  2158. "authors": [
  2159. {
  2160. "name": "Jaap van Otterdijk",
  2161. "email": "opensource@ijaap.nl"
  2162. }
  2163. ],
  2164. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2165. "homepage": "http://www.phpdoc.org",
  2166. "keywords": [
  2167. "FQSEN",
  2168. "phpDocumentor",
  2169. "phpdoc",
  2170. "reflection",
  2171. "static analysis"
  2172. ],
  2173. "time": "2015-12-27T11:43:31+00:00"
  2174. },
  2175. {
  2176. "name": "phpdocumentor/reflection-docblock",
  2177. "version": "3.1.1",
  2178. "source": {
  2179. "type": "git",
  2180. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2181. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e"
  2182. },
  2183. "dist": {
  2184. "type": "zip",
  2185. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  2186. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  2187. "shasum": ""
  2188. },
  2189. "require": {
  2190. "php": ">=5.5",
  2191. "phpdocumentor/reflection-common": "^1.0@dev",
  2192. "phpdocumentor/type-resolver": "^0.2.0",
  2193. "webmozart/assert": "^1.0"
  2194. },
  2195. "require-dev": {
  2196. "mockery/mockery": "^0.9.4",
  2197. "phpunit/phpunit": "^4.4"
  2198. },
  2199. "type": "library",
  2200. "autoload": {
  2201. "psr-4": {
  2202. "phpDocumentor\\Reflection\\": [
  2203. "src/"
  2204. ]
  2205. }
  2206. },
  2207. "notification-url": "https://packagist.org/downloads/",
  2208. "license": [
  2209. "MIT"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Mike van Riel",
  2214. "email": "me@mikevanriel.com"
  2215. }
  2216. ],
  2217. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2218. "time": "2016-09-30T07:12:33+00:00"
  2219. },
  2220. {
  2221. "name": "phpdocumentor/type-resolver",
  2222. "version": "0.2.1",
  2223. "source": {
  2224. "type": "git",
  2225. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2226. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb"
  2227. },
  2228. "dist": {
  2229. "type": "zip",
  2230. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  2231. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  2232. "shasum": ""
  2233. },
  2234. "require": {
  2235. "php": ">=5.5",
  2236. "phpdocumentor/reflection-common": "^1.0"
  2237. },
  2238. "require-dev": {
  2239. "mockery/mockery": "^0.9.4",
  2240. "phpunit/phpunit": "^5.2||^4.8.24"
  2241. },
  2242. "type": "library",
  2243. "extra": {
  2244. "branch-alias": {
  2245. "dev-master": "1.0.x-dev"
  2246. }
  2247. },
  2248. "autoload": {
  2249. "psr-4": {
  2250. "phpDocumentor\\Reflection\\": [
  2251. "src/"
  2252. ]
  2253. }
  2254. },
  2255. "notification-url": "https://packagist.org/downloads/",
  2256. "license": [
  2257. "MIT"
  2258. ],
  2259. "authors": [
  2260. {
  2261. "name": "Mike van Riel",
  2262. "email": "me@mikevanriel.com"
  2263. }
  2264. ],
  2265. "time": "2016-11-25T06:54:22+00:00"
  2266. },
  2267. {
  2268. "name": "phpspec/prophecy",
  2269. "version": "v1.7.0",
  2270. "source": {
  2271. "type": "git",
  2272. "url": "https://github.com/phpspec/prophecy.git",
  2273. "reference": "93d39f1f7f9326d746203c7c056f300f7f126073"
  2274. },
  2275. "dist": {
  2276. "type": "zip",
  2277. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/93d39f1f7f9326d746203c7c056f300f7f126073",
  2278. "reference": "93d39f1f7f9326d746203c7c056f300f7f126073",
  2279. "shasum": ""
  2280. },
  2281. "require": {
  2282. "doctrine/instantiator": "^1.0.2",
  2283. "php": "^5.3|^7.0",
  2284. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  2285. "sebastian/comparator": "^1.1|^2.0",
  2286. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  2287. },
  2288. "require-dev": {
  2289. "phpspec/phpspec": "^2.5|^3.2",
  2290. "phpunit/phpunit": "^4.8 || ^5.6.5"
  2291. },
  2292. "type": "library",
  2293. "extra": {
  2294. "branch-alias": {
  2295. "dev-master": "1.6.x-dev"
  2296. }
  2297. },
  2298. "autoload": {
  2299. "psr-0": {
  2300. "Prophecy\\": "src/"
  2301. }
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "MIT"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Konstantin Kudryashov",
  2310. "email": "ever.zet@gmail.com",
  2311. "homepage": "http://everzet.com"
  2312. },
  2313. {
  2314. "name": "Marcello Duarte",
  2315. "email": "marcello.duarte@gmail.com"
  2316. }
  2317. ],
  2318. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2319. "homepage": "https://github.com/phpspec/prophecy",
  2320. "keywords": [
  2321. "Double",
  2322. "Dummy",
  2323. "fake",
  2324. "mock",
  2325. "spy",
  2326. "stub"
  2327. ],
  2328. "time": "2017-03-02T20:05:34+00:00"
  2329. },
  2330. {
  2331. "name": "phpunit/php-code-coverage",
  2332. "version": "4.0.7",
  2333. "source": {
  2334. "type": "git",
  2335. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2336. "reference": "09e2277d14ea467e5a984010f501343ef29ffc69"
  2337. },
  2338. "dist": {
  2339. "type": "zip",
  2340. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/09e2277d14ea467e5a984010f501343ef29ffc69",
  2341. "reference": "09e2277d14ea467e5a984010f501343ef29ffc69",
  2342. "shasum": ""
  2343. },
  2344. "require": {
  2345. "ext-dom": "*",
  2346. "ext-xmlwriter": "*",
  2347. "php": "^5.6 || ^7.0",
  2348. "phpunit/php-file-iterator": "^1.3",
  2349. "phpunit/php-text-template": "^1.2",
  2350. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  2351. "sebastian/code-unit-reverse-lookup": "^1.0",
  2352. "sebastian/environment": "^1.3.2 || ^2.0",
  2353. "sebastian/version": "^1.0 || ^2.0"
  2354. },
  2355. "require-dev": {
  2356. "ext-xdebug": "^2.1.4",
  2357. "phpunit/phpunit": "^5.7"
  2358. },
  2359. "suggest": {
  2360. "ext-xdebug": "^2.5.1"
  2361. },
  2362. "type": "library",
  2363. "extra": {
  2364. "branch-alias": {
  2365. "dev-master": "4.0.x-dev"
  2366. }
  2367. },
  2368. "autoload": {
  2369. "classmap": [
  2370. "src/"
  2371. ]
  2372. },
  2373. "notification-url": "https://packagist.org/downloads/",
  2374. "license": [
  2375. "BSD-3-Clause"
  2376. ],
  2377. "authors": [
  2378. {
  2379. "name": "Sebastian Bergmann",
  2380. "email": "sb@sebastian-bergmann.de",
  2381. "role": "lead"
  2382. }
  2383. ],
  2384. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2385. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2386. "keywords": [
  2387. "coverage",
  2388. "testing",
  2389. "xunit"
  2390. ],
  2391. "time": "2017-03-01T09:12:17+00:00"
  2392. },
  2393. {
  2394. "name": "phpunit/php-file-iterator",
  2395. "version": "1.4.2",
  2396. "source": {
  2397. "type": "git",
  2398. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2399. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
  2400. },
  2401. "dist": {
  2402. "type": "zip",
  2403. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  2404. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  2405. "shasum": ""
  2406. },
  2407. "require": {
  2408. "php": ">=5.3.3"
  2409. },
  2410. "type": "library",
  2411. "extra": {
  2412. "branch-alias": {
  2413. "dev-master": "1.4.x-dev"
  2414. }
  2415. },
  2416. "autoload": {
  2417. "classmap": [
  2418. "src/"
  2419. ]
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "BSD-3-Clause"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Sebastian Bergmann",
  2428. "email": "sb@sebastian-bergmann.de",
  2429. "role": "lead"
  2430. }
  2431. ],
  2432. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2433. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2434. "keywords": [
  2435. "filesystem",
  2436. "iterator"
  2437. ],
  2438. "time": "2016-10-03T07:40:28+00:00"
  2439. },
  2440. {
  2441. "name": "phpunit/php-text-template",
  2442. "version": "1.2.1",
  2443. "source": {
  2444. "type": "git",
  2445. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2446. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2447. },
  2448. "dist": {
  2449. "type": "zip",
  2450. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2451. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2452. "shasum": ""
  2453. },
  2454. "require": {
  2455. "php": ">=5.3.3"
  2456. },
  2457. "type": "library",
  2458. "autoload": {
  2459. "classmap": [
  2460. "src/"
  2461. ]
  2462. },
  2463. "notification-url": "https://packagist.org/downloads/",
  2464. "license": [
  2465. "BSD-3-Clause"
  2466. ],
  2467. "authors": [
  2468. {
  2469. "name": "Sebastian Bergmann",
  2470. "email": "sebastian@phpunit.de",
  2471. "role": "lead"
  2472. }
  2473. ],
  2474. "description": "Simple template engine.",
  2475. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2476. "keywords": [
  2477. "template"
  2478. ],
  2479. "time": "2015-06-21T13:50:34+00:00"
  2480. },
  2481. {
  2482. "name": "phpunit/php-timer",
  2483. "version": "1.0.9",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2487. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2492. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "php": "^5.3.3 || ^7.0"
  2497. },
  2498. "require-dev": {
  2499. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2500. },
  2501. "type": "library",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-master": "1.0-dev"
  2505. }
  2506. },
  2507. "autoload": {
  2508. "classmap": [
  2509. "src/"
  2510. ]
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "BSD-3-Clause"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "Sebastian Bergmann",
  2519. "email": "sb@sebastian-bergmann.de",
  2520. "role": "lead"
  2521. }
  2522. ],
  2523. "description": "Utility class for timing",
  2524. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2525. "keywords": [
  2526. "timer"
  2527. ],
  2528. "time": "2017-02-26T11:10:40+00:00"
  2529. },
  2530. {
  2531. "name": "phpunit/php-token-stream",
  2532. "version": "1.4.11",
  2533. "source": {
  2534. "type": "git",
  2535. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2536. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"
  2537. },
  2538. "dist": {
  2539. "type": "zip",
  2540. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7",
  2541. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",
  2542. "shasum": ""
  2543. },
  2544. "require": {
  2545. "ext-tokenizer": "*",
  2546. "php": ">=5.3.3"
  2547. },
  2548. "require-dev": {
  2549. "phpunit/phpunit": "~4.2"
  2550. },
  2551. "type": "library",
  2552. "extra": {
  2553. "branch-alias": {
  2554. "dev-master": "1.4-dev"
  2555. }
  2556. },
  2557. "autoload": {
  2558. "classmap": [
  2559. "src/"
  2560. ]
  2561. },
  2562. "notification-url": "https://packagist.org/downloads/",
  2563. "license": [
  2564. "BSD-3-Clause"
  2565. ],
  2566. "authors": [
  2567. {
  2568. "name": "Sebastian Bergmann",
  2569. "email": "sebastian@phpunit.de"
  2570. }
  2571. ],
  2572. "description": "Wrapper around PHP's tokenizer extension.",
  2573. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2574. "keywords": [
  2575. "tokenizer"
  2576. ],
  2577. "time": "2017-02-27T10:12:30+00:00"
  2578. },
  2579. {
  2580. "name": "phpunit/phpunit",
  2581. "version": "5.7.15",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2585. "reference": "b99112aecc01f62acf3d81a3f59646700a1849e5"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b99112aecc01f62acf3d81a3f59646700a1849e5",
  2590. "reference": "b99112aecc01f62acf3d81a3f59646700a1849e5",
  2591. "shasum": ""
  2592. },
  2593. "require": {
  2594. "ext-dom": "*",
  2595. "ext-json": "*",
  2596. "ext-libxml": "*",
  2597. "ext-mbstring": "*",
  2598. "ext-xml": "*",
  2599. "myclabs/deep-copy": "~1.3",
  2600. "php": "^5.6 || ^7.0",
  2601. "phpspec/prophecy": "^1.6.2",
  2602. "phpunit/php-code-coverage": "^4.0.4",
  2603. "phpunit/php-file-iterator": "~1.4",
  2604. "phpunit/php-text-template": "~1.2",
  2605. "phpunit/php-timer": "^1.0.6",
  2606. "phpunit/phpunit-mock-objects": "^3.2",
  2607. "sebastian/comparator": "^1.2.4",
  2608. "sebastian/diff": "~1.2",
  2609. "sebastian/environment": "^1.3.4 || ^2.0",
  2610. "sebastian/exporter": "~2.0",
  2611. "sebastian/global-state": "^1.1",
  2612. "sebastian/object-enumerator": "~2.0",
  2613. "sebastian/resource-operations": "~1.0",
  2614. "sebastian/version": "~1.0.3|~2.0",
  2615. "symfony/yaml": "~2.1|~3.0"
  2616. },
  2617. "conflict": {
  2618. "phpdocumentor/reflection-docblock": "3.0.2"
  2619. },
  2620. "require-dev": {
  2621. "ext-pdo": "*"
  2622. },
  2623. "suggest": {
  2624. "ext-xdebug": "*",
  2625. "phpunit/php-invoker": "~1.1"
  2626. },
  2627. "bin": [
  2628. "phpunit"
  2629. ],
  2630. "type": "library",
  2631. "extra": {
  2632. "branch-alias": {
  2633. "dev-master": "5.7.x-dev"
  2634. }
  2635. },
  2636. "autoload": {
  2637. "classmap": [
  2638. "src/"
  2639. ]
  2640. },
  2641. "notification-url": "https://packagist.org/downloads/",
  2642. "license": [
  2643. "BSD-3-Clause"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "Sebastian Bergmann",
  2648. "email": "sebastian@phpunit.de",
  2649. "role": "lead"
  2650. }
  2651. ],
  2652. "description": "The PHP Unit Testing framework.",
  2653. "homepage": "https://phpunit.de/",
  2654. "keywords": [
  2655. "phpunit",
  2656. "testing",
  2657. "xunit"
  2658. ],
  2659. "time": "2017-03-02T15:22:43+00:00"
  2660. },
  2661. {
  2662. "name": "phpunit/phpunit-mock-objects",
  2663. "version": "3.4.3",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  2667. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  2672. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  2673. "shasum": ""
  2674. },
  2675. "require": {
  2676. "doctrine/instantiator": "^1.0.2",
  2677. "php": "^5.6 || ^7.0",
  2678. "phpunit/php-text-template": "^1.2",
  2679. "sebastian/exporter": "^1.2 || ^2.0"
  2680. },
  2681. "conflict": {
  2682. "phpunit/phpunit": "<5.4.0"
  2683. },
  2684. "require-dev": {
  2685. "phpunit/phpunit": "^5.4"
  2686. },
  2687. "suggest": {
  2688. "ext-soap": "*"
  2689. },
  2690. "type": "library",
  2691. "extra": {
  2692. "branch-alias": {
  2693. "dev-master": "3.2.x-dev"
  2694. }
  2695. },
  2696. "autoload": {
  2697. "classmap": [
  2698. "src/"
  2699. ]
  2700. },
  2701. "notification-url": "https://packagist.org/downloads/",
  2702. "license": [
  2703. "BSD-3-Clause"
  2704. ],
  2705. "authors": [
  2706. {
  2707. "name": "Sebastian Bergmann",
  2708. "email": "sb@sebastian-bergmann.de",
  2709. "role": "lead"
  2710. }
  2711. ],
  2712. "description": "Mock Object library for PHPUnit",
  2713. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  2714. "keywords": [
  2715. "mock",
  2716. "xunit"
  2717. ],
  2718. "time": "2016-12-08T20:27:08+00:00"
  2719. },
  2720. {
  2721. "name": "sebastian/code-unit-reverse-lookup",
  2722. "version": "1.0.1",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  2726. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  2731. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "php": "^5.6 || ^7.0"
  2736. },
  2737. "require-dev": {
  2738. "phpunit/phpunit": "^5.7 || ^6.0"
  2739. },
  2740. "type": "library",
  2741. "extra": {
  2742. "branch-alias": {
  2743. "dev-master": "1.0.x-dev"
  2744. }
  2745. },
  2746. "autoload": {
  2747. "classmap": [
  2748. "src/"
  2749. ]
  2750. },
  2751. "notification-url": "https://packagist.org/downloads/",
  2752. "license": [
  2753. "BSD-3-Clause"
  2754. ],
  2755. "authors": [
  2756. {
  2757. "name": "Sebastian Bergmann",
  2758. "email": "sebastian@phpunit.de"
  2759. }
  2760. ],
  2761. "description": "Looks up which function or method a line of code belongs to",
  2762. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2763. "time": "2017-03-04T06:30:41+00:00"
  2764. },
  2765. {
  2766. "name": "sebastian/comparator",
  2767. "version": "1.2.4",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://github.com/sebastianbergmann/comparator.git",
  2771. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  2776. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  2777. "shasum": ""
  2778. },
  2779. "require": {
  2780. "php": ">=5.3.3",
  2781. "sebastian/diff": "~1.2",
  2782. "sebastian/exporter": "~1.2 || ~2.0"
  2783. },
  2784. "require-dev": {
  2785. "phpunit/phpunit": "~4.4"
  2786. },
  2787. "type": "library",
  2788. "extra": {
  2789. "branch-alias": {
  2790. "dev-master": "1.2.x-dev"
  2791. }
  2792. },
  2793. "autoload": {
  2794. "classmap": [
  2795. "src/"
  2796. ]
  2797. },
  2798. "notification-url": "https://packagist.org/downloads/",
  2799. "license": [
  2800. "BSD-3-Clause"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "Jeff Welch",
  2805. "email": "whatthejeff@gmail.com"
  2806. },
  2807. {
  2808. "name": "Volker Dusch",
  2809. "email": "github@wallbash.com"
  2810. },
  2811. {
  2812. "name": "Bernhard Schussek",
  2813. "email": "bschussek@2bepublished.at"
  2814. },
  2815. {
  2816. "name": "Sebastian Bergmann",
  2817. "email": "sebastian@phpunit.de"
  2818. }
  2819. ],
  2820. "description": "Provides the functionality to compare PHP values for equality",
  2821. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  2822. "keywords": [
  2823. "comparator",
  2824. "compare",
  2825. "equality"
  2826. ],
  2827. "time": "2017-01-29T09:50:25+00:00"
  2828. },
  2829. {
  2830. "name": "sebastian/diff",
  2831. "version": "1.4.1",
  2832. "source": {
  2833. "type": "git",
  2834. "url": "https://github.com/sebastianbergmann/diff.git",
  2835. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  2836. },
  2837. "dist": {
  2838. "type": "zip",
  2839. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  2840. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  2841. "shasum": ""
  2842. },
  2843. "require": {
  2844. "php": ">=5.3.3"
  2845. },
  2846. "require-dev": {
  2847. "phpunit/phpunit": "~4.8"
  2848. },
  2849. "type": "library",
  2850. "extra": {
  2851. "branch-alias": {
  2852. "dev-master": "1.4-dev"
  2853. }
  2854. },
  2855. "autoload": {
  2856. "classmap": [
  2857. "src/"
  2858. ]
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "BSD-3-Clause"
  2863. ],
  2864. "authors": [
  2865. {
  2866. "name": "Kore Nordmann",
  2867. "email": "mail@kore-nordmann.de"
  2868. },
  2869. {
  2870. "name": "Sebastian Bergmann",
  2871. "email": "sebastian@phpunit.de"
  2872. }
  2873. ],
  2874. "description": "Diff implementation",
  2875. "homepage": "https://github.com/sebastianbergmann/diff",
  2876. "keywords": [
  2877. "diff"
  2878. ],
  2879. "time": "2015-12-08T07:14:41+00:00"
  2880. },
  2881. {
  2882. "name": "sebastian/environment",
  2883. "version": "2.0.0",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://github.com/sebastianbergmann/environment.git",
  2887. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  2888. },
  2889. "dist": {
  2890. "type": "zip",
  2891. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  2892. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  2893. "shasum": ""
  2894. },
  2895. "require": {
  2896. "php": "^5.6 || ^7.0"
  2897. },
  2898. "require-dev": {
  2899. "phpunit/phpunit": "^5.0"
  2900. },
  2901. "type": "library",
  2902. "extra": {
  2903. "branch-alias": {
  2904. "dev-master": "2.0.x-dev"
  2905. }
  2906. },
  2907. "autoload": {
  2908. "classmap": [
  2909. "src/"
  2910. ]
  2911. },
  2912. "notification-url": "https://packagist.org/downloads/",
  2913. "license": [
  2914. "BSD-3-Clause"
  2915. ],
  2916. "authors": [
  2917. {
  2918. "name": "Sebastian Bergmann",
  2919. "email": "sebastian@phpunit.de"
  2920. }
  2921. ],
  2922. "description": "Provides functionality to handle HHVM/PHP environments",
  2923. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2924. "keywords": [
  2925. "Xdebug",
  2926. "environment",
  2927. "hhvm"
  2928. ],
  2929. "time": "2016-11-26T07:53:53+00:00"
  2930. },
  2931. {
  2932. "name": "sebastian/exporter",
  2933. "version": "2.0.0",
  2934. "source": {
  2935. "type": "git",
  2936. "url": "https://github.com/sebastianbergmann/exporter.git",
  2937. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  2938. },
  2939. "dist": {
  2940. "type": "zip",
  2941. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  2942. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  2943. "shasum": ""
  2944. },
  2945. "require": {
  2946. "php": ">=5.3.3",
  2947. "sebastian/recursion-context": "~2.0"
  2948. },
  2949. "require-dev": {
  2950. "ext-mbstring": "*",
  2951. "phpunit/phpunit": "~4.4"
  2952. },
  2953. "type": "library",
  2954. "extra": {
  2955. "branch-alias": {
  2956. "dev-master": "2.0.x-dev"
  2957. }
  2958. },
  2959. "autoload": {
  2960. "classmap": [
  2961. "src/"
  2962. ]
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "BSD-3-Clause"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Jeff Welch",
  2971. "email": "whatthejeff@gmail.com"
  2972. },
  2973. {
  2974. "name": "Volker Dusch",
  2975. "email": "github@wallbash.com"
  2976. },
  2977. {
  2978. "name": "Bernhard Schussek",
  2979. "email": "bschussek@2bepublished.at"
  2980. },
  2981. {
  2982. "name": "Sebastian Bergmann",
  2983. "email": "sebastian@phpunit.de"
  2984. },
  2985. {
  2986. "name": "Adam Harvey",
  2987. "email": "aharvey@php.net"
  2988. }
  2989. ],
  2990. "description": "Provides the functionality to export PHP variables for visualization",
  2991. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2992. "keywords": [
  2993. "export",
  2994. "exporter"
  2995. ],
  2996. "time": "2016-11-19T08:54:04+00:00"
  2997. },
  2998. {
  2999. "name": "sebastian/global-state",
  3000. "version": "1.1.1",
  3001. "source": {
  3002. "type": "git",
  3003. "url": "https://github.com/sebastianbergmann/global-state.git",
  3004. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3005. },
  3006. "dist": {
  3007. "type": "zip",
  3008. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3009. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3010. "shasum": ""
  3011. },
  3012. "require": {
  3013. "php": ">=5.3.3"
  3014. },
  3015. "require-dev": {
  3016. "phpunit/phpunit": "~4.2"
  3017. },
  3018. "suggest": {
  3019. "ext-uopz": "*"
  3020. },
  3021. "type": "library",
  3022. "extra": {
  3023. "branch-alias": {
  3024. "dev-master": "1.0-dev"
  3025. }
  3026. },
  3027. "autoload": {
  3028. "classmap": [
  3029. "src/"
  3030. ]
  3031. },
  3032. "notification-url": "https://packagist.org/downloads/",
  3033. "license": [
  3034. "BSD-3-Clause"
  3035. ],
  3036. "authors": [
  3037. {
  3038. "name": "Sebastian Bergmann",
  3039. "email": "sebastian@phpunit.de"
  3040. }
  3041. ],
  3042. "description": "Snapshotting of global state",
  3043. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3044. "keywords": [
  3045. "global state"
  3046. ],
  3047. "time": "2015-10-12T03:26:01+00:00"
  3048. },
  3049. {
  3050. "name": "sebastian/object-enumerator",
  3051. "version": "2.0.1",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3055. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  3056. },
  3057. "dist": {
  3058. "type": "zip",
  3059. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
  3060. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  3061. "shasum": ""
  3062. },
  3063. "require": {
  3064. "php": ">=5.6",
  3065. "sebastian/recursion-context": "~2.0"
  3066. },
  3067. "require-dev": {
  3068. "phpunit/phpunit": "~5"
  3069. },
  3070. "type": "library",
  3071. "extra": {
  3072. "branch-alias": {
  3073. "dev-master": "2.0.x-dev"
  3074. }
  3075. },
  3076. "autoload": {
  3077. "classmap": [
  3078. "src/"
  3079. ]
  3080. },
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "BSD-3-Clause"
  3084. ],
  3085. "authors": [
  3086. {
  3087. "name": "Sebastian Bergmann",
  3088. "email": "sebastian@phpunit.de"
  3089. }
  3090. ],
  3091. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3092. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3093. "time": "2017-02-18T15:18:39+00:00"
  3094. },
  3095. {
  3096. "name": "sebastian/recursion-context",
  3097. "version": "2.0.0",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3101. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  3106. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "php": ">=5.3.3"
  3111. },
  3112. "require-dev": {
  3113. "phpunit/phpunit": "~4.4"
  3114. },
  3115. "type": "library",
  3116. "extra": {
  3117. "branch-alias": {
  3118. "dev-master": "2.0.x-dev"
  3119. }
  3120. },
  3121. "autoload": {
  3122. "classmap": [
  3123. "src/"
  3124. ]
  3125. },
  3126. "notification-url": "https://packagist.org/downloads/",
  3127. "license": [
  3128. "BSD-3-Clause"
  3129. ],
  3130. "authors": [
  3131. {
  3132. "name": "Jeff Welch",
  3133. "email": "whatthejeff@gmail.com"
  3134. },
  3135. {
  3136. "name": "Sebastian Bergmann",
  3137. "email": "sebastian@phpunit.de"
  3138. },
  3139. {
  3140. "name": "Adam Harvey",
  3141. "email": "aharvey@php.net"
  3142. }
  3143. ],
  3144. "description": "Provides functionality to recursively process PHP variables",
  3145. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3146. "time": "2016-11-19T07:33:16+00:00"
  3147. },
  3148. {
  3149. "name": "sebastian/resource-operations",
  3150. "version": "1.0.0",
  3151. "source": {
  3152. "type": "git",
  3153. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3154. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  3155. },
  3156. "dist": {
  3157. "type": "zip",
  3158. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3159. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3160. "shasum": ""
  3161. },
  3162. "require": {
  3163. "php": ">=5.6.0"
  3164. },
  3165. "type": "library",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-master": "1.0.x-dev"
  3169. }
  3170. },
  3171. "autoload": {
  3172. "classmap": [
  3173. "src/"
  3174. ]
  3175. },
  3176. "notification-url": "https://packagist.org/downloads/",
  3177. "license": [
  3178. "BSD-3-Clause"
  3179. ],
  3180. "authors": [
  3181. {
  3182. "name": "Sebastian Bergmann",
  3183. "email": "sebastian@phpunit.de"
  3184. }
  3185. ],
  3186. "description": "Provides a list of PHP built-in functions that operate on resources",
  3187. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3188. "time": "2015-07-28T20:34:47+00:00"
  3189. },
  3190. {
  3191. "name": "sebastian/version",
  3192. "version": "2.0.1",
  3193. "source": {
  3194. "type": "git",
  3195. "url": "https://github.com/sebastianbergmann/version.git",
  3196. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3197. },
  3198. "dist": {
  3199. "type": "zip",
  3200. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  3201. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3202. "shasum": ""
  3203. },
  3204. "require": {
  3205. "php": ">=5.6"
  3206. },
  3207. "type": "library",
  3208. "extra": {
  3209. "branch-alias": {
  3210. "dev-master": "2.0.x-dev"
  3211. }
  3212. },
  3213. "autoload": {
  3214. "classmap": [
  3215. "src/"
  3216. ]
  3217. },
  3218. "notification-url": "https://packagist.org/downloads/",
  3219. "license": [
  3220. "BSD-3-Clause"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "Sebastian Bergmann",
  3225. "email": "sebastian@phpunit.de",
  3226. "role": "lead"
  3227. }
  3228. ],
  3229. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3230. "homepage": "https://github.com/sebastianbergmann/version",
  3231. "time": "2016-10-03T07:35:21+00:00"
  3232. },
  3233. {
  3234. "name": "symfony/yaml",
  3235. "version": "v3.2.6",
  3236. "source": {
  3237. "type": "git",
  3238. "url": "https://github.com/symfony/yaml.git",
  3239. "reference": "093e416ad096355149e265ea2e4cc1f9ee40ab1a"
  3240. },
  3241. "dist": {
  3242. "type": "zip",
  3243. "url": "https://api.github.com/repos/symfony/yaml/zipball/093e416ad096355149e265ea2e4cc1f9ee40ab1a",
  3244. "reference": "093e416ad096355149e265ea2e4cc1f9ee40ab1a",
  3245. "shasum": ""
  3246. },
  3247. "require": {
  3248. "php": ">=5.5.9"
  3249. },
  3250. "require-dev": {
  3251. "symfony/console": "~2.8|~3.0"
  3252. },
  3253. "suggest": {
  3254. "symfony/console": "For validating YAML files using the lint command"
  3255. },
  3256. "type": "library",
  3257. "extra": {
  3258. "branch-alias": {
  3259. "dev-master": "3.2-dev"
  3260. }
  3261. },
  3262. "autoload": {
  3263. "psr-4": {
  3264. "Symfony\\Component\\Yaml\\": ""
  3265. },
  3266. "exclude-from-classmap": [
  3267. "/Tests/"
  3268. ]
  3269. },
  3270. "notification-url": "https://packagist.org/downloads/",
  3271. "license": [
  3272. "MIT"
  3273. ],
  3274. "authors": [
  3275. {
  3276. "name": "Fabien Potencier",
  3277. "email": "fabien@symfony.com"
  3278. },
  3279. {
  3280. "name": "Symfony Community",
  3281. "homepage": "https://symfony.com/contributors"
  3282. }
  3283. ],
  3284. "description": "Symfony Yaml Component",
  3285. "homepage": "https://symfony.com",
  3286. "time": "2017-03-07T16:47:02+00:00"
  3287. },
  3288. {
  3289. "name": "webmozart/assert",
  3290. "version": "1.2.0",
  3291. "source": {
  3292. "type": "git",
  3293. "url": "https://github.com/webmozart/assert.git",
  3294. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  3295. },
  3296. "dist": {
  3297. "type": "zip",
  3298. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  3299. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  3300. "shasum": ""
  3301. },
  3302. "require": {
  3303. "php": "^5.3.3 || ^7.0"
  3304. },
  3305. "require-dev": {
  3306. "phpunit/phpunit": "^4.6",
  3307. "sebastian/version": "^1.0.1"
  3308. },
  3309. "type": "library",
  3310. "extra": {
  3311. "branch-alias": {
  3312. "dev-master": "1.3-dev"
  3313. }
  3314. },
  3315. "autoload": {
  3316. "psr-4": {
  3317. "Webmozart\\Assert\\": "src/"
  3318. }
  3319. },
  3320. "notification-url": "https://packagist.org/downloads/",
  3321. "license": [
  3322. "MIT"
  3323. ],
  3324. "authors": [
  3325. {
  3326. "name": "Bernhard Schussek",
  3327. "email": "bschussek@gmail.com"
  3328. }
  3329. ],
  3330. "description": "Assertions to validate method input/output with nice error messages.",
  3331. "keywords": [
  3332. "assert",
  3333. "check",
  3334. "validate"
  3335. ],
  3336. "time": "2016-11-23T20:04:58+00:00"
  3337. }
  3338. ],
  3339. "aliases": [],
  3340. "minimum-stability": "stable",
  3341. "stability-flags": [],
  3342. "prefer-stable": false,
  3343. "prefer-lowest": false,
  3344. "platform": {
  3345. "php": ">=5.6.4"
  3346. },
  3347. "platform-dev": []
  3348. }