composer.lock 216 KB

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