composer.lock 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320
  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#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "595682086b47cdb4163aceb61bf66c98",
  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.3.0",
  45. "source": {
  46. "type": "git",
  47. "url": "https://github.com/doctrine/inflector.git",
  48. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  49. },
  50. "dist": {
  51. "type": "zip",
  52. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  53. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  54. "shasum": ""
  55. },
  56. "require": {
  57. "php": "^7.1"
  58. },
  59. "require-dev": {
  60. "phpunit/phpunit": "^6.2"
  61. },
  62. "type": "library",
  63. "extra": {
  64. "branch-alias": {
  65. "dev-master": "1.3.x-dev"
  66. }
  67. },
  68. "autoload": {
  69. "psr-4": {
  70. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  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": "2018-01-09T20:05:19+00:00"
  108. },
  109. {
  110. "name": "doctrine/lexer",
  111. "version": "v1.0.1",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/doctrine/lexer.git",
  115. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  120. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": ">=5.3.2"
  125. },
  126. "type": "library",
  127. "extra": {
  128. "branch-alias": {
  129. "dev-master": "1.0.x-dev"
  130. }
  131. },
  132. "autoload": {
  133. "psr-0": {
  134. "Doctrine\\Common\\Lexer\\": "lib/"
  135. }
  136. },
  137. "notification-url": "https://packagist.org/downloads/",
  138. "license": [
  139. "MIT"
  140. ],
  141. "authors": [
  142. {
  143. "name": "Roman Borschel",
  144. "email": "roman@code-factory.org"
  145. },
  146. {
  147. "name": "Guilherme Blanco",
  148. "email": "guilhermeblanco@gmail.com"
  149. },
  150. {
  151. "name": "Johannes Schmitt",
  152. "email": "schmittjoh@gmail.com"
  153. }
  154. ],
  155. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  156. "homepage": "http://www.doctrine-project.org",
  157. "keywords": [
  158. "lexer",
  159. "parser"
  160. ],
  161. "time": "2014-09-09T13:34:57+00:00"
  162. },
  163. {
  164. "name": "egulias/email-validator",
  165. "version": "2.1.5",
  166. "source": {
  167. "type": "git",
  168. "url": "https://github.com/egulias/EmailValidator.git",
  169. "reference": "54859fabea8b3beecbb1a282888d5c990036b9e3"
  170. },
  171. "dist": {
  172. "type": "zip",
  173. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/54859fabea8b3beecbb1a282888d5c990036b9e3",
  174. "reference": "54859fabea8b3beecbb1a282888d5c990036b9e3",
  175. "shasum": ""
  176. },
  177. "require": {
  178. "doctrine/lexer": "^1.0.1",
  179. "php": ">= 5.5"
  180. },
  181. "require-dev": {
  182. "dominicsayers/isemail": "dev-master",
  183. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  184. "satooshi/php-coveralls": "^1.0.1"
  185. },
  186. "suggest": {
  187. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  188. },
  189. "type": "library",
  190. "extra": {
  191. "branch-alias": {
  192. "dev-master": "2.0.x-dev"
  193. }
  194. },
  195. "autoload": {
  196. "psr-4": {
  197. "Egulias\\EmailValidator\\": "EmailValidator"
  198. }
  199. },
  200. "notification-url": "https://packagist.org/downloads/",
  201. "license": [
  202. "MIT"
  203. ],
  204. "authors": [
  205. {
  206. "name": "Eduardo Gulias Davis"
  207. }
  208. ],
  209. "description": "A library for validating emails against several RFCs",
  210. "homepage": "https://github.com/egulias/EmailValidator",
  211. "keywords": [
  212. "email",
  213. "emailvalidation",
  214. "emailvalidator",
  215. "validation",
  216. "validator"
  217. ],
  218. "time": "2018-08-16T20:49:45+00:00"
  219. },
  220. {
  221. "name": "erusev/parsedown",
  222. "version": "1.7.1",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/erusev/parsedown.git",
  226. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  231. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  232. "shasum": ""
  233. },
  234. "require": {
  235. "ext-mbstring": "*",
  236. "php": ">=5.3.0"
  237. },
  238. "require-dev": {
  239. "phpunit/phpunit": "^4.8.35"
  240. },
  241. "type": "library",
  242. "autoload": {
  243. "psr-0": {
  244. "Parsedown": ""
  245. }
  246. },
  247. "notification-url": "https://packagist.org/downloads/",
  248. "license": [
  249. "MIT"
  250. ],
  251. "authors": [
  252. {
  253. "name": "Emanuil Rusev",
  254. "email": "hello@erusev.com",
  255. "homepage": "http://erusev.com"
  256. }
  257. ],
  258. "description": "Parser for Markdown.",
  259. "homepage": "http://parsedown.org",
  260. "keywords": [
  261. "markdown",
  262. "parser"
  263. ],
  264. "time": "2018-03-08T01:11:30+00:00"
  265. },
  266. {
  267. "name": "fideloper/proxy",
  268. "version": "3.3.4",
  269. "source": {
  270. "type": "git",
  271. "url": "https://github.com/fideloper/TrustedProxy.git",
  272. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
  273. },
  274. "dist": {
  275. "type": "zip",
  276. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
  277. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
  278. "shasum": ""
  279. },
  280. "require": {
  281. "illuminate/contracts": "~5.0",
  282. "php": ">=5.4.0"
  283. },
  284. "require-dev": {
  285. "illuminate/http": "~5.0",
  286. "mockery/mockery": "~0.9.3",
  287. "phpunit/phpunit": "^5.7"
  288. },
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-master": "3.3-dev"
  293. },
  294. "laravel": {
  295. "providers": [
  296. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  297. ]
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "Fideloper\\Proxy\\": "src/"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Chris Fidao",
  312. "email": "fideloper@gmail.com"
  313. }
  314. ],
  315. "description": "Set trusted proxies for Laravel",
  316. "keywords": [
  317. "load balancing",
  318. "proxy",
  319. "trusted proxy"
  320. ],
  321. "time": "2017-06-15T17:19:42+00:00"
  322. },
  323. {
  324. "name": "jakub-onderka/php-console-color",
  325. "version": "0.1",
  326. "source": {
  327. "type": "git",
  328. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  329. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  330. },
  331. "dist": {
  332. "type": "zip",
  333. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  334. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  335. "shasum": ""
  336. },
  337. "require": {
  338. "php": ">=5.3.2"
  339. },
  340. "require-dev": {
  341. "jakub-onderka/php-code-style": "1.0",
  342. "jakub-onderka/php-parallel-lint": "0.*",
  343. "jakub-onderka/php-var-dump-check": "0.*",
  344. "phpunit/phpunit": "3.7.*",
  345. "squizlabs/php_codesniffer": "1.*"
  346. },
  347. "type": "library",
  348. "autoload": {
  349. "psr-0": {
  350. "JakubOnderka\\PhpConsoleColor": "src/"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "BSD-2-Clause"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Jakub Onderka",
  360. "email": "jakub.onderka@gmail.com",
  361. "homepage": "http://www.acci.cz"
  362. }
  363. ],
  364. "time": "2014-04-08T15:00:19+00:00"
  365. },
  366. {
  367. "name": "jakub-onderka/php-console-highlighter",
  368. "version": "v0.3.2",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  372. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  377. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  378. "shasum": ""
  379. },
  380. "require": {
  381. "jakub-onderka/php-console-color": "~0.1",
  382. "php": ">=5.3.0"
  383. },
  384. "require-dev": {
  385. "jakub-onderka/php-code-style": "~1.0",
  386. "jakub-onderka/php-parallel-lint": "~0.5",
  387. "jakub-onderka/php-var-dump-check": "~0.1",
  388. "phpunit/phpunit": "~4.0",
  389. "squizlabs/php_codesniffer": "~1.5"
  390. },
  391. "type": "library",
  392. "autoload": {
  393. "psr-0": {
  394. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  395. }
  396. },
  397. "notification-url": "https://packagist.org/downloads/",
  398. "license": [
  399. "MIT"
  400. ],
  401. "authors": [
  402. {
  403. "name": "Jakub Onderka",
  404. "email": "acci@acci.cz",
  405. "homepage": "http://www.acci.cz/"
  406. }
  407. ],
  408. "time": "2015-04-20T18:58:01+00:00"
  409. },
  410. {
  411. "name": "laravel/framework",
  412. "version": "v5.5.43",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/laravel/framework.git",
  416. "reference": "84f4ed02ec6eb4a56629fb6acbee1df56891e3c7"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/laravel/framework/zipball/84f4ed02ec6eb4a56629fb6acbee1df56891e3c7",
  421. "reference": "84f4ed02ec6eb4a56629fb6acbee1df56891e3c7",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "doctrine/inflector": "~1.1",
  426. "erusev/parsedown": "~1.7",
  427. "ext-mbstring": "*",
  428. "ext-openssl": "*",
  429. "league/flysystem": "^1.0.8",
  430. "monolog/monolog": "~1.12",
  431. "mtdowling/cron-expression": "~1.0",
  432. "nesbot/carbon": "^1.24.1",
  433. "php": ">=7.0",
  434. "psr/container": "~1.0",
  435. "psr/simple-cache": "^1.0",
  436. "ramsey/uuid": "~3.0",
  437. "swiftmailer/swiftmailer": "~6.0",
  438. "symfony/console": "~3.3",
  439. "symfony/debug": "~3.3",
  440. "symfony/finder": "~3.3",
  441. "symfony/http-foundation": "~3.3",
  442. "symfony/http-kernel": "~3.3",
  443. "symfony/process": "~3.3",
  444. "symfony/routing": "~3.3",
  445. "symfony/var-dumper": "~3.3",
  446. "tijsverkoyen/css-to-inline-styles": "~2.2",
  447. "vlucas/phpdotenv": "~2.2"
  448. },
  449. "replace": {
  450. "illuminate/auth": "self.version",
  451. "illuminate/broadcasting": "self.version",
  452. "illuminate/bus": "self.version",
  453. "illuminate/cache": "self.version",
  454. "illuminate/config": "self.version",
  455. "illuminate/console": "self.version",
  456. "illuminate/container": "self.version",
  457. "illuminate/contracts": "self.version",
  458. "illuminate/cookie": "self.version",
  459. "illuminate/database": "self.version",
  460. "illuminate/encryption": "self.version",
  461. "illuminate/events": "self.version",
  462. "illuminate/filesystem": "self.version",
  463. "illuminate/hashing": "self.version",
  464. "illuminate/http": "self.version",
  465. "illuminate/log": "self.version",
  466. "illuminate/mail": "self.version",
  467. "illuminate/notifications": "self.version",
  468. "illuminate/pagination": "self.version",
  469. "illuminate/pipeline": "self.version",
  470. "illuminate/queue": "self.version",
  471. "illuminate/redis": "self.version",
  472. "illuminate/routing": "self.version",
  473. "illuminate/session": "self.version",
  474. "illuminate/support": "self.version",
  475. "illuminate/translation": "self.version",
  476. "illuminate/validation": "self.version",
  477. "illuminate/view": "self.version",
  478. "tightenco/collect": "<5.5.33"
  479. },
  480. "require-dev": {
  481. "aws/aws-sdk-php": "~3.0",
  482. "doctrine/dbal": "~2.5",
  483. "filp/whoops": "^2.1.4",
  484. "mockery/mockery": "~1.0",
  485. "orchestra/testbench-core": "3.5.*",
  486. "pda/pheanstalk": "~3.0",
  487. "phpunit/phpunit": "~6.0",
  488. "predis/predis": "^1.1.1",
  489. "symfony/css-selector": "~3.3",
  490. "symfony/dom-crawler": "~3.3"
  491. },
  492. "suggest": {
  493. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  494. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  495. "ext-pcntl": "Required to use all features of the queue worker.",
  496. "ext-posix": "Required to use all features of the queue worker.",
  497. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  498. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  499. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  500. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  501. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  502. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  503. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  504. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  505. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  506. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  507. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  508. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  509. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  510. },
  511. "type": "library",
  512. "extra": {
  513. "branch-alias": {
  514. "dev-master": "5.5-dev"
  515. }
  516. },
  517. "autoload": {
  518. "files": [
  519. "src/Illuminate/Foundation/helpers.php",
  520. "src/Illuminate/Support/helpers.php"
  521. ],
  522. "psr-4": {
  523. "Illuminate\\": "src/Illuminate/"
  524. }
  525. },
  526. "notification-url": "https://packagist.org/downloads/",
  527. "license": [
  528. "MIT"
  529. ],
  530. "authors": [
  531. {
  532. "name": "Taylor Otwell",
  533. "email": "taylor@laravel.com"
  534. }
  535. ],
  536. "description": "The Laravel Framework.",
  537. "homepage": "https://laravel.com",
  538. "keywords": [
  539. "framework",
  540. "laravel"
  541. ],
  542. "time": "2018-09-02T11:45:05+00:00"
  543. },
  544. {
  545. "name": "laravel/tinker",
  546. "version": "v1.0.7",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/laravel/tinker.git",
  550. "reference": "e3086ee8cb1f54a39ae8dcb72d1c37d10128997d"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/laravel/tinker/zipball/e3086ee8cb1f54a39ae8dcb72d1c37d10128997d",
  555. "reference": "e3086ee8cb1f54a39ae8dcb72d1c37d10128997d",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "illuminate/console": "~5.1",
  560. "illuminate/contracts": "~5.1",
  561. "illuminate/support": "~5.1",
  562. "php": ">=5.5.9",
  563. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  564. "symfony/var-dumper": "~3.0|~4.0"
  565. },
  566. "require-dev": {
  567. "phpunit/phpunit": "~4.0|~5.0"
  568. },
  569. "suggest": {
  570. "illuminate/database": "The Illuminate Database package (~5.1)."
  571. },
  572. "type": "library",
  573. "extra": {
  574. "branch-alias": {
  575. "dev-master": "1.0-dev"
  576. },
  577. "laravel": {
  578. "providers": [
  579. "Laravel\\Tinker\\TinkerServiceProvider"
  580. ]
  581. }
  582. },
  583. "autoload": {
  584. "psr-4": {
  585. "Laravel\\Tinker\\": "src/"
  586. }
  587. },
  588. "notification-url": "https://packagist.org/downloads/",
  589. "license": [
  590. "MIT"
  591. ],
  592. "authors": [
  593. {
  594. "name": "Taylor Otwell",
  595. "email": "taylor@laravel.com"
  596. }
  597. ],
  598. "description": "Powerful REPL for the Laravel framework.",
  599. "keywords": [
  600. "REPL",
  601. "Tinker",
  602. "laravel",
  603. "psysh"
  604. ],
  605. "time": "2018-05-17T13:42:07+00:00"
  606. },
  607. {
  608. "name": "league/flysystem",
  609. "version": "1.0.46",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/thephpleague/flysystem.git",
  613. "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2",
  618. "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "php": ">=5.5.9"
  623. },
  624. "conflict": {
  625. "league/flysystem-sftp": "<1.0.6"
  626. },
  627. "require-dev": {
  628. "ext-fileinfo": "*",
  629. "phpspec/phpspec": "^3.4",
  630. "phpunit/phpunit": "^5.7.10"
  631. },
  632. "suggest": {
  633. "ext-fileinfo": "Required for MimeType",
  634. "ext-ftp": "Allows you to use FTP server storage",
  635. "ext-openssl": "Allows you to use FTPS server storage",
  636. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  637. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  638. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  639. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  640. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  641. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  642. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  643. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  644. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  645. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  646. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  647. },
  648. "type": "library",
  649. "extra": {
  650. "branch-alias": {
  651. "dev-master": "1.1-dev"
  652. }
  653. },
  654. "autoload": {
  655. "psr-4": {
  656. "League\\Flysystem\\": "src/"
  657. }
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "license": [
  661. "MIT"
  662. ],
  663. "authors": [
  664. {
  665. "name": "Frank de Jonge",
  666. "email": "info@frenky.net"
  667. }
  668. ],
  669. "description": "Filesystem abstraction: Many filesystems, one API.",
  670. "keywords": [
  671. "Cloud Files",
  672. "WebDAV",
  673. "abstraction",
  674. "aws",
  675. "cloud",
  676. "copy.com",
  677. "dropbox",
  678. "file systems",
  679. "files",
  680. "filesystem",
  681. "filesystems",
  682. "ftp",
  683. "rackspace",
  684. "remote",
  685. "s3",
  686. "sftp",
  687. "storage"
  688. ],
  689. "time": "2018-08-22T07:45:22+00:00"
  690. },
  691. {
  692. "name": "monolog/monolog",
  693. "version": "1.23.0",
  694. "source": {
  695. "type": "git",
  696. "url": "https://github.com/Seldaek/monolog.git",
  697. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  698. },
  699. "dist": {
  700. "type": "zip",
  701. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  702. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  703. "shasum": ""
  704. },
  705. "require": {
  706. "php": ">=5.3.0",
  707. "psr/log": "~1.0"
  708. },
  709. "provide": {
  710. "psr/log-implementation": "1.0.0"
  711. },
  712. "require-dev": {
  713. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  714. "doctrine/couchdb": "~1.0@dev",
  715. "graylog2/gelf-php": "~1.0",
  716. "jakub-onderka/php-parallel-lint": "0.9",
  717. "php-amqplib/php-amqplib": "~2.4",
  718. "php-console/php-console": "^3.1.3",
  719. "phpunit/phpunit": "~4.5",
  720. "phpunit/phpunit-mock-objects": "2.3.0",
  721. "ruflin/elastica": ">=0.90 <3.0",
  722. "sentry/sentry": "^0.13",
  723. "swiftmailer/swiftmailer": "^5.3|^6.0"
  724. },
  725. "suggest": {
  726. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  727. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  728. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  729. "ext-mongo": "Allow sending log messages to a MongoDB server",
  730. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  731. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  732. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  733. "php-console/php-console": "Allow sending log messages to Google Chrome",
  734. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  735. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  736. "sentry/sentry": "Allow sending log messages to a Sentry server"
  737. },
  738. "type": "library",
  739. "extra": {
  740. "branch-alias": {
  741. "dev-master": "2.0.x-dev"
  742. }
  743. },
  744. "autoload": {
  745. "psr-4": {
  746. "Monolog\\": "src/Monolog"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Jordi Boggiano",
  756. "email": "j.boggiano@seld.be",
  757. "homepage": "http://seld.be"
  758. }
  759. ],
  760. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  761. "homepage": "http://github.com/Seldaek/monolog",
  762. "keywords": [
  763. "log",
  764. "logging",
  765. "psr-3"
  766. ],
  767. "time": "2017-06-19T01:22:40+00:00"
  768. },
  769. {
  770. "name": "mtdowling/cron-expression",
  771. "version": "v1.2.1",
  772. "source": {
  773. "type": "git",
  774. "url": "https://github.com/mtdowling/cron-expression.git",
  775. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  776. },
  777. "dist": {
  778. "type": "zip",
  779. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  780. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  781. "shasum": ""
  782. },
  783. "require": {
  784. "php": ">=5.3.2"
  785. },
  786. "require-dev": {
  787. "phpunit/phpunit": "~4.0|~5.0"
  788. },
  789. "type": "library",
  790. "autoload": {
  791. "psr-4": {
  792. "Cron\\": "src/Cron/"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Michael Dowling",
  802. "email": "mtdowling@gmail.com",
  803. "homepage": "https://github.com/mtdowling"
  804. }
  805. ],
  806. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  807. "keywords": [
  808. "cron",
  809. "schedule"
  810. ],
  811. "time": "2017-01-23T04:29:33+00:00"
  812. },
  813. {
  814. "name": "nesbot/carbon",
  815. "version": "1.33.0",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/briannesbitt/Carbon.git",
  819. "reference": "55667c1007a99e82030874b1bb14d24d07108413"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/55667c1007a99e82030874b1bb14d24d07108413",
  824. "reference": "55667c1007a99e82030874b1bb14d24d07108413",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "php": ">=5.3.9",
  829. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  830. },
  831. "require-dev": {
  832. "friendsofphp/php-cs-fixer": "~2",
  833. "phpunit/phpunit": "^4.8.35 || ^5.7"
  834. },
  835. "type": "library",
  836. "extra": {
  837. "laravel": {
  838. "providers": [
  839. "Carbon\\Laravel\\ServiceProvider"
  840. ]
  841. }
  842. },
  843. "autoload": {
  844. "psr-4": {
  845. "": "src/"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Brian Nesbitt",
  855. "email": "brian@nesbot.com",
  856. "homepage": "http://nesbot.com"
  857. }
  858. ],
  859. "description": "A simple API extension for DateTime.",
  860. "homepage": "http://carbon.nesbot.com",
  861. "keywords": [
  862. "date",
  863. "datetime",
  864. "time"
  865. ],
  866. "time": "2018-08-07T08:39:47+00:00"
  867. },
  868. {
  869. "name": "nikic/php-parser",
  870. "version": "v4.0.3",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/nikic/PHP-Parser.git",
  874. "reference": "bd088dc940a418f09cda079a9b5c7c478890fb8d"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd088dc940a418f09cda079a9b5c7c478890fb8d",
  879. "reference": "bd088dc940a418f09cda079a9b5c7c478890fb8d",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "ext-tokenizer": "*",
  884. "php": ">=7.0"
  885. },
  886. "require-dev": {
  887. "phpunit/phpunit": "^6.5 || ^7.0"
  888. },
  889. "bin": [
  890. "bin/php-parse"
  891. ],
  892. "type": "library",
  893. "extra": {
  894. "branch-alias": {
  895. "dev-master": "4.0-dev"
  896. }
  897. },
  898. "autoload": {
  899. "psr-4": {
  900. "PhpParser\\": "lib/PhpParser"
  901. }
  902. },
  903. "notification-url": "https://packagist.org/downloads/",
  904. "license": [
  905. "BSD-3-Clause"
  906. ],
  907. "authors": [
  908. {
  909. "name": "Nikita Popov"
  910. }
  911. ],
  912. "description": "A PHP parser written in PHP",
  913. "keywords": [
  914. "parser",
  915. "php"
  916. ],
  917. "time": "2018-07-15T17:25:16+00:00"
  918. },
  919. {
  920. "name": "paragonie/random_compat",
  921. "version": "v9.99.99",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/paragonie/random_compat.git",
  925. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  930. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  931. "shasum": ""
  932. },
  933. "require": {
  934. "php": "^7"
  935. },
  936. "require-dev": {
  937. "phpunit/phpunit": "4.*|5.*",
  938. "vimeo/psalm": "^1"
  939. },
  940. "suggest": {
  941. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  942. },
  943. "type": "library",
  944. "notification-url": "https://packagist.org/downloads/",
  945. "license": [
  946. "MIT"
  947. ],
  948. "authors": [
  949. {
  950. "name": "Paragon Initiative Enterprises",
  951. "email": "security@paragonie.com",
  952. "homepage": "https://paragonie.com"
  953. }
  954. ],
  955. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  956. "keywords": [
  957. "csprng",
  958. "polyfill",
  959. "pseudorandom",
  960. "random"
  961. ],
  962. "time": "2018-07-02T15:55:56+00:00"
  963. },
  964. {
  965. "name": "psr/container",
  966. "version": "1.0.0",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/php-fig/container.git",
  970. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  975. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "php": ">=5.3.0"
  980. },
  981. "type": "library",
  982. "extra": {
  983. "branch-alias": {
  984. "dev-master": "1.0.x-dev"
  985. }
  986. },
  987. "autoload": {
  988. "psr-4": {
  989. "Psr\\Container\\": "src/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "PHP-FIG",
  999. "homepage": "http://www.php-fig.org/"
  1000. }
  1001. ],
  1002. "description": "Common Container Interface (PHP FIG PSR-11)",
  1003. "homepage": "https://github.com/php-fig/container",
  1004. "keywords": [
  1005. "PSR-11",
  1006. "container",
  1007. "container-interface",
  1008. "container-interop",
  1009. "psr"
  1010. ],
  1011. "time": "2017-02-14T16:28:37+00:00"
  1012. },
  1013. {
  1014. "name": "psr/log",
  1015. "version": "1.0.2",
  1016. "source": {
  1017. "type": "git",
  1018. "url": "https://github.com/php-fig/log.git",
  1019. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1020. },
  1021. "dist": {
  1022. "type": "zip",
  1023. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1024. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1025. "shasum": ""
  1026. },
  1027. "require": {
  1028. "php": ">=5.3.0"
  1029. },
  1030. "type": "library",
  1031. "extra": {
  1032. "branch-alias": {
  1033. "dev-master": "1.0.x-dev"
  1034. }
  1035. },
  1036. "autoload": {
  1037. "psr-4": {
  1038. "Psr\\Log\\": "Psr/Log/"
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "PHP-FIG",
  1048. "homepage": "http://www.php-fig.org/"
  1049. }
  1050. ],
  1051. "description": "Common interface for logging libraries",
  1052. "homepage": "https://github.com/php-fig/log",
  1053. "keywords": [
  1054. "log",
  1055. "psr",
  1056. "psr-3"
  1057. ],
  1058. "time": "2016-10-10T12:19:37+00:00"
  1059. },
  1060. {
  1061. "name": "psr/simple-cache",
  1062. "version": "1.0.1",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/php-fig/simple-cache.git",
  1066. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1071. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "php": ">=5.3.0"
  1076. },
  1077. "type": "library",
  1078. "extra": {
  1079. "branch-alias": {
  1080. "dev-master": "1.0.x-dev"
  1081. }
  1082. },
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Psr\\SimpleCache\\": "src/"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "MIT"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "PHP-FIG",
  1095. "homepage": "http://www.php-fig.org/"
  1096. }
  1097. ],
  1098. "description": "Common interfaces for simple caching",
  1099. "keywords": [
  1100. "cache",
  1101. "caching",
  1102. "psr",
  1103. "psr-16",
  1104. "simple-cache"
  1105. ],
  1106. "time": "2017-10-23T01:57:42+00:00"
  1107. },
  1108. {
  1109. "name": "psy/psysh",
  1110. "version": "v0.9.8",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/bobthecow/psysh.git",
  1114. "reference": "ed3c32c4304e1a678a6e0f9dc11dd2d927d89555"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ed3c32c4304e1a678a6e0f9dc11dd2d927d89555",
  1119. "reference": "ed3c32c4304e1a678a6e0f9dc11dd2d927d89555",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "dnoegel/php-xdg-base-dir": "0.1",
  1124. "ext-json": "*",
  1125. "ext-tokenizer": "*",
  1126. "jakub-onderka/php-console-highlighter": "0.3.*",
  1127. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  1128. "php": ">=5.4.0",
  1129. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  1130. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  1131. },
  1132. "require-dev": {
  1133. "bamarni/composer-bin-plugin": "^1.2",
  1134. "hoa/console": "~2.15|~3.16",
  1135. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  1136. },
  1137. "suggest": {
  1138. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1139. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1140. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1141. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1142. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1143. },
  1144. "bin": [
  1145. "bin/psysh"
  1146. ],
  1147. "type": "library",
  1148. "extra": {
  1149. "branch-alias": {
  1150. "dev-develop": "0.9.x-dev"
  1151. }
  1152. },
  1153. "autoload": {
  1154. "files": [
  1155. "src/functions.php"
  1156. ],
  1157. "psr-4": {
  1158. "Psy\\": "src/"
  1159. }
  1160. },
  1161. "notification-url": "https://packagist.org/downloads/",
  1162. "license": [
  1163. "MIT"
  1164. ],
  1165. "authors": [
  1166. {
  1167. "name": "Justin Hileman",
  1168. "email": "justin@justinhileman.info",
  1169. "homepage": "http://justinhileman.com"
  1170. }
  1171. ],
  1172. "description": "An interactive shell for modern PHP.",
  1173. "homepage": "http://psysh.org",
  1174. "keywords": [
  1175. "REPL",
  1176. "console",
  1177. "interactive",
  1178. "shell"
  1179. ],
  1180. "time": "2018-09-05T11:40:09+00:00"
  1181. },
  1182. {
  1183. "name": "ramsey/uuid",
  1184. "version": "3.8.0",
  1185. "source": {
  1186. "type": "git",
  1187. "url": "https://github.com/ramsey/uuid.git",
  1188. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  1189. },
  1190. "dist": {
  1191. "type": "zip",
  1192. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  1193. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  1194. "shasum": ""
  1195. },
  1196. "require": {
  1197. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  1198. "php": "^5.4 || ^7.0",
  1199. "symfony/polyfill-ctype": "^1.8"
  1200. },
  1201. "replace": {
  1202. "rhumsaa/uuid": "self.version"
  1203. },
  1204. "require-dev": {
  1205. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  1206. "doctrine/annotations": "~1.2.0",
  1207. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  1208. "ircmaxell/random-lib": "^1.1",
  1209. "jakub-onderka/php-parallel-lint": "^0.9.0",
  1210. "mockery/mockery": "^0.9.9",
  1211. "moontoast/math": "^1.1",
  1212. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  1213. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  1214. "squizlabs/php_codesniffer": "^2.3"
  1215. },
  1216. "suggest": {
  1217. "ext-ctype": "Provides support for PHP Ctype functions",
  1218. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1219. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1220. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1221. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1222. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1223. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1224. },
  1225. "type": "library",
  1226. "extra": {
  1227. "branch-alias": {
  1228. "dev-master": "3.x-dev"
  1229. }
  1230. },
  1231. "autoload": {
  1232. "psr-4": {
  1233. "Ramsey\\Uuid\\": "src/"
  1234. }
  1235. },
  1236. "notification-url": "https://packagist.org/downloads/",
  1237. "license": [
  1238. "MIT"
  1239. ],
  1240. "authors": [
  1241. {
  1242. "name": "Marijn Huizendveld",
  1243. "email": "marijn.huizendveld@gmail.com"
  1244. },
  1245. {
  1246. "name": "Thibaud Fabre",
  1247. "email": "thibaud@aztech.io"
  1248. },
  1249. {
  1250. "name": "Ben Ramsey",
  1251. "email": "ben@benramsey.com",
  1252. "homepage": "https://benramsey.com"
  1253. }
  1254. ],
  1255. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1256. "homepage": "https://github.com/ramsey/uuid",
  1257. "keywords": [
  1258. "guid",
  1259. "identifier",
  1260. "uuid"
  1261. ],
  1262. "time": "2018-07-19T23:38:55+00:00"
  1263. },
  1264. {
  1265. "name": "swiftmailer/swiftmailer",
  1266. "version": "v6.1.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1270. "reference": "7d760881d266d63c5e7a1155cbcf2ac656a31ca8"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/7d760881d266d63c5e7a1155cbcf2ac656a31ca8",
  1275. "reference": "7d760881d266d63c5e7a1155cbcf2ac656a31ca8",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "egulias/email-validator": "~2.0",
  1280. "php": ">=7.0.0"
  1281. },
  1282. "require-dev": {
  1283. "mockery/mockery": "~0.9.1",
  1284. "symfony/phpunit-bridge": "~3.3@dev"
  1285. },
  1286. "suggest": {
  1287. "ext-intl": "Needed to support internationalized email addresses",
  1288. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  1289. },
  1290. "type": "library",
  1291. "extra": {
  1292. "branch-alias": {
  1293. "dev-master": "6.1-dev"
  1294. }
  1295. },
  1296. "autoload": {
  1297. "files": [
  1298. "lib/swift_required.php"
  1299. ]
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "authors": [
  1306. {
  1307. "name": "Chris Corbyn"
  1308. },
  1309. {
  1310. "name": "Fabien Potencier",
  1311. "email": "fabien@symfony.com"
  1312. }
  1313. ],
  1314. "description": "Swiftmailer, free feature-rich PHP mailer",
  1315. "homepage": "https://swiftmailer.symfony.com",
  1316. "keywords": [
  1317. "email",
  1318. "mail",
  1319. "mailer"
  1320. ],
  1321. "time": "2018-07-13T07:04:35+00:00"
  1322. },
  1323. {
  1324. "name": "symfony/console",
  1325. "version": "v3.4.15",
  1326. "source": {
  1327. "type": "git",
  1328. "url": "https://github.com/symfony/console.git",
  1329. "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73"
  1330. },
  1331. "dist": {
  1332. "type": "zip",
  1333. "url": "https://api.github.com/repos/symfony/console/zipball/6b217594552b9323bcdcfc14f8a0ce126e84cd73",
  1334. "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73",
  1335. "shasum": ""
  1336. },
  1337. "require": {
  1338. "php": "^5.5.9|>=7.0.8",
  1339. "symfony/debug": "~2.8|~3.0|~4.0",
  1340. "symfony/polyfill-mbstring": "~1.0"
  1341. },
  1342. "conflict": {
  1343. "symfony/dependency-injection": "<3.4",
  1344. "symfony/process": "<3.3"
  1345. },
  1346. "require-dev": {
  1347. "psr/log": "~1.0",
  1348. "symfony/config": "~3.3|~4.0",
  1349. "symfony/dependency-injection": "~3.4|~4.0",
  1350. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  1351. "symfony/lock": "~3.4|~4.0",
  1352. "symfony/process": "~3.3|~4.0"
  1353. },
  1354. "suggest": {
  1355. "psr/log-implementation": "For using the console logger",
  1356. "symfony/event-dispatcher": "",
  1357. "symfony/lock": "",
  1358. "symfony/process": ""
  1359. },
  1360. "type": "library",
  1361. "extra": {
  1362. "branch-alias": {
  1363. "dev-master": "3.4-dev"
  1364. }
  1365. },
  1366. "autoload": {
  1367. "psr-4": {
  1368. "Symfony\\Component\\Console\\": ""
  1369. },
  1370. "exclude-from-classmap": [
  1371. "/Tests/"
  1372. ]
  1373. },
  1374. "notification-url": "https://packagist.org/downloads/",
  1375. "license": [
  1376. "MIT"
  1377. ],
  1378. "authors": [
  1379. {
  1380. "name": "Fabien Potencier",
  1381. "email": "fabien@symfony.com"
  1382. },
  1383. {
  1384. "name": "Symfony Community",
  1385. "homepage": "https://symfony.com/contributors"
  1386. }
  1387. ],
  1388. "description": "Symfony Console Component",
  1389. "homepage": "https://symfony.com",
  1390. "time": "2018-07-26T11:19:56+00:00"
  1391. },
  1392. {
  1393. "name": "symfony/css-selector",
  1394. "version": "v4.1.4",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/symfony/css-selector.git",
  1398. "reference": "2a4df7618f869b456f9096781e78c57b509d76c7"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/symfony/css-selector/zipball/2a4df7618f869b456f9096781e78c57b509d76c7",
  1403. "reference": "2a4df7618f869b456f9096781e78c57b509d76c7",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "php": "^7.1.3"
  1408. },
  1409. "type": "library",
  1410. "extra": {
  1411. "branch-alias": {
  1412. "dev-master": "4.1-dev"
  1413. }
  1414. },
  1415. "autoload": {
  1416. "psr-4": {
  1417. "Symfony\\Component\\CssSelector\\": ""
  1418. },
  1419. "exclude-from-classmap": [
  1420. "/Tests/"
  1421. ]
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "Jean-François Simon",
  1430. "email": "jeanfrancois.simon@sensiolabs.com"
  1431. },
  1432. {
  1433. "name": "Fabien Potencier",
  1434. "email": "fabien@symfony.com"
  1435. },
  1436. {
  1437. "name": "Symfony Community",
  1438. "homepage": "https://symfony.com/contributors"
  1439. }
  1440. ],
  1441. "description": "Symfony CssSelector Component",
  1442. "homepage": "https://symfony.com",
  1443. "time": "2018-07-26T09:10:45+00:00"
  1444. },
  1445. {
  1446. "name": "symfony/debug",
  1447. "version": "v3.4.15",
  1448. "source": {
  1449. "type": "git",
  1450. "url": "https://github.com/symfony/debug.git",
  1451. "reference": "c4625e75341e4fb309ce0c049cbf7fb84b8897cd"
  1452. },
  1453. "dist": {
  1454. "type": "zip",
  1455. "url": "https://api.github.com/repos/symfony/debug/zipball/c4625e75341e4fb309ce0c049cbf7fb84b8897cd",
  1456. "reference": "c4625e75341e4fb309ce0c049cbf7fb84b8897cd",
  1457. "shasum": ""
  1458. },
  1459. "require": {
  1460. "php": "^5.5.9|>=7.0.8",
  1461. "psr/log": "~1.0"
  1462. },
  1463. "conflict": {
  1464. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1465. },
  1466. "require-dev": {
  1467. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  1468. },
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "3.4-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "psr-4": {
  1477. "Symfony\\Component\\Debug\\": ""
  1478. },
  1479. "exclude-from-classmap": [
  1480. "/Tests/"
  1481. ]
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "MIT"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Fabien Potencier",
  1490. "email": "fabien@symfony.com"
  1491. },
  1492. {
  1493. "name": "Symfony Community",
  1494. "homepage": "https://symfony.com/contributors"
  1495. }
  1496. ],
  1497. "description": "Symfony Debug Component",
  1498. "homepage": "https://symfony.com",
  1499. "time": "2018-08-03T10:42:44+00:00"
  1500. },
  1501. {
  1502. "name": "symfony/event-dispatcher",
  1503. "version": "v4.1.4",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/symfony/event-dispatcher.git",
  1507. "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bfb30c2ad377615a463ebbc875eba64a99f6aa3e",
  1512. "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e",
  1513. "shasum": ""
  1514. },
  1515. "require": {
  1516. "php": "^7.1.3"
  1517. },
  1518. "conflict": {
  1519. "symfony/dependency-injection": "<3.4"
  1520. },
  1521. "require-dev": {
  1522. "psr/log": "~1.0",
  1523. "symfony/config": "~3.4|~4.0",
  1524. "symfony/dependency-injection": "~3.4|~4.0",
  1525. "symfony/expression-language": "~3.4|~4.0",
  1526. "symfony/stopwatch": "~3.4|~4.0"
  1527. },
  1528. "suggest": {
  1529. "symfony/dependency-injection": "",
  1530. "symfony/http-kernel": ""
  1531. },
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-master": "4.1-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Symfony\\Component\\EventDispatcher\\": ""
  1541. },
  1542. "exclude-from-classmap": [
  1543. "/Tests/"
  1544. ]
  1545. },
  1546. "notification-url": "https://packagist.org/downloads/",
  1547. "license": [
  1548. "MIT"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "Fabien Potencier",
  1553. "email": "fabien@symfony.com"
  1554. },
  1555. {
  1556. "name": "Symfony Community",
  1557. "homepage": "https://symfony.com/contributors"
  1558. }
  1559. ],
  1560. "description": "Symfony EventDispatcher Component",
  1561. "homepage": "https://symfony.com",
  1562. "time": "2018-07-26T09:10:45+00:00"
  1563. },
  1564. {
  1565. "name": "symfony/finder",
  1566. "version": "v3.4.15",
  1567. "source": {
  1568. "type": "git",
  1569. "url": "https://github.com/symfony/finder.git",
  1570. "reference": "8a84fcb207451df0013b2c74cbbf1b62d47b999a"
  1571. },
  1572. "dist": {
  1573. "type": "zip",
  1574. "url": "https://api.github.com/repos/symfony/finder/zipball/8a84fcb207451df0013b2c74cbbf1b62d47b999a",
  1575. "reference": "8a84fcb207451df0013b2c74cbbf1b62d47b999a",
  1576. "shasum": ""
  1577. },
  1578. "require": {
  1579. "php": "^5.5.9|>=7.0.8"
  1580. },
  1581. "type": "library",
  1582. "extra": {
  1583. "branch-alias": {
  1584. "dev-master": "3.4-dev"
  1585. }
  1586. },
  1587. "autoload": {
  1588. "psr-4": {
  1589. "Symfony\\Component\\Finder\\": ""
  1590. },
  1591. "exclude-from-classmap": [
  1592. "/Tests/"
  1593. ]
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Fabien Potencier",
  1602. "email": "fabien@symfony.com"
  1603. },
  1604. {
  1605. "name": "Symfony Community",
  1606. "homepage": "https://symfony.com/contributors"
  1607. }
  1608. ],
  1609. "description": "Symfony Finder Component",
  1610. "homepage": "https://symfony.com",
  1611. "time": "2018-07-26T11:19:56+00:00"
  1612. },
  1613. {
  1614. "name": "symfony/http-foundation",
  1615. "version": "v3.4.15",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/symfony/http-foundation.git",
  1619. "reference": "2fb33cb6eefe6e790e4023f7c534a9e4214252fc"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2fb33cb6eefe6e790e4023f7c534a9e4214252fc",
  1624. "reference": "2fb33cb6eefe6e790e4023f7c534a9e4214252fc",
  1625. "shasum": ""
  1626. },
  1627. "require": {
  1628. "php": "^5.5.9|>=7.0.8",
  1629. "symfony/polyfill-mbstring": "~1.1",
  1630. "symfony/polyfill-php70": "~1.6"
  1631. },
  1632. "require-dev": {
  1633. "symfony/expression-language": "~2.8|~3.0|~4.0"
  1634. },
  1635. "type": "library",
  1636. "extra": {
  1637. "branch-alias": {
  1638. "dev-master": "3.4-dev"
  1639. }
  1640. },
  1641. "autoload": {
  1642. "psr-4": {
  1643. "Symfony\\Component\\HttpFoundation\\": ""
  1644. },
  1645. "exclude-from-classmap": [
  1646. "/Tests/"
  1647. ]
  1648. },
  1649. "notification-url": "https://packagist.org/downloads/",
  1650. "license": [
  1651. "MIT"
  1652. ],
  1653. "authors": [
  1654. {
  1655. "name": "Fabien Potencier",
  1656. "email": "fabien@symfony.com"
  1657. },
  1658. {
  1659. "name": "Symfony Community",
  1660. "homepage": "https://symfony.com/contributors"
  1661. }
  1662. ],
  1663. "description": "Symfony HttpFoundation Component",
  1664. "homepage": "https://symfony.com",
  1665. "time": "2018-08-27T17:45:33+00:00"
  1666. },
  1667. {
  1668. "name": "symfony/http-kernel",
  1669. "version": "v3.4.15",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/symfony/http-kernel.git",
  1673. "reference": "2819693b25f480966cbfa13b651abccfed4871ca"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2819693b25f480966cbfa13b651abccfed4871ca",
  1678. "reference": "2819693b25f480966cbfa13b651abccfed4871ca",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "php": "^5.5.9|>=7.0.8",
  1683. "psr/log": "~1.0",
  1684. "symfony/debug": "~2.8|~3.0|~4.0",
  1685. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  1686. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  1687. "symfony/polyfill-ctype": "~1.8"
  1688. },
  1689. "conflict": {
  1690. "symfony/config": "<2.8",
  1691. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  1692. "symfony/var-dumper": "<3.3",
  1693. "twig/twig": "<1.34|<2.4,>=2"
  1694. },
  1695. "provide": {
  1696. "psr/log-implementation": "1.0"
  1697. },
  1698. "require-dev": {
  1699. "psr/cache": "~1.0",
  1700. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  1701. "symfony/class-loader": "~2.8|~3.0",
  1702. "symfony/config": "~2.8|~3.0|~4.0",
  1703. "symfony/console": "~2.8|~3.0|~4.0",
  1704. "symfony/css-selector": "~2.8|~3.0|~4.0",
  1705. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  1706. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  1707. "symfony/expression-language": "~2.8|~3.0|~4.0",
  1708. "symfony/finder": "~2.8|~3.0|~4.0",
  1709. "symfony/process": "~2.8|~3.0|~4.0",
  1710. "symfony/routing": "~3.4|~4.0",
  1711. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  1712. "symfony/templating": "~2.8|~3.0|~4.0",
  1713. "symfony/translation": "~2.8|~3.0|~4.0",
  1714. "symfony/var-dumper": "~3.3|~4.0"
  1715. },
  1716. "suggest": {
  1717. "symfony/browser-kit": "",
  1718. "symfony/config": "",
  1719. "symfony/console": "",
  1720. "symfony/dependency-injection": "",
  1721. "symfony/finder": "",
  1722. "symfony/var-dumper": ""
  1723. },
  1724. "type": "library",
  1725. "extra": {
  1726. "branch-alias": {
  1727. "dev-master": "3.4-dev"
  1728. }
  1729. },
  1730. "autoload": {
  1731. "psr-4": {
  1732. "Symfony\\Component\\HttpKernel\\": ""
  1733. },
  1734. "exclude-from-classmap": [
  1735. "/Tests/"
  1736. ]
  1737. },
  1738. "notification-url": "https://packagist.org/downloads/",
  1739. "license": [
  1740. "MIT"
  1741. ],
  1742. "authors": [
  1743. {
  1744. "name": "Fabien Potencier",
  1745. "email": "fabien@symfony.com"
  1746. },
  1747. {
  1748. "name": "Symfony Community",
  1749. "homepage": "https://symfony.com/contributors"
  1750. }
  1751. ],
  1752. "description": "Symfony HttpKernel Component",
  1753. "homepage": "https://symfony.com",
  1754. "time": "2018-08-28T06:06:12+00:00"
  1755. },
  1756. {
  1757. "name": "symfony/polyfill-ctype",
  1758. "version": "v1.9.0",
  1759. "source": {
  1760. "type": "git",
  1761. "url": "https://github.com/symfony/polyfill-ctype.git",
  1762. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  1763. },
  1764. "dist": {
  1765. "type": "zip",
  1766. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  1767. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  1768. "shasum": ""
  1769. },
  1770. "require": {
  1771. "php": ">=5.3.3"
  1772. },
  1773. "suggest": {
  1774. "ext-ctype": "For best performance"
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "1.9-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "psr-4": {
  1784. "Symfony\\Polyfill\\Ctype\\": ""
  1785. },
  1786. "files": [
  1787. "bootstrap.php"
  1788. ]
  1789. },
  1790. "notification-url": "https://packagist.org/downloads/",
  1791. "license": [
  1792. "MIT"
  1793. ],
  1794. "authors": [
  1795. {
  1796. "name": "Symfony Community",
  1797. "homepage": "https://symfony.com/contributors"
  1798. },
  1799. {
  1800. "name": "Gert de Pagter",
  1801. "email": "BackEndTea@gmail.com"
  1802. }
  1803. ],
  1804. "description": "Symfony polyfill for ctype functions",
  1805. "homepage": "https://symfony.com",
  1806. "keywords": [
  1807. "compatibility",
  1808. "ctype",
  1809. "polyfill",
  1810. "portable"
  1811. ],
  1812. "time": "2018-08-06T14:22:27+00:00"
  1813. },
  1814. {
  1815. "name": "symfony/polyfill-mbstring",
  1816. "version": "v1.9.0",
  1817. "source": {
  1818. "type": "git",
  1819. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1820. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
  1821. },
  1822. "dist": {
  1823. "type": "zip",
  1824. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8",
  1825. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
  1826. "shasum": ""
  1827. },
  1828. "require": {
  1829. "php": ">=5.3.3"
  1830. },
  1831. "suggest": {
  1832. "ext-mbstring": "For best performance"
  1833. },
  1834. "type": "library",
  1835. "extra": {
  1836. "branch-alias": {
  1837. "dev-master": "1.9-dev"
  1838. }
  1839. },
  1840. "autoload": {
  1841. "psr-4": {
  1842. "Symfony\\Polyfill\\Mbstring\\": ""
  1843. },
  1844. "files": [
  1845. "bootstrap.php"
  1846. ]
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "Nicolas Grekas",
  1855. "email": "p@tchwork.com"
  1856. },
  1857. {
  1858. "name": "Symfony Community",
  1859. "homepage": "https://symfony.com/contributors"
  1860. }
  1861. ],
  1862. "description": "Symfony polyfill for the Mbstring extension",
  1863. "homepage": "https://symfony.com",
  1864. "keywords": [
  1865. "compatibility",
  1866. "mbstring",
  1867. "polyfill",
  1868. "portable",
  1869. "shim"
  1870. ],
  1871. "time": "2018-08-06T14:22:27+00:00"
  1872. },
  1873. {
  1874. "name": "symfony/polyfill-php70",
  1875. "version": "v1.9.0",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/symfony/polyfill-php70.git",
  1879. "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
  1884. "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  1889. "php": ">=5.3.3"
  1890. },
  1891. "type": "library",
  1892. "extra": {
  1893. "branch-alias": {
  1894. "dev-master": "1.9-dev"
  1895. }
  1896. },
  1897. "autoload": {
  1898. "psr-4": {
  1899. "Symfony\\Polyfill\\Php70\\": ""
  1900. },
  1901. "files": [
  1902. "bootstrap.php"
  1903. ],
  1904. "classmap": [
  1905. "Resources/stubs"
  1906. ]
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "authors": [
  1913. {
  1914. "name": "Nicolas Grekas",
  1915. "email": "p@tchwork.com"
  1916. },
  1917. {
  1918. "name": "Symfony Community",
  1919. "homepage": "https://symfony.com/contributors"
  1920. }
  1921. ],
  1922. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1923. "homepage": "https://symfony.com",
  1924. "keywords": [
  1925. "compatibility",
  1926. "polyfill",
  1927. "portable",
  1928. "shim"
  1929. ],
  1930. "time": "2018-08-06T14:22:27+00:00"
  1931. },
  1932. {
  1933. "name": "symfony/process",
  1934. "version": "v3.4.15",
  1935. "source": {
  1936. "type": "git",
  1937. "url": "https://github.com/symfony/process.git",
  1938. "reference": "4d6b125d5293cbceedc2aa10f2c71617e76262e7"
  1939. },
  1940. "dist": {
  1941. "type": "zip",
  1942. "url": "https://api.github.com/repos/symfony/process/zipball/4d6b125d5293cbceedc2aa10f2c71617e76262e7",
  1943. "reference": "4d6b125d5293cbceedc2aa10f2c71617e76262e7",
  1944. "shasum": ""
  1945. },
  1946. "require": {
  1947. "php": "^5.5.9|>=7.0.8"
  1948. },
  1949. "type": "library",
  1950. "extra": {
  1951. "branch-alias": {
  1952. "dev-master": "3.4-dev"
  1953. }
  1954. },
  1955. "autoload": {
  1956. "psr-4": {
  1957. "Symfony\\Component\\Process\\": ""
  1958. },
  1959. "exclude-from-classmap": [
  1960. "/Tests/"
  1961. ]
  1962. },
  1963. "notification-url": "https://packagist.org/downloads/",
  1964. "license": [
  1965. "MIT"
  1966. ],
  1967. "authors": [
  1968. {
  1969. "name": "Fabien Potencier",
  1970. "email": "fabien@symfony.com"
  1971. },
  1972. {
  1973. "name": "Symfony Community",
  1974. "homepage": "https://symfony.com/contributors"
  1975. }
  1976. ],
  1977. "description": "Symfony Process Component",
  1978. "homepage": "https://symfony.com",
  1979. "time": "2018-08-03T10:42:44+00:00"
  1980. },
  1981. {
  1982. "name": "symfony/routing",
  1983. "version": "v3.4.15",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/symfony/routing.git",
  1987. "reference": "e20f4bb79502c3c0db86d572f7683a30d4143911"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/symfony/routing/zipball/e20f4bb79502c3c0db86d572f7683a30d4143911",
  1992. "reference": "e20f4bb79502c3c0db86d572f7683a30d4143911",
  1993. "shasum": ""
  1994. },
  1995. "require": {
  1996. "php": "^5.5.9|>=7.0.8"
  1997. },
  1998. "conflict": {
  1999. "symfony/config": "<3.3.1",
  2000. "symfony/dependency-injection": "<3.3",
  2001. "symfony/yaml": "<3.4"
  2002. },
  2003. "require-dev": {
  2004. "doctrine/annotations": "~1.0",
  2005. "psr/log": "~1.0",
  2006. "symfony/config": "^3.3.1|~4.0",
  2007. "symfony/dependency-injection": "~3.3|~4.0",
  2008. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2009. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  2010. "symfony/yaml": "~3.4|~4.0"
  2011. },
  2012. "suggest": {
  2013. "doctrine/annotations": "For using the annotation loader",
  2014. "symfony/config": "For using the all-in-one router or any loader",
  2015. "symfony/dependency-injection": "For loading routes from a service",
  2016. "symfony/expression-language": "For using expression matching",
  2017. "symfony/http-foundation": "For using a Symfony Request object",
  2018. "symfony/yaml": "For using the YAML loader"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-master": "3.4-dev"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Symfony\\Component\\Routing\\": ""
  2029. },
  2030. "exclude-from-classmap": [
  2031. "/Tests/"
  2032. ]
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Fabien Potencier",
  2041. "email": "fabien@symfony.com"
  2042. },
  2043. {
  2044. "name": "Symfony Community",
  2045. "homepage": "https://symfony.com/contributors"
  2046. }
  2047. ],
  2048. "description": "Symfony Routing Component",
  2049. "homepage": "https://symfony.com",
  2050. "keywords": [
  2051. "router",
  2052. "routing",
  2053. "uri",
  2054. "url"
  2055. ],
  2056. "time": "2018-07-26T11:19:56+00:00"
  2057. },
  2058. {
  2059. "name": "symfony/translation",
  2060. "version": "v4.1.4",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://github.com/symfony/translation.git",
  2064. "reference": "fa2182669f7983b7aa5f1a770d053f79f0ef144f"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://api.github.com/repos/symfony/translation/zipball/fa2182669f7983b7aa5f1a770d053f79f0ef144f",
  2069. "reference": "fa2182669f7983b7aa5f1a770d053f79f0ef144f",
  2070. "shasum": ""
  2071. },
  2072. "require": {
  2073. "php": "^7.1.3",
  2074. "symfony/polyfill-mbstring": "~1.0"
  2075. },
  2076. "conflict": {
  2077. "symfony/config": "<3.4",
  2078. "symfony/dependency-injection": "<3.4",
  2079. "symfony/yaml": "<3.4"
  2080. },
  2081. "require-dev": {
  2082. "psr/log": "~1.0",
  2083. "symfony/config": "~3.4|~4.0",
  2084. "symfony/console": "~3.4|~4.0",
  2085. "symfony/dependency-injection": "~3.4|~4.0",
  2086. "symfony/finder": "~2.8|~3.0|~4.0",
  2087. "symfony/intl": "~3.4|~4.0",
  2088. "symfony/yaml": "~3.4|~4.0"
  2089. },
  2090. "suggest": {
  2091. "psr/log-implementation": "To use logging capability in translator",
  2092. "symfony/config": "",
  2093. "symfony/yaml": ""
  2094. },
  2095. "type": "library",
  2096. "extra": {
  2097. "branch-alias": {
  2098. "dev-master": "4.1-dev"
  2099. }
  2100. },
  2101. "autoload": {
  2102. "psr-4": {
  2103. "Symfony\\Component\\Translation\\": ""
  2104. },
  2105. "exclude-from-classmap": [
  2106. "/Tests/"
  2107. ]
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Fabien Potencier",
  2116. "email": "fabien@symfony.com"
  2117. },
  2118. {
  2119. "name": "Symfony Community",
  2120. "homepage": "https://symfony.com/contributors"
  2121. }
  2122. ],
  2123. "description": "Symfony Translation Component",
  2124. "homepage": "https://symfony.com",
  2125. "time": "2018-08-07T12:45:11+00:00"
  2126. },
  2127. {
  2128. "name": "symfony/var-dumper",
  2129. "version": "v3.4.15",
  2130. "source": {
  2131. "type": "git",
  2132. "url": "https://github.com/symfony/var-dumper.git",
  2133. "reference": "f62a394bd3de96f2f5e8f4c7d685035897fb3cb3"
  2134. },
  2135. "dist": {
  2136. "type": "zip",
  2137. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f62a394bd3de96f2f5e8f4c7d685035897fb3cb3",
  2138. "reference": "f62a394bd3de96f2f5e8f4c7d685035897fb3cb3",
  2139. "shasum": ""
  2140. },
  2141. "require": {
  2142. "php": "^5.5.9|>=7.0.8",
  2143. "symfony/polyfill-mbstring": "~1.0"
  2144. },
  2145. "conflict": {
  2146. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2147. },
  2148. "require-dev": {
  2149. "ext-iconv": "*",
  2150. "twig/twig": "~1.34|~2.4"
  2151. },
  2152. "suggest": {
  2153. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2154. "ext-intl": "To show region name in time zone dump",
  2155. "ext-symfony_debug": ""
  2156. },
  2157. "type": "library",
  2158. "extra": {
  2159. "branch-alias": {
  2160. "dev-master": "3.4-dev"
  2161. }
  2162. },
  2163. "autoload": {
  2164. "files": [
  2165. "Resources/functions/dump.php"
  2166. ],
  2167. "psr-4": {
  2168. "Symfony\\Component\\VarDumper\\": ""
  2169. },
  2170. "exclude-from-classmap": [
  2171. "/Tests/"
  2172. ]
  2173. },
  2174. "notification-url": "https://packagist.org/downloads/",
  2175. "license": [
  2176. "MIT"
  2177. ],
  2178. "authors": [
  2179. {
  2180. "name": "Nicolas Grekas",
  2181. "email": "p@tchwork.com"
  2182. },
  2183. {
  2184. "name": "Symfony Community",
  2185. "homepage": "https://symfony.com/contributors"
  2186. }
  2187. ],
  2188. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2189. "homepage": "https://symfony.com",
  2190. "keywords": [
  2191. "debug",
  2192. "dump"
  2193. ],
  2194. "time": "2018-07-26T11:19:56+00:00"
  2195. },
  2196. {
  2197. "name": "tijsverkoyen/css-to-inline-styles",
  2198. "version": "2.2.1",
  2199. "source": {
  2200. "type": "git",
  2201. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  2202. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  2203. },
  2204. "dist": {
  2205. "type": "zip",
  2206. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  2207. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  2208. "shasum": ""
  2209. },
  2210. "require": {
  2211. "php": "^5.5 || ^7.0",
  2212. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  2213. },
  2214. "require-dev": {
  2215. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2216. },
  2217. "type": "library",
  2218. "extra": {
  2219. "branch-alias": {
  2220. "dev-master": "2.2.x-dev"
  2221. }
  2222. },
  2223. "autoload": {
  2224. "psr-4": {
  2225. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  2226. }
  2227. },
  2228. "notification-url": "https://packagist.org/downloads/",
  2229. "license": [
  2230. "BSD-3-Clause"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "Tijs Verkoyen",
  2235. "email": "css_to_inline_styles@verkoyen.eu",
  2236. "role": "Developer"
  2237. }
  2238. ],
  2239. "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.",
  2240. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  2241. "time": "2017-11-27T11:13:29+00:00"
  2242. },
  2243. {
  2244. "name": "vlucas/phpdotenv",
  2245. "version": "v2.5.1",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/vlucas/phpdotenv.git",
  2249. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  2254. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  2255. "shasum": ""
  2256. },
  2257. "require": {
  2258. "php": ">=5.3.9"
  2259. },
  2260. "require-dev": {
  2261. "phpunit/phpunit": "^4.8.35 || ^5.0"
  2262. },
  2263. "type": "library",
  2264. "extra": {
  2265. "branch-alias": {
  2266. "dev-master": "2.5-dev"
  2267. }
  2268. },
  2269. "autoload": {
  2270. "psr-4": {
  2271. "Dotenv\\": "src/"
  2272. }
  2273. },
  2274. "notification-url": "https://packagist.org/downloads/",
  2275. "license": [
  2276. "BSD-3-Clause"
  2277. ],
  2278. "authors": [
  2279. {
  2280. "name": "Vance Lucas",
  2281. "email": "vance@vancelucas.com",
  2282. "homepage": "http://www.vancelucas.com"
  2283. }
  2284. ],
  2285. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2286. "keywords": [
  2287. "dotenv",
  2288. "env",
  2289. "environment"
  2290. ],
  2291. "time": "2018-07-29T20:33:41+00:00"
  2292. }
  2293. ],
  2294. "packages-dev": [
  2295. {
  2296. "name": "doctrine/cache",
  2297. "version": "v1.8.0",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/doctrine/cache.git",
  2301. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  2306. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "php": "~7.1"
  2311. },
  2312. "conflict": {
  2313. "doctrine/common": ">2.2,<2.4"
  2314. },
  2315. "require-dev": {
  2316. "alcaeus/mongo-php-adapter": "^1.1",
  2317. "doctrine/coding-standard": "^4.0",
  2318. "mongodb/mongodb": "^1.1",
  2319. "phpunit/phpunit": "^7.0",
  2320. "predis/predis": "~1.0"
  2321. },
  2322. "suggest": {
  2323. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  2324. },
  2325. "type": "library",
  2326. "extra": {
  2327. "branch-alias": {
  2328. "dev-master": "1.8.x-dev"
  2329. }
  2330. },
  2331. "autoload": {
  2332. "psr-4": {
  2333. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  2334. }
  2335. },
  2336. "notification-url": "https://packagist.org/downloads/",
  2337. "license": [
  2338. "MIT"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "Roman Borschel",
  2343. "email": "roman@code-factory.org"
  2344. },
  2345. {
  2346. "name": "Benjamin Eberlei",
  2347. "email": "kontakt@beberlei.de"
  2348. },
  2349. {
  2350. "name": "Guilherme Blanco",
  2351. "email": "guilhermeblanco@gmail.com"
  2352. },
  2353. {
  2354. "name": "Jonathan Wage",
  2355. "email": "jonwage@gmail.com"
  2356. },
  2357. {
  2358. "name": "Johannes Schmitt",
  2359. "email": "schmittjoh@gmail.com"
  2360. }
  2361. ],
  2362. "description": "Caching library offering an object-oriented API for many cache backends",
  2363. "homepage": "https://www.doctrine-project.org",
  2364. "keywords": [
  2365. "cache",
  2366. "caching"
  2367. ],
  2368. "time": "2018-08-21T18:01:43+00:00"
  2369. },
  2370. {
  2371. "name": "doctrine/dbal",
  2372. "version": "v2.8.0",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/doctrine/dbal.git",
  2376. "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/doctrine/dbal/zipball/5140a64c08b4b607b9bedaae0cedd26f04a0e621",
  2381. "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "doctrine/cache": "^1.0",
  2386. "doctrine/event-manager": "^1.0",
  2387. "ext-pdo": "*",
  2388. "php": "^7.1"
  2389. },
  2390. "require-dev": {
  2391. "doctrine/coding-standard": "^4.0",
  2392. "jetbrains/phpstorm-stubs": "^2018.1.2",
  2393. "phpstan/phpstan": "^0.10.1",
  2394. "phpunit/phpunit": "^7.1.2",
  2395. "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5",
  2396. "symfony/console": "^2.0.5|^3.0|^4.0",
  2397. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  2398. },
  2399. "suggest": {
  2400. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  2401. },
  2402. "bin": [
  2403. "bin/doctrine-dbal"
  2404. ],
  2405. "type": "library",
  2406. "extra": {
  2407. "branch-alias": {
  2408. "dev-master": "2.8.x-dev",
  2409. "dev-develop": "3.0.x-dev"
  2410. }
  2411. },
  2412. "autoload": {
  2413. "psr-0": {
  2414. "Doctrine\\DBAL\\": "lib/"
  2415. }
  2416. },
  2417. "notification-url": "https://packagist.org/downloads/",
  2418. "license": [
  2419. "MIT"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "Roman Borschel",
  2424. "email": "roman@code-factory.org"
  2425. },
  2426. {
  2427. "name": "Benjamin Eberlei",
  2428. "email": "kontakt@beberlei.de"
  2429. },
  2430. {
  2431. "name": "Guilherme Blanco",
  2432. "email": "guilhermeblanco@gmail.com"
  2433. },
  2434. {
  2435. "name": "Jonathan Wage",
  2436. "email": "jonwage@gmail.com"
  2437. }
  2438. ],
  2439. "description": "Database Abstraction Layer",
  2440. "homepage": "http://www.doctrine-project.org",
  2441. "keywords": [
  2442. "database",
  2443. "dbal",
  2444. "persistence",
  2445. "queryobject"
  2446. ],
  2447. "time": "2018-07-13T03:16:35+00:00"
  2448. },
  2449. {
  2450. "name": "doctrine/event-manager",
  2451. "version": "v1.0.0",
  2452. "source": {
  2453. "type": "git",
  2454. "url": "https://github.com/doctrine/event-manager.git",
  2455. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  2456. },
  2457. "dist": {
  2458. "type": "zip",
  2459. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  2460. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  2461. "shasum": ""
  2462. },
  2463. "require": {
  2464. "php": "^7.1"
  2465. },
  2466. "conflict": {
  2467. "doctrine/common": "<2.9@dev"
  2468. },
  2469. "require-dev": {
  2470. "doctrine/coding-standard": "^4.0",
  2471. "phpunit/phpunit": "^7.0"
  2472. },
  2473. "type": "library",
  2474. "extra": {
  2475. "branch-alias": {
  2476. "dev-master": "1.0.x-dev"
  2477. }
  2478. },
  2479. "autoload": {
  2480. "psr-4": {
  2481. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2482. }
  2483. },
  2484. "notification-url": "https://packagist.org/downloads/",
  2485. "license": [
  2486. "MIT"
  2487. ],
  2488. "authors": [
  2489. {
  2490. "name": "Roman Borschel",
  2491. "email": "roman@code-factory.org"
  2492. },
  2493. {
  2494. "name": "Benjamin Eberlei",
  2495. "email": "kontakt@beberlei.de"
  2496. },
  2497. {
  2498. "name": "Guilherme Blanco",
  2499. "email": "guilhermeblanco@gmail.com"
  2500. },
  2501. {
  2502. "name": "Jonathan Wage",
  2503. "email": "jonwage@gmail.com"
  2504. },
  2505. {
  2506. "name": "Johannes Schmitt",
  2507. "email": "schmittjoh@gmail.com"
  2508. },
  2509. {
  2510. "name": "Marco Pivetta",
  2511. "email": "ocramius@gmail.com"
  2512. }
  2513. ],
  2514. "description": "Doctrine Event Manager component",
  2515. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  2516. "keywords": [
  2517. "event",
  2518. "eventdispatcher",
  2519. "eventmanager"
  2520. ],
  2521. "time": "2018-06-11T11:59:03+00:00"
  2522. },
  2523. {
  2524. "name": "doctrine/instantiator",
  2525. "version": "1.1.0",
  2526. "source": {
  2527. "type": "git",
  2528. "url": "https://github.com/doctrine/instantiator.git",
  2529. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  2530. },
  2531. "dist": {
  2532. "type": "zip",
  2533. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  2534. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  2535. "shasum": ""
  2536. },
  2537. "require": {
  2538. "php": "^7.1"
  2539. },
  2540. "require-dev": {
  2541. "athletic/athletic": "~0.1.8",
  2542. "ext-pdo": "*",
  2543. "ext-phar": "*",
  2544. "phpunit/phpunit": "^6.2.3",
  2545. "squizlabs/php_codesniffer": "^3.0.2"
  2546. },
  2547. "type": "library",
  2548. "extra": {
  2549. "branch-alias": {
  2550. "dev-master": "1.2.x-dev"
  2551. }
  2552. },
  2553. "autoload": {
  2554. "psr-4": {
  2555. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2556. }
  2557. },
  2558. "notification-url": "https://packagist.org/downloads/",
  2559. "license": [
  2560. "MIT"
  2561. ],
  2562. "authors": [
  2563. {
  2564. "name": "Marco Pivetta",
  2565. "email": "ocramius@gmail.com",
  2566. "homepage": "http://ocramius.github.com/"
  2567. }
  2568. ],
  2569. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2570. "homepage": "https://github.com/doctrine/instantiator",
  2571. "keywords": [
  2572. "constructor",
  2573. "instantiate"
  2574. ],
  2575. "time": "2017-07-22T11:58:36+00:00"
  2576. },
  2577. {
  2578. "name": "filp/whoops",
  2579. "version": "2.2.1",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/filp/whoops.git",
  2583. "reference": "e79cd403fb77fc8963a99ecc30e80ddd885b3311"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/filp/whoops/zipball/e79cd403fb77fc8963a99ecc30e80ddd885b3311",
  2588. "reference": "e79cd403fb77fc8963a99ecc30e80ddd885b3311",
  2589. "shasum": ""
  2590. },
  2591. "require": {
  2592. "php": "^5.5.9 || ^7.0",
  2593. "psr/log": "^1.0.1"
  2594. },
  2595. "require-dev": {
  2596. "mockery/mockery": "^0.9 || ^1.0",
  2597. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2598. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  2599. },
  2600. "suggest": {
  2601. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  2602. "whoops/soap": "Formats errors as SOAP responses"
  2603. },
  2604. "type": "library",
  2605. "extra": {
  2606. "branch-alias": {
  2607. "dev-master": "2.2-dev"
  2608. }
  2609. },
  2610. "autoload": {
  2611. "psr-4": {
  2612. "Whoops\\": "src/Whoops/"
  2613. }
  2614. },
  2615. "notification-url": "https://packagist.org/downloads/",
  2616. "license": [
  2617. "MIT"
  2618. ],
  2619. "authors": [
  2620. {
  2621. "name": "Filipe Dobreira",
  2622. "homepage": "https://github.com/filp",
  2623. "role": "Developer"
  2624. }
  2625. ],
  2626. "description": "php error handling for cool kids",
  2627. "homepage": "https://filp.github.io/whoops/",
  2628. "keywords": [
  2629. "error",
  2630. "exception",
  2631. "handling",
  2632. "library",
  2633. "throwable",
  2634. "whoops"
  2635. ],
  2636. "time": "2018-06-30T13:14:06+00:00"
  2637. },
  2638. {
  2639. "name": "fzaninotto/faker",
  2640. "version": "v1.8.0",
  2641. "source": {
  2642. "type": "git",
  2643. "url": "https://github.com/fzaninotto/Faker.git",
  2644. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  2645. },
  2646. "dist": {
  2647. "type": "zip",
  2648. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  2649. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  2650. "shasum": ""
  2651. },
  2652. "require": {
  2653. "php": "^5.3.3 || ^7.0"
  2654. },
  2655. "require-dev": {
  2656. "ext-intl": "*",
  2657. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2658. "squizlabs/php_codesniffer": "^1.5"
  2659. },
  2660. "type": "library",
  2661. "extra": {
  2662. "branch-alias": {
  2663. "dev-master": "1.8-dev"
  2664. }
  2665. },
  2666. "autoload": {
  2667. "psr-4": {
  2668. "Faker\\": "src/Faker/"
  2669. }
  2670. },
  2671. "notification-url": "https://packagist.org/downloads/",
  2672. "license": [
  2673. "MIT"
  2674. ],
  2675. "authors": [
  2676. {
  2677. "name": "François Zaninotto"
  2678. }
  2679. ],
  2680. "description": "Faker is a PHP library that generates fake data for you.",
  2681. "keywords": [
  2682. "data",
  2683. "faker",
  2684. "fixtures"
  2685. ],
  2686. "time": "2018-07-12T10:23:15+00:00"
  2687. },
  2688. {
  2689. "name": "hamcrest/hamcrest-php",
  2690. "version": "v1.2.2",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/hamcrest/hamcrest-php.git",
  2694. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c",
  2699. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
  2700. "shasum": ""
  2701. },
  2702. "require": {
  2703. "php": ">=5.3.2"
  2704. },
  2705. "replace": {
  2706. "cordoval/hamcrest-php": "*",
  2707. "davedevelopment/hamcrest-php": "*",
  2708. "kodova/hamcrest-php": "*"
  2709. },
  2710. "require-dev": {
  2711. "phpunit/php-file-iterator": "1.3.3",
  2712. "satooshi/php-coveralls": "dev-master"
  2713. },
  2714. "type": "library",
  2715. "autoload": {
  2716. "classmap": [
  2717. "hamcrest"
  2718. ],
  2719. "files": [
  2720. "hamcrest/Hamcrest.php"
  2721. ]
  2722. },
  2723. "notification-url": "https://packagist.org/downloads/",
  2724. "license": [
  2725. "BSD"
  2726. ],
  2727. "description": "This is the PHP port of Hamcrest Matchers",
  2728. "keywords": [
  2729. "test"
  2730. ],
  2731. "time": "2015-05-11T14:41:42+00:00"
  2732. },
  2733. {
  2734. "name": "mockery/mockery",
  2735. "version": "0.9.9",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/mockery/mockery.git",
  2739. "reference": "6fdb61243844dc924071d3404bb23994ea0b6856"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/mockery/mockery/zipball/6fdb61243844dc924071d3404bb23994ea0b6856",
  2744. "reference": "6fdb61243844dc924071d3404bb23994ea0b6856",
  2745. "shasum": ""
  2746. },
  2747. "require": {
  2748. "hamcrest/hamcrest-php": "~1.1",
  2749. "lib-pcre": ">=7.0",
  2750. "php": ">=5.3.2"
  2751. },
  2752. "require-dev": {
  2753. "phpunit/phpunit": "~4.0"
  2754. },
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-master": "0.9.x-dev"
  2759. }
  2760. },
  2761. "autoload": {
  2762. "psr-0": {
  2763. "Mockery": "library/"
  2764. }
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "BSD-3-Clause"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Pádraic Brady",
  2773. "email": "padraic.brady@gmail.com",
  2774. "homepage": "http://blog.astrumfutura.com"
  2775. },
  2776. {
  2777. "name": "Dave Marshall",
  2778. "email": "dave.marshall@atstsolutions.co.uk",
  2779. "homepage": "http://davedevelopment.co.uk"
  2780. }
  2781. ],
  2782. "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.",
  2783. "homepage": "http://github.com/padraic/mockery",
  2784. "keywords": [
  2785. "BDD",
  2786. "TDD",
  2787. "library",
  2788. "mock",
  2789. "mock objects",
  2790. "mockery",
  2791. "stub",
  2792. "test",
  2793. "test double",
  2794. "testing"
  2795. ],
  2796. "time": "2017-02-28T12:52:32+00:00"
  2797. },
  2798. {
  2799. "name": "myclabs/deep-copy",
  2800. "version": "1.8.1",
  2801. "source": {
  2802. "type": "git",
  2803. "url": "https://github.com/myclabs/DeepCopy.git",
  2804. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  2805. },
  2806. "dist": {
  2807. "type": "zip",
  2808. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  2809. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  2810. "shasum": ""
  2811. },
  2812. "require": {
  2813. "php": "^7.1"
  2814. },
  2815. "replace": {
  2816. "myclabs/deep-copy": "self.version"
  2817. },
  2818. "require-dev": {
  2819. "doctrine/collections": "^1.0",
  2820. "doctrine/common": "^2.6",
  2821. "phpunit/phpunit": "^7.1"
  2822. },
  2823. "type": "library",
  2824. "autoload": {
  2825. "psr-4": {
  2826. "DeepCopy\\": "src/DeepCopy/"
  2827. },
  2828. "files": [
  2829. "src/DeepCopy/deep_copy.php"
  2830. ]
  2831. },
  2832. "notification-url": "https://packagist.org/downloads/",
  2833. "license": [
  2834. "MIT"
  2835. ],
  2836. "description": "Create deep copies (clones) of your objects",
  2837. "keywords": [
  2838. "clone",
  2839. "copy",
  2840. "duplicate",
  2841. "object",
  2842. "object graph"
  2843. ],
  2844. "time": "2018-06-11T23:09:50+00:00"
  2845. },
  2846. {
  2847. "name": "phar-io/manifest",
  2848. "version": "1.0.1",
  2849. "source": {
  2850. "type": "git",
  2851. "url": "https://github.com/phar-io/manifest.git",
  2852. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  2853. },
  2854. "dist": {
  2855. "type": "zip",
  2856. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  2857. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  2858. "shasum": ""
  2859. },
  2860. "require": {
  2861. "ext-dom": "*",
  2862. "ext-phar": "*",
  2863. "phar-io/version": "^1.0.1",
  2864. "php": "^5.6 || ^7.0"
  2865. },
  2866. "type": "library",
  2867. "extra": {
  2868. "branch-alias": {
  2869. "dev-master": "1.0.x-dev"
  2870. }
  2871. },
  2872. "autoload": {
  2873. "classmap": [
  2874. "src/"
  2875. ]
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "BSD-3-Clause"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "Arne Blankerts",
  2884. "email": "arne@blankerts.de",
  2885. "role": "Developer"
  2886. },
  2887. {
  2888. "name": "Sebastian Heuer",
  2889. "email": "sebastian@phpeople.de",
  2890. "role": "Developer"
  2891. },
  2892. {
  2893. "name": "Sebastian Bergmann",
  2894. "email": "sebastian@phpunit.de",
  2895. "role": "Developer"
  2896. }
  2897. ],
  2898. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2899. "time": "2017-03-05T18:14:27+00:00"
  2900. },
  2901. {
  2902. "name": "phar-io/version",
  2903. "version": "1.0.1",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/phar-io/version.git",
  2907. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  2912. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  2913. "shasum": ""
  2914. },
  2915. "require": {
  2916. "php": "^5.6 || ^7.0"
  2917. },
  2918. "type": "library",
  2919. "autoload": {
  2920. "classmap": [
  2921. "src/"
  2922. ]
  2923. },
  2924. "notification-url": "https://packagist.org/downloads/",
  2925. "license": [
  2926. "BSD-3-Clause"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Arne Blankerts",
  2931. "email": "arne@blankerts.de",
  2932. "role": "Developer"
  2933. },
  2934. {
  2935. "name": "Sebastian Heuer",
  2936. "email": "sebastian@phpeople.de",
  2937. "role": "Developer"
  2938. },
  2939. {
  2940. "name": "Sebastian Bergmann",
  2941. "email": "sebastian@phpunit.de",
  2942. "role": "Developer"
  2943. }
  2944. ],
  2945. "description": "Library for handling version information and constraints",
  2946. "time": "2017-03-05T17:38:23+00:00"
  2947. },
  2948. {
  2949. "name": "phpdocumentor/reflection-common",
  2950. "version": "1.0.1",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2954. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2959. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2960. "shasum": ""
  2961. },
  2962. "require": {
  2963. "php": ">=5.5"
  2964. },
  2965. "require-dev": {
  2966. "phpunit/phpunit": "^4.6"
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-master": "1.0.x-dev"
  2972. }
  2973. },
  2974. "autoload": {
  2975. "psr-4": {
  2976. "phpDocumentor\\Reflection\\": [
  2977. "src"
  2978. ]
  2979. }
  2980. },
  2981. "notification-url": "https://packagist.org/downloads/",
  2982. "license": [
  2983. "MIT"
  2984. ],
  2985. "authors": [
  2986. {
  2987. "name": "Jaap van Otterdijk",
  2988. "email": "opensource@ijaap.nl"
  2989. }
  2990. ],
  2991. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2992. "homepage": "http://www.phpdoc.org",
  2993. "keywords": [
  2994. "FQSEN",
  2995. "phpDocumentor",
  2996. "phpdoc",
  2997. "reflection",
  2998. "static analysis"
  2999. ],
  3000. "time": "2017-09-11T18:02:19+00:00"
  3001. },
  3002. {
  3003. "name": "phpdocumentor/reflection-docblock",
  3004. "version": "4.3.0",
  3005. "source": {
  3006. "type": "git",
  3007. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3008. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  3009. },
  3010. "dist": {
  3011. "type": "zip",
  3012. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  3013. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  3014. "shasum": ""
  3015. },
  3016. "require": {
  3017. "php": "^7.0",
  3018. "phpdocumentor/reflection-common": "^1.0.0",
  3019. "phpdocumentor/type-resolver": "^0.4.0",
  3020. "webmozart/assert": "^1.0"
  3021. },
  3022. "require-dev": {
  3023. "doctrine/instantiator": "~1.0.5",
  3024. "mockery/mockery": "^1.0",
  3025. "phpunit/phpunit": "^6.4"
  3026. },
  3027. "type": "library",
  3028. "extra": {
  3029. "branch-alias": {
  3030. "dev-master": "4.x-dev"
  3031. }
  3032. },
  3033. "autoload": {
  3034. "psr-4": {
  3035. "phpDocumentor\\Reflection\\": [
  3036. "src/"
  3037. ]
  3038. }
  3039. },
  3040. "notification-url": "https://packagist.org/downloads/",
  3041. "license": [
  3042. "MIT"
  3043. ],
  3044. "authors": [
  3045. {
  3046. "name": "Mike van Riel",
  3047. "email": "me@mikevanriel.com"
  3048. }
  3049. ],
  3050. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3051. "time": "2017-11-30T07:14:17+00:00"
  3052. },
  3053. {
  3054. "name": "phpdocumentor/type-resolver",
  3055. "version": "0.4.0",
  3056. "source": {
  3057. "type": "git",
  3058. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3059. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  3060. },
  3061. "dist": {
  3062. "type": "zip",
  3063. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  3064. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  3065. "shasum": ""
  3066. },
  3067. "require": {
  3068. "php": "^5.5 || ^7.0",
  3069. "phpdocumentor/reflection-common": "^1.0"
  3070. },
  3071. "require-dev": {
  3072. "mockery/mockery": "^0.9.4",
  3073. "phpunit/phpunit": "^5.2||^4.8.24"
  3074. },
  3075. "type": "library",
  3076. "extra": {
  3077. "branch-alias": {
  3078. "dev-master": "1.0.x-dev"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "phpDocumentor\\Reflection\\": [
  3084. "src/"
  3085. ]
  3086. }
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "Mike van Riel",
  3095. "email": "me@mikevanriel.com"
  3096. }
  3097. ],
  3098. "time": "2017-07-14T14:27:02+00:00"
  3099. },
  3100. {
  3101. "name": "phpspec/prophecy",
  3102. "version": "1.8.0",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/phpspec/prophecy.git",
  3106. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  3111. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  3112. "shasum": ""
  3113. },
  3114. "require": {
  3115. "doctrine/instantiator": "^1.0.2",
  3116. "php": "^5.3|^7.0",
  3117. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  3118. "sebastian/comparator": "^1.1|^2.0|^3.0",
  3119. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  3120. },
  3121. "require-dev": {
  3122. "phpspec/phpspec": "^2.5|^3.2",
  3123. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  3124. },
  3125. "type": "library",
  3126. "extra": {
  3127. "branch-alias": {
  3128. "dev-master": "1.8.x-dev"
  3129. }
  3130. },
  3131. "autoload": {
  3132. "psr-0": {
  3133. "Prophecy\\": "src/"
  3134. }
  3135. },
  3136. "notification-url": "https://packagist.org/downloads/",
  3137. "license": [
  3138. "MIT"
  3139. ],
  3140. "authors": [
  3141. {
  3142. "name": "Konstantin Kudryashov",
  3143. "email": "ever.zet@gmail.com",
  3144. "homepage": "http://everzet.com"
  3145. },
  3146. {
  3147. "name": "Marcello Duarte",
  3148. "email": "marcello.duarte@gmail.com"
  3149. }
  3150. ],
  3151. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3152. "homepage": "https://github.com/phpspec/prophecy",
  3153. "keywords": [
  3154. "Double",
  3155. "Dummy",
  3156. "fake",
  3157. "mock",
  3158. "spy",
  3159. "stub"
  3160. ],
  3161. "time": "2018-08-05T17:53:17+00:00"
  3162. },
  3163. {
  3164. "name": "phpunit/php-code-coverage",
  3165. "version": "5.3.2",
  3166. "source": {
  3167. "type": "git",
  3168. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3169. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  3170. },
  3171. "dist": {
  3172. "type": "zip",
  3173. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  3174. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  3175. "shasum": ""
  3176. },
  3177. "require": {
  3178. "ext-dom": "*",
  3179. "ext-xmlwriter": "*",
  3180. "php": "^7.0",
  3181. "phpunit/php-file-iterator": "^1.4.2",
  3182. "phpunit/php-text-template": "^1.2.1",
  3183. "phpunit/php-token-stream": "^2.0.1",
  3184. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3185. "sebastian/environment": "^3.0",
  3186. "sebastian/version": "^2.0.1",
  3187. "theseer/tokenizer": "^1.1"
  3188. },
  3189. "require-dev": {
  3190. "phpunit/phpunit": "^6.0"
  3191. },
  3192. "suggest": {
  3193. "ext-xdebug": "^2.5.5"
  3194. },
  3195. "type": "library",
  3196. "extra": {
  3197. "branch-alias": {
  3198. "dev-master": "5.3.x-dev"
  3199. }
  3200. },
  3201. "autoload": {
  3202. "classmap": [
  3203. "src/"
  3204. ]
  3205. },
  3206. "notification-url": "https://packagist.org/downloads/",
  3207. "license": [
  3208. "BSD-3-Clause"
  3209. ],
  3210. "authors": [
  3211. {
  3212. "name": "Sebastian Bergmann",
  3213. "email": "sebastian@phpunit.de",
  3214. "role": "lead"
  3215. }
  3216. ],
  3217. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3218. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3219. "keywords": [
  3220. "coverage",
  3221. "testing",
  3222. "xunit"
  3223. ],
  3224. "time": "2018-04-06T15:36:58+00:00"
  3225. },
  3226. {
  3227. "name": "phpunit/php-file-iterator",
  3228. "version": "1.4.5",
  3229. "source": {
  3230. "type": "git",
  3231. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3232. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  3233. },
  3234. "dist": {
  3235. "type": "zip",
  3236. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3237. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3238. "shasum": ""
  3239. },
  3240. "require": {
  3241. "php": ">=5.3.3"
  3242. },
  3243. "type": "library",
  3244. "extra": {
  3245. "branch-alias": {
  3246. "dev-master": "1.4.x-dev"
  3247. }
  3248. },
  3249. "autoload": {
  3250. "classmap": [
  3251. "src/"
  3252. ]
  3253. },
  3254. "notification-url": "https://packagist.org/downloads/",
  3255. "license": [
  3256. "BSD-3-Clause"
  3257. ],
  3258. "authors": [
  3259. {
  3260. "name": "Sebastian Bergmann",
  3261. "email": "sb@sebastian-bergmann.de",
  3262. "role": "lead"
  3263. }
  3264. ],
  3265. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3266. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3267. "keywords": [
  3268. "filesystem",
  3269. "iterator"
  3270. ],
  3271. "time": "2017-11-27T13:52:08+00:00"
  3272. },
  3273. {
  3274. "name": "phpunit/php-text-template",
  3275. "version": "1.2.1",
  3276. "source": {
  3277. "type": "git",
  3278. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3279. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3280. },
  3281. "dist": {
  3282. "type": "zip",
  3283. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3284. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3285. "shasum": ""
  3286. },
  3287. "require": {
  3288. "php": ">=5.3.3"
  3289. },
  3290. "type": "library",
  3291. "autoload": {
  3292. "classmap": [
  3293. "src/"
  3294. ]
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "BSD-3-Clause"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Sebastian Bergmann",
  3303. "email": "sebastian@phpunit.de",
  3304. "role": "lead"
  3305. }
  3306. ],
  3307. "description": "Simple template engine.",
  3308. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3309. "keywords": [
  3310. "template"
  3311. ],
  3312. "time": "2015-06-21T13:50:34+00:00"
  3313. },
  3314. {
  3315. "name": "phpunit/php-timer",
  3316. "version": "1.0.9",
  3317. "source": {
  3318. "type": "git",
  3319. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3320. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  3321. },
  3322. "dist": {
  3323. "type": "zip",
  3324. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3325. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3326. "shasum": ""
  3327. },
  3328. "require": {
  3329. "php": "^5.3.3 || ^7.0"
  3330. },
  3331. "require-dev": {
  3332. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3333. },
  3334. "type": "library",
  3335. "extra": {
  3336. "branch-alias": {
  3337. "dev-master": "1.0-dev"
  3338. }
  3339. },
  3340. "autoload": {
  3341. "classmap": [
  3342. "src/"
  3343. ]
  3344. },
  3345. "notification-url": "https://packagist.org/downloads/",
  3346. "license": [
  3347. "BSD-3-Clause"
  3348. ],
  3349. "authors": [
  3350. {
  3351. "name": "Sebastian Bergmann",
  3352. "email": "sb@sebastian-bergmann.de",
  3353. "role": "lead"
  3354. }
  3355. ],
  3356. "description": "Utility class for timing",
  3357. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3358. "keywords": [
  3359. "timer"
  3360. ],
  3361. "time": "2017-02-26T11:10:40+00:00"
  3362. },
  3363. {
  3364. "name": "phpunit/php-token-stream",
  3365. "version": "2.0.2",
  3366. "source": {
  3367. "type": "git",
  3368. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3369. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  3370. },
  3371. "dist": {
  3372. "type": "zip",
  3373. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  3374. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  3375. "shasum": ""
  3376. },
  3377. "require": {
  3378. "ext-tokenizer": "*",
  3379. "php": "^7.0"
  3380. },
  3381. "require-dev": {
  3382. "phpunit/phpunit": "^6.2.4"
  3383. },
  3384. "type": "library",
  3385. "extra": {
  3386. "branch-alias": {
  3387. "dev-master": "2.0-dev"
  3388. }
  3389. },
  3390. "autoload": {
  3391. "classmap": [
  3392. "src/"
  3393. ]
  3394. },
  3395. "notification-url": "https://packagist.org/downloads/",
  3396. "license": [
  3397. "BSD-3-Clause"
  3398. ],
  3399. "authors": [
  3400. {
  3401. "name": "Sebastian Bergmann",
  3402. "email": "sebastian@phpunit.de"
  3403. }
  3404. ],
  3405. "description": "Wrapper around PHP's tokenizer extension.",
  3406. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3407. "keywords": [
  3408. "tokenizer"
  3409. ],
  3410. "time": "2017-11-27T05:48:46+00:00"
  3411. },
  3412. {
  3413. "name": "phpunit/phpunit",
  3414. "version": "6.5.13",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3418. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  3423. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  3424. "shasum": ""
  3425. },
  3426. "require": {
  3427. "ext-dom": "*",
  3428. "ext-json": "*",
  3429. "ext-libxml": "*",
  3430. "ext-mbstring": "*",
  3431. "ext-xml": "*",
  3432. "myclabs/deep-copy": "^1.6.1",
  3433. "phar-io/manifest": "^1.0.1",
  3434. "phar-io/version": "^1.0",
  3435. "php": "^7.0",
  3436. "phpspec/prophecy": "^1.7",
  3437. "phpunit/php-code-coverage": "^5.3",
  3438. "phpunit/php-file-iterator": "^1.4.3",
  3439. "phpunit/php-text-template": "^1.2.1",
  3440. "phpunit/php-timer": "^1.0.9",
  3441. "phpunit/phpunit-mock-objects": "^5.0.9",
  3442. "sebastian/comparator": "^2.1",
  3443. "sebastian/diff": "^2.0",
  3444. "sebastian/environment": "^3.1",
  3445. "sebastian/exporter": "^3.1",
  3446. "sebastian/global-state": "^2.0",
  3447. "sebastian/object-enumerator": "^3.0.3",
  3448. "sebastian/resource-operations": "^1.0",
  3449. "sebastian/version": "^2.0.1"
  3450. },
  3451. "conflict": {
  3452. "phpdocumentor/reflection-docblock": "3.0.2",
  3453. "phpunit/dbunit": "<3.0"
  3454. },
  3455. "require-dev": {
  3456. "ext-pdo": "*"
  3457. },
  3458. "suggest": {
  3459. "ext-xdebug": "*",
  3460. "phpunit/php-invoker": "^1.1"
  3461. },
  3462. "bin": [
  3463. "phpunit"
  3464. ],
  3465. "type": "library",
  3466. "extra": {
  3467. "branch-alias": {
  3468. "dev-master": "6.5.x-dev"
  3469. }
  3470. },
  3471. "autoload": {
  3472. "classmap": [
  3473. "src/"
  3474. ]
  3475. },
  3476. "notification-url": "https://packagist.org/downloads/",
  3477. "license": [
  3478. "BSD-3-Clause"
  3479. ],
  3480. "authors": [
  3481. {
  3482. "name": "Sebastian Bergmann",
  3483. "email": "sebastian@phpunit.de",
  3484. "role": "lead"
  3485. }
  3486. ],
  3487. "description": "The PHP Unit Testing framework.",
  3488. "homepage": "https://phpunit.de/",
  3489. "keywords": [
  3490. "phpunit",
  3491. "testing",
  3492. "xunit"
  3493. ],
  3494. "time": "2018-09-08T15:10:43+00:00"
  3495. },
  3496. {
  3497. "name": "phpunit/phpunit-mock-objects",
  3498. "version": "5.0.10",
  3499. "source": {
  3500. "type": "git",
  3501. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3502. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  3503. },
  3504. "dist": {
  3505. "type": "zip",
  3506. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  3507. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  3508. "shasum": ""
  3509. },
  3510. "require": {
  3511. "doctrine/instantiator": "^1.0.5",
  3512. "php": "^7.0",
  3513. "phpunit/php-text-template": "^1.2.1",
  3514. "sebastian/exporter": "^3.1"
  3515. },
  3516. "conflict": {
  3517. "phpunit/phpunit": "<6.0"
  3518. },
  3519. "require-dev": {
  3520. "phpunit/phpunit": "^6.5.11"
  3521. },
  3522. "suggest": {
  3523. "ext-soap": "*"
  3524. },
  3525. "type": "library",
  3526. "extra": {
  3527. "branch-alias": {
  3528. "dev-master": "5.0.x-dev"
  3529. }
  3530. },
  3531. "autoload": {
  3532. "classmap": [
  3533. "src/"
  3534. ]
  3535. },
  3536. "notification-url": "https://packagist.org/downloads/",
  3537. "license": [
  3538. "BSD-3-Clause"
  3539. ],
  3540. "authors": [
  3541. {
  3542. "name": "Sebastian Bergmann",
  3543. "email": "sebastian@phpunit.de",
  3544. "role": "lead"
  3545. }
  3546. ],
  3547. "description": "Mock Object library for PHPUnit",
  3548. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3549. "keywords": [
  3550. "mock",
  3551. "xunit"
  3552. ],
  3553. "time": "2018-08-09T05:50:03+00:00"
  3554. },
  3555. {
  3556. "name": "sebastian/code-unit-reverse-lookup",
  3557. "version": "1.0.1",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3561. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3566. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3567. "shasum": ""
  3568. },
  3569. "require": {
  3570. "php": "^5.6 || ^7.0"
  3571. },
  3572. "require-dev": {
  3573. "phpunit/phpunit": "^5.7 || ^6.0"
  3574. },
  3575. "type": "library",
  3576. "extra": {
  3577. "branch-alias": {
  3578. "dev-master": "1.0.x-dev"
  3579. }
  3580. },
  3581. "autoload": {
  3582. "classmap": [
  3583. "src/"
  3584. ]
  3585. },
  3586. "notification-url": "https://packagist.org/downloads/",
  3587. "license": [
  3588. "BSD-3-Clause"
  3589. ],
  3590. "authors": [
  3591. {
  3592. "name": "Sebastian Bergmann",
  3593. "email": "sebastian@phpunit.de"
  3594. }
  3595. ],
  3596. "description": "Looks up which function or method a line of code belongs to",
  3597. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3598. "time": "2017-03-04T06:30:41+00:00"
  3599. },
  3600. {
  3601. "name": "sebastian/comparator",
  3602. "version": "2.1.3",
  3603. "source": {
  3604. "type": "git",
  3605. "url": "https://github.com/sebastianbergmann/comparator.git",
  3606. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  3607. },
  3608. "dist": {
  3609. "type": "zip",
  3610. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  3611. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  3612. "shasum": ""
  3613. },
  3614. "require": {
  3615. "php": "^7.0",
  3616. "sebastian/diff": "^2.0 || ^3.0",
  3617. "sebastian/exporter": "^3.1"
  3618. },
  3619. "require-dev": {
  3620. "phpunit/phpunit": "^6.4"
  3621. },
  3622. "type": "library",
  3623. "extra": {
  3624. "branch-alias": {
  3625. "dev-master": "2.1.x-dev"
  3626. }
  3627. },
  3628. "autoload": {
  3629. "classmap": [
  3630. "src/"
  3631. ]
  3632. },
  3633. "notification-url": "https://packagist.org/downloads/",
  3634. "license": [
  3635. "BSD-3-Clause"
  3636. ],
  3637. "authors": [
  3638. {
  3639. "name": "Jeff Welch",
  3640. "email": "whatthejeff@gmail.com"
  3641. },
  3642. {
  3643. "name": "Volker Dusch",
  3644. "email": "github@wallbash.com"
  3645. },
  3646. {
  3647. "name": "Bernhard Schussek",
  3648. "email": "bschussek@2bepublished.at"
  3649. },
  3650. {
  3651. "name": "Sebastian Bergmann",
  3652. "email": "sebastian@phpunit.de"
  3653. }
  3654. ],
  3655. "description": "Provides the functionality to compare PHP values for equality",
  3656. "homepage": "https://github.com/sebastianbergmann/comparator",
  3657. "keywords": [
  3658. "comparator",
  3659. "compare",
  3660. "equality"
  3661. ],
  3662. "time": "2018-02-01T13:46:46+00:00"
  3663. },
  3664. {
  3665. "name": "sebastian/diff",
  3666. "version": "2.0.1",
  3667. "source": {
  3668. "type": "git",
  3669. "url": "https://github.com/sebastianbergmann/diff.git",
  3670. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  3671. },
  3672. "dist": {
  3673. "type": "zip",
  3674. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3675. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3676. "shasum": ""
  3677. },
  3678. "require": {
  3679. "php": "^7.0"
  3680. },
  3681. "require-dev": {
  3682. "phpunit/phpunit": "^6.2"
  3683. },
  3684. "type": "library",
  3685. "extra": {
  3686. "branch-alias": {
  3687. "dev-master": "2.0-dev"
  3688. }
  3689. },
  3690. "autoload": {
  3691. "classmap": [
  3692. "src/"
  3693. ]
  3694. },
  3695. "notification-url": "https://packagist.org/downloads/",
  3696. "license": [
  3697. "BSD-3-Clause"
  3698. ],
  3699. "authors": [
  3700. {
  3701. "name": "Kore Nordmann",
  3702. "email": "mail@kore-nordmann.de"
  3703. },
  3704. {
  3705. "name": "Sebastian Bergmann",
  3706. "email": "sebastian@phpunit.de"
  3707. }
  3708. ],
  3709. "description": "Diff implementation",
  3710. "homepage": "https://github.com/sebastianbergmann/diff",
  3711. "keywords": [
  3712. "diff"
  3713. ],
  3714. "time": "2017-08-03T08:09:46+00:00"
  3715. },
  3716. {
  3717. "name": "sebastian/environment",
  3718. "version": "3.1.0",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://github.com/sebastianbergmann/environment.git",
  3722. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3727. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3728. "shasum": ""
  3729. },
  3730. "require": {
  3731. "php": "^7.0"
  3732. },
  3733. "require-dev": {
  3734. "phpunit/phpunit": "^6.1"
  3735. },
  3736. "type": "library",
  3737. "extra": {
  3738. "branch-alias": {
  3739. "dev-master": "3.1.x-dev"
  3740. }
  3741. },
  3742. "autoload": {
  3743. "classmap": [
  3744. "src/"
  3745. ]
  3746. },
  3747. "notification-url": "https://packagist.org/downloads/",
  3748. "license": [
  3749. "BSD-3-Clause"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "Sebastian Bergmann",
  3754. "email": "sebastian@phpunit.de"
  3755. }
  3756. ],
  3757. "description": "Provides functionality to handle HHVM/PHP environments",
  3758. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3759. "keywords": [
  3760. "Xdebug",
  3761. "environment",
  3762. "hhvm"
  3763. ],
  3764. "time": "2017-07-01T08:51:00+00:00"
  3765. },
  3766. {
  3767. "name": "sebastian/exporter",
  3768. "version": "3.1.0",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://github.com/sebastianbergmann/exporter.git",
  3772. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  3777. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  3778. "shasum": ""
  3779. },
  3780. "require": {
  3781. "php": "^7.0",
  3782. "sebastian/recursion-context": "^3.0"
  3783. },
  3784. "require-dev": {
  3785. "ext-mbstring": "*",
  3786. "phpunit/phpunit": "^6.0"
  3787. },
  3788. "type": "library",
  3789. "extra": {
  3790. "branch-alias": {
  3791. "dev-master": "3.1.x-dev"
  3792. }
  3793. },
  3794. "autoload": {
  3795. "classmap": [
  3796. "src/"
  3797. ]
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "BSD-3-Clause"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Jeff Welch",
  3806. "email": "whatthejeff@gmail.com"
  3807. },
  3808. {
  3809. "name": "Volker Dusch",
  3810. "email": "github@wallbash.com"
  3811. },
  3812. {
  3813. "name": "Bernhard Schussek",
  3814. "email": "bschussek@2bepublished.at"
  3815. },
  3816. {
  3817. "name": "Sebastian Bergmann",
  3818. "email": "sebastian@phpunit.de"
  3819. },
  3820. {
  3821. "name": "Adam Harvey",
  3822. "email": "aharvey@php.net"
  3823. }
  3824. ],
  3825. "description": "Provides the functionality to export PHP variables for visualization",
  3826. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3827. "keywords": [
  3828. "export",
  3829. "exporter"
  3830. ],
  3831. "time": "2017-04-03T13:19:02+00:00"
  3832. },
  3833. {
  3834. "name": "sebastian/global-state",
  3835. "version": "2.0.0",
  3836. "source": {
  3837. "type": "git",
  3838. "url": "https://github.com/sebastianbergmann/global-state.git",
  3839. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  3840. },
  3841. "dist": {
  3842. "type": "zip",
  3843. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3844. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3845. "shasum": ""
  3846. },
  3847. "require": {
  3848. "php": "^7.0"
  3849. },
  3850. "require-dev": {
  3851. "phpunit/phpunit": "^6.0"
  3852. },
  3853. "suggest": {
  3854. "ext-uopz": "*"
  3855. },
  3856. "type": "library",
  3857. "extra": {
  3858. "branch-alias": {
  3859. "dev-master": "2.0-dev"
  3860. }
  3861. },
  3862. "autoload": {
  3863. "classmap": [
  3864. "src/"
  3865. ]
  3866. },
  3867. "notification-url": "https://packagist.org/downloads/",
  3868. "license": [
  3869. "BSD-3-Clause"
  3870. ],
  3871. "authors": [
  3872. {
  3873. "name": "Sebastian Bergmann",
  3874. "email": "sebastian@phpunit.de"
  3875. }
  3876. ],
  3877. "description": "Snapshotting of global state",
  3878. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3879. "keywords": [
  3880. "global state"
  3881. ],
  3882. "time": "2017-04-27T15:39:26+00:00"
  3883. },
  3884. {
  3885. "name": "sebastian/object-enumerator",
  3886. "version": "3.0.3",
  3887. "source": {
  3888. "type": "git",
  3889. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3890. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  3891. },
  3892. "dist": {
  3893. "type": "zip",
  3894. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3895. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3896. "shasum": ""
  3897. },
  3898. "require": {
  3899. "php": "^7.0",
  3900. "sebastian/object-reflector": "^1.1.1",
  3901. "sebastian/recursion-context": "^3.0"
  3902. },
  3903. "require-dev": {
  3904. "phpunit/phpunit": "^6.0"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-master": "3.0.x-dev"
  3910. }
  3911. },
  3912. "autoload": {
  3913. "classmap": [
  3914. "src/"
  3915. ]
  3916. },
  3917. "notification-url": "https://packagist.org/downloads/",
  3918. "license": [
  3919. "BSD-3-Clause"
  3920. ],
  3921. "authors": [
  3922. {
  3923. "name": "Sebastian Bergmann",
  3924. "email": "sebastian@phpunit.de"
  3925. }
  3926. ],
  3927. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3928. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3929. "time": "2017-08-03T12:35:26+00:00"
  3930. },
  3931. {
  3932. "name": "sebastian/object-reflector",
  3933. "version": "1.1.1",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3937. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  3942. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  3943. "shasum": ""
  3944. },
  3945. "require": {
  3946. "php": "^7.0"
  3947. },
  3948. "require-dev": {
  3949. "phpunit/phpunit": "^6.0"
  3950. },
  3951. "type": "library",
  3952. "extra": {
  3953. "branch-alias": {
  3954. "dev-master": "1.1-dev"
  3955. }
  3956. },
  3957. "autoload": {
  3958. "classmap": [
  3959. "src/"
  3960. ]
  3961. },
  3962. "notification-url": "https://packagist.org/downloads/",
  3963. "license": [
  3964. "BSD-3-Clause"
  3965. ],
  3966. "authors": [
  3967. {
  3968. "name": "Sebastian Bergmann",
  3969. "email": "sebastian@phpunit.de"
  3970. }
  3971. ],
  3972. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3973. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3974. "time": "2017-03-29T09:07:27+00:00"
  3975. },
  3976. {
  3977. "name": "sebastian/recursion-context",
  3978. "version": "3.0.0",
  3979. "source": {
  3980. "type": "git",
  3981. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3982. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  3983. },
  3984. "dist": {
  3985. "type": "zip",
  3986. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3987. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3988. "shasum": ""
  3989. },
  3990. "require": {
  3991. "php": "^7.0"
  3992. },
  3993. "require-dev": {
  3994. "phpunit/phpunit": "^6.0"
  3995. },
  3996. "type": "library",
  3997. "extra": {
  3998. "branch-alias": {
  3999. "dev-master": "3.0.x-dev"
  4000. }
  4001. },
  4002. "autoload": {
  4003. "classmap": [
  4004. "src/"
  4005. ]
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "BSD-3-Clause"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Jeff Welch",
  4014. "email": "whatthejeff@gmail.com"
  4015. },
  4016. {
  4017. "name": "Sebastian Bergmann",
  4018. "email": "sebastian@phpunit.de"
  4019. },
  4020. {
  4021. "name": "Adam Harvey",
  4022. "email": "aharvey@php.net"
  4023. }
  4024. ],
  4025. "description": "Provides functionality to recursively process PHP variables",
  4026. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4027. "time": "2017-03-03T06:23:57+00:00"
  4028. },
  4029. {
  4030. "name": "sebastian/resource-operations",
  4031. "version": "1.0.0",
  4032. "source": {
  4033. "type": "git",
  4034. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4035. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  4036. },
  4037. "dist": {
  4038. "type": "zip",
  4039. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  4040. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  4041. "shasum": ""
  4042. },
  4043. "require": {
  4044. "php": ">=5.6.0"
  4045. },
  4046. "type": "library",
  4047. "extra": {
  4048. "branch-alias": {
  4049. "dev-master": "1.0.x-dev"
  4050. }
  4051. },
  4052. "autoload": {
  4053. "classmap": [
  4054. "src/"
  4055. ]
  4056. },
  4057. "notification-url": "https://packagist.org/downloads/",
  4058. "license": [
  4059. "BSD-3-Clause"
  4060. ],
  4061. "authors": [
  4062. {
  4063. "name": "Sebastian Bergmann",
  4064. "email": "sebastian@phpunit.de"
  4065. }
  4066. ],
  4067. "description": "Provides a list of PHP built-in functions that operate on resources",
  4068. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4069. "time": "2015-07-28T20:34:47+00:00"
  4070. },
  4071. {
  4072. "name": "sebastian/version",
  4073. "version": "2.0.1",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://github.com/sebastianbergmann/version.git",
  4077. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4078. },
  4079. "dist": {
  4080. "type": "zip",
  4081. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4082. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4083. "shasum": ""
  4084. },
  4085. "require": {
  4086. "php": ">=5.6"
  4087. },
  4088. "type": "library",
  4089. "extra": {
  4090. "branch-alias": {
  4091. "dev-master": "2.0.x-dev"
  4092. }
  4093. },
  4094. "autoload": {
  4095. "classmap": [
  4096. "src/"
  4097. ]
  4098. },
  4099. "notification-url": "https://packagist.org/downloads/",
  4100. "license": [
  4101. "BSD-3-Clause"
  4102. ],
  4103. "authors": [
  4104. {
  4105. "name": "Sebastian Bergmann",
  4106. "email": "sebastian@phpunit.de",
  4107. "role": "lead"
  4108. }
  4109. ],
  4110. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4111. "homepage": "https://github.com/sebastianbergmann/version",
  4112. "time": "2016-10-03T07:35:21+00:00"
  4113. },
  4114. {
  4115. "name": "theseer/tokenizer",
  4116. "version": "1.1.0",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/theseer/tokenizer.git",
  4120. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  4125. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  4126. "shasum": ""
  4127. },
  4128. "require": {
  4129. "ext-dom": "*",
  4130. "ext-tokenizer": "*",
  4131. "ext-xmlwriter": "*",
  4132. "php": "^7.0"
  4133. },
  4134. "type": "library",
  4135. "autoload": {
  4136. "classmap": [
  4137. "src/"
  4138. ]
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "BSD-3-Clause"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Arne Blankerts",
  4147. "email": "arne@blankerts.de",
  4148. "role": "Developer"
  4149. }
  4150. ],
  4151. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4152. "time": "2017-04-07T12:08:54+00:00"
  4153. },
  4154. {
  4155. "name": "webmozart/assert",
  4156. "version": "1.3.0",
  4157. "source": {
  4158. "type": "git",
  4159. "url": "https://github.com/webmozart/assert.git",
  4160. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  4161. },
  4162. "dist": {
  4163. "type": "zip",
  4164. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  4165. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  4166. "shasum": ""
  4167. },
  4168. "require": {
  4169. "php": "^5.3.3 || ^7.0"
  4170. },
  4171. "require-dev": {
  4172. "phpunit/phpunit": "^4.6",
  4173. "sebastian/version": "^1.0.1"
  4174. },
  4175. "type": "library",
  4176. "extra": {
  4177. "branch-alias": {
  4178. "dev-master": "1.3-dev"
  4179. }
  4180. },
  4181. "autoload": {
  4182. "psr-4": {
  4183. "Webmozart\\Assert\\": "src/"
  4184. }
  4185. },
  4186. "notification-url": "https://packagist.org/downloads/",
  4187. "license": [
  4188. "MIT"
  4189. ],
  4190. "authors": [
  4191. {
  4192. "name": "Bernhard Schussek",
  4193. "email": "bschussek@gmail.com"
  4194. }
  4195. ],
  4196. "description": "Assertions to validate method input/output with nice error messages.",
  4197. "keywords": [
  4198. "assert",
  4199. "check",
  4200. "validate"
  4201. ],
  4202. "time": "2018-01-29T19:49:41+00:00"
  4203. },
  4204. {
  4205. "name": "xethron/laravel-4-generators",
  4206. "version": "3.1.1",
  4207. "source": {
  4208. "type": "git",
  4209. "url": "https://github.com/Xethron/Laravel-4-Generators.git",
  4210. "reference": "526f0a07d8ae44e365a20b1bf64c9956acd2a859"
  4211. },
  4212. "dist": {
  4213. "type": "zip",
  4214. "url": "https://api.github.com/repos/Xethron/Laravel-4-Generators/zipball/526f0a07d8ae44e365a20b1bf64c9956acd2a859",
  4215. "reference": "526f0a07d8ae44e365a20b1bf64c9956acd2a859",
  4216. "shasum": ""
  4217. },
  4218. "require": {
  4219. "illuminate/support": "~5.0",
  4220. "php": ">=5.4.0"
  4221. },
  4222. "require-dev": {
  4223. "behat/behat": "~2.5.1",
  4224. "behat/mink": "~1.5.0",
  4225. "behat/mink-extension": "~1.2.0",
  4226. "behat/mink-goutte-driver": "~1.0.9",
  4227. "behat/mink-selenium2-driver": "~1.1.1",
  4228. "phpspec/phpspec": "~2.0",
  4229. "phpunit/phpunit": "~3.7"
  4230. },
  4231. "type": "library",
  4232. "autoload": {
  4233. "psr-0": {
  4234. "Way\\Generators": "src/"
  4235. }
  4236. },
  4237. "notification-url": "https://packagist.org/downloads/",
  4238. "license": [
  4239. "MIT"
  4240. ],
  4241. "authors": [
  4242. {
  4243. "name": "Jeffrey Way",
  4244. "email": "jeffrey@jeffrey-way.com"
  4245. }
  4246. ],
  4247. "description": "Rapidly generate resources, migrations, models, and much more.",
  4248. "time": "2017-02-23T11:20:49+00:00"
  4249. },
  4250. {
  4251. "name": "xethron/migrations-generator",
  4252. "version": "v2.0.2",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/Xethron/migrations-generator.git",
  4256. "reference": "a05bd7319ed808fcc3125212e37d30ccbe0d2b8b"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/Xethron/migrations-generator/zipball/a05bd7319ed808fcc3125212e37d30ccbe0d2b8b",
  4261. "reference": "a05bd7319ed808fcc3125212e37d30ccbe0d2b8b",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "doctrine/dbal": "~2.4",
  4266. "illuminate/support": ">=4.1",
  4267. "php": ">=5.4.0",
  4268. "xethron/laravel-4-generators": "~3.1.0"
  4269. },
  4270. "require-dev": {
  4271. "illuminate/cache": ">=4.1.0",
  4272. "illuminate/console": ">=4.1.0",
  4273. "mockery/mockery": ">=0.9.0",
  4274. "phpunit/phpunit": ">=4.0.0"
  4275. },
  4276. "type": "library",
  4277. "extra": {
  4278. "laravel": {
  4279. "providers": [
  4280. "Way\\Generators\\GeneratorsServiceProvider",
  4281. "Xethron\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
  4282. ]
  4283. }
  4284. },
  4285. "autoload": {
  4286. "psr-0": {
  4287. "Xethron\\MigrationsGenerator": "src/"
  4288. }
  4289. },
  4290. "notification-url": "https://packagist.org/downloads/",
  4291. "license": [
  4292. "MIT"
  4293. ],
  4294. "authors": [
  4295. {
  4296. "name": "Bernhard Breytenbach",
  4297. "email": "bernhard@coffeecode.co.za"
  4298. }
  4299. ],
  4300. "description": "Generates Laravel Migrations from an existing database",
  4301. "keywords": [
  4302. "artisan",
  4303. "generator",
  4304. "laravel",
  4305. "migration",
  4306. "migrations"
  4307. ],
  4308. "time": "2017-09-19T17:31:57+00:00"
  4309. }
  4310. ],
  4311. "aliases": [],
  4312. "minimum-stability": "stable",
  4313. "stability-flags": [],
  4314. "prefer-stable": false,
  4315. "prefer-lowest": false,
  4316. "platform": {
  4317. "php": ">=7.0.0"
  4318. },
  4319. "platform-dev": []
  4320. }