composer.lock 219 KB

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