composer.lock 195 KB

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