composer.lock 220 KB

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