家政小程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

composer.lock 167KB

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