composer.lock 261 KB

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