composer.lock 335 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582
  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": "7763dce1918821fed204495e2f09880e",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "23f469e81c65e2fb7fc7bce371fbdc363fe32adf"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/23f469e81c65e2fb7fc7bce371fbdc363fe32adf",
  20. "reference": "23f469e81c65e2fb7fc7bce371fbdc363fe32adf",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0",
  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": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  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": "2020-05-31T07:17:05+00:00"
  60. },
  61. {
  62. "name": "bacon/bacon-qr-code",
  63. "version": "2.0.0",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/Bacon/BaconQrCode.git",
  67. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  72. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "dasprid/enum": "^1.0",
  77. "ext-iconv": "*",
  78. "php": "^7.1"
  79. },
  80. "require-dev": {
  81. "phly/keep-a-changelog": "^1.4",
  82. "phpunit/phpunit": "^6.4",
  83. "squizlabs/php_codesniffer": "^3.1"
  84. },
  85. "suggest": {
  86. "ext-imagick": "to generate QR code images"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "BaconQrCode\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "BSD-2-Clause"
  97. ],
  98. "authors": [
  99. {
  100. "name": "Ben Scholzen 'DASPRiD'",
  101. "email": "mail@dasprids.de",
  102. "homepage": "http://www.dasprids.de",
  103. "role": "Developer"
  104. }
  105. ],
  106. "description": "BaconQrCode is a QR code generator for PHP.",
  107. "homepage": "https://github.com/Bacon/BaconQrCode",
  108. "time": "2018-04-25T17:53:56+00:00"
  109. },
  110. {
  111. "name": "brick/math",
  112. "version": "0.9.1",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/brick/math.git",
  116. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  121. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "ext-json": "*",
  126. "php": "^7.1|^8.0"
  127. },
  128. "require-dev": {
  129. "php-coveralls/php-coveralls": "^2.2",
  130. "phpunit/phpunit": "^7.5.15|^8.5",
  131. "vimeo/psalm": "^3.5"
  132. },
  133. "type": "library",
  134. "autoload": {
  135. "psr-4": {
  136. "Brick\\Math\\": "src/"
  137. }
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "description": "Arbitrary-precision arithmetic library",
  144. "keywords": [
  145. "Arbitrary-precision",
  146. "BigInteger",
  147. "BigRational",
  148. "arithmetic",
  149. "bigdecimal",
  150. "bignum",
  151. "brick",
  152. "math"
  153. ],
  154. "funding": [
  155. {
  156. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  157. "type": "tidelift"
  158. }
  159. ],
  160. "time": "2020-08-18T23:57:15+00:00"
  161. },
  162. {
  163. "name": "caouecs/laravel-lang",
  164. "version": "7.0.3",
  165. "source": {
  166. "type": "git",
  167. "url": "https://github.com/caouecs/lang.git",
  168. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a"
  169. },
  170. "dist": {
  171. "type": "zip",
  172. "url": "https://api.github.com/repos/caouecs/lang/zipball/2cb9932f781415f1669ce27d29e5b86399ab164a",
  173. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a",
  174. "shasum": ""
  175. },
  176. "require": {
  177. "ext-json": "*"
  178. },
  179. "suggest": {
  180. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  181. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  182. "overtrue/laravel-lang": "Command to add languages in your project"
  183. },
  184. "type": "library",
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "caouecs",
  192. "email": "caouecs@caouecs.net"
  193. }
  194. ],
  195. "description": "Languages for Laravel",
  196. "keywords": [
  197. "lang",
  198. "languages",
  199. "laravel",
  200. "lpm"
  201. ],
  202. "abandoned": "https://github.com/Laravel-Lang/lang",
  203. "time": "2020-08-23T08:17:21+00:00"
  204. },
  205. {
  206. "name": "dasprid/enum",
  207. "version": "1.0.2",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/DASPRiD/Enum.git",
  211. "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07",
  216. "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07",
  217. "shasum": ""
  218. },
  219. "require-dev": {
  220. "phpunit/phpunit": "^7 | ^8 | ^9",
  221. "squizlabs/php_codesniffer": "^3.4"
  222. },
  223. "type": "library",
  224. "autoload": {
  225. "psr-4": {
  226. "DASPRiD\\Enum\\": "src/"
  227. }
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "BSD-2-Clause"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Ben Scholzen 'DASPRiD'",
  236. "email": "mail@dasprids.de",
  237. "homepage": "https://dasprids.de/",
  238. "role": "Developer"
  239. }
  240. ],
  241. "description": "PHP 7.1 enum implementation",
  242. "keywords": [
  243. "enum",
  244. "map"
  245. ],
  246. "time": "2020-07-30T16:37:13+00:00"
  247. },
  248. {
  249. "name": "dnoegel/php-xdg-base-dir",
  250. "version": "v0.1.1",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  254. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  259. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "php": ">=5.3.2"
  264. },
  265. "require-dev": {
  266. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  267. },
  268. "type": "library",
  269. "autoload": {
  270. "psr-4": {
  271. "XdgBaseDir\\": "src/"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "description": "implementation of xdg base directory specification for php",
  279. "time": "2019-12-04T15:06:13+00:00"
  280. },
  281. {
  282. "name": "doctrine/inflector",
  283. "version": "2.0.3",
  284. "source": {
  285. "type": "git",
  286. "url": "https://github.com/doctrine/inflector.git",
  287. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  288. },
  289. "dist": {
  290. "type": "zip",
  291. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  292. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  293. "shasum": ""
  294. },
  295. "require": {
  296. "php": "^7.2 || ^8.0"
  297. },
  298. "require-dev": {
  299. "doctrine/coding-standard": "^7.0",
  300. "phpstan/phpstan": "^0.11",
  301. "phpstan/phpstan-phpunit": "^0.11",
  302. "phpstan/phpstan-strict-rules": "^0.11",
  303. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  304. },
  305. "type": "library",
  306. "extra": {
  307. "branch-alias": {
  308. "dev-master": "2.0.x-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Guilherme Blanco",
  323. "email": "guilhermeblanco@gmail.com"
  324. },
  325. {
  326. "name": "Roman Borschel",
  327. "email": "roman@code-factory.org"
  328. },
  329. {
  330. "name": "Benjamin Eberlei",
  331. "email": "kontakt@beberlei.de"
  332. },
  333. {
  334. "name": "Jonathan Wage",
  335. "email": "jonwage@gmail.com"
  336. },
  337. {
  338. "name": "Johannes Schmitt",
  339. "email": "schmittjoh@gmail.com"
  340. }
  341. ],
  342. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  343. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  344. "keywords": [
  345. "inflection",
  346. "inflector",
  347. "lowercase",
  348. "manipulation",
  349. "php",
  350. "plural",
  351. "singular",
  352. "strings",
  353. "uppercase",
  354. "words"
  355. ],
  356. "funding": [
  357. {
  358. "url": "https://www.doctrine-project.org/sponsorship.html",
  359. "type": "custom"
  360. },
  361. {
  362. "url": "https://www.patreon.com/phpdoctrine",
  363. "type": "patreon"
  364. },
  365. {
  366. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  367. "type": "tidelift"
  368. }
  369. ],
  370. "time": "2020-05-29T15:13:26+00:00"
  371. },
  372. {
  373. "name": "doctrine/lexer",
  374. "version": "1.2.1",
  375. "source": {
  376. "type": "git",
  377. "url": "https://github.com/doctrine/lexer.git",
  378. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  379. },
  380. "dist": {
  381. "type": "zip",
  382. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  383. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  384. "shasum": ""
  385. },
  386. "require": {
  387. "php": "^7.2 || ^8.0"
  388. },
  389. "require-dev": {
  390. "doctrine/coding-standard": "^6.0",
  391. "phpstan/phpstan": "^0.11.8",
  392. "phpunit/phpunit": "^8.2"
  393. },
  394. "type": "library",
  395. "extra": {
  396. "branch-alias": {
  397. "dev-master": "1.2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Guilherme Blanco",
  412. "email": "guilhermeblanco@gmail.com"
  413. },
  414. {
  415. "name": "Roman Borschel",
  416. "email": "roman@code-factory.org"
  417. },
  418. {
  419. "name": "Johannes Schmitt",
  420. "email": "schmittjoh@gmail.com"
  421. }
  422. ],
  423. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  424. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  425. "keywords": [
  426. "annotations",
  427. "docblock",
  428. "lexer",
  429. "parser",
  430. "php"
  431. ],
  432. "funding": [
  433. {
  434. "url": "https://www.doctrine-project.org/sponsorship.html",
  435. "type": "custom"
  436. },
  437. {
  438. "url": "https://www.patreon.com/phpdoctrine",
  439. "type": "patreon"
  440. },
  441. {
  442. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  443. "type": "tidelift"
  444. }
  445. ],
  446. "time": "2020-05-25T17:44:05+00:00"
  447. },
  448. {
  449. "name": "dragonmantank/cron-expression",
  450. "version": "v2.3.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/dragonmantank/cron-expression.git",
  454. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  459. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.0"
  464. },
  465. "require-dev": {
  466. "phpunit/phpunit": "^6.4|^7.0"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "branch-alias": {
  471. "dev-master": "2.3-dev"
  472. }
  473. },
  474. "autoload": {
  475. "psr-4": {
  476. "Cron\\": "src/Cron/"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Michael Dowling",
  486. "email": "mtdowling@gmail.com",
  487. "homepage": "https://github.com/mtdowling"
  488. },
  489. {
  490. "name": "Chris Tankersley",
  491. "email": "chris@ctankersley.com",
  492. "homepage": "https://github.com/dragonmantank"
  493. }
  494. ],
  495. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  496. "keywords": [
  497. "cron",
  498. "schedule"
  499. ],
  500. "time": "2019-03-31T00:38:28+00:00"
  501. },
  502. {
  503. "name": "egulias/email-validator",
  504. "version": "2.1.19",
  505. "source": {
  506. "type": "git",
  507. "url": "https://github.com/egulias/EmailValidator.git",
  508. "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/840d5603eb84cc81a6a0382adac3293e57c1c64c",
  513. "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c",
  514. "shasum": ""
  515. },
  516. "require": {
  517. "doctrine/lexer": "^1.0.1",
  518. "php": ">=5.5",
  519. "symfony/polyfill-intl-idn": "^1.10"
  520. },
  521. "require-dev": {
  522. "dominicsayers/isemail": "^3.0.7",
  523. "phpunit/phpunit": "^4.8.36|^7.5.15",
  524. "satooshi/php-coveralls": "^1.0.1"
  525. },
  526. "suggest": {
  527. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  528. },
  529. "type": "library",
  530. "extra": {
  531. "branch-alias": {
  532. "dev-master": "2.1.x-dev"
  533. }
  534. },
  535. "autoload": {
  536. "psr-4": {
  537. "Egulias\\EmailValidator\\": "src"
  538. }
  539. },
  540. "notification-url": "https://packagist.org/downloads/",
  541. "license": [
  542. "MIT"
  543. ],
  544. "authors": [
  545. {
  546. "name": "Eduardo Gulias Davis"
  547. }
  548. ],
  549. "description": "A library for validating emails against several RFCs",
  550. "homepage": "https://github.com/egulias/EmailValidator",
  551. "keywords": [
  552. "email",
  553. "emailvalidation",
  554. "emailvalidator",
  555. "validation",
  556. "validator"
  557. ],
  558. "time": "2020-08-08T21:28:19+00:00"
  559. },
  560. {
  561. "name": "ezyang/htmlpurifier",
  562. "version": "v4.13.0",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/ezyang/htmlpurifier.git",
  566. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  571. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "php": ">=5.2"
  576. },
  577. "require-dev": {
  578. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  579. },
  580. "type": "library",
  581. "autoload": {
  582. "psr-0": {
  583. "HTMLPurifier": "library/"
  584. },
  585. "files": [
  586. "library/HTMLPurifier.composer.php"
  587. ],
  588. "exclude-from-classmap": [
  589. "/library/HTMLPurifier/Language/"
  590. ]
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "LGPL-2.1-or-later"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Edward Z. Yang",
  599. "email": "admin@htmlpurifier.org",
  600. "homepage": "http://ezyang.com"
  601. }
  602. ],
  603. "description": "Standards compliant HTML filter written in PHP",
  604. "homepage": "http://htmlpurifier.org/",
  605. "keywords": [
  606. "html"
  607. ],
  608. "time": "2020-06-29T00:56:53+00:00"
  609. },
  610. {
  611. "name": "fideloper/proxy",
  612. "version": "4.4.0",
  613. "source": {
  614. "type": "git",
  615. "url": "https://github.com/fideloper/TrustedProxy.git",
  616. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  617. },
  618. "dist": {
  619. "type": "zip",
  620. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  621. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  622. "shasum": ""
  623. },
  624. "require": {
  625. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  626. "php": ">=5.4.0"
  627. },
  628. "require-dev": {
  629. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  630. "mockery/mockery": "^1.0",
  631. "phpunit/phpunit": "^6.0"
  632. },
  633. "type": "library",
  634. "extra": {
  635. "laravel": {
  636. "providers": [
  637. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  638. ]
  639. }
  640. },
  641. "autoload": {
  642. "psr-4": {
  643. "Fideloper\\Proxy\\": "src/"
  644. }
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "MIT"
  649. ],
  650. "authors": [
  651. {
  652. "name": "Chris Fidao",
  653. "email": "fideloper@gmail.com"
  654. }
  655. ],
  656. "description": "Set trusted proxies for Laravel",
  657. "keywords": [
  658. "load balancing",
  659. "proxy",
  660. "trusted proxy"
  661. ],
  662. "time": "2020-06-23T01:36:47+00:00"
  663. },
  664. {
  665. "name": "fruitcake/laravel-cors",
  666. "version": "v2.0.1",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/fruitcake/laravel-cors.git",
  670. "reference": "dbfc311b25d4873c3c2382b26860be3567492bd6"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/dbfc311b25d4873c3c2382b26860be3567492bd6",
  675. "reference": "dbfc311b25d4873c3c2382b26860be3567492bd6",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "asm89/stack-cors": "^2.0.1",
  680. "illuminate/contracts": "^5.6|^6.0|^7.0|^8.0",
  681. "illuminate/support": "^5.6|^6.0|^7.0|^8.0",
  682. "php": ">=7.1",
  683. "symfony/http-foundation": "^4.0|^5.0",
  684. "symfony/http-kernel": "^4.0|^5.0"
  685. },
  686. "require-dev": {
  687. "laravel/framework": "^5.5|^6.0|^7.0|^8.0",
  688. "orchestra/dusk-updater": "^1.2",
  689. "orchestra/testbench": "^3.5|^4.0|^5.0|^6.0",
  690. "orchestra/testbench-dusk": "^5.1",
  691. "phpro/grumphp": "^0.16|^0.17",
  692. "phpunit/phpunit": "^6.0|^7.0|^8.0",
  693. "squizlabs/php_codesniffer": "^3.5"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "2.0-dev"
  699. },
  700. "laravel": {
  701. "providers": [
  702. "Fruitcake\\Cors\\CorsServiceProvider"
  703. ]
  704. }
  705. },
  706. "autoload": {
  707. "psr-4": {
  708. "Fruitcake\\Cors\\": "src/"
  709. }
  710. },
  711. "notification-url": "https://packagist.org/downloads/",
  712. "license": [
  713. "MIT"
  714. ],
  715. "authors": [
  716. {
  717. "name": "Fruitcake",
  718. "homepage": "https://fruitcake.nl"
  719. },
  720. {
  721. "name": "Barry vd. Heuvel",
  722. "email": "barryvdh@gmail.com"
  723. }
  724. ],
  725. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  726. "keywords": [
  727. "api",
  728. "cors",
  729. "crossdomain",
  730. "laravel"
  731. ],
  732. "funding": [
  733. {
  734. "url": "https://github.com/barryvdh",
  735. "type": "github"
  736. }
  737. ],
  738. "time": "2020-05-31T07:30:16+00:00"
  739. },
  740. {
  741. "name": "guzzlehttp/guzzle",
  742. "version": "6.5.5",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/guzzle/guzzle.git",
  746. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  751. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "ext-json": "*",
  756. "guzzlehttp/promises": "^1.0",
  757. "guzzlehttp/psr7": "^1.6.1",
  758. "php": ">=5.5",
  759. "symfony/polyfill-intl-idn": "^1.17.0"
  760. },
  761. "require-dev": {
  762. "ext-curl": "*",
  763. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  764. "psr/log": "^1.1"
  765. },
  766. "suggest": {
  767. "psr/log": "Required for using the Log middleware"
  768. },
  769. "type": "library",
  770. "extra": {
  771. "branch-alias": {
  772. "dev-master": "6.5-dev"
  773. }
  774. },
  775. "autoload": {
  776. "psr-4": {
  777. "GuzzleHttp\\": "src/"
  778. },
  779. "files": [
  780. "src/functions_include.php"
  781. ]
  782. },
  783. "notification-url": "https://packagist.org/downloads/",
  784. "license": [
  785. "MIT"
  786. ],
  787. "authors": [
  788. {
  789. "name": "Michael Dowling",
  790. "email": "mtdowling@gmail.com",
  791. "homepage": "https://github.com/mtdowling"
  792. }
  793. ],
  794. "description": "Guzzle is a PHP HTTP client library",
  795. "homepage": "http://guzzlephp.org/",
  796. "keywords": [
  797. "client",
  798. "curl",
  799. "framework",
  800. "http",
  801. "http client",
  802. "rest",
  803. "web service"
  804. ],
  805. "time": "2020-06-16T21:01:06+00:00"
  806. },
  807. {
  808. "name": "guzzlehttp/promises",
  809. "version": "v1.3.1",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/guzzle/promises.git",
  813. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  818. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "php": ">=5.5.0"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "^4.0"
  826. },
  827. "type": "library",
  828. "extra": {
  829. "branch-alias": {
  830. "dev-master": "1.4-dev"
  831. }
  832. },
  833. "autoload": {
  834. "psr-4": {
  835. "GuzzleHttp\\Promise\\": "src/"
  836. },
  837. "files": [
  838. "src/functions_include.php"
  839. ]
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Michael Dowling",
  848. "email": "mtdowling@gmail.com",
  849. "homepage": "https://github.com/mtdowling"
  850. }
  851. ],
  852. "description": "Guzzle promises library",
  853. "keywords": [
  854. "promise"
  855. ],
  856. "time": "2016-12-20T10:07:11+00:00"
  857. },
  858. {
  859. "name": "guzzlehttp/psr7",
  860. "version": "1.6.1",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/guzzle/psr7.git",
  864. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  869. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  870. "shasum": ""
  871. },
  872. "require": {
  873. "php": ">=5.4.0",
  874. "psr/http-message": "~1.0",
  875. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  876. },
  877. "provide": {
  878. "psr/http-message-implementation": "1.0"
  879. },
  880. "require-dev": {
  881. "ext-zlib": "*",
  882. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  883. },
  884. "suggest": {
  885. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  886. },
  887. "type": "library",
  888. "extra": {
  889. "branch-alias": {
  890. "dev-master": "1.6-dev"
  891. }
  892. },
  893. "autoload": {
  894. "psr-4": {
  895. "GuzzleHttp\\Psr7\\": "src/"
  896. },
  897. "files": [
  898. "src/functions_include.php"
  899. ]
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Michael Dowling",
  908. "email": "mtdowling@gmail.com",
  909. "homepage": "https://github.com/mtdowling"
  910. },
  911. {
  912. "name": "Tobias Schultze",
  913. "homepage": "https://github.com/Tobion"
  914. }
  915. ],
  916. "description": "PSR-7 message implementation that also provides common utility methods",
  917. "keywords": [
  918. "http",
  919. "message",
  920. "psr-7",
  921. "request",
  922. "response",
  923. "stream",
  924. "uri",
  925. "url"
  926. ],
  927. "time": "2019-07-01T23:21:34+00:00"
  928. },
  929. {
  930. "name": "intervention/image",
  931. "version": "2.5.1",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/Intervention/image.git",
  935. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  940. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "ext-fileinfo": "*",
  945. "guzzlehttp/psr7": "~1.1",
  946. "php": ">=5.4.0"
  947. },
  948. "require-dev": {
  949. "mockery/mockery": "~0.9.2",
  950. "phpunit/phpunit": "^4.8 || ^5.7"
  951. },
  952. "suggest": {
  953. "ext-gd": "to use GD library based image processing.",
  954. "ext-imagick": "to use Imagick based image processing.",
  955. "intervention/imagecache": "Caching extension for the Intervention Image library"
  956. },
  957. "type": "library",
  958. "extra": {
  959. "branch-alias": {
  960. "dev-master": "2.4-dev"
  961. },
  962. "laravel": {
  963. "providers": [
  964. "Intervention\\Image\\ImageServiceProvider"
  965. ],
  966. "aliases": {
  967. "Image": "Intervention\\Image\\Facades\\Image"
  968. }
  969. }
  970. },
  971. "autoload": {
  972. "psr-4": {
  973. "Intervention\\Image\\": "src/Intervention/Image"
  974. }
  975. },
  976. "notification-url": "https://packagist.org/downloads/",
  977. "license": [
  978. "MIT"
  979. ],
  980. "authors": [
  981. {
  982. "name": "Oliver Vogel",
  983. "email": "oliver@olivervogel.com",
  984. "homepage": "http://olivervogel.com/"
  985. }
  986. ],
  987. "description": "Image handling and manipulation library with support for Laravel integration",
  988. "homepage": "http://image.intervention.io/",
  989. "keywords": [
  990. "gd",
  991. "image",
  992. "imagick",
  993. "laravel",
  994. "thumbnail",
  995. "watermark"
  996. ],
  997. "time": "2019-11-02T09:15:47+00:00"
  998. },
  999. {
  1000. "name": "ipip/db",
  1001. "version": "v1.0.0",
  1002. "source": {
  1003. "type": "git",
  1004. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1005. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1006. },
  1007. "dist": {
  1008. "type": "zip",
  1009. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1010. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1011. "shasum": ""
  1012. },
  1013. "require": {
  1014. "php": ">=5.4.0"
  1015. },
  1016. "type": "library",
  1017. "autoload": {
  1018. "psr-4": {
  1019. "ipip\\db\\": "src/ipip/db/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "Apache-2.0"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "IPIP.net",
  1029. "email": "frk@ipip.net",
  1030. "homepage": "https://www.ipip.net"
  1031. }
  1032. ],
  1033. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1034. "homepage": "https://www.ipip.net",
  1035. "keywords": [
  1036. "IP",
  1037. "geo",
  1038. "geoip",
  1039. "geolocation",
  1040. "ipdb",
  1041. "ipip.net"
  1042. ],
  1043. "time": "2018-11-01T08:07:04+00:00"
  1044. },
  1045. {
  1046. "name": "itbdw/ip-database",
  1047. "version": "v2.0.7",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/itbdw/ip-database.git",
  1051. "reference": "134835a851b45d4cccd7ea33215c313de74c6aca"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/itbdw/ip-database/zipball/134835a851b45d4cccd7ea33215c313de74c6aca",
  1056. "reference": "134835a851b45d4cccd7ea33215c313de74c6aca",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "php": "~5.4|~7.0"
  1061. },
  1062. "type": "library",
  1063. "autoload": {
  1064. "psr-4": {
  1065. "itbdw\\Ip\\": "src/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "authors": [
  1073. {
  1074. "name": "马秉尧"
  1075. },
  1076. {
  1077. "name": "itbdw",
  1078. "email": "itbudaoweng@gmail.com",
  1079. "homepage": "http://github.com/itbdw",
  1080. "role": "Developer"
  1081. }
  1082. ],
  1083. "description": "IP位置数据库(解析为国家、省、市、县、运营商)",
  1084. "keywords": [
  1085. "China",
  1086. "Chinese",
  1087. "IP",
  1088. "database",
  1089. "location",
  1090. "位置",
  1091. "地区",
  1092. "数据库",
  1093. "纯真"
  1094. ],
  1095. "time": "2019-08-01T03:09:19+00:00"
  1096. },
  1097. {
  1098. "name": "jaybizzle/crawler-detect",
  1099. "version": "v1.2.99",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1103. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1108. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "php": ">=5.3.0"
  1113. },
  1114. "require-dev": {
  1115. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  1116. "satooshi/php-coveralls": "1.*"
  1117. },
  1118. "type": "library",
  1119. "autoload": {
  1120. "psr-4": {
  1121. "Jaybizzle\\CrawlerDetect\\": "src/"
  1122. }
  1123. },
  1124. "notification-url": "https://packagist.org/downloads/",
  1125. "license": [
  1126. "MIT"
  1127. ],
  1128. "authors": [
  1129. {
  1130. "name": "Mark Beech",
  1131. "email": "m@rkbee.ch",
  1132. "role": "Developer"
  1133. }
  1134. ],
  1135. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1136. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1137. "keywords": [
  1138. "crawler",
  1139. "crawler detect",
  1140. "crawler detector",
  1141. "crawlerdetect",
  1142. "php crawler detect"
  1143. ],
  1144. "time": "2020-08-25T21:35:55+00:00"
  1145. },
  1146. {
  1147. "name": "jenssegers/agent",
  1148. "version": "v2.6.4",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/jenssegers/agent.git",
  1152. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1157. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1158. "shasum": ""
  1159. },
  1160. "require": {
  1161. "jaybizzle/crawler-detect": "^1.2",
  1162. "mobiledetect/mobiledetectlib": "^2.7.6",
  1163. "php": ">=5.6"
  1164. },
  1165. "require-dev": {
  1166. "php-coveralls/php-coveralls": "^2.1",
  1167. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1168. },
  1169. "suggest": {
  1170. "illuminate/support": "Required for laravel service providers"
  1171. },
  1172. "type": "library",
  1173. "extra": {
  1174. "branch-alias": {
  1175. "dev-master": "3.0-dev"
  1176. },
  1177. "laravel": {
  1178. "providers": [
  1179. "Jenssegers\\Agent\\AgentServiceProvider"
  1180. ],
  1181. "aliases": {
  1182. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1183. }
  1184. }
  1185. },
  1186. "autoload": {
  1187. "psr-4": {
  1188. "Jenssegers\\Agent\\": "src/"
  1189. }
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "Jens Segers",
  1198. "homepage": "https://jenssegers.com"
  1199. }
  1200. ],
  1201. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1202. "homepage": "https://github.com/jenssegers/agent",
  1203. "keywords": [
  1204. "Agent",
  1205. "browser",
  1206. "desktop",
  1207. "laravel",
  1208. "mobile",
  1209. "platform",
  1210. "user agent",
  1211. "useragent"
  1212. ],
  1213. "funding": [
  1214. {
  1215. "url": "https://github.com/jenssegers",
  1216. "type": "github"
  1217. },
  1218. {
  1219. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1220. "type": "tidelift"
  1221. }
  1222. ],
  1223. "time": "2020-06-13T08:05:20+00:00"
  1224. },
  1225. {
  1226. "name": "laravel/framework",
  1227. "version": "v7.27.0",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/laravel/framework.git",
  1231. "reference": "17777a92da9b3cf0026f26462d289d596420e6d0"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/laravel/framework/zipball/17777a92da9b3cf0026f26462d289d596420e6d0",
  1236. "reference": "17777a92da9b3cf0026f26462d289d596420e6d0",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "doctrine/inflector": "^1.4|^2.0",
  1241. "dragonmantank/cron-expression": "^2.0",
  1242. "egulias/email-validator": "^2.1.10",
  1243. "ext-json": "*",
  1244. "ext-mbstring": "*",
  1245. "ext-openssl": "*",
  1246. "league/commonmark": "^1.3",
  1247. "league/flysystem": "^1.0.34",
  1248. "monolog/monolog": "^2.0",
  1249. "nesbot/carbon": "^2.17",
  1250. "opis/closure": "^3.1",
  1251. "php": "^7.2.5",
  1252. "psr/container": "^1.0",
  1253. "psr/simple-cache": "^1.0",
  1254. "ramsey/uuid": "^3.7|^4.0",
  1255. "swiftmailer/swiftmailer": "^6.0",
  1256. "symfony/console": "^5.0",
  1257. "symfony/error-handler": "^5.0",
  1258. "symfony/finder": "^5.0",
  1259. "symfony/http-foundation": "^5.0",
  1260. "symfony/http-kernel": "^5.0",
  1261. "symfony/mime": "^5.0",
  1262. "symfony/polyfill-php73": "^1.17",
  1263. "symfony/process": "^5.0",
  1264. "symfony/routing": "^5.0",
  1265. "symfony/var-dumper": "^5.0",
  1266. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1267. "vlucas/phpdotenv": "^4.0",
  1268. "voku/portable-ascii": "^1.4.8"
  1269. },
  1270. "conflict": {
  1271. "tightenco/collect": "<5.5.33"
  1272. },
  1273. "provide": {
  1274. "psr/container-implementation": "1.0"
  1275. },
  1276. "replace": {
  1277. "illuminate/auth": "self.version",
  1278. "illuminate/broadcasting": "self.version",
  1279. "illuminate/bus": "self.version",
  1280. "illuminate/cache": "self.version",
  1281. "illuminate/config": "self.version",
  1282. "illuminate/console": "self.version",
  1283. "illuminate/container": "self.version",
  1284. "illuminate/contracts": "self.version",
  1285. "illuminate/cookie": "self.version",
  1286. "illuminate/database": "self.version",
  1287. "illuminate/encryption": "self.version",
  1288. "illuminate/events": "self.version",
  1289. "illuminate/filesystem": "self.version",
  1290. "illuminate/hashing": "self.version",
  1291. "illuminate/http": "self.version",
  1292. "illuminate/log": "self.version",
  1293. "illuminate/mail": "self.version",
  1294. "illuminate/notifications": "self.version",
  1295. "illuminate/pagination": "self.version",
  1296. "illuminate/pipeline": "self.version",
  1297. "illuminate/queue": "self.version",
  1298. "illuminate/redis": "self.version",
  1299. "illuminate/routing": "self.version",
  1300. "illuminate/session": "self.version",
  1301. "illuminate/support": "self.version",
  1302. "illuminate/testing": "self.version",
  1303. "illuminate/translation": "self.version",
  1304. "illuminate/validation": "self.version",
  1305. "illuminate/view": "self.version"
  1306. },
  1307. "require-dev": {
  1308. "aws/aws-sdk-php": "^3.0",
  1309. "doctrine/dbal": "^2.6",
  1310. "filp/whoops": "^2.4",
  1311. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  1312. "league/flysystem-cached-adapter": "^1.0",
  1313. "mockery/mockery": "^1.3.1",
  1314. "moontoast/math": "^1.1",
  1315. "orchestra/testbench-core": "^5.0",
  1316. "pda/pheanstalk": "^4.0",
  1317. "phpunit/phpunit": "^8.4|^9.0",
  1318. "predis/predis": "^1.1.1",
  1319. "symfony/cache": "^5.0"
  1320. },
  1321. "suggest": {
  1322. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1323. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1324. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1325. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1326. "ext-memcached": "Required to use the memcache cache driver.",
  1327. "ext-pcntl": "Required to use all features of the queue worker.",
  1328. "ext-posix": "Required to use all features of the queue worker.",
  1329. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1330. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1331. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1332. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  1333. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1334. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1335. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1336. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1337. "mockery/mockery": "Required to use mocking (^1.3.1).",
  1338. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1339. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1340. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1341. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  1342. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1343. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1344. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1345. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1346. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1347. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1348. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1349. },
  1350. "type": "library",
  1351. "extra": {
  1352. "branch-alias": {
  1353. "dev-master": "7.x-dev"
  1354. }
  1355. },
  1356. "autoload": {
  1357. "files": [
  1358. "src/Illuminate/Foundation/helpers.php",
  1359. "src/Illuminate/Support/helpers.php"
  1360. ],
  1361. "psr-4": {
  1362. "Illuminate\\": "src/Illuminate/"
  1363. }
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "MIT"
  1368. ],
  1369. "authors": [
  1370. {
  1371. "name": "Taylor Otwell",
  1372. "email": "taylor@laravel.com"
  1373. }
  1374. ],
  1375. "description": "The Laravel Framework.",
  1376. "homepage": "https://laravel.com",
  1377. "keywords": [
  1378. "framework",
  1379. "laravel"
  1380. ],
  1381. "time": "2020-09-01T13:41:48+00:00"
  1382. },
  1383. {
  1384. "name": "laravel/tinker",
  1385. "version": "v2.4.2",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/laravel/tinker.git",
  1389. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/laravel/tinker/zipball/58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1394. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "illuminate/console": "^6.0|^7.0|^8.0",
  1399. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1400. "illuminate/support": "^6.0|^7.0|^8.0",
  1401. "php": "^7.2",
  1402. "psy/psysh": "^0.10.3",
  1403. "symfony/var-dumper": "^4.3|^5.0"
  1404. },
  1405. "require-dev": {
  1406. "mockery/mockery": "^1.3.1",
  1407. "phpunit/phpunit": "^8.4|^9.0"
  1408. },
  1409. "suggest": {
  1410. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1411. },
  1412. "type": "library",
  1413. "extra": {
  1414. "branch-alias": {
  1415. "dev-master": "2.x-dev"
  1416. },
  1417. "laravel": {
  1418. "providers": [
  1419. "Laravel\\Tinker\\TinkerServiceProvider"
  1420. ]
  1421. }
  1422. },
  1423. "autoload": {
  1424. "psr-4": {
  1425. "Laravel\\Tinker\\": "src/"
  1426. }
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "MIT"
  1431. ],
  1432. "authors": [
  1433. {
  1434. "name": "Taylor Otwell",
  1435. "email": "taylor@laravel.com"
  1436. }
  1437. ],
  1438. "description": "Powerful REPL for the Laravel framework.",
  1439. "keywords": [
  1440. "REPL",
  1441. "Tinker",
  1442. "laravel",
  1443. "psysh"
  1444. ],
  1445. "time": "2020-08-11T19:28:08+00:00"
  1446. },
  1447. {
  1448. "name": "league/commonmark",
  1449. "version": "1.5.4",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/thephpleague/commonmark.git",
  1453. "reference": "21819c989e69bab07e933866ad30c7e3f32984ba"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/21819c989e69bab07e933866ad30c7e3f32984ba",
  1458. "reference": "21819c989e69bab07e933866ad30c7e3f32984ba",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "ext-mbstring": "*",
  1463. "php": "^7.1 || ^8.0"
  1464. },
  1465. "conflict": {
  1466. "scrutinizer/ocular": "1.7.*"
  1467. },
  1468. "require-dev": {
  1469. "cebe/markdown": "~1.0",
  1470. "commonmark/commonmark.js": "0.29.1",
  1471. "erusev/parsedown": "~1.0",
  1472. "ext-json": "*",
  1473. "github/gfm": "0.29.0",
  1474. "michelf/php-markdown": "~1.4",
  1475. "mikehaertl/php-shellcommand": "^1.4",
  1476. "phpstan/phpstan": "^0.12",
  1477. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1478. "scrutinizer/ocular": "^1.5",
  1479. "symfony/finder": "^4.2"
  1480. },
  1481. "bin": [
  1482. "bin/commonmark"
  1483. ],
  1484. "type": "library",
  1485. "autoload": {
  1486. "psr-4": {
  1487. "League\\CommonMark\\": "src"
  1488. }
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "BSD-3-Clause"
  1493. ],
  1494. "authors": [
  1495. {
  1496. "name": "Colin O'Dell",
  1497. "email": "colinodell@gmail.com",
  1498. "homepage": "https://www.colinodell.com",
  1499. "role": "Lead Developer"
  1500. }
  1501. ],
  1502. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1503. "homepage": "https://commonmark.thephpleague.com",
  1504. "keywords": [
  1505. "commonmark",
  1506. "flavored",
  1507. "gfm",
  1508. "github",
  1509. "github-flavored",
  1510. "markdown",
  1511. "md",
  1512. "parser"
  1513. ],
  1514. "funding": [
  1515. {
  1516. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1517. "type": "custom"
  1518. },
  1519. {
  1520. "url": "https://www.colinodell.com/sponsor",
  1521. "type": "custom"
  1522. },
  1523. {
  1524. "url": "https://www.paypal.me/colinpodell/10.00",
  1525. "type": "custom"
  1526. },
  1527. {
  1528. "url": "https://github.com/colinodell",
  1529. "type": "github"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/colinodell",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2020-08-18T01:19:12+00:00"
  1541. },
  1542. {
  1543. "name": "league/flysystem",
  1544. "version": "1.1.3",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/thephpleague/flysystem.git",
  1548. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1553. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "ext-fileinfo": "*",
  1558. "league/mime-type-detection": "^1.3",
  1559. "php": "^7.2.5 || ^8.0"
  1560. },
  1561. "conflict": {
  1562. "league/flysystem-sftp": "<1.0.6"
  1563. },
  1564. "require-dev": {
  1565. "phpspec/prophecy": "^1.11.1",
  1566. "phpunit/phpunit": "^8.5.8"
  1567. },
  1568. "suggest": {
  1569. "ext-fileinfo": "Required for MimeType",
  1570. "ext-ftp": "Allows you to use FTP server storage",
  1571. "ext-openssl": "Allows you to use FTPS server storage",
  1572. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1573. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1574. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1575. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1576. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1577. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1578. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1579. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1580. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1581. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1582. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1583. },
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-master": "1.1-dev"
  1588. }
  1589. },
  1590. "autoload": {
  1591. "psr-4": {
  1592. "League\\Flysystem\\": "src/"
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Frank de Jonge",
  1602. "email": "info@frenky.net"
  1603. }
  1604. ],
  1605. "description": "Filesystem abstraction: Many filesystems, one API.",
  1606. "keywords": [
  1607. "Cloud Files",
  1608. "WebDAV",
  1609. "abstraction",
  1610. "aws",
  1611. "cloud",
  1612. "copy.com",
  1613. "dropbox",
  1614. "file systems",
  1615. "files",
  1616. "filesystem",
  1617. "filesystems",
  1618. "ftp",
  1619. "rackspace",
  1620. "remote",
  1621. "s3",
  1622. "sftp",
  1623. "storage"
  1624. ],
  1625. "funding": [
  1626. {
  1627. "url": "https://offset.earth/frankdejonge",
  1628. "type": "other"
  1629. }
  1630. ],
  1631. "time": "2020-08-23T07:39:11+00:00"
  1632. },
  1633. {
  1634. "name": "league/mime-type-detection",
  1635. "version": "1.4.0",
  1636. "source": {
  1637. "type": "git",
  1638. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1639. "reference": "fda190b62b962d96a069fcc414d781db66d65b69"
  1640. },
  1641. "dist": {
  1642. "type": "zip",
  1643. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69",
  1644. "reference": "fda190b62b962d96a069fcc414d781db66d65b69",
  1645. "shasum": ""
  1646. },
  1647. "require": {
  1648. "ext-fileinfo": "*",
  1649. "php": "^7.2 || ^8.0"
  1650. },
  1651. "require-dev": {
  1652. "phpstan/phpstan": "^0.12.36",
  1653. "phpunit/phpunit": "^8.5.8"
  1654. },
  1655. "type": "library",
  1656. "autoload": {
  1657. "psr-4": {
  1658. "League\\MimeTypeDetection\\": "src"
  1659. }
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Frank de Jonge",
  1668. "email": "info@frankdejonge.nl"
  1669. }
  1670. ],
  1671. "description": "Mime-type detection for Flysystem",
  1672. "funding": [
  1673. {
  1674. "url": "https://github.com/frankdejonge",
  1675. "type": "github"
  1676. },
  1677. {
  1678. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1679. "type": "tidelift"
  1680. }
  1681. ],
  1682. "time": "2020-08-09T10:34:01+00:00"
  1683. },
  1684. {
  1685. "name": "maennchen/zipstream-php",
  1686. "version": "2.1.0",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1690. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1695. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1696. "shasum": ""
  1697. },
  1698. "require": {
  1699. "myclabs/php-enum": "^1.5",
  1700. "php": ">= 7.1",
  1701. "psr/http-message": "^1.0",
  1702. "symfony/polyfill-mbstring": "^1.0"
  1703. },
  1704. "require-dev": {
  1705. "ext-zip": "*",
  1706. "guzzlehttp/guzzle": ">= 6.3",
  1707. "mikey179/vfsstream": "^1.6",
  1708. "phpunit/phpunit": ">= 7.5"
  1709. },
  1710. "type": "library",
  1711. "autoload": {
  1712. "psr-4": {
  1713. "ZipStream\\": "src/"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Paul Duncan",
  1723. "email": "pabs@pablotron.org"
  1724. },
  1725. {
  1726. "name": "Jonatan Männchen",
  1727. "email": "jonatan@maennchen.ch"
  1728. },
  1729. {
  1730. "name": "Jesse Donat",
  1731. "email": "donatj@gmail.com"
  1732. },
  1733. {
  1734. "name": "András Kolesár",
  1735. "email": "kolesar@kolesar.hu"
  1736. }
  1737. ],
  1738. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1739. "keywords": [
  1740. "stream",
  1741. "zip"
  1742. ],
  1743. "funding": [
  1744. {
  1745. "url": "https://opencollective.com/zipstream",
  1746. "type": "open_collective"
  1747. }
  1748. ],
  1749. "time": "2020-05-30T13:11:16+00:00"
  1750. },
  1751. {
  1752. "name": "markbaker/complex",
  1753. "version": "1.5.0",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1757. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1762. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "php": "^5.6.0|^7.0"
  1767. },
  1768. "require-dev": {
  1769. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1770. "phpcompatibility/php-compatibility": "^9.0",
  1771. "phpdocumentor/phpdocumentor": "2.*",
  1772. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1773. "phpmd/phpmd": "2.*",
  1774. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1775. "sebastian/phpcpd": "2.*",
  1776. "squizlabs/php_codesniffer": "^3.4.0"
  1777. },
  1778. "type": "library",
  1779. "autoload": {
  1780. "psr-4": {
  1781. "Complex\\": "classes/src/"
  1782. },
  1783. "files": [
  1784. "classes/src/functions/abs.php",
  1785. "classes/src/functions/acos.php",
  1786. "classes/src/functions/acosh.php",
  1787. "classes/src/functions/acot.php",
  1788. "classes/src/functions/acoth.php",
  1789. "classes/src/functions/acsc.php",
  1790. "classes/src/functions/acsch.php",
  1791. "classes/src/functions/argument.php",
  1792. "classes/src/functions/asec.php",
  1793. "classes/src/functions/asech.php",
  1794. "classes/src/functions/asin.php",
  1795. "classes/src/functions/asinh.php",
  1796. "classes/src/functions/atan.php",
  1797. "classes/src/functions/atanh.php",
  1798. "classes/src/functions/conjugate.php",
  1799. "classes/src/functions/cos.php",
  1800. "classes/src/functions/cosh.php",
  1801. "classes/src/functions/cot.php",
  1802. "classes/src/functions/coth.php",
  1803. "classes/src/functions/csc.php",
  1804. "classes/src/functions/csch.php",
  1805. "classes/src/functions/exp.php",
  1806. "classes/src/functions/inverse.php",
  1807. "classes/src/functions/ln.php",
  1808. "classes/src/functions/log2.php",
  1809. "classes/src/functions/log10.php",
  1810. "classes/src/functions/negative.php",
  1811. "classes/src/functions/pow.php",
  1812. "classes/src/functions/rho.php",
  1813. "classes/src/functions/sec.php",
  1814. "classes/src/functions/sech.php",
  1815. "classes/src/functions/sin.php",
  1816. "classes/src/functions/sinh.php",
  1817. "classes/src/functions/sqrt.php",
  1818. "classes/src/functions/tan.php",
  1819. "classes/src/functions/tanh.php",
  1820. "classes/src/functions/theta.php",
  1821. "classes/src/operations/add.php",
  1822. "classes/src/operations/subtract.php",
  1823. "classes/src/operations/multiply.php",
  1824. "classes/src/operations/divideby.php",
  1825. "classes/src/operations/divideinto.php"
  1826. ]
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Mark Baker",
  1835. "email": "mark@lange.demon.co.uk"
  1836. }
  1837. ],
  1838. "description": "PHP Class for working with complex numbers",
  1839. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1840. "keywords": [
  1841. "complex",
  1842. "mathematics"
  1843. ],
  1844. "time": "2020-08-26T19:47:57+00:00"
  1845. },
  1846. {
  1847. "name": "markbaker/matrix",
  1848. "version": "1.2.1",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1852. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  1857. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  1858. "shasum": ""
  1859. },
  1860. "require": {
  1861. "php": "^5.6.0|^7.0.0"
  1862. },
  1863. "require-dev": {
  1864. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1865. "phpcompatibility/php-compatibility": "dev-master",
  1866. "phploc/phploc": "^4",
  1867. "phpmd/phpmd": "dev-master",
  1868. "phpunit/phpunit": "^5.7|^6.0|7.0",
  1869. "sebastian/phpcpd": "^3.0",
  1870. "squizlabs/php_codesniffer": "^3.0@dev"
  1871. },
  1872. "type": "library",
  1873. "autoload": {
  1874. "psr-4": {
  1875. "Matrix\\": "classes/src/"
  1876. },
  1877. "files": [
  1878. "classes/src/functions/adjoint.php",
  1879. "classes/src/functions/antidiagonal.php",
  1880. "classes/src/functions/cofactors.php",
  1881. "classes/src/functions/determinant.php",
  1882. "classes/src/functions/diagonal.php",
  1883. "classes/src/functions/identity.php",
  1884. "classes/src/functions/inverse.php",
  1885. "classes/src/functions/minors.php",
  1886. "classes/src/functions/trace.php",
  1887. "classes/src/functions/transpose.php",
  1888. "classes/src/operations/add.php",
  1889. "classes/src/operations/directsum.php",
  1890. "classes/src/operations/subtract.php",
  1891. "classes/src/operations/multiply.php",
  1892. "classes/src/operations/divideby.php",
  1893. "classes/src/operations/divideinto.php"
  1894. ]
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "Mark Baker",
  1903. "email": "mark@lange.demon.co.uk"
  1904. }
  1905. ],
  1906. "description": "PHP Class for working with matrices",
  1907. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1908. "keywords": [
  1909. "mathematics",
  1910. "matrix",
  1911. "vector"
  1912. ],
  1913. "time": "2020-08-28T19:41:55+00:00"
  1914. },
  1915. {
  1916. "name": "mews/captcha",
  1917. "version": "3.1.1",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/mewebstudio/captcha.git",
  1921. "reference": "700ce567b79d26b92f49704edfd1aeeb60940910"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/700ce567b79d26b92f49704edfd1aeeb60940910",
  1926. "reference": "700ce567b79d26b92f49704edfd1aeeb60940910",
  1927. "shasum": ""
  1928. },
  1929. "require": {
  1930. "ext-gd": "*",
  1931. "illuminate/config": "~5.0|^6.0|^7.0",
  1932. "illuminate/filesystem": "~5.0|^6.0|^7.0",
  1933. "illuminate/hashing": "~5.0|^6.0|^7.0",
  1934. "illuminate/session": "~5.0|^6.0|^7.0",
  1935. "illuminate/support": "~5.0|^6.0|^7.0",
  1936. "intervention/image": "~2.5",
  1937. "php": "^7.2"
  1938. },
  1939. "require-dev": {
  1940. "mockery/mockery": "^1.0",
  1941. "phpunit/phpunit": "^8.5"
  1942. },
  1943. "type": "package",
  1944. "extra": {
  1945. "laravel": {
  1946. "providers": [
  1947. "Mews\\Captcha\\CaptchaServiceProvider"
  1948. ],
  1949. "aliases": {
  1950. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  1951. }
  1952. }
  1953. },
  1954. "autoload": {
  1955. "psr-4": {
  1956. "Mews\\Captcha\\": "src/"
  1957. },
  1958. "files": [
  1959. "src/helpers.php"
  1960. ]
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "authors": [
  1967. {
  1968. "name": "Muharrem ERİN",
  1969. "email": "me@mewebstudio.com",
  1970. "homepage": "https://github.com/mewebstudio",
  1971. "role": "Developer"
  1972. }
  1973. ],
  1974. "description": "Laravel 5 & 6 Captcha Package",
  1975. "homepage": "https://github.com/mewebstudio/captcha",
  1976. "keywords": [
  1977. "captcha",
  1978. "laravel5 Security",
  1979. "laravel6 Captcha",
  1980. "laravel6 Security"
  1981. ],
  1982. "time": "2020-08-21T15:58:16+00:00"
  1983. },
  1984. {
  1985. "name": "mews/purifier",
  1986. "version": "3.2.3",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/mewebstudio/Purifier.git",
  1990. "reference": "01445654edf1a737efd9c93bbbe5c90ddf006712"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/01445654edf1a737efd9c93bbbe5c90ddf006712",
  1995. "reference": "01445654edf1a737efd9c93bbbe5c90ddf006712",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "ezyang/htmlpurifier": "4.13.*",
  2000. "illuminate/config": "^5.1|^6.0|^7.0",
  2001. "illuminate/filesystem": "^5.1|^6.0|^7.0",
  2002. "illuminate/support": "^5.1|^6.0|^7.0",
  2003. "php": "^7.2"
  2004. },
  2005. "require-dev": {
  2006. "graham-campbell/testbench": "^3.2",
  2007. "mockery/mockery": "0.9.*",
  2008. "phpunit/phpunit": "^4.8|^5.0",
  2009. "scrutinizer/ocular": "^1.3"
  2010. },
  2011. "suggest": {
  2012. "laravel/framework": "To test the Laravel bindings",
  2013. "laravel/lumen-framework": "To test the Lumen bindings"
  2014. },
  2015. "type": "package",
  2016. "extra": {
  2017. "laravel": {
  2018. "providers": [
  2019. "Mews\\Purifier\\PurifierServiceProvider"
  2020. ],
  2021. "aliases": {
  2022. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2023. }
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Mews\\Purifier\\": "src/"
  2029. },
  2030. "files": [
  2031. "src/helpers.php"
  2032. ]
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Muharrem ERİN",
  2041. "email": "me@mewebstudio.com",
  2042. "homepage": "https://github.com/mewebstudio",
  2043. "role": "Developer"
  2044. }
  2045. ],
  2046. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2047. "homepage": "https://github.com/mewebstudio/purifier",
  2048. "keywords": [
  2049. "Purifier",
  2050. "htmlpurifier",
  2051. "laravel5 HtmlPurifier",
  2052. "laravel5 Purifier",
  2053. "laravel5 Security",
  2054. "laravel6 HtmlPurifier",
  2055. "laravel6 Purifier",
  2056. "laravel6 Security",
  2057. "security",
  2058. "xss"
  2059. ],
  2060. "time": "2020-07-10T17:14:50+00:00"
  2061. },
  2062. {
  2063. "name": "mobiledetect/mobiledetectlib",
  2064. "version": "2.8.34",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2068. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2073. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2074. "shasum": ""
  2075. },
  2076. "require": {
  2077. "php": ">=5.0.0"
  2078. },
  2079. "require-dev": {
  2080. "phpunit/phpunit": "~4.8.35||~5.7"
  2081. },
  2082. "type": "library",
  2083. "autoload": {
  2084. "classmap": [
  2085. "Mobile_Detect.php"
  2086. ],
  2087. "psr-0": {
  2088. "Detection": "namespaced/"
  2089. }
  2090. },
  2091. "notification-url": "https://packagist.org/downloads/",
  2092. "license": [
  2093. "MIT"
  2094. ],
  2095. "authors": [
  2096. {
  2097. "name": "Serban Ghita",
  2098. "email": "serbanghita@gmail.com",
  2099. "homepage": "http://mobiledetect.net",
  2100. "role": "Developer"
  2101. }
  2102. ],
  2103. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2104. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2105. "keywords": [
  2106. "detect mobile devices",
  2107. "mobile",
  2108. "mobile detect",
  2109. "mobile detector",
  2110. "php mobile detect"
  2111. ],
  2112. "time": "2019-09-18T18:44:20+00:00"
  2113. },
  2114. {
  2115. "name": "monolog/monolog",
  2116. "version": "2.1.1",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/Seldaek/monolog.git",
  2120. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2125. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2126. "shasum": ""
  2127. },
  2128. "require": {
  2129. "php": ">=7.2",
  2130. "psr/log": "^1.0.1"
  2131. },
  2132. "provide": {
  2133. "psr/log-implementation": "1.0.0"
  2134. },
  2135. "require-dev": {
  2136. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2137. "doctrine/couchdb": "~1.0@dev",
  2138. "elasticsearch/elasticsearch": "^6.0",
  2139. "graylog2/gelf-php": "^1.4.2",
  2140. "php-amqplib/php-amqplib": "~2.4",
  2141. "php-console/php-console": "^3.1.3",
  2142. "php-parallel-lint/php-parallel-lint": "^1.0",
  2143. "phpspec/prophecy": "^1.6.1",
  2144. "phpunit/phpunit": "^8.5",
  2145. "predis/predis": "^1.1",
  2146. "rollbar/rollbar": "^1.3",
  2147. "ruflin/elastica": ">=0.90 <3.0",
  2148. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2149. },
  2150. "suggest": {
  2151. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2152. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2153. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2154. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2155. "ext-mbstring": "Allow to work properly with unicode symbols",
  2156. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2157. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2158. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2159. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2160. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2161. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2162. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2163. },
  2164. "type": "library",
  2165. "extra": {
  2166. "branch-alias": {
  2167. "dev-master": "2.x-dev"
  2168. }
  2169. },
  2170. "autoload": {
  2171. "psr-4": {
  2172. "Monolog\\": "src/Monolog"
  2173. }
  2174. },
  2175. "notification-url": "https://packagist.org/downloads/",
  2176. "license": [
  2177. "MIT"
  2178. ],
  2179. "authors": [
  2180. {
  2181. "name": "Jordi Boggiano",
  2182. "email": "j.boggiano@seld.be",
  2183. "homepage": "http://seld.be"
  2184. }
  2185. ],
  2186. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2187. "homepage": "http://github.com/Seldaek/monolog",
  2188. "keywords": [
  2189. "log",
  2190. "logging",
  2191. "psr-3"
  2192. ],
  2193. "funding": [
  2194. {
  2195. "url": "https://github.com/Seldaek",
  2196. "type": "github"
  2197. },
  2198. {
  2199. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2200. "type": "tidelift"
  2201. }
  2202. ],
  2203. "time": "2020-07-23T08:41:23+00:00"
  2204. },
  2205. {
  2206. "name": "myclabs/php-enum",
  2207. "version": "1.7.6",
  2208. "source": {
  2209. "type": "git",
  2210. "url": "https://github.com/myclabs/php-enum.git",
  2211. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2212. },
  2213. "dist": {
  2214. "type": "zip",
  2215. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2216. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2217. "shasum": ""
  2218. },
  2219. "require": {
  2220. "ext-json": "*",
  2221. "php": ">=7.1"
  2222. },
  2223. "require-dev": {
  2224. "phpunit/phpunit": "^7",
  2225. "squizlabs/php_codesniffer": "1.*",
  2226. "vimeo/psalm": "^3.8"
  2227. },
  2228. "type": "library",
  2229. "autoload": {
  2230. "psr-4": {
  2231. "MyCLabs\\Enum\\": "src/"
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "PHP Enum contributors",
  2241. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2242. }
  2243. ],
  2244. "description": "PHP Enum implementation",
  2245. "homepage": "http://github.com/myclabs/php-enum",
  2246. "keywords": [
  2247. "enum"
  2248. ],
  2249. "time": "2020-02-14T08:15:52+00:00"
  2250. },
  2251. {
  2252. "name": "nesbot/carbon",
  2253. "version": "2.39.0",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/briannesbitt/Carbon.git",
  2257. "reference": "0a41ea7f7fedacf307b7a339800e10356a042918"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0a41ea7f7fedacf307b7a339800e10356a042918",
  2262. "reference": "0a41ea7f7fedacf307b7a339800e10356a042918",
  2263. "shasum": ""
  2264. },
  2265. "require": {
  2266. "ext-json": "*",
  2267. "php": "^7.1.8 || ^8.0",
  2268. "symfony/polyfill-mbstring": "^1.0",
  2269. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2270. },
  2271. "require-dev": {
  2272. "doctrine/orm": "^2.7",
  2273. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2274. "kylekatarnls/multi-tester": "^2.0",
  2275. "phpmd/phpmd": "^2.8",
  2276. "phpstan/extension-installer": "^1.0",
  2277. "phpstan/phpstan": "^0.12.35",
  2278. "phpunit/phpunit": "^7.5 || ^8.0",
  2279. "squizlabs/php_codesniffer": "^3.4"
  2280. },
  2281. "bin": [
  2282. "bin/carbon"
  2283. ],
  2284. "type": "library",
  2285. "extra": {
  2286. "branch-alias": {
  2287. "dev-master": "2.x-dev",
  2288. "dev-3.x": "3.x-dev"
  2289. },
  2290. "laravel": {
  2291. "providers": [
  2292. "Carbon\\Laravel\\ServiceProvider"
  2293. ]
  2294. },
  2295. "phpstan": {
  2296. "includes": [
  2297. "extension.neon"
  2298. ]
  2299. }
  2300. },
  2301. "autoload": {
  2302. "psr-4": {
  2303. "Carbon\\": "src/Carbon/"
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "Brian Nesbitt",
  2313. "email": "brian@nesbot.com",
  2314. "homepage": "http://nesbot.com"
  2315. },
  2316. {
  2317. "name": "kylekatarnls",
  2318. "homepage": "http://github.com/kylekatarnls"
  2319. }
  2320. ],
  2321. "description": "An API extension for DateTime that supports 281 different languages.",
  2322. "homepage": "http://carbon.nesbot.com",
  2323. "keywords": [
  2324. "date",
  2325. "datetime",
  2326. "time"
  2327. ],
  2328. "funding": [
  2329. {
  2330. "url": "https://opencollective.com/Carbon",
  2331. "type": "open_collective"
  2332. },
  2333. {
  2334. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2335. "type": "tidelift"
  2336. }
  2337. ],
  2338. "time": "2020-08-24T12:35:58+00:00"
  2339. },
  2340. {
  2341. "name": "nikic/php-parser",
  2342. "version": "v4.9.1",
  2343. "source": {
  2344. "type": "git",
  2345. "url": "https://github.com/nikic/PHP-Parser.git",
  2346. "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28"
  2347. },
  2348. "dist": {
  2349. "type": "zip",
  2350. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/88e519766fc58bd46b8265561fb79b54e2e00b28",
  2351. "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28",
  2352. "shasum": ""
  2353. },
  2354. "require": {
  2355. "ext-tokenizer": "*",
  2356. "php": ">=7.0"
  2357. },
  2358. "require-dev": {
  2359. "ircmaxell/php-yacc": "^0.0.7",
  2360. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2361. },
  2362. "bin": [
  2363. "bin/php-parse"
  2364. ],
  2365. "type": "library",
  2366. "extra": {
  2367. "branch-alias": {
  2368. "dev-master": "4.9-dev"
  2369. }
  2370. },
  2371. "autoload": {
  2372. "psr-4": {
  2373. "PhpParser\\": "lib/PhpParser"
  2374. }
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "BSD-3-Clause"
  2379. ],
  2380. "authors": [
  2381. {
  2382. "name": "Nikita Popov"
  2383. }
  2384. ],
  2385. "description": "A PHP parser written in PHP",
  2386. "keywords": [
  2387. "parser",
  2388. "php"
  2389. ],
  2390. "time": "2020-08-30T16:15:20+00:00"
  2391. },
  2392. {
  2393. "name": "openlss/lib-array2xml",
  2394. "version": "1.0.0",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/nullivex/lib-array2xml.git",
  2398. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2403. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": ">=5.3.2"
  2408. },
  2409. "type": "library",
  2410. "autoload": {
  2411. "psr-0": {
  2412. "LSS": ""
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "Apache-2.0"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Bryan Tong",
  2422. "email": "bryan@nullivex.com",
  2423. "homepage": "https://www.nullivex.com"
  2424. },
  2425. {
  2426. "name": "Tony Butler",
  2427. "email": "spudz76@gmail.com",
  2428. "homepage": "https://www.nullivex.com"
  2429. }
  2430. ],
  2431. "description": "Array2XML conversion library credit to lalit.org",
  2432. "homepage": "https://www.nullivex.com",
  2433. "keywords": [
  2434. "array",
  2435. "array conversion",
  2436. "xml",
  2437. "xml conversion"
  2438. ],
  2439. "time": "2019-03-29T20:06:56+00:00"
  2440. },
  2441. {
  2442. "name": "opis/closure",
  2443. "version": "3.5.6",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/opis/closure.git",
  2447. "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/opis/closure/zipball/e8d34df855b0a0549a300cb8cb4db472556e8aa9",
  2452. "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": "^5.4 || ^7.0"
  2457. },
  2458. "require-dev": {
  2459. "jeremeamia/superclosure": "^2.0",
  2460. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2461. },
  2462. "type": "library",
  2463. "extra": {
  2464. "branch-alias": {
  2465. "dev-master": "3.5.x-dev"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Opis\\Closure\\": "src/"
  2471. },
  2472. "files": [
  2473. "functions.php"
  2474. ]
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "MIT"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Marius Sarca",
  2483. "email": "marius.sarca@gmail.com"
  2484. },
  2485. {
  2486. "name": "Sorin Sarca",
  2487. "email": "sarca_sorin@hotmail.com"
  2488. }
  2489. ],
  2490. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2491. "homepage": "https://opis.io/closure",
  2492. "keywords": [
  2493. "anonymous functions",
  2494. "closure",
  2495. "function",
  2496. "serializable",
  2497. "serialization",
  2498. "serialize"
  2499. ],
  2500. "time": "2020-08-11T08:46:50+00:00"
  2501. },
  2502. {
  2503. "name": "overtrue/laravel-lang",
  2504. "version": "4.0.1",
  2505. "source": {
  2506. "type": "git",
  2507. "url": "https://github.com/overtrue/laravel-lang.git",
  2508. "reference": "8622a7d41fa52c502acaf63a4c416e849e02dfc7"
  2509. },
  2510. "dist": {
  2511. "type": "zip",
  2512. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/8622a7d41fa52c502acaf63a4c416e849e02dfc7",
  2513. "reference": "8622a7d41fa52c502acaf63a4c416e849e02dfc7",
  2514. "shasum": ""
  2515. },
  2516. "require": {
  2517. "caouecs/laravel-lang": "~7.0",
  2518. "symfony/process": "^5.0.0"
  2519. },
  2520. "require-dev": {
  2521. "laravel/framework": "~7.0"
  2522. },
  2523. "type": "library",
  2524. "extra": {
  2525. "laravel": {
  2526. "providers": [
  2527. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  2528. ]
  2529. }
  2530. },
  2531. "autoload": {
  2532. "psr-4": {
  2533. "Overtrue\\LaravelLang\\": "src/"
  2534. },
  2535. "files": [
  2536. "src/helpers.php"
  2537. ]
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "overtrue",
  2546. "email": "anzhengchao@gmail.com"
  2547. }
  2548. ],
  2549. "description": "List of 52 languages for Laravel 5",
  2550. "keywords": [
  2551. "i18n",
  2552. "languages",
  2553. "laravel",
  2554. "locale",
  2555. "overtrue"
  2556. ],
  2557. "funding": [
  2558. {
  2559. "url": "https://www.patreon.com/overtrue",
  2560. "type": "patreon"
  2561. }
  2562. ],
  2563. "time": "2020-07-21T06:36:31+00:00"
  2564. },
  2565. {
  2566. "name": "paragonie/random_compat",
  2567. "version": "v9.99.99",
  2568. "source": {
  2569. "type": "git",
  2570. "url": "https://github.com/paragonie/random_compat.git",
  2571. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2572. },
  2573. "dist": {
  2574. "type": "zip",
  2575. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2576. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2577. "shasum": ""
  2578. },
  2579. "require": {
  2580. "php": "^7"
  2581. },
  2582. "require-dev": {
  2583. "phpunit/phpunit": "4.*|5.*",
  2584. "vimeo/psalm": "^1"
  2585. },
  2586. "suggest": {
  2587. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2588. },
  2589. "type": "library",
  2590. "notification-url": "https://packagist.org/downloads/",
  2591. "license": [
  2592. "MIT"
  2593. ],
  2594. "authors": [
  2595. {
  2596. "name": "Paragon Initiative Enterprises",
  2597. "email": "security@paragonie.com",
  2598. "homepage": "https://paragonie.com"
  2599. }
  2600. ],
  2601. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2602. "keywords": [
  2603. "csprng",
  2604. "polyfill",
  2605. "pseudorandom",
  2606. "random"
  2607. ],
  2608. "time": "2018-07-02T15:55:56+00:00"
  2609. },
  2610. {
  2611. "name": "phpoffice/phpspreadsheet",
  2612. "version": "1.14.1",
  2613. "source": {
  2614. "type": "git",
  2615. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2616. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  2617. },
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  2621. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "ext-ctype": "*",
  2626. "ext-dom": "*",
  2627. "ext-fileinfo": "*",
  2628. "ext-gd": "*",
  2629. "ext-iconv": "*",
  2630. "ext-libxml": "*",
  2631. "ext-mbstring": "*",
  2632. "ext-simplexml": "*",
  2633. "ext-xml": "*",
  2634. "ext-xmlreader": "*",
  2635. "ext-xmlwriter": "*",
  2636. "ext-zip": "*",
  2637. "ext-zlib": "*",
  2638. "maennchen/zipstream-php": "^2.1",
  2639. "markbaker/complex": "^1.4",
  2640. "markbaker/matrix": "^1.2",
  2641. "php": "^7.2",
  2642. "psr/http-client": "^1.0",
  2643. "psr/http-factory": "^1.0",
  2644. "psr/simple-cache": "^1.0"
  2645. },
  2646. "require-dev": {
  2647. "dompdf/dompdf": "^0.8.5",
  2648. "friendsofphp/php-cs-fixer": "^2.16",
  2649. "jpgraph/jpgraph": "^4.0",
  2650. "mpdf/mpdf": "^8.0",
  2651. "phpcompatibility/php-compatibility": "^9.3",
  2652. "phpunit/phpunit": "^8.5",
  2653. "squizlabs/php_codesniffer": "^3.5",
  2654. "tecnickcom/tcpdf": "^6.3"
  2655. },
  2656. "suggest": {
  2657. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2658. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2659. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2660. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2661. },
  2662. "type": "library",
  2663. "autoload": {
  2664. "psr-4": {
  2665. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2666. }
  2667. },
  2668. "notification-url": "https://packagist.org/downloads/",
  2669. "license": [
  2670. "MIT"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "Maarten Balliauw",
  2675. "homepage": "https://blog.maartenballiauw.be"
  2676. },
  2677. {
  2678. "name": "Mark Baker",
  2679. "homepage": "https://markbakeruk.net"
  2680. },
  2681. {
  2682. "name": "Franck Lefevre",
  2683. "homepage": "https://rootslabs.net"
  2684. },
  2685. {
  2686. "name": "Erik Tilt"
  2687. },
  2688. {
  2689. "name": "Adrien Crivelli"
  2690. }
  2691. ],
  2692. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2693. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2694. "keywords": [
  2695. "OpenXML",
  2696. "excel",
  2697. "gnumeric",
  2698. "ods",
  2699. "php",
  2700. "spreadsheet",
  2701. "xls",
  2702. "xlsx"
  2703. ],
  2704. "time": "2020-07-19T09:51:35+00:00"
  2705. },
  2706. {
  2707. "name": "phpoption/phpoption",
  2708. "version": "1.7.5",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/schmittjoh/php-option.git",
  2712. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2717. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2718. "shasum": ""
  2719. },
  2720. "require": {
  2721. "php": "^5.5.9 || ^7.0 || ^8.0"
  2722. },
  2723. "require-dev": {
  2724. "bamarni/composer-bin-plugin": "^1.4.1",
  2725. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  2726. },
  2727. "type": "library",
  2728. "extra": {
  2729. "branch-alias": {
  2730. "dev-master": "1.7-dev"
  2731. }
  2732. },
  2733. "autoload": {
  2734. "psr-4": {
  2735. "PhpOption\\": "src/PhpOption/"
  2736. }
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "Apache-2.0"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "Johannes M. Schmitt",
  2745. "email": "schmittjoh@gmail.com"
  2746. },
  2747. {
  2748. "name": "Graham Campbell",
  2749. "email": "graham@alt-three.com"
  2750. }
  2751. ],
  2752. "description": "Option Type for PHP",
  2753. "keywords": [
  2754. "language",
  2755. "option",
  2756. "php",
  2757. "type"
  2758. ],
  2759. "funding": [
  2760. {
  2761. "url": "https://github.com/GrahamCampbell",
  2762. "type": "github"
  2763. },
  2764. {
  2765. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2766. "type": "tidelift"
  2767. }
  2768. ],
  2769. "time": "2020-07-20T17:29:33+00:00"
  2770. },
  2771. {
  2772. "name": "psr/container",
  2773. "version": "1.0.0",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/php-fig/container.git",
  2777. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2782. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2783. "shasum": ""
  2784. },
  2785. "require": {
  2786. "php": ">=5.3.0"
  2787. },
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-master": "1.0.x-dev"
  2792. }
  2793. },
  2794. "autoload": {
  2795. "psr-4": {
  2796. "Psr\\Container\\": "src/"
  2797. }
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "MIT"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "PHP-FIG",
  2806. "homepage": "http://www.php-fig.org/"
  2807. }
  2808. ],
  2809. "description": "Common Container Interface (PHP FIG PSR-11)",
  2810. "homepage": "https://github.com/php-fig/container",
  2811. "keywords": [
  2812. "PSR-11",
  2813. "container",
  2814. "container-interface",
  2815. "container-interop",
  2816. "psr"
  2817. ],
  2818. "time": "2017-02-14T16:28:37+00:00"
  2819. },
  2820. {
  2821. "name": "psr/event-dispatcher",
  2822. "version": "1.0.0",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/php-fig/event-dispatcher.git",
  2826. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2831. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "php": ">=7.2.0"
  2836. },
  2837. "type": "library",
  2838. "extra": {
  2839. "branch-alias": {
  2840. "dev-master": "1.0.x-dev"
  2841. }
  2842. },
  2843. "autoload": {
  2844. "psr-4": {
  2845. "Psr\\EventDispatcher\\": "src/"
  2846. }
  2847. },
  2848. "notification-url": "https://packagist.org/downloads/",
  2849. "license": [
  2850. "MIT"
  2851. ],
  2852. "authors": [
  2853. {
  2854. "name": "PHP-FIG",
  2855. "homepage": "http://www.php-fig.org/"
  2856. }
  2857. ],
  2858. "description": "Standard interfaces for event handling.",
  2859. "keywords": [
  2860. "events",
  2861. "psr",
  2862. "psr-14"
  2863. ],
  2864. "time": "2019-01-08T18:20:26+00:00"
  2865. },
  2866. {
  2867. "name": "psr/http-client",
  2868. "version": "1.0.1",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/php-fig/http-client.git",
  2872. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2877. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "php": "^7.0 || ^8.0",
  2882. "psr/http-message": "^1.0"
  2883. },
  2884. "type": "library",
  2885. "extra": {
  2886. "branch-alias": {
  2887. "dev-master": "1.0.x-dev"
  2888. }
  2889. },
  2890. "autoload": {
  2891. "psr-4": {
  2892. "Psr\\Http\\Client\\": "src/"
  2893. }
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "PHP-FIG",
  2902. "homepage": "http://www.php-fig.org/"
  2903. }
  2904. ],
  2905. "description": "Common interface for HTTP clients",
  2906. "homepage": "https://github.com/php-fig/http-client",
  2907. "keywords": [
  2908. "http",
  2909. "http-client",
  2910. "psr",
  2911. "psr-18"
  2912. ],
  2913. "time": "2020-06-29T06:28:15+00:00"
  2914. },
  2915. {
  2916. "name": "psr/http-factory",
  2917. "version": "1.0.1",
  2918. "source": {
  2919. "type": "git",
  2920. "url": "https://github.com/php-fig/http-factory.git",
  2921. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2922. },
  2923. "dist": {
  2924. "type": "zip",
  2925. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2926. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2927. "shasum": ""
  2928. },
  2929. "require": {
  2930. "php": ">=7.0.0",
  2931. "psr/http-message": "^1.0"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "1.0.x-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Psr\\Http\\Message\\": "src/"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "PHP-FIG",
  2951. "homepage": "http://www.php-fig.org/"
  2952. }
  2953. ],
  2954. "description": "Common interfaces for PSR-7 HTTP message factories",
  2955. "keywords": [
  2956. "factory",
  2957. "http",
  2958. "message",
  2959. "psr",
  2960. "psr-17",
  2961. "psr-7",
  2962. "request",
  2963. "response"
  2964. ],
  2965. "time": "2019-04-30T12:38:16+00:00"
  2966. },
  2967. {
  2968. "name": "psr/http-message",
  2969. "version": "1.0.1",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://github.com/php-fig/http-message.git",
  2973. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2978. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2979. "shasum": ""
  2980. },
  2981. "require": {
  2982. "php": ">=5.3.0"
  2983. },
  2984. "type": "library",
  2985. "extra": {
  2986. "branch-alias": {
  2987. "dev-master": "1.0.x-dev"
  2988. }
  2989. },
  2990. "autoload": {
  2991. "psr-4": {
  2992. "Psr\\Http\\Message\\": "src/"
  2993. }
  2994. },
  2995. "notification-url": "https://packagist.org/downloads/",
  2996. "license": [
  2997. "MIT"
  2998. ],
  2999. "authors": [
  3000. {
  3001. "name": "PHP-FIG",
  3002. "homepage": "http://www.php-fig.org/"
  3003. }
  3004. ],
  3005. "description": "Common interface for HTTP messages",
  3006. "homepage": "https://github.com/php-fig/http-message",
  3007. "keywords": [
  3008. "http",
  3009. "http-message",
  3010. "psr",
  3011. "psr-7",
  3012. "request",
  3013. "response"
  3014. ],
  3015. "time": "2016-08-06T14:39:51+00:00"
  3016. },
  3017. {
  3018. "name": "psr/log",
  3019. "version": "1.1.3",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/php-fig/log.git",
  3023. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3028. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "php": ">=5.3.0"
  3033. },
  3034. "type": "library",
  3035. "extra": {
  3036. "branch-alias": {
  3037. "dev-master": "1.1.x-dev"
  3038. }
  3039. },
  3040. "autoload": {
  3041. "psr-4": {
  3042. "Psr\\Log\\": "Psr/Log/"
  3043. }
  3044. },
  3045. "notification-url": "https://packagist.org/downloads/",
  3046. "license": [
  3047. "MIT"
  3048. ],
  3049. "authors": [
  3050. {
  3051. "name": "PHP-FIG",
  3052. "homepage": "http://www.php-fig.org/"
  3053. }
  3054. ],
  3055. "description": "Common interface for logging libraries",
  3056. "homepage": "https://github.com/php-fig/log",
  3057. "keywords": [
  3058. "log",
  3059. "psr",
  3060. "psr-3"
  3061. ],
  3062. "time": "2020-03-23T09:12:05+00:00"
  3063. },
  3064. {
  3065. "name": "psr/simple-cache",
  3066. "version": "1.0.1",
  3067. "source": {
  3068. "type": "git",
  3069. "url": "https://github.com/php-fig/simple-cache.git",
  3070. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3071. },
  3072. "dist": {
  3073. "type": "zip",
  3074. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3075. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3076. "shasum": ""
  3077. },
  3078. "require": {
  3079. "php": ">=5.3.0"
  3080. },
  3081. "type": "library",
  3082. "extra": {
  3083. "branch-alias": {
  3084. "dev-master": "1.0.x-dev"
  3085. }
  3086. },
  3087. "autoload": {
  3088. "psr-4": {
  3089. "Psr\\SimpleCache\\": "src/"
  3090. }
  3091. },
  3092. "notification-url": "https://packagist.org/downloads/",
  3093. "license": [
  3094. "MIT"
  3095. ],
  3096. "authors": [
  3097. {
  3098. "name": "PHP-FIG",
  3099. "homepage": "http://www.php-fig.org/"
  3100. }
  3101. ],
  3102. "description": "Common interfaces for simple caching",
  3103. "keywords": [
  3104. "cache",
  3105. "caching",
  3106. "psr",
  3107. "psr-16",
  3108. "simple-cache"
  3109. ],
  3110. "time": "2017-10-23T01:57:42+00:00"
  3111. },
  3112. {
  3113. "name": "psy/psysh",
  3114. "version": "v0.10.4",
  3115. "source": {
  3116. "type": "git",
  3117. "url": "https://github.com/bobthecow/psysh.git",
  3118. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3119. },
  3120. "dist": {
  3121. "type": "zip",
  3122. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3123. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3124. "shasum": ""
  3125. },
  3126. "require": {
  3127. "dnoegel/php-xdg-base-dir": "0.1.*",
  3128. "ext-json": "*",
  3129. "ext-tokenizer": "*",
  3130. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3131. "php": "^8.0 || ^7.0 || ^5.5.9",
  3132. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3133. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3134. },
  3135. "require-dev": {
  3136. "bamarni/composer-bin-plugin": "^1.2",
  3137. "hoa/console": "3.17.*"
  3138. },
  3139. "suggest": {
  3140. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3141. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3142. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3143. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3144. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3145. },
  3146. "bin": [
  3147. "bin/psysh"
  3148. ],
  3149. "type": "library",
  3150. "extra": {
  3151. "branch-alias": {
  3152. "dev-master": "0.10.x-dev"
  3153. }
  3154. },
  3155. "autoload": {
  3156. "files": [
  3157. "src/functions.php"
  3158. ],
  3159. "psr-4": {
  3160. "Psy\\": "src/"
  3161. }
  3162. },
  3163. "notification-url": "https://packagist.org/downloads/",
  3164. "license": [
  3165. "MIT"
  3166. ],
  3167. "authors": [
  3168. {
  3169. "name": "Justin Hileman",
  3170. "email": "justin@justinhileman.info",
  3171. "homepage": "http://justinhileman.com"
  3172. }
  3173. ],
  3174. "description": "An interactive shell for modern PHP.",
  3175. "homepage": "http://psysh.org",
  3176. "keywords": [
  3177. "REPL",
  3178. "console",
  3179. "interactive",
  3180. "shell"
  3181. ],
  3182. "time": "2020-05-03T19:32:03+00:00"
  3183. },
  3184. {
  3185. "name": "ralouphie/getallheaders",
  3186. "version": "3.0.3",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/ralouphie/getallheaders.git",
  3190. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3195. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "php": ">=5.6"
  3200. },
  3201. "require-dev": {
  3202. "php-coveralls/php-coveralls": "^2.1",
  3203. "phpunit/phpunit": "^5 || ^6.5"
  3204. },
  3205. "type": "library",
  3206. "autoload": {
  3207. "files": [
  3208. "src/getallheaders.php"
  3209. ]
  3210. },
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "MIT"
  3214. ],
  3215. "authors": [
  3216. {
  3217. "name": "Ralph Khattar",
  3218. "email": "ralph.khattar@gmail.com"
  3219. }
  3220. ],
  3221. "description": "A polyfill for getallheaders.",
  3222. "time": "2019-03-08T08:55:37+00:00"
  3223. },
  3224. {
  3225. "name": "ramsey/collection",
  3226. "version": "1.1.0",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/ramsey/collection.git",
  3230. "reference": "044184884e3c803e4cbb6451386cb71562939b18"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://api.github.com/repos/ramsey/collection/zipball/044184884e3c803e4cbb6451386cb71562939b18",
  3235. "reference": "044184884e3c803e4cbb6451386cb71562939b18",
  3236. "shasum": ""
  3237. },
  3238. "require": {
  3239. "php": "^7.2 || ^8"
  3240. },
  3241. "require-dev": {
  3242. "captainhook/captainhook": "^5.3",
  3243. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3244. "ergebnis/composer-normalize": "^2.6",
  3245. "fzaninotto/faker": "^1.5",
  3246. "hamcrest/hamcrest-php": "^2",
  3247. "jangregor/phpstan-prophecy": "^0.6",
  3248. "mockery/mockery": "^1.3",
  3249. "phpstan/extension-installer": "^1",
  3250. "phpstan/phpstan": "^0.12.32",
  3251. "phpstan/phpstan-mockery": "^0.12.5",
  3252. "phpstan/phpstan-phpunit": "^0.12.11",
  3253. "phpunit/phpunit": "^8.5",
  3254. "psy/psysh": "^0.10.4",
  3255. "slevomat/coding-standard": "^6.3",
  3256. "squizlabs/php_codesniffer": "^3.5",
  3257. "vimeo/psalm": "^3.12.2"
  3258. },
  3259. "type": "library",
  3260. "autoload": {
  3261. "psr-4": {
  3262. "Ramsey\\Collection\\": "src/"
  3263. }
  3264. },
  3265. "notification-url": "https://packagist.org/downloads/",
  3266. "license": [
  3267. "MIT"
  3268. ],
  3269. "authors": [
  3270. {
  3271. "name": "Ben Ramsey",
  3272. "email": "ben@benramsey.com",
  3273. "homepage": "https://benramsey.com"
  3274. }
  3275. ],
  3276. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3277. "keywords": [
  3278. "array",
  3279. "collection",
  3280. "hash",
  3281. "map",
  3282. "queue",
  3283. "set"
  3284. ],
  3285. "funding": [
  3286. {
  3287. "url": "https://github.com/ramsey",
  3288. "type": "github"
  3289. }
  3290. ],
  3291. "time": "2020-08-11T00:57:21+00:00"
  3292. },
  3293. {
  3294. "name": "ramsey/uuid",
  3295. "version": "4.1.1",
  3296. "source": {
  3297. "type": "git",
  3298. "url": "https://github.com/ramsey/uuid.git",
  3299. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  3300. },
  3301. "dist": {
  3302. "type": "zip",
  3303. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  3304. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  3305. "shasum": ""
  3306. },
  3307. "require": {
  3308. "brick/math": "^0.8 || ^0.9",
  3309. "ext-json": "*",
  3310. "php": "^7.2 || ^8",
  3311. "ramsey/collection": "^1.0",
  3312. "symfony/polyfill-ctype": "^1.8"
  3313. },
  3314. "replace": {
  3315. "rhumsaa/uuid": "self.version"
  3316. },
  3317. "require-dev": {
  3318. "codeception/aspect-mock": "^3",
  3319. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  3320. "doctrine/annotations": "^1.8",
  3321. "goaop/framework": "^2",
  3322. "mockery/mockery": "^1.3",
  3323. "moontoast/math": "^1.1",
  3324. "paragonie/random-lib": "^2",
  3325. "php-mock/php-mock-mockery": "^1.3",
  3326. "php-mock/php-mock-phpunit": "^2.5",
  3327. "php-parallel-lint/php-parallel-lint": "^1.1",
  3328. "phpbench/phpbench": "^0.17.1",
  3329. "phpstan/extension-installer": "^1.0",
  3330. "phpstan/phpstan": "^0.12",
  3331. "phpstan/phpstan-mockery": "^0.12",
  3332. "phpstan/phpstan-phpunit": "^0.12",
  3333. "phpunit/phpunit": "^8.5",
  3334. "psy/psysh": "^0.10.0",
  3335. "slevomat/coding-standard": "^6.0",
  3336. "squizlabs/php_codesniffer": "^3.5",
  3337. "vimeo/psalm": "3.9.4"
  3338. },
  3339. "suggest": {
  3340. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3341. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3342. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3343. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3344. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3345. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3346. },
  3347. "type": "library",
  3348. "extra": {
  3349. "branch-alias": {
  3350. "dev-master": "4.x-dev"
  3351. }
  3352. },
  3353. "autoload": {
  3354. "psr-4": {
  3355. "Ramsey\\Uuid\\": "src/"
  3356. },
  3357. "files": [
  3358. "src/functions.php"
  3359. ]
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "MIT"
  3364. ],
  3365. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3366. "homepage": "https://github.com/ramsey/uuid",
  3367. "keywords": [
  3368. "guid",
  3369. "identifier",
  3370. "uuid"
  3371. ],
  3372. "funding": [
  3373. {
  3374. "url": "https://github.com/ramsey",
  3375. "type": "github"
  3376. }
  3377. ],
  3378. "time": "2020-08-18T17:17:46+00:00"
  3379. },
  3380. {
  3381. "name": "rap2hpoutre/laravel-log-viewer",
  3382. "version": "v1.6.1",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  3386. "reference": "40a6a9e8343673bd34a83419335c7b2496e9a477"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/40a6a9e8343673bd34a83419335c7b2496e9a477",
  3391. "reference": "40a6a9e8343673bd34a83419335c7b2496e9a477",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "illuminate/support": "4.2.*|5.*|^6.0|^7.0",
  3396. "php": ">=5.4.0"
  3397. },
  3398. "require-dev": {
  3399. "orchestra/testbench": "3.7.*",
  3400. "phpunit/phpunit": "^7"
  3401. },
  3402. "type": "laravel-package",
  3403. "extra": {
  3404. "laravel": {
  3405. "providers": [
  3406. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  3407. ]
  3408. }
  3409. },
  3410. "autoload": {
  3411. "classmap": [
  3412. "src/controllers"
  3413. ],
  3414. "psr-0": {
  3415. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  3416. }
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "MIT"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "rap2hpoutre",
  3425. "email": "raphaelht@gmail.com"
  3426. }
  3427. ],
  3428. "description": "A Laravel log reader",
  3429. "keywords": [
  3430. "laravel",
  3431. "log",
  3432. "log-reader",
  3433. "log-viewer",
  3434. "logging",
  3435. "lumen"
  3436. ],
  3437. "time": "2020-07-31T04:58:48+00:00"
  3438. },
  3439. {
  3440. "name": "riverslei/payment",
  3441. "version": "v5.1.0",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://github.com/helei112g/payment.git",
  3445. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3450. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3451. "shasum": ""
  3452. },
  3453. "require": {
  3454. "ext-bcmath": "*",
  3455. "ext-json": "*",
  3456. "ext-mbstring": "*",
  3457. "ext-openssl": "*",
  3458. "ext-simplexml": "*",
  3459. "ext-xml": "*",
  3460. "guzzlehttp/guzzle": "~6.0",
  3461. "php": ">=7.0"
  3462. },
  3463. "require-dev": {
  3464. "codeception/codeception": "*"
  3465. },
  3466. "type": "library",
  3467. "autoload": {
  3468. "psr-4": {
  3469. "Payment\\": "src/"
  3470. }
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "MIT"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "Leo",
  3479. "email": "dayugog@gmail.com",
  3480. "homepage": "https://dayutalk.cn"
  3481. }
  3482. ],
  3483. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  3484. "homepage": "http://helei112g.github.io/payment",
  3485. "keywords": [
  3486. "alipay",
  3487. "weixin",
  3488. "一网通",
  3489. "微信支付",
  3490. "招商一网通",
  3491. "支付宝支付",
  3492. "集成支付接口SDK"
  3493. ],
  3494. "time": "2020-05-04T03:07:17+00:00"
  3495. },
  3496. {
  3497. "name": "simplesoftwareio/simple-qrcode",
  3498. "version": "3.0.0",
  3499. "source": {
  3500. "type": "git",
  3501. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  3502. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e"
  3503. },
  3504. "dist": {
  3505. "type": "zip",
  3506. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  3507. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  3508. "shasum": ""
  3509. },
  3510. "require": {
  3511. "bacon/bacon-qr-code": "2.0.0",
  3512. "ext-gd": "*",
  3513. "php": ">=7.2"
  3514. },
  3515. "require-dev": {
  3516. "mockery/mockery": "~1",
  3517. "phpunit/phpunit": "~9"
  3518. },
  3519. "suggest": {
  3520. "ext-imagick": "Allows the generation of PNG QrCodes.",
  3521. "illuminate/support": "Allows for use within Laravel."
  3522. },
  3523. "type": "library",
  3524. "extra": {
  3525. "laravel": {
  3526. "providers": [
  3527. "SimpleSoftwareIO\\QrCode\\ServiceProvider"
  3528. ],
  3529. "aliases": {
  3530. "QrCode": "SimpleSoftwareIO\\QrCode\\Facade"
  3531. }
  3532. }
  3533. },
  3534. "autoload": {
  3535. "psr-4": {
  3536. "SimpleSoftwareIO\\QrCode\\": "src"
  3537. }
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "Simple Software LLC",
  3546. "email": "support@simplesoftware.io"
  3547. }
  3548. ],
  3549. "description": "Simple QrCode is a QR code generator made for Laravel.",
  3550. "homepage": "http://www.simplesoftware.io",
  3551. "keywords": [
  3552. "Simple",
  3553. "generator",
  3554. "laravel",
  3555. "qrcode",
  3556. "wrapper"
  3557. ],
  3558. "time": "2020-06-02T20:41:21+00:00"
  3559. },
  3560. {
  3561. "name": "spatie/laravel-permission",
  3562. "version": "3.16.0",
  3563. "source": {
  3564. "type": "git",
  3565. "url": "https://github.com/spatie/laravel-permission.git",
  3566. "reference": "c5082ee84e0d128896b4a6864a8502d8c5f1df08"
  3567. },
  3568. "dist": {
  3569. "type": "zip",
  3570. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/c5082ee84e0d128896b4a6864a8502d8c5f1df08",
  3571. "reference": "c5082ee84e0d128896b4a6864a8502d8c5f1df08",
  3572. "shasum": ""
  3573. },
  3574. "require": {
  3575. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  3576. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  3577. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  3578. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  3579. "php": "^7.2.5"
  3580. },
  3581. "require-dev": {
  3582. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  3583. "phpunit/phpunit": "^8.0|^9.0",
  3584. "predis/predis": "^1.1"
  3585. },
  3586. "type": "library",
  3587. "extra": {
  3588. "laravel": {
  3589. "providers": [
  3590. "Spatie\\Permission\\PermissionServiceProvider"
  3591. ]
  3592. }
  3593. },
  3594. "autoload": {
  3595. "psr-4": {
  3596. "Spatie\\Permission\\": "src"
  3597. },
  3598. "files": [
  3599. "src/helpers.php"
  3600. ]
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Freek Van der Herten",
  3609. "email": "freek@spatie.be",
  3610. "homepage": "https://spatie.be",
  3611. "role": "Developer"
  3612. }
  3613. ],
  3614. "description": "Permission handling for Laravel 5.8 and up",
  3615. "homepage": "https://github.com/spatie/laravel-permission",
  3616. "keywords": [
  3617. "acl",
  3618. "laravel",
  3619. "permission",
  3620. "permissions",
  3621. "rbac",
  3622. "roles",
  3623. "security",
  3624. "spatie"
  3625. ],
  3626. "funding": [
  3627. {
  3628. "url": "https://spatie.be/open-source/support-us",
  3629. "type": "custom"
  3630. }
  3631. ],
  3632. "time": "2020-08-18T17:14:06+00:00"
  3633. },
  3634. {
  3635. "name": "srmklive/paypal",
  3636. "version": "1.8.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/srmklive/laravel-paypal.git",
  3640. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  3645. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  3646. "shasum": ""
  3647. },
  3648. "require": {
  3649. "guzzlehttp/guzzle": "~6.0|~7.0",
  3650. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  3651. "nesbot/carbon": "~1.0|~2.0"
  3652. },
  3653. "type": "library",
  3654. "extra": {
  3655. "laravel": {
  3656. "providers": [
  3657. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  3658. ],
  3659. "aliases": {
  3660. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  3661. }
  3662. }
  3663. },
  3664. "autoload": {
  3665. "psr-4": {
  3666. "Srmklive\\PayPal\\": "src/"
  3667. }
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "authors": [
  3674. {
  3675. "name": "Raza Mehdi",
  3676. "email": "srmk@outlook.com"
  3677. }
  3678. ],
  3679. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  3680. "keywords": [
  3681. "http",
  3682. "laravel paypal",
  3683. "paypal",
  3684. "rest",
  3685. "web service"
  3686. ],
  3687. "time": "2020-09-03T07:50:08+00:00"
  3688. },
  3689. {
  3690. "name": "swiftmailer/swiftmailer",
  3691. "version": "v6.2.3",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3695. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3700. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3701. "shasum": ""
  3702. },
  3703. "require": {
  3704. "egulias/email-validator": "~2.0",
  3705. "php": ">=7.0.0",
  3706. "symfony/polyfill-iconv": "^1.0",
  3707. "symfony/polyfill-intl-idn": "^1.10",
  3708. "symfony/polyfill-mbstring": "^1.0"
  3709. },
  3710. "require-dev": {
  3711. "mockery/mockery": "~0.9.1",
  3712. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3713. },
  3714. "suggest": {
  3715. "ext-intl": "Needed to support internationalized email addresses",
  3716. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3717. },
  3718. "type": "library",
  3719. "extra": {
  3720. "branch-alias": {
  3721. "dev-master": "6.2-dev"
  3722. }
  3723. },
  3724. "autoload": {
  3725. "files": [
  3726. "lib/swift_required.php"
  3727. ]
  3728. },
  3729. "notification-url": "https://packagist.org/downloads/",
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Chris Corbyn"
  3736. },
  3737. {
  3738. "name": "Fabien Potencier",
  3739. "email": "fabien@symfony.com"
  3740. }
  3741. ],
  3742. "description": "Swiftmailer, free feature-rich PHP mailer",
  3743. "homepage": "https://swiftmailer.symfony.com",
  3744. "keywords": [
  3745. "email",
  3746. "mail",
  3747. "mailer"
  3748. ],
  3749. "time": "2019-11-12T09:31:26+00:00"
  3750. },
  3751. {
  3752. "name": "symfony/console",
  3753. "version": "v5.1.5",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/symfony/console.git",
  3757. "reference": "186f395b256065ba9b890c0a4e48a91d598fa2cf"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/symfony/console/zipball/186f395b256065ba9b890c0a4e48a91d598fa2cf",
  3762. "reference": "186f395b256065ba9b890c0a4e48a91d598fa2cf",
  3763. "shasum": ""
  3764. },
  3765. "require": {
  3766. "php": ">=7.2.5",
  3767. "symfony/polyfill-mbstring": "~1.0",
  3768. "symfony/polyfill-php73": "^1.8",
  3769. "symfony/polyfill-php80": "^1.15",
  3770. "symfony/service-contracts": "^1.1|^2",
  3771. "symfony/string": "^5.1"
  3772. },
  3773. "conflict": {
  3774. "symfony/dependency-injection": "<4.4",
  3775. "symfony/dotenv": "<5.1",
  3776. "symfony/event-dispatcher": "<4.4",
  3777. "symfony/lock": "<4.4",
  3778. "symfony/process": "<4.4"
  3779. },
  3780. "provide": {
  3781. "psr/log-implementation": "1.0"
  3782. },
  3783. "require-dev": {
  3784. "psr/log": "~1.0",
  3785. "symfony/config": "^4.4|^5.0",
  3786. "symfony/dependency-injection": "^4.4|^5.0",
  3787. "symfony/event-dispatcher": "^4.4|^5.0",
  3788. "symfony/lock": "^4.4|^5.0",
  3789. "symfony/process": "^4.4|^5.0",
  3790. "symfony/var-dumper": "^4.4|^5.0"
  3791. },
  3792. "suggest": {
  3793. "psr/log": "For using the console logger",
  3794. "symfony/event-dispatcher": "",
  3795. "symfony/lock": "",
  3796. "symfony/process": ""
  3797. },
  3798. "type": "library",
  3799. "extra": {
  3800. "branch-alias": {
  3801. "dev-master": "5.1-dev"
  3802. }
  3803. },
  3804. "autoload": {
  3805. "psr-4": {
  3806. "Symfony\\Component\\Console\\": ""
  3807. },
  3808. "exclude-from-classmap": [
  3809. "/Tests/"
  3810. ]
  3811. },
  3812. "notification-url": "https://packagist.org/downloads/",
  3813. "license": [
  3814. "MIT"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "Fabien Potencier",
  3819. "email": "fabien@symfony.com"
  3820. },
  3821. {
  3822. "name": "Symfony Community",
  3823. "homepage": "https://symfony.com/contributors"
  3824. }
  3825. ],
  3826. "description": "Symfony Console Component",
  3827. "homepage": "https://symfony.com",
  3828. "funding": [
  3829. {
  3830. "url": "https://symfony.com/sponsor",
  3831. "type": "custom"
  3832. },
  3833. {
  3834. "url": "https://github.com/fabpot",
  3835. "type": "github"
  3836. },
  3837. {
  3838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3839. "type": "tidelift"
  3840. }
  3841. ],
  3842. "time": "2020-09-02T07:07:40+00:00"
  3843. },
  3844. {
  3845. "name": "symfony/css-selector",
  3846. "version": "v5.1.5",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://github.com/symfony/css-selector.git",
  3850. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3855. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3856. "shasum": ""
  3857. },
  3858. "require": {
  3859. "php": ">=7.2.5"
  3860. },
  3861. "type": "library",
  3862. "extra": {
  3863. "branch-alias": {
  3864. "dev-master": "5.1-dev"
  3865. }
  3866. },
  3867. "autoload": {
  3868. "psr-4": {
  3869. "Symfony\\Component\\CssSelector\\": ""
  3870. },
  3871. "exclude-from-classmap": [
  3872. "/Tests/"
  3873. ]
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Fabien Potencier",
  3882. "email": "fabien@symfony.com"
  3883. },
  3884. {
  3885. "name": "Jean-François Simon",
  3886. "email": "jeanfrancois.simon@sensiolabs.com"
  3887. },
  3888. {
  3889. "name": "Symfony Community",
  3890. "homepage": "https://symfony.com/contributors"
  3891. }
  3892. ],
  3893. "description": "Symfony CssSelector Component",
  3894. "homepage": "https://symfony.com",
  3895. "funding": [
  3896. {
  3897. "url": "https://symfony.com/sponsor",
  3898. "type": "custom"
  3899. },
  3900. {
  3901. "url": "https://github.com/fabpot",
  3902. "type": "github"
  3903. },
  3904. {
  3905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3906. "type": "tidelift"
  3907. }
  3908. ],
  3909. "time": "2020-05-20T17:43:50+00:00"
  3910. },
  3911. {
  3912. "name": "symfony/deprecation-contracts",
  3913. "version": "v2.1.3",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/symfony/deprecation-contracts.git",
  3917. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  3922. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "php": ">=7.1"
  3927. },
  3928. "type": "library",
  3929. "extra": {
  3930. "branch-alias": {
  3931. "dev-master": "2.1-dev"
  3932. },
  3933. "thanks": {
  3934. "name": "symfony/contracts",
  3935. "url": "https://github.com/symfony/contracts"
  3936. }
  3937. },
  3938. "autoload": {
  3939. "files": [
  3940. "function.php"
  3941. ]
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "Nicolas Grekas",
  3950. "email": "p@tchwork.com"
  3951. },
  3952. {
  3953. "name": "Symfony Community",
  3954. "homepage": "https://symfony.com/contributors"
  3955. }
  3956. ],
  3957. "description": "A generic function and convention to trigger deprecation notices",
  3958. "homepage": "https://symfony.com",
  3959. "funding": [
  3960. {
  3961. "url": "https://symfony.com/sponsor",
  3962. "type": "custom"
  3963. },
  3964. {
  3965. "url": "https://github.com/fabpot",
  3966. "type": "github"
  3967. },
  3968. {
  3969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3970. "type": "tidelift"
  3971. }
  3972. ],
  3973. "time": "2020-06-06T08:49:21+00:00"
  3974. },
  3975. {
  3976. "name": "symfony/error-handler",
  3977. "version": "v5.1.5",
  3978. "source": {
  3979. "type": "git",
  3980. "url": "https://github.com/symfony/error-handler.git",
  3981. "reference": "525636d4b84e06c6ca72d96b6856b5b169416e6a"
  3982. },
  3983. "dist": {
  3984. "type": "zip",
  3985. "url": "https://api.github.com/repos/symfony/error-handler/zipball/525636d4b84e06c6ca72d96b6856b5b169416e6a",
  3986. "reference": "525636d4b84e06c6ca72d96b6856b5b169416e6a",
  3987. "shasum": ""
  3988. },
  3989. "require": {
  3990. "php": ">=7.2.5",
  3991. "psr/log": "^1.0",
  3992. "symfony/polyfill-php80": "^1.15",
  3993. "symfony/var-dumper": "^4.4|^5.0"
  3994. },
  3995. "require-dev": {
  3996. "symfony/deprecation-contracts": "^2.1",
  3997. "symfony/http-kernel": "^4.4|^5.0",
  3998. "symfony/serializer": "^4.4|^5.0"
  3999. },
  4000. "type": "library",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-master": "5.1-dev"
  4004. }
  4005. },
  4006. "autoload": {
  4007. "psr-4": {
  4008. "Symfony\\Component\\ErrorHandler\\": ""
  4009. },
  4010. "exclude-from-classmap": [
  4011. "/Tests/"
  4012. ]
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Fabien Potencier",
  4021. "email": "fabien@symfony.com"
  4022. },
  4023. {
  4024. "name": "Symfony Community",
  4025. "homepage": "https://symfony.com/contributors"
  4026. }
  4027. ],
  4028. "description": "Symfony ErrorHandler Component",
  4029. "homepage": "https://symfony.com",
  4030. "funding": [
  4031. {
  4032. "url": "https://symfony.com/sponsor",
  4033. "type": "custom"
  4034. },
  4035. {
  4036. "url": "https://github.com/fabpot",
  4037. "type": "github"
  4038. },
  4039. {
  4040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4041. "type": "tidelift"
  4042. }
  4043. ],
  4044. "time": "2020-08-17T10:01:29+00:00"
  4045. },
  4046. {
  4047. "name": "symfony/event-dispatcher",
  4048. "version": "v5.1.5",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://github.com/symfony/event-dispatcher.git",
  4052. "reference": "94871fc0a69c3c5da57764187724cdce0755899c"
  4053. },
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/94871fc0a69c3c5da57764187724cdce0755899c",
  4057. "reference": "94871fc0a69c3c5da57764187724cdce0755899c",
  4058. "shasum": ""
  4059. },
  4060. "require": {
  4061. "php": ">=7.2.5",
  4062. "symfony/deprecation-contracts": "^2.1",
  4063. "symfony/event-dispatcher-contracts": "^2",
  4064. "symfony/polyfill-php80": "^1.15"
  4065. },
  4066. "conflict": {
  4067. "symfony/dependency-injection": "<4.4"
  4068. },
  4069. "provide": {
  4070. "psr/event-dispatcher-implementation": "1.0",
  4071. "symfony/event-dispatcher-implementation": "2.0"
  4072. },
  4073. "require-dev": {
  4074. "psr/log": "~1.0",
  4075. "symfony/config": "^4.4|^5.0",
  4076. "symfony/dependency-injection": "^4.4|^5.0",
  4077. "symfony/expression-language": "^4.4|^5.0",
  4078. "symfony/http-foundation": "^4.4|^5.0",
  4079. "symfony/service-contracts": "^1.1|^2",
  4080. "symfony/stopwatch": "^4.4|^5.0"
  4081. },
  4082. "suggest": {
  4083. "symfony/dependency-injection": "",
  4084. "symfony/http-kernel": ""
  4085. },
  4086. "type": "library",
  4087. "extra": {
  4088. "branch-alias": {
  4089. "dev-master": "5.1-dev"
  4090. }
  4091. },
  4092. "autoload": {
  4093. "psr-4": {
  4094. "Symfony\\Component\\EventDispatcher\\": ""
  4095. },
  4096. "exclude-from-classmap": [
  4097. "/Tests/"
  4098. ]
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "license": [
  4102. "MIT"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "Fabien Potencier",
  4107. "email": "fabien@symfony.com"
  4108. },
  4109. {
  4110. "name": "Symfony Community",
  4111. "homepage": "https://symfony.com/contributors"
  4112. }
  4113. ],
  4114. "description": "Symfony EventDispatcher Component",
  4115. "homepage": "https://symfony.com",
  4116. "funding": [
  4117. {
  4118. "url": "https://symfony.com/sponsor",
  4119. "type": "custom"
  4120. },
  4121. {
  4122. "url": "https://github.com/fabpot",
  4123. "type": "github"
  4124. },
  4125. {
  4126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4127. "type": "tidelift"
  4128. }
  4129. ],
  4130. "time": "2020-08-13T14:19:42+00:00"
  4131. },
  4132. {
  4133. "name": "symfony/event-dispatcher-contracts",
  4134. "version": "v2.1.3",
  4135. "source": {
  4136. "type": "git",
  4137. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4138. "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b"
  4139. },
  4140. "dist": {
  4141. "type": "zip",
  4142. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f6f613d74cfc5a623fc36294d3451eb7fa5a042b",
  4143. "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b",
  4144. "shasum": ""
  4145. },
  4146. "require": {
  4147. "php": ">=7.2.5",
  4148. "psr/event-dispatcher": "^1"
  4149. },
  4150. "suggest": {
  4151. "symfony/event-dispatcher-implementation": ""
  4152. },
  4153. "type": "library",
  4154. "extra": {
  4155. "branch-alias": {
  4156. "dev-master": "2.1-dev"
  4157. },
  4158. "thanks": {
  4159. "name": "symfony/contracts",
  4160. "url": "https://github.com/symfony/contracts"
  4161. }
  4162. },
  4163. "autoload": {
  4164. "psr-4": {
  4165. "Symfony\\Contracts\\EventDispatcher\\": ""
  4166. }
  4167. },
  4168. "notification-url": "https://packagist.org/downloads/",
  4169. "license": [
  4170. "MIT"
  4171. ],
  4172. "authors": [
  4173. {
  4174. "name": "Nicolas Grekas",
  4175. "email": "p@tchwork.com"
  4176. },
  4177. {
  4178. "name": "Symfony Community",
  4179. "homepage": "https://symfony.com/contributors"
  4180. }
  4181. ],
  4182. "description": "Generic abstractions related to dispatching event",
  4183. "homepage": "https://symfony.com",
  4184. "keywords": [
  4185. "abstractions",
  4186. "contracts",
  4187. "decoupling",
  4188. "interfaces",
  4189. "interoperability",
  4190. "standards"
  4191. ],
  4192. "funding": [
  4193. {
  4194. "url": "https://symfony.com/sponsor",
  4195. "type": "custom"
  4196. },
  4197. {
  4198. "url": "https://github.com/fabpot",
  4199. "type": "github"
  4200. },
  4201. {
  4202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4203. "type": "tidelift"
  4204. }
  4205. ],
  4206. "time": "2020-07-06T13:23:11+00:00"
  4207. },
  4208. {
  4209. "name": "symfony/finder",
  4210. "version": "v5.1.5",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://github.com/symfony/finder.git",
  4214. "reference": "2b765f0cf6612b3636e738c0689b29aa63088d5d"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://api.github.com/repos/symfony/finder/zipball/2b765f0cf6612b3636e738c0689b29aa63088d5d",
  4219. "reference": "2b765f0cf6612b3636e738c0689b29aa63088d5d",
  4220. "shasum": ""
  4221. },
  4222. "require": {
  4223. "php": ">=7.2.5"
  4224. },
  4225. "type": "library",
  4226. "extra": {
  4227. "branch-alias": {
  4228. "dev-master": "5.1-dev"
  4229. }
  4230. },
  4231. "autoload": {
  4232. "psr-4": {
  4233. "Symfony\\Component\\Finder\\": ""
  4234. },
  4235. "exclude-from-classmap": [
  4236. "/Tests/"
  4237. ]
  4238. },
  4239. "notification-url": "https://packagist.org/downloads/",
  4240. "license": [
  4241. "MIT"
  4242. ],
  4243. "authors": [
  4244. {
  4245. "name": "Fabien Potencier",
  4246. "email": "fabien@symfony.com"
  4247. },
  4248. {
  4249. "name": "Symfony Community",
  4250. "homepage": "https://symfony.com/contributors"
  4251. }
  4252. ],
  4253. "description": "Symfony Finder Component",
  4254. "homepage": "https://symfony.com",
  4255. "funding": [
  4256. {
  4257. "url": "https://symfony.com/sponsor",
  4258. "type": "custom"
  4259. },
  4260. {
  4261. "url": "https://github.com/fabpot",
  4262. "type": "github"
  4263. },
  4264. {
  4265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4266. "type": "tidelift"
  4267. }
  4268. ],
  4269. "time": "2020-08-17T10:01:29+00:00"
  4270. },
  4271. {
  4272. "name": "symfony/http-foundation",
  4273. "version": "v5.1.5",
  4274. "source": {
  4275. "type": "git",
  4276. "url": "https://github.com/symfony/http-foundation.git",
  4277. "reference": "41a4647f12870e9d41d9a7d72ff0614a27208558"
  4278. },
  4279. "dist": {
  4280. "type": "zip",
  4281. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/41a4647f12870e9d41d9a7d72ff0614a27208558",
  4282. "reference": "41a4647f12870e9d41d9a7d72ff0614a27208558",
  4283. "shasum": ""
  4284. },
  4285. "require": {
  4286. "php": ">=7.2.5",
  4287. "symfony/deprecation-contracts": "^2.1",
  4288. "symfony/polyfill-mbstring": "~1.1",
  4289. "symfony/polyfill-php80": "^1.15"
  4290. },
  4291. "require-dev": {
  4292. "predis/predis": "~1.0",
  4293. "symfony/cache": "^4.4|^5.0",
  4294. "symfony/expression-language": "^4.4|^5.0",
  4295. "symfony/mime": "^4.4|^5.0"
  4296. },
  4297. "suggest": {
  4298. "symfony/mime": "To use the file extension guesser"
  4299. },
  4300. "type": "library",
  4301. "extra": {
  4302. "branch-alias": {
  4303. "dev-master": "5.1-dev"
  4304. }
  4305. },
  4306. "autoload": {
  4307. "psr-4": {
  4308. "Symfony\\Component\\HttpFoundation\\": ""
  4309. },
  4310. "exclude-from-classmap": [
  4311. "/Tests/"
  4312. ]
  4313. },
  4314. "notification-url": "https://packagist.org/downloads/",
  4315. "license": [
  4316. "MIT"
  4317. ],
  4318. "authors": [
  4319. {
  4320. "name": "Fabien Potencier",
  4321. "email": "fabien@symfony.com"
  4322. },
  4323. {
  4324. "name": "Symfony Community",
  4325. "homepage": "https://symfony.com/contributors"
  4326. }
  4327. ],
  4328. "description": "Symfony HttpFoundation Component",
  4329. "homepage": "https://symfony.com",
  4330. "funding": [
  4331. {
  4332. "url": "https://symfony.com/sponsor",
  4333. "type": "custom"
  4334. },
  4335. {
  4336. "url": "https://github.com/fabpot",
  4337. "type": "github"
  4338. },
  4339. {
  4340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4341. "type": "tidelift"
  4342. }
  4343. ],
  4344. "time": "2020-08-17T07:48:54+00:00"
  4345. },
  4346. {
  4347. "name": "symfony/http-kernel",
  4348. "version": "v5.1.5",
  4349. "source": {
  4350. "type": "git",
  4351. "url": "https://github.com/symfony/http-kernel.git",
  4352. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b"
  4353. },
  4354. "dist": {
  4355. "type": "zip",
  4356. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  4357. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  4358. "shasum": ""
  4359. },
  4360. "require": {
  4361. "php": ">=7.2.5",
  4362. "psr/log": "~1.0",
  4363. "symfony/deprecation-contracts": "^2.1",
  4364. "symfony/error-handler": "^4.4|^5.0",
  4365. "symfony/event-dispatcher": "^5.0",
  4366. "symfony/http-foundation": "^4.4|^5.0",
  4367. "symfony/polyfill-ctype": "^1.8",
  4368. "symfony/polyfill-php73": "^1.9",
  4369. "symfony/polyfill-php80": "^1.15"
  4370. },
  4371. "conflict": {
  4372. "symfony/browser-kit": "<4.4",
  4373. "symfony/cache": "<5.0",
  4374. "symfony/config": "<5.0",
  4375. "symfony/console": "<4.4",
  4376. "symfony/dependency-injection": "<4.4",
  4377. "symfony/doctrine-bridge": "<5.0",
  4378. "symfony/form": "<5.0",
  4379. "symfony/http-client": "<5.0",
  4380. "symfony/mailer": "<5.0",
  4381. "symfony/messenger": "<5.0",
  4382. "symfony/translation": "<5.0",
  4383. "symfony/twig-bridge": "<5.0",
  4384. "symfony/validator": "<5.0",
  4385. "twig/twig": "<2.4"
  4386. },
  4387. "provide": {
  4388. "psr/log-implementation": "1.0"
  4389. },
  4390. "require-dev": {
  4391. "psr/cache": "~1.0",
  4392. "symfony/browser-kit": "^4.4|^5.0",
  4393. "symfony/config": "^5.0",
  4394. "symfony/console": "^4.4|^5.0",
  4395. "symfony/css-selector": "^4.4|^5.0",
  4396. "symfony/dependency-injection": "^4.4|^5.0",
  4397. "symfony/dom-crawler": "^4.4|^5.0",
  4398. "symfony/expression-language": "^4.4|^5.0",
  4399. "symfony/finder": "^4.4|^5.0",
  4400. "symfony/process": "^4.4|^5.0",
  4401. "symfony/routing": "^4.4|^5.0",
  4402. "symfony/stopwatch": "^4.4|^5.0",
  4403. "symfony/translation": "^4.4|^5.0",
  4404. "symfony/translation-contracts": "^1.1|^2",
  4405. "twig/twig": "^2.4|^3.0"
  4406. },
  4407. "suggest": {
  4408. "symfony/browser-kit": "",
  4409. "symfony/config": "",
  4410. "symfony/console": "",
  4411. "symfony/dependency-injection": ""
  4412. },
  4413. "type": "library",
  4414. "extra": {
  4415. "branch-alias": {
  4416. "dev-master": "5.1-dev"
  4417. }
  4418. },
  4419. "autoload": {
  4420. "psr-4": {
  4421. "Symfony\\Component\\HttpKernel\\": ""
  4422. },
  4423. "exclude-from-classmap": [
  4424. "/Tests/"
  4425. ]
  4426. },
  4427. "notification-url": "https://packagist.org/downloads/",
  4428. "license": [
  4429. "MIT"
  4430. ],
  4431. "authors": [
  4432. {
  4433. "name": "Fabien Potencier",
  4434. "email": "fabien@symfony.com"
  4435. },
  4436. {
  4437. "name": "Symfony Community",
  4438. "homepage": "https://symfony.com/contributors"
  4439. }
  4440. ],
  4441. "description": "Symfony HttpKernel Component",
  4442. "homepage": "https://symfony.com",
  4443. "funding": [
  4444. {
  4445. "url": "https://symfony.com/sponsor",
  4446. "type": "custom"
  4447. },
  4448. {
  4449. "url": "https://github.com/fabpot",
  4450. "type": "github"
  4451. },
  4452. {
  4453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4454. "type": "tidelift"
  4455. }
  4456. ],
  4457. "time": "2020-09-02T08:15:18+00:00"
  4458. },
  4459. {
  4460. "name": "symfony/mime",
  4461. "version": "v5.1.5",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/symfony/mime.git",
  4465. "reference": "89a2c9b4cb7b5aa516cf55f5194c384f444c81dc"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/symfony/mime/zipball/89a2c9b4cb7b5aa516cf55f5194c384f444c81dc",
  4470. "reference": "89a2c9b4cb7b5aa516cf55f5194c384f444c81dc",
  4471. "shasum": ""
  4472. },
  4473. "require": {
  4474. "php": ">=7.2.5",
  4475. "symfony/polyfill-intl-idn": "^1.10",
  4476. "symfony/polyfill-mbstring": "^1.0",
  4477. "symfony/polyfill-php80": "^1.15"
  4478. },
  4479. "conflict": {
  4480. "symfony/mailer": "<4.4"
  4481. },
  4482. "require-dev": {
  4483. "egulias/email-validator": "^2.1.10",
  4484. "symfony/dependency-injection": "^4.4|^5.0"
  4485. },
  4486. "type": "library",
  4487. "extra": {
  4488. "branch-alias": {
  4489. "dev-master": "5.1-dev"
  4490. }
  4491. },
  4492. "autoload": {
  4493. "psr-4": {
  4494. "Symfony\\Component\\Mime\\": ""
  4495. },
  4496. "exclude-from-classmap": [
  4497. "/Tests/"
  4498. ]
  4499. },
  4500. "notification-url": "https://packagist.org/downloads/",
  4501. "license": [
  4502. "MIT"
  4503. ],
  4504. "authors": [
  4505. {
  4506. "name": "Fabien Potencier",
  4507. "email": "fabien@symfony.com"
  4508. },
  4509. {
  4510. "name": "Symfony Community",
  4511. "homepage": "https://symfony.com/contributors"
  4512. }
  4513. ],
  4514. "description": "A library to manipulate MIME messages",
  4515. "homepage": "https://symfony.com",
  4516. "keywords": [
  4517. "mime",
  4518. "mime-type"
  4519. ],
  4520. "funding": [
  4521. {
  4522. "url": "https://symfony.com/sponsor",
  4523. "type": "custom"
  4524. },
  4525. {
  4526. "url": "https://github.com/fabpot",
  4527. "type": "github"
  4528. },
  4529. {
  4530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4531. "type": "tidelift"
  4532. }
  4533. ],
  4534. "time": "2020-08-17T10:01:29+00:00"
  4535. },
  4536. {
  4537. "name": "symfony/polyfill-ctype",
  4538. "version": "v1.18.1",
  4539. "source": {
  4540. "type": "git",
  4541. "url": "https://github.com/symfony/polyfill-ctype.git",
  4542. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  4543. },
  4544. "dist": {
  4545. "type": "zip",
  4546. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  4547. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  4548. "shasum": ""
  4549. },
  4550. "require": {
  4551. "php": ">=5.3.3"
  4552. },
  4553. "suggest": {
  4554. "ext-ctype": "For best performance"
  4555. },
  4556. "type": "library",
  4557. "extra": {
  4558. "branch-alias": {
  4559. "dev-master": "1.18-dev"
  4560. },
  4561. "thanks": {
  4562. "name": "symfony/polyfill",
  4563. "url": "https://github.com/symfony/polyfill"
  4564. }
  4565. },
  4566. "autoload": {
  4567. "psr-4": {
  4568. "Symfony\\Polyfill\\Ctype\\": ""
  4569. },
  4570. "files": [
  4571. "bootstrap.php"
  4572. ]
  4573. },
  4574. "notification-url": "https://packagist.org/downloads/",
  4575. "license": [
  4576. "MIT"
  4577. ],
  4578. "authors": [
  4579. {
  4580. "name": "Gert de Pagter",
  4581. "email": "BackEndTea@gmail.com"
  4582. },
  4583. {
  4584. "name": "Symfony Community",
  4585. "homepage": "https://symfony.com/contributors"
  4586. }
  4587. ],
  4588. "description": "Symfony polyfill for ctype functions",
  4589. "homepage": "https://symfony.com",
  4590. "keywords": [
  4591. "compatibility",
  4592. "ctype",
  4593. "polyfill",
  4594. "portable"
  4595. ],
  4596. "funding": [
  4597. {
  4598. "url": "https://symfony.com/sponsor",
  4599. "type": "custom"
  4600. },
  4601. {
  4602. "url": "https://github.com/fabpot",
  4603. "type": "github"
  4604. },
  4605. {
  4606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4607. "type": "tidelift"
  4608. }
  4609. ],
  4610. "time": "2020-07-14T12:35:20+00:00"
  4611. },
  4612. {
  4613. "name": "symfony/polyfill-iconv",
  4614. "version": "v1.18.1",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/symfony/polyfill-iconv.git",
  4618. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4623. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4624. "shasum": ""
  4625. },
  4626. "require": {
  4627. "php": ">=5.3.3"
  4628. },
  4629. "suggest": {
  4630. "ext-iconv": "For best performance"
  4631. },
  4632. "type": "library",
  4633. "extra": {
  4634. "branch-alias": {
  4635. "dev-master": "1.18-dev"
  4636. },
  4637. "thanks": {
  4638. "name": "symfony/polyfill",
  4639. "url": "https://github.com/symfony/polyfill"
  4640. }
  4641. },
  4642. "autoload": {
  4643. "psr-4": {
  4644. "Symfony\\Polyfill\\Iconv\\": ""
  4645. },
  4646. "files": [
  4647. "bootstrap.php"
  4648. ]
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "Nicolas Grekas",
  4657. "email": "p@tchwork.com"
  4658. },
  4659. {
  4660. "name": "Symfony Community",
  4661. "homepage": "https://symfony.com/contributors"
  4662. }
  4663. ],
  4664. "description": "Symfony polyfill for the Iconv extension",
  4665. "homepage": "https://symfony.com",
  4666. "keywords": [
  4667. "compatibility",
  4668. "iconv",
  4669. "polyfill",
  4670. "portable",
  4671. "shim"
  4672. ],
  4673. "funding": [
  4674. {
  4675. "url": "https://symfony.com/sponsor",
  4676. "type": "custom"
  4677. },
  4678. {
  4679. "url": "https://github.com/fabpot",
  4680. "type": "github"
  4681. },
  4682. {
  4683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4684. "type": "tidelift"
  4685. }
  4686. ],
  4687. "time": "2020-07-14T12:35:20+00:00"
  4688. },
  4689. {
  4690. "name": "symfony/polyfill-intl-grapheme",
  4691. "version": "v1.18.1",
  4692. "source": {
  4693. "type": "git",
  4694. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4695. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  4696. },
  4697. "dist": {
  4698. "type": "zip",
  4699. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4700. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4701. "shasum": ""
  4702. },
  4703. "require": {
  4704. "php": ">=5.3.3"
  4705. },
  4706. "suggest": {
  4707. "ext-intl": "For best performance"
  4708. },
  4709. "type": "library",
  4710. "extra": {
  4711. "branch-alias": {
  4712. "dev-master": "1.18-dev"
  4713. },
  4714. "thanks": {
  4715. "name": "symfony/polyfill",
  4716. "url": "https://github.com/symfony/polyfill"
  4717. }
  4718. },
  4719. "autoload": {
  4720. "psr-4": {
  4721. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4722. },
  4723. "files": [
  4724. "bootstrap.php"
  4725. ]
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "Nicolas Grekas",
  4734. "email": "p@tchwork.com"
  4735. },
  4736. {
  4737. "name": "Symfony Community",
  4738. "homepage": "https://symfony.com/contributors"
  4739. }
  4740. ],
  4741. "description": "Symfony polyfill for intl's grapheme_* functions",
  4742. "homepage": "https://symfony.com",
  4743. "keywords": [
  4744. "compatibility",
  4745. "grapheme",
  4746. "intl",
  4747. "polyfill",
  4748. "portable",
  4749. "shim"
  4750. ],
  4751. "funding": [
  4752. {
  4753. "url": "https://symfony.com/sponsor",
  4754. "type": "custom"
  4755. },
  4756. {
  4757. "url": "https://github.com/fabpot",
  4758. "type": "github"
  4759. },
  4760. {
  4761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4762. "type": "tidelift"
  4763. }
  4764. ],
  4765. "time": "2020-07-14T12:35:20+00:00"
  4766. },
  4767. {
  4768. "name": "symfony/polyfill-intl-idn",
  4769. "version": "v1.18.1",
  4770. "source": {
  4771. "type": "git",
  4772. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4773. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  4774. },
  4775. "dist": {
  4776. "type": "zip",
  4777. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4778. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4779. "shasum": ""
  4780. },
  4781. "require": {
  4782. "php": ">=5.3.3",
  4783. "symfony/polyfill-intl-normalizer": "^1.10",
  4784. "symfony/polyfill-php70": "^1.10",
  4785. "symfony/polyfill-php72": "^1.10"
  4786. },
  4787. "suggest": {
  4788. "ext-intl": "For best performance"
  4789. },
  4790. "type": "library",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-master": "1.18-dev"
  4794. },
  4795. "thanks": {
  4796. "name": "symfony/polyfill",
  4797. "url": "https://github.com/symfony/polyfill"
  4798. }
  4799. },
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4803. },
  4804. "files": [
  4805. "bootstrap.php"
  4806. ]
  4807. },
  4808. "notification-url": "https://packagist.org/downloads/",
  4809. "license": [
  4810. "MIT"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "Laurent Bassin",
  4815. "email": "laurent@bassin.info"
  4816. },
  4817. {
  4818. "name": "Trevor Rowbotham",
  4819. "email": "trevor.rowbotham@pm.me"
  4820. },
  4821. {
  4822. "name": "Symfony Community",
  4823. "homepage": "https://symfony.com/contributors"
  4824. }
  4825. ],
  4826. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4827. "homepage": "https://symfony.com",
  4828. "keywords": [
  4829. "compatibility",
  4830. "idn",
  4831. "intl",
  4832. "polyfill",
  4833. "portable",
  4834. "shim"
  4835. ],
  4836. "funding": [
  4837. {
  4838. "url": "https://symfony.com/sponsor",
  4839. "type": "custom"
  4840. },
  4841. {
  4842. "url": "https://github.com/fabpot",
  4843. "type": "github"
  4844. },
  4845. {
  4846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4847. "type": "tidelift"
  4848. }
  4849. ],
  4850. "time": "2020-08-04T06:02:08+00:00"
  4851. },
  4852. {
  4853. "name": "symfony/polyfill-intl-normalizer",
  4854. "version": "v1.18.1",
  4855. "source": {
  4856. "type": "git",
  4857. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4858. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  4859. },
  4860. "dist": {
  4861. "type": "zip",
  4862. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  4863. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  4864. "shasum": ""
  4865. },
  4866. "require": {
  4867. "php": ">=5.3.3"
  4868. },
  4869. "suggest": {
  4870. "ext-intl": "For best performance"
  4871. },
  4872. "type": "library",
  4873. "extra": {
  4874. "branch-alias": {
  4875. "dev-master": "1.18-dev"
  4876. },
  4877. "thanks": {
  4878. "name": "symfony/polyfill",
  4879. "url": "https://github.com/symfony/polyfill"
  4880. }
  4881. },
  4882. "autoload": {
  4883. "psr-4": {
  4884. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4885. },
  4886. "files": [
  4887. "bootstrap.php"
  4888. ],
  4889. "classmap": [
  4890. "Resources/stubs"
  4891. ]
  4892. },
  4893. "notification-url": "https://packagist.org/downloads/",
  4894. "license": [
  4895. "MIT"
  4896. ],
  4897. "authors": [
  4898. {
  4899. "name": "Nicolas Grekas",
  4900. "email": "p@tchwork.com"
  4901. },
  4902. {
  4903. "name": "Symfony Community",
  4904. "homepage": "https://symfony.com/contributors"
  4905. }
  4906. ],
  4907. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4908. "homepage": "https://symfony.com",
  4909. "keywords": [
  4910. "compatibility",
  4911. "intl",
  4912. "normalizer",
  4913. "polyfill",
  4914. "portable",
  4915. "shim"
  4916. ],
  4917. "funding": [
  4918. {
  4919. "url": "https://symfony.com/sponsor",
  4920. "type": "custom"
  4921. },
  4922. {
  4923. "url": "https://github.com/fabpot",
  4924. "type": "github"
  4925. },
  4926. {
  4927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4928. "type": "tidelift"
  4929. }
  4930. ],
  4931. "time": "2020-07-14T12:35:20+00:00"
  4932. },
  4933. {
  4934. "name": "symfony/polyfill-mbstring",
  4935. "version": "v1.18.1",
  4936. "source": {
  4937. "type": "git",
  4938. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4939. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  4940. },
  4941. "dist": {
  4942. "type": "zip",
  4943. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  4944. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  4945. "shasum": ""
  4946. },
  4947. "require": {
  4948. "php": ">=5.3.3"
  4949. },
  4950. "suggest": {
  4951. "ext-mbstring": "For best performance"
  4952. },
  4953. "type": "library",
  4954. "extra": {
  4955. "branch-alias": {
  4956. "dev-master": "1.18-dev"
  4957. },
  4958. "thanks": {
  4959. "name": "symfony/polyfill",
  4960. "url": "https://github.com/symfony/polyfill"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Symfony\\Polyfill\\Mbstring\\": ""
  4966. },
  4967. "files": [
  4968. "bootstrap.php"
  4969. ]
  4970. },
  4971. "notification-url": "https://packagist.org/downloads/",
  4972. "license": [
  4973. "MIT"
  4974. ],
  4975. "authors": [
  4976. {
  4977. "name": "Nicolas Grekas",
  4978. "email": "p@tchwork.com"
  4979. },
  4980. {
  4981. "name": "Symfony Community",
  4982. "homepage": "https://symfony.com/contributors"
  4983. }
  4984. ],
  4985. "description": "Symfony polyfill for the Mbstring extension",
  4986. "homepage": "https://symfony.com",
  4987. "keywords": [
  4988. "compatibility",
  4989. "mbstring",
  4990. "polyfill",
  4991. "portable",
  4992. "shim"
  4993. ],
  4994. "funding": [
  4995. {
  4996. "url": "https://symfony.com/sponsor",
  4997. "type": "custom"
  4998. },
  4999. {
  5000. "url": "https://github.com/fabpot",
  5001. "type": "github"
  5002. },
  5003. {
  5004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5005. "type": "tidelift"
  5006. }
  5007. ],
  5008. "time": "2020-07-14T12:35:20+00:00"
  5009. },
  5010. {
  5011. "name": "symfony/polyfill-php70",
  5012. "version": "v1.18.1",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/symfony/polyfill-php70.git",
  5016. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5021. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5022. "shasum": ""
  5023. },
  5024. "require": {
  5025. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5026. "php": ">=5.3.3"
  5027. },
  5028. "type": "library",
  5029. "extra": {
  5030. "branch-alias": {
  5031. "dev-master": "1.18-dev"
  5032. },
  5033. "thanks": {
  5034. "name": "symfony/polyfill",
  5035. "url": "https://github.com/symfony/polyfill"
  5036. }
  5037. },
  5038. "autoload": {
  5039. "psr-4": {
  5040. "Symfony\\Polyfill\\Php70\\": ""
  5041. },
  5042. "files": [
  5043. "bootstrap.php"
  5044. ],
  5045. "classmap": [
  5046. "Resources/stubs"
  5047. ]
  5048. },
  5049. "notification-url": "https://packagist.org/downloads/",
  5050. "license": [
  5051. "MIT"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "Nicolas Grekas",
  5056. "email": "p@tchwork.com"
  5057. },
  5058. {
  5059. "name": "Symfony Community",
  5060. "homepage": "https://symfony.com/contributors"
  5061. }
  5062. ],
  5063. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5064. "homepage": "https://symfony.com",
  5065. "keywords": [
  5066. "compatibility",
  5067. "polyfill",
  5068. "portable",
  5069. "shim"
  5070. ],
  5071. "funding": [
  5072. {
  5073. "url": "https://symfony.com/sponsor",
  5074. "type": "custom"
  5075. },
  5076. {
  5077. "url": "https://github.com/fabpot",
  5078. "type": "github"
  5079. },
  5080. {
  5081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5082. "type": "tidelift"
  5083. }
  5084. ],
  5085. "time": "2020-07-14T12:35:20+00:00"
  5086. },
  5087. {
  5088. "name": "symfony/polyfill-php72",
  5089. "version": "v1.18.1",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://github.com/symfony/polyfill-php72.git",
  5093. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  5098. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  5099. "shasum": ""
  5100. },
  5101. "require": {
  5102. "php": ">=5.3.3"
  5103. },
  5104. "type": "library",
  5105. "extra": {
  5106. "branch-alias": {
  5107. "dev-master": "1.18-dev"
  5108. },
  5109. "thanks": {
  5110. "name": "symfony/polyfill",
  5111. "url": "https://github.com/symfony/polyfill"
  5112. }
  5113. },
  5114. "autoload": {
  5115. "psr-4": {
  5116. "Symfony\\Polyfill\\Php72\\": ""
  5117. },
  5118. "files": [
  5119. "bootstrap.php"
  5120. ]
  5121. },
  5122. "notification-url": "https://packagist.org/downloads/",
  5123. "license": [
  5124. "MIT"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "Nicolas Grekas",
  5129. "email": "p@tchwork.com"
  5130. },
  5131. {
  5132. "name": "Symfony Community",
  5133. "homepage": "https://symfony.com/contributors"
  5134. }
  5135. ],
  5136. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5137. "homepage": "https://symfony.com",
  5138. "keywords": [
  5139. "compatibility",
  5140. "polyfill",
  5141. "portable",
  5142. "shim"
  5143. ],
  5144. "funding": [
  5145. {
  5146. "url": "https://symfony.com/sponsor",
  5147. "type": "custom"
  5148. },
  5149. {
  5150. "url": "https://github.com/fabpot",
  5151. "type": "github"
  5152. },
  5153. {
  5154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5155. "type": "tidelift"
  5156. }
  5157. ],
  5158. "time": "2020-07-14T12:35:20+00:00"
  5159. },
  5160. {
  5161. "name": "symfony/polyfill-php73",
  5162. "version": "v1.18.1",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://github.com/symfony/polyfill-php73.git",
  5166. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5171. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5172. "shasum": ""
  5173. },
  5174. "require": {
  5175. "php": ">=5.3.3"
  5176. },
  5177. "type": "library",
  5178. "extra": {
  5179. "branch-alias": {
  5180. "dev-master": "1.18-dev"
  5181. },
  5182. "thanks": {
  5183. "name": "symfony/polyfill",
  5184. "url": "https://github.com/symfony/polyfill"
  5185. }
  5186. },
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Symfony\\Polyfill\\Php73\\": ""
  5190. },
  5191. "files": [
  5192. "bootstrap.php"
  5193. ],
  5194. "classmap": [
  5195. "Resources/stubs"
  5196. ]
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "MIT"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Nicolas Grekas",
  5205. "email": "p@tchwork.com"
  5206. },
  5207. {
  5208. "name": "Symfony Community",
  5209. "homepage": "https://symfony.com/contributors"
  5210. }
  5211. ],
  5212. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5213. "homepage": "https://symfony.com",
  5214. "keywords": [
  5215. "compatibility",
  5216. "polyfill",
  5217. "portable",
  5218. "shim"
  5219. ],
  5220. "funding": [
  5221. {
  5222. "url": "https://symfony.com/sponsor",
  5223. "type": "custom"
  5224. },
  5225. {
  5226. "url": "https://github.com/fabpot",
  5227. "type": "github"
  5228. },
  5229. {
  5230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5231. "type": "tidelift"
  5232. }
  5233. ],
  5234. "time": "2020-07-14T12:35:20+00:00"
  5235. },
  5236. {
  5237. "name": "symfony/polyfill-php80",
  5238. "version": "v1.18.1",
  5239. "source": {
  5240. "type": "git",
  5241. "url": "https://github.com/symfony/polyfill-php80.git",
  5242. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  5243. },
  5244. "dist": {
  5245. "type": "zip",
  5246. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5247. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5248. "shasum": ""
  5249. },
  5250. "require": {
  5251. "php": ">=7.0.8"
  5252. },
  5253. "type": "library",
  5254. "extra": {
  5255. "branch-alias": {
  5256. "dev-master": "1.18-dev"
  5257. },
  5258. "thanks": {
  5259. "name": "symfony/polyfill",
  5260. "url": "https://github.com/symfony/polyfill"
  5261. }
  5262. },
  5263. "autoload": {
  5264. "psr-4": {
  5265. "Symfony\\Polyfill\\Php80\\": ""
  5266. },
  5267. "files": [
  5268. "bootstrap.php"
  5269. ],
  5270. "classmap": [
  5271. "Resources/stubs"
  5272. ]
  5273. },
  5274. "notification-url": "https://packagist.org/downloads/",
  5275. "license": [
  5276. "MIT"
  5277. ],
  5278. "authors": [
  5279. {
  5280. "name": "Ion Bazan",
  5281. "email": "ion.bazan@gmail.com"
  5282. },
  5283. {
  5284. "name": "Nicolas Grekas",
  5285. "email": "p@tchwork.com"
  5286. },
  5287. {
  5288. "name": "Symfony Community",
  5289. "homepage": "https://symfony.com/contributors"
  5290. }
  5291. ],
  5292. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5293. "homepage": "https://symfony.com",
  5294. "keywords": [
  5295. "compatibility",
  5296. "polyfill",
  5297. "portable",
  5298. "shim"
  5299. ],
  5300. "funding": [
  5301. {
  5302. "url": "https://symfony.com/sponsor",
  5303. "type": "custom"
  5304. },
  5305. {
  5306. "url": "https://github.com/fabpot",
  5307. "type": "github"
  5308. },
  5309. {
  5310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5311. "type": "tidelift"
  5312. }
  5313. ],
  5314. "time": "2020-07-14T12:35:20+00:00"
  5315. },
  5316. {
  5317. "name": "symfony/process",
  5318. "version": "v5.1.5",
  5319. "source": {
  5320. "type": "git",
  5321. "url": "https://github.com/symfony/process.git",
  5322. "reference": "1864216226af21eb76d9477f691e7cbf198e0402"
  5323. },
  5324. "dist": {
  5325. "type": "zip",
  5326. "url": "https://api.github.com/repos/symfony/process/zipball/1864216226af21eb76d9477f691e7cbf198e0402",
  5327. "reference": "1864216226af21eb76d9477f691e7cbf198e0402",
  5328. "shasum": ""
  5329. },
  5330. "require": {
  5331. "php": ">=7.2.5",
  5332. "symfony/polyfill-php80": "^1.15"
  5333. },
  5334. "type": "library",
  5335. "extra": {
  5336. "branch-alias": {
  5337. "dev-master": "5.1-dev"
  5338. }
  5339. },
  5340. "autoload": {
  5341. "psr-4": {
  5342. "Symfony\\Component\\Process\\": ""
  5343. },
  5344. "exclude-from-classmap": [
  5345. "/Tests/"
  5346. ]
  5347. },
  5348. "notification-url": "https://packagist.org/downloads/",
  5349. "license": [
  5350. "MIT"
  5351. ],
  5352. "authors": [
  5353. {
  5354. "name": "Fabien Potencier",
  5355. "email": "fabien@symfony.com"
  5356. },
  5357. {
  5358. "name": "Symfony Community",
  5359. "homepage": "https://symfony.com/contributors"
  5360. }
  5361. ],
  5362. "description": "Symfony Process Component",
  5363. "homepage": "https://symfony.com",
  5364. "funding": [
  5365. {
  5366. "url": "https://symfony.com/sponsor",
  5367. "type": "custom"
  5368. },
  5369. {
  5370. "url": "https://github.com/fabpot",
  5371. "type": "github"
  5372. },
  5373. {
  5374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5375. "type": "tidelift"
  5376. }
  5377. ],
  5378. "time": "2020-07-23T08:36:24+00:00"
  5379. },
  5380. {
  5381. "name": "symfony/routing",
  5382. "version": "v5.1.5",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/symfony/routing.git",
  5386. "reference": "47b0218344cb6af25c93ca8ee1137fafbee5005d"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/symfony/routing/zipball/47b0218344cb6af25c93ca8ee1137fafbee5005d",
  5391. "reference": "47b0218344cb6af25c93ca8ee1137fafbee5005d",
  5392. "shasum": ""
  5393. },
  5394. "require": {
  5395. "php": ">=7.2.5",
  5396. "symfony/deprecation-contracts": "^2.1",
  5397. "symfony/polyfill-php80": "^1.15"
  5398. },
  5399. "conflict": {
  5400. "symfony/config": "<5.0",
  5401. "symfony/dependency-injection": "<4.4",
  5402. "symfony/yaml": "<4.4"
  5403. },
  5404. "require-dev": {
  5405. "doctrine/annotations": "~1.2",
  5406. "psr/log": "~1.0",
  5407. "symfony/config": "^5.0",
  5408. "symfony/dependency-injection": "^4.4|^5.0",
  5409. "symfony/expression-language": "^4.4|^5.0",
  5410. "symfony/http-foundation": "^4.4|^5.0",
  5411. "symfony/yaml": "^4.4|^5.0"
  5412. },
  5413. "suggest": {
  5414. "doctrine/annotations": "For using the annotation loader",
  5415. "symfony/config": "For using the all-in-one router or any loader",
  5416. "symfony/expression-language": "For using expression matching",
  5417. "symfony/http-foundation": "For using a Symfony Request object",
  5418. "symfony/yaml": "For using the YAML loader"
  5419. },
  5420. "type": "library",
  5421. "extra": {
  5422. "branch-alias": {
  5423. "dev-master": "5.1-dev"
  5424. }
  5425. },
  5426. "autoload": {
  5427. "psr-4": {
  5428. "Symfony\\Component\\Routing\\": ""
  5429. },
  5430. "exclude-from-classmap": [
  5431. "/Tests/"
  5432. ]
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "MIT"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Fabien Potencier",
  5441. "email": "fabien@symfony.com"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Symfony Routing Component",
  5449. "homepage": "https://symfony.com",
  5450. "keywords": [
  5451. "router",
  5452. "routing",
  5453. "uri",
  5454. "url"
  5455. ],
  5456. "funding": [
  5457. {
  5458. "url": "https://symfony.com/sponsor",
  5459. "type": "custom"
  5460. },
  5461. {
  5462. "url": "https://github.com/fabpot",
  5463. "type": "github"
  5464. },
  5465. {
  5466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5467. "type": "tidelift"
  5468. }
  5469. ],
  5470. "time": "2020-08-10T08:03:57+00:00"
  5471. },
  5472. {
  5473. "name": "symfony/service-contracts",
  5474. "version": "v2.1.3",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://github.com/symfony/service-contracts.git",
  5478. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442"
  5479. },
  5480. "dist": {
  5481. "type": "zip",
  5482. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442",
  5483. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442",
  5484. "shasum": ""
  5485. },
  5486. "require": {
  5487. "php": ">=7.2.5",
  5488. "psr/container": "^1.0"
  5489. },
  5490. "suggest": {
  5491. "symfony/service-implementation": ""
  5492. },
  5493. "type": "library",
  5494. "extra": {
  5495. "branch-alias": {
  5496. "dev-master": "2.1-dev"
  5497. },
  5498. "thanks": {
  5499. "name": "symfony/contracts",
  5500. "url": "https://github.com/symfony/contracts"
  5501. }
  5502. },
  5503. "autoload": {
  5504. "psr-4": {
  5505. "Symfony\\Contracts\\Service\\": ""
  5506. }
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Nicolas Grekas",
  5515. "email": "p@tchwork.com"
  5516. },
  5517. {
  5518. "name": "Symfony Community",
  5519. "homepage": "https://symfony.com/contributors"
  5520. }
  5521. ],
  5522. "description": "Generic abstractions related to writing services",
  5523. "homepage": "https://symfony.com",
  5524. "keywords": [
  5525. "abstractions",
  5526. "contracts",
  5527. "decoupling",
  5528. "interfaces",
  5529. "interoperability",
  5530. "standards"
  5531. ],
  5532. "funding": [
  5533. {
  5534. "url": "https://symfony.com/sponsor",
  5535. "type": "custom"
  5536. },
  5537. {
  5538. "url": "https://github.com/fabpot",
  5539. "type": "github"
  5540. },
  5541. {
  5542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5543. "type": "tidelift"
  5544. }
  5545. ],
  5546. "time": "2020-07-06T13:23:11+00:00"
  5547. },
  5548. {
  5549. "name": "symfony/string",
  5550. "version": "v5.1.5",
  5551. "source": {
  5552. "type": "git",
  5553. "url": "https://github.com/symfony/string.git",
  5554. "reference": "0de4cc1e18bb596226c06a82e2e7e9bc6001a63a"
  5555. },
  5556. "dist": {
  5557. "type": "zip",
  5558. "url": "https://api.github.com/repos/symfony/string/zipball/0de4cc1e18bb596226c06a82e2e7e9bc6001a63a",
  5559. "reference": "0de4cc1e18bb596226c06a82e2e7e9bc6001a63a",
  5560. "shasum": ""
  5561. },
  5562. "require": {
  5563. "php": ">=7.2.5",
  5564. "symfony/polyfill-ctype": "~1.8",
  5565. "symfony/polyfill-intl-grapheme": "~1.0",
  5566. "symfony/polyfill-intl-normalizer": "~1.0",
  5567. "symfony/polyfill-mbstring": "~1.0",
  5568. "symfony/polyfill-php80": "~1.15"
  5569. },
  5570. "require-dev": {
  5571. "symfony/error-handler": "^4.4|^5.0",
  5572. "symfony/http-client": "^4.4|^5.0",
  5573. "symfony/translation-contracts": "^1.1|^2",
  5574. "symfony/var-exporter": "^4.4|^5.0"
  5575. },
  5576. "type": "library",
  5577. "extra": {
  5578. "branch-alias": {
  5579. "dev-master": "5.1-dev"
  5580. }
  5581. },
  5582. "autoload": {
  5583. "psr-4": {
  5584. "Symfony\\Component\\String\\": ""
  5585. },
  5586. "files": [
  5587. "Resources/functions.php"
  5588. ],
  5589. "exclude-from-classmap": [
  5590. "/Tests/"
  5591. ]
  5592. },
  5593. "notification-url": "https://packagist.org/downloads/",
  5594. "license": [
  5595. "MIT"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Nicolas Grekas",
  5600. "email": "p@tchwork.com"
  5601. },
  5602. {
  5603. "name": "Symfony Community",
  5604. "homepage": "https://symfony.com/contributors"
  5605. }
  5606. ],
  5607. "description": "Symfony String component",
  5608. "homepage": "https://symfony.com",
  5609. "keywords": [
  5610. "grapheme",
  5611. "i18n",
  5612. "string",
  5613. "unicode",
  5614. "utf-8",
  5615. "utf8"
  5616. ],
  5617. "funding": [
  5618. {
  5619. "url": "https://symfony.com/sponsor",
  5620. "type": "custom"
  5621. },
  5622. {
  5623. "url": "https://github.com/fabpot",
  5624. "type": "github"
  5625. },
  5626. {
  5627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5628. "type": "tidelift"
  5629. }
  5630. ],
  5631. "time": "2020-08-17T07:48:54+00:00"
  5632. },
  5633. {
  5634. "name": "symfony/translation",
  5635. "version": "v5.1.5",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/symfony/translation.git",
  5639. "reference": "917b02cdc5f33e0309b8e9d33ee1480b20687413"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/symfony/translation/zipball/917b02cdc5f33e0309b8e9d33ee1480b20687413",
  5644. "reference": "917b02cdc5f33e0309b8e9d33ee1480b20687413",
  5645. "shasum": ""
  5646. },
  5647. "require": {
  5648. "php": ">=7.2.5",
  5649. "symfony/polyfill-mbstring": "~1.0",
  5650. "symfony/polyfill-php80": "^1.15",
  5651. "symfony/translation-contracts": "^2"
  5652. },
  5653. "conflict": {
  5654. "symfony/config": "<4.4",
  5655. "symfony/dependency-injection": "<5.0",
  5656. "symfony/http-kernel": "<5.0",
  5657. "symfony/twig-bundle": "<5.0",
  5658. "symfony/yaml": "<4.4"
  5659. },
  5660. "provide": {
  5661. "symfony/translation-implementation": "2.0"
  5662. },
  5663. "require-dev": {
  5664. "psr/log": "~1.0",
  5665. "symfony/config": "^4.4|^5.0",
  5666. "symfony/console": "^4.4|^5.0",
  5667. "symfony/dependency-injection": "^5.0",
  5668. "symfony/finder": "^4.4|^5.0",
  5669. "symfony/http-kernel": "^5.0",
  5670. "symfony/intl": "^4.4|^5.0",
  5671. "symfony/service-contracts": "^1.1.2|^2",
  5672. "symfony/yaml": "^4.4|^5.0"
  5673. },
  5674. "suggest": {
  5675. "psr/log-implementation": "To use logging capability in translator",
  5676. "symfony/config": "",
  5677. "symfony/yaml": ""
  5678. },
  5679. "type": "library",
  5680. "extra": {
  5681. "branch-alias": {
  5682. "dev-master": "5.1-dev"
  5683. }
  5684. },
  5685. "autoload": {
  5686. "psr-4": {
  5687. "Symfony\\Component\\Translation\\": ""
  5688. },
  5689. "exclude-from-classmap": [
  5690. "/Tests/"
  5691. ]
  5692. },
  5693. "notification-url": "https://packagist.org/downloads/",
  5694. "license": [
  5695. "MIT"
  5696. ],
  5697. "authors": [
  5698. {
  5699. "name": "Fabien Potencier",
  5700. "email": "fabien@symfony.com"
  5701. },
  5702. {
  5703. "name": "Symfony Community",
  5704. "homepage": "https://symfony.com/contributors"
  5705. }
  5706. ],
  5707. "description": "Symfony Translation Component",
  5708. "homepage": "https://symfony.com",
  5709. "funding": [
  5710. {
  5711. "url": "https://symfony.com/sponsor",
  5712. "type": "custom"
  5713. },
  5714. {
  5715. "url": "https://github.com/fabpot",
  5716. "type": "github"
  5717. },
  5718. {
  5719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5720. "type": "tidelift"
  5721. }
  5722. ],
  5723. "time": "2020-08-17T10:01:29+00:00"
  5724. },
  5725. {
  5726. "name": "symfony/translation-contracts",
  5727. "version": "v2.1.3",
  5728. "source": {
  5729. "type": "git",
  5730. "url": "https://github.com/symfony/translation-contracts.git",
  5731. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63"
  5732. },
  5733. "dist": {
  5734. "type": "zip",
  5735. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/616a9773c853097607cf9dd6577d5b143ffdcd63",
  5736. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63",
  5737. "shasum": ""
  5738. },
  5739. "require": {
  5740. "php": ">=7.2.5"
  5741. },
  5742. "suggest": {
  5743. "symfony/translation-implementation": ""
  5744. },
  5745. "type": "library",
  5746. "extra": {
  5747. "branch-alias": {
  5748. "dev-master": "2.1-dev"
  5749. },
  5750. "thanks": {
  5751. "name": "symfony/contracts",
  5752. "url": "https://github.com/symfony/contracts"
  5753. }
  5754. },
  5755. "autoload": {
  5756. "psr-4": {
  5757. "Symfony\\Contracts\\Translation\\": ""
  5758. }
  5759. },
  5760. "notification-url": "https://packagist.org/downloads/",
  5761. "license": [
  5762. "MIT"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "Nicolas Grekas",
  5767. "email": "p@tchwork.com"
  5768. },
  5769. {
  5770. "name": "Symfony Community",
  5771. "homepage": "https://symfony.com/contributors"
  5772. }
  5773. ],
  5774. "description": "Generic abstractions related to translation",
  5775. "homepage": "https://symfony.com",
  5776. "keywords": [
  5777. "abstractions",
  5778. "contracts",
  5779. "decoupling",
  5780. "interfaces",
  5781. "interoperability",
  5782. "standards"
  5783. ],
  5784. "funding": [
  5785. {
  5786. "url": "https://symfony.com/sponsor",
  5787. "type": "custom"
  5788. },
  5789. {
  5790. "url": "https://github.com/fabpot",
  5791. "type": "github"
  5792. },
  5793. {
  5794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5795. "type": "tidelift"
  5796. }
  5797. ],
  5798. "time": "2020-07-06T13:23:11+00:00"
  5799. },
  5800. {
  5801. "name": "symfony/var-dumper",
  5802. "version": "v5.1.5",
  5803. "source": {
  5804. "type": "git",
  5805. "url": "https://github.com/symfony/var-dumper.git",
  5806. "reference": "b43a3905262bcf97b2510f0621f859ca4f5287be"
  5807. },
  5808. "dist": {
  5809. "type": "zip",
  5810. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b43a3905262bcf97b2510f0621f859ca4f5287be",
  5811. "reference": "b43a3905262bcf97b2510f0621f859ca4f5287be",
  5812. "shasum": ""
  5813. },
  5814. "require": {
  5815. "php": ">=7.2.5",
  5816. "symfony/polyfill-mbstring": "~1.0",
  5817. "symfony/polyfill-php80": "^1.15"
  5818. },
  5819. "conflict": {
  5820. "phpunit/phpunit": "<5.4.3",
  5821. "symfony/console": "<4.4"
  5822. },
  5823. "require-dev": {
  5824. "ext-iconv": "*",
  5825. "symfony/console": "^4.4|^5.0",
  5826. "symfony/process": "^4.4|^5.0",
  5827. "twig/twig": "^2.4|^3.0"
  5828. },
  5829. "suggest": {
  5830. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5831. "ext-intl": "To show region name in time zone dump",
  5832. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5833. },
  5834. "bin": [
  5835. "Resources/bin/var-dump-server"
  5836. ],
  5837. "type": "library",
  5838. "extra": {
  5839. "branch-alias": {
  5840. "dev-master": "5.1-dev"
  5841. }
  5842. },
  5843. "autoload": {
  5844. "files": [
  5845. "Resources/functions/dump.php"
  5846. ],
  5847. "psr-4": {
  5848. "Symfony\\Component\\VarDumper\\": ""
  5849. },
  5850. "exclude-from-classmap": [
  5851. "/Tests/"
  5852. ]
  5853. },
  5854. "notification-url": "https://packagist.org/downloads/",
  5855. "license": [
  5856. "MIT"
  5857. ],
  5858. "authors": [
  5859. {
  5860. "name": "Nicolas Grekas",
  5861. "email": "p@tchwork.com"
  5862. },
  5863. {
  5864. "name": "Symfony Community",
  5865. "homepage": "https://symfony.com/contributors"
  5866. }
  5867. ],
  5868. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5869. "homepage": "https://symfony.com",
  5870. "keywords": [
  5871. "debug",
  5872. "dump"
  5873. ],
  5874. "funding": [
  5875. {
  5876. "url": "https://symfony.com/sponsor",
  5877. "type": "custom"
  5878. },
  5879. {
  5880. "url": "https://github.com/fabpot",
  5881. "type": "github"
  5882. },
  5883. {
  5884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5885. "type": "tidelift"
  5886. }
  5887. ],
  5888. "time": "2020-08-17T07:42:30+00:00"
  5889. },
  5890. {
  5891. "name": "tijsverkoyen/css-to-inline-styles",
  5892. "version": "2.2.3",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5896. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5901. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5902. "shasum": ""
  5903. },
  5904. "require": {
  5905. "ext-dom": "*",
  5906. "ext-libxml": "*",
  5907. "php": "^5.5 || ^7.0 || ^8.0",
  5908. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  5909. },
  5910. "require-dev": {
  5911. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  5912. },
  5913. "type": "library",
  5914. "extra": {
  5915. "branch-alias": {
  5916. "dev-master": "2.2.x-dev"
  5917. }
  5918. },
  5919. "autoload": {
  5920. "psr-4": {
  5921. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5922. }
  5923. },
  5924. "notification-url": "https://packagist.org/downloads/",
  5925. "license": [
  5926. "BSD-3-Clause"
  5927. ],
  5928. "authors": [
  5929. {
  5930. "name": "Tijs Verkoyen",
  5931. "email": "css_to_inline_styles@verkoyen.eu",
  5932. "role": "Developer"
  5933. }
  5934. ],
  5935. "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.",
  5936. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5937. "time": "2020-07-13T06:12:54+00:00"
  5938. },
  5939. {
  5940. "name": "vlucas/phpdotenv",
  5941. "version": "v4.1.8",
  5942. "source": {
  5943. "type": "git",
  5944. "url": "https://github.com/vlucas/phpdotenv.git",
  5945. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  5946. },
  5947. "dist": {
  5948. "type": "zip",
  5949. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  5950. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  5951. "shasum": ""
  5952. },
  5953. "require": {
  5954. "php": "^5.5.9 || ^7.0 || ^8.0",
  5955. "phpoption/phpoption": "^1.7.3",
  5956. "symfony/polyfill-ctype": "^1.17"
  5957. },
  5958. "require-dev": {
  5959. "bamarni/composer-bin-plugin": "^1.4.1",
  5960. "ext-filter": "*",
  5961. "ext-pcre": "*",
  5962. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  5963. },
  5964. "suggest": {
  5965. "ext-filter": "Required to use the boolean validator.",
  5966. "ext-pcre": "Required to use most of the library."
  5967. },
  5968. "type": "library",
  5969. "extra": {
  5970. "branch-alias": {
  5971. "dev-master": "4.1-dev"
  5972. }
  5973. },
  5974. "autoload": {
  5975. "psr-4": {
  5976. "Dotenv\\": "src/"
  5977. }
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "BSD-3-Clause"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Graham Campbell",
  5986. "email": "graham@alt-three.com",
  5987. "homepage": "https://gjcampbell.co.uk/"
  5988. },
  5989. {
  5990. "name": "Vance Lucas",
  5991. "email": "vance@vancelucas.com",
  5992. "homepage": "https://vancelucas.com/"
  5993. }
  5994. ],
  5995. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5996. "keywords": [
  5997. "dotenv",
  5998. "env",
  5999. "environment"
  6000. ],
  6001. "funding": [
  6002. {
  6003. "url": "https://github.com/GrahamCampbell",
  6004. "type": "github"
  6005. },
  6006. {
  6007. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6008. "type": "tidelift"
  6009. }
  6010. ],
  6011. "time": "2020-07-14T19:22:52+00:00"
  6012. },
  6013. {
  6014. "name": "voku/portable-ascii",
  6015. "version": "1.5.3",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/voku/portable-ascii.git",
  6019. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/25bcbf01678930251fd572891447d9e318a6e2b8",
  6024. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "php": ">=7.0.0"
  6029. },
  6030. "require-dev": {
  6031. "phpunit/phpunit": "~6.0 || ~7.0"
  6032. },
  6033. "suggest": {
  6034. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6035. },
  6036. "type": "library",
  6037. "autoload": {
  6038. "psr-4": {
  6039. "voku\\": "src/voku/"
  6040. }
  6041. },
  6042. "notification-url": "https://packagist.org/downloads/",
  6043. "license": [
  6044. "MIT"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "Lars Moelleken",
  6049. "homepage": "http://www.moelleken.org/"
  6050. }
  6051. ],
  6052. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6053. "homepage": "https://github.com/voku/portable-ascii",
  6054. "keywords": [
  6055. "ascii",
  6056. "clean",
  6057. "php"
  6058. ],
  6059. "funding": [
  6060. {
  6061. "url": "https://www.paypal.me/moelleken",
  6062. "type": "custom"
  6063. },
  6064. {
  6065. "url": "https://github.com/voku",
  6066. "type": "github"
  6067. },
  6068. {
  6069. "url": "https://opencollective.com/portable-ascii",
  6070. "type": "open_collective"
  6071. },
  6072. {
  6073. "url": "https://www.patreon.com/voku",
  6074. "type": "patreon"
  6075. },
  6076. {
  6077. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6078. "type": "tidelift"
  6079. }
  6080. ],
  6081. "time": "2020-07-22T23:32:04+00:00"
  6082. },
  6083. {
  6084. "name": "xhat/payjs",
  6085. "version": "1.4.3",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://github.com/xhat/payjs.git",
  6089. "reference": "3d19cbd88abbd7081738b016ce9c04a1cb9edad5"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://api.github.com/repos/xhat/payjs/zipball/3d19cbd88abbd7081738b016ce9c04a1cb9edad5",
  6094. "reference": "3d19cbd88abbd7081738b016ce9c04a1cb9edad5",
  6095. "shasum": ""
  6096. },
  6097. "type": "library",
  6098. "autoload": {
  6099. "psr-4": {
  6100. "Xhat\\Payjs\\": "src/"
  6101. }
  6102. },
  6103. "notification-url": "https://packagist.org/downloads/",
  6104. "license": [
  6105. "MIT"
  6106. ],
  6107. "authors": [
  6108. {
  6109. "name": "andy",
  6110. "email": "andy@popfeng.com"
  6111. }
  6112. ],
  6113. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6114. "time": "2019-08-13T04:58:08+00:00"
  6115. },
  6116. {
  6117. "name": "zbrettonye/geetest",
  6118. "version": "v1.1.0",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/ZBrettonYe/geetest.git",
  6122. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/98339e279526b6c693d8a66edbe3ebf05e800a91",
  6127. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91",
  6128. "shasum": ""
  6129. },
  6130. "require": {
  6131. "illuminate/routing": "^5.5 || ^6 || ^7",
  6132. "illuminate/support": "^5.5 || ^6 || ^7",
  6133. "php": "^7.3"
  6134. },
  6135. "require-dev": {
  6136. "mockery/mockery": "^1.4",
  6137. "phpunit/phpunit": "^9.0"
  6138. },
  6139. "type": "library",
  6140. "extra": {
  6141. "laravel": {
  6142. "providers": [
  6143. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6144. ],
  6145. "aliases": {
  6146. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6147. }
  6148. }
  6149. },
  6150. "autoload": {
  6151. "psr-4": {
  6152. "ZBrettonYe\\Geetest\\": "src/"
  6153. }
  6154. },
  6155. "notification-url": "https://packagist.org/downloads/",
  6156. "license": [
  6157. "MIT"
  6158. ],
  6159. "authors": [
  6160. {
  6161. "name": "zbrettonye",
  6162. "email": "monkeyblacktech97@gmail.com"
  6163. }
  6164. ],
  6165. "description": "Geetest Package for Laravel",
  6166. "keywords": [
  6167. "geetest",
  6168. "laravel"
  6169. ],
  6170. "time": "2020-09-03T04:24:48+00:00"
  6171. },
  6172. {
  6173. "name": "zbrettonye/hcaptcha",
  6174. "version": "v1.0",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6178. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6183. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6184. "shasum": ""
  6185. },
  6186. "require": {
  6187. "guzzlehttp/guzzle": "^6.2|^7.0",
  6188. "illuminate/support": "^5.5 || ^6 || ^7",
  6189. "php": ">=5.5.5"
  6190. },
  6191. "require-dev": {
  6192. "phpunit/phpunit": "~4.8"
  6193. },
  6194. "type": "library",
  6195. "extra": {
  6196. "laravel": {
  6197. "providers": [
  6198. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6199. ],
  6200. "aliases": {
  6201. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6202. }
  6203. }
  6204. },
  6205. "autoload": {
  6206. "psr-4": {
  6207. "ZBrettonYe\\HCaptcha\\": "src/"
  6208. }
  6209. },
  6210. "notification-url": "https://packagist.org/downloads/",
  6211. "license": [
  6212. "MIT"
  6213. ],
  6214. "authors": [
  6215. {
  6216. "name": "zbrettonye",
  6217. "email": "monkeyblacktech97@gmail.com"
  6218. }
  6219. ],
  6220. "description": "hCaptcha For Laravel5~7",
  6221. "keywords": [
  6222. "captcha",
  6223. "hcaptcha",
  6224. "laravel"
  6225. ],
  6226. "time": "2020-09-03T05:00:52+00:00"
  6227. },
  6228. {
  6229. "name": "zbrettonye/no-captcha",
  6230. "version": "v1.0.4",
  6231. "source": {
  6232. "type": "git",
  6233. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6234. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3"
  6235. },
  6236. "dist": {
  6237. "type": "zip",
  6238. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6239. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6240. "shasum": ""
  6241. },
  6242. "require": {
  6243. "guzzlehttp/guzzle": "^6.2|^7.0",
  6244. "illuminate/support": "^5.0|^6.0|^7.0",
  6245. "php": ">=5.5.5"
  6246. },
  6247. "require-dev": {
  6248. "phpunit/phpunit": "~4.8"
  6249. },
  6250. "type": "library",
  6251. "extra": {
  6252. "laravel": {
  6253. "providers": [
  6254. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6255. ],
  6256. "aliases": {
  6257. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6258. }
  6259. }
  6260. },
  6261. "autoload": {
  6262. "psr-4": {
  6263. "ZBrettonYe\\NoCaptcha\\": "src/"
  6264. }
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "MIT"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "zbrettonye",
  6273. "email": "monkeyblacktech97@gmail.com"
  6274. }
  6275. ],
  6276. "description": "No CAPTCHA reCAPTCHA For Laravel.",
  6277. "keywords": [
  6278. "captcha",
  6279. "laravel",
  6280. "laravel4",
  6281. "laravel5",
  6282. "laravel6",
  6283. "no-captcha",
  6284. "recaptcha"
  6285. ],
  6286. "time": "2020-09-03T03:49:59+00:00"
  6287. }
  6288. ],
  6289. "packages-dev": [
  6290. {
  6291. "name": "barryvdh/laravel-debugbar",
  6292. "version": "v3.4.2",
  6293. "source": {
  6294. "type": "git",
  6295. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  6296. "reference": "91ee8b3acf0d72a4937f4855bd245acbda9910ac"
  6297. },
  6298. "dist": {
  6299. "type": "zip",
  6300. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/91ee8b3acf0d72a4937f4855bd245acbda9910ac",
  6301. "reference": "91ee8b3acf0d72a4937f4855bd245acbda9910ac",
  6302. "shasum": ""
  6303. },
  6304. "require": {
  6305. "illuminate/routing": "^5.5|^6|^7",
  6306. "illuminate/session": "^5.5|^6|^7",
  6307. "illuminate/support": "^5.5|^6|^7",
  6308. "maximebf/debugbar": "^1.16.3",
  6309. "php": ">=7.0",
  6310. "symfony/debug": "^3|^4|^5",
  6311. "symfony/finder": "^3|^4|^5"
  6312. },
  6313. "require-dev": {
  6314. "orchestra/testbench": "^3.5|^4.0|^5.0",
  6315. "phpunit/phpunit": "^6.0|^7.0|^8.5|^9.0"
  6316. },
  6317. "type": "library",
  6318. "extra": {
  6319. "branch-alias": {
  6320. "dev-master": "3.2-dev"
  6321. },
  6322. "laravel": {
  6323. "providers": [
  6324. "Barryvdh\\Debugbar\\ServiceProvider"
  6325. ],
  6326. "aliases": {
  6327. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  6328. }
  6329. }
  6330. },
  6331. "autoload": {
  6332. "psr-4": {
  6333. "Barryvdh\\Debugbar\\": "src/"
  6334. },
  6335. "files": [
  6336. "src/helpers.php"
  6337. ]
  6338. },
  6339. "notification-url": "https://packagist.org/downloads/",
  6340. "license": [
  6341. "MIT"
  6342. ],
  6343. "authors": [
  6344. {
  6345. "name": "Barry vd. Heuvel",
  6346. "email": "barryvdh@gmail.com"
  6347. }
  6348. ],
  6349. "description": "PHP Debugbar integration for Laravel",
  6350. "keywords": [
  6351. "debug",
  6352. "debugbar",
  6353. "laravel",
  6354. "profiler",
  6355. "webprofiler"
  6356. ],
  6357. "funding": [
  6358. {
  6359. "url": "https://github.com/barryvdh",
  6360. "type": "github"
  6361. }
  6362. ],
  6363. "time": "2020-08-30T07:08:17+00:00"
  6364. },
  6365. {
  6366. "name": "barryvdh/laravel-ide-helper",
  6367. "version": "v2.8.0",
  6368. "source": {
  6369. "type": "git",
  6370. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  6371. "reference": "ba95d18ef55c91295250ae8b7bfa73d8fb866b9b"
  6372. },
  6373. "dist": {
  6374. "type": "zip",
  6375. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/ba95d18ef55c91295250ae8b7bfa73d8fb866b9b",
  6376. "reference": "ba95d18ef55c91295250ae8b7bfa73d8fb866b9b",
  6377. "shasum": ""
  6378. },
  6379. "require": {
  6380. "barryvdh/reflection-docblock": "^2.0.6",
  6381. "composer/composer": "^1.6 || ^2.0@dev",
  6382. "doctrine/dbal": "~2.3",
  6383. "illuminate/console": "^5.5 || ^6 || ^7",
  6384. "illuminate/filesystem": "^5.5 || ^6 || ^7",
  6385. "illuminate/support": "^5.5 || ^6 || ^7",
  6386. "php": ">=7.2",
  6387. "phpdocumentor/type-resolver": "^1.1.0"
  6388. },
  6389. "require-dev": {
  6390. "illuminate/config": "^5.5 || ^6 || ^7",
  6391. "illuminate/view": "^5.5 || ^6 || ^7",
  6392. "mockery/mockery": "^1.3",
  6393. "orchestra/testbench": "^3.5 || ^4 || ^5",
  6394. "phpro/grumphp": "^0.19.0",
  6395. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  6396. "squizlabs/php_codesniffer": "^3.5",
  6397. "vimeo/psalm": "^3.12"
  6398. },
  6399. "type": "library",
  6400. "extra": {
  6401. "branch-alias": {
  6402. "dev-master": "2.7-dev"
  6403. },
  6404. "laravel": {
  6405. "providers": [
  6406. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  6407. ]
  6408. }
  6409. },
  6410. "autoload": {
  6411. "psr-4": {
  6412. "Barryvdh\\LaravelIdeHelper\\": "src"
  6413. }
  6414. },
  6415. "notification-url": "https://packagist.org/downloads/",
  6416. "license": [
  6417. "MIT"
  6418. ],
  6419. "authors": [
  6420. {
  6421. "name": "Barry vd. Heuvel",
  6422. "email": "barryvdh@gmail.com"
  6423. }
  6424. ],
  6425. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  6426. "keywords": [
  6427. "autocomplete",
  6428. "codeintel",
  6429. "helper",
  6430. "ide",
  6431. "laravel",
  6432. "netbeans",
  6433. "phpdoc",
  6434. "phpstorm",
  6435. "sublime"
  6436. ],
  6437. "funding": [
  6438. {
  6439. "url": "https://github.com/barryvdh",
  6440. "type": "github"
  6441. }
  6442. ],
  6443. "time": "2020-08-10T08:22:48+00:00"
  6444. },
  6445. {
  6446. "name": "barryvdh/reflection-docblock",
  6447. "version": "v2.0.6",
  6448. "source": {
  6449. "type": "git",
  6450. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  6451. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  6452. },
  6453. "dist": {
  6454. "type": "zip",
  6455. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6456. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6457. "shasum": ""
  6458. },
  6459. "require": {
  6460. "php": ">=5.3.3"
  6461. },
  6462. "require-dev": {
  6463. "phpunit/phpunit": "~4.0,<4.5"
  6464. },
  6465. "suggest": {
  6466. "dflydev/markdown": "~1.0",
  6467. "erusev/parsedown": "~1.0"
  6468. },
  6469. "type": "library",
  6470. "extra": {
  6471. "branch-alias": {
  6472. "dev-master": "2.0.x-dev"
  6473. }
  6474. },
  6475. "autoload": {
  6476. "psr-0": {
  6477. "Barryvdh": [
  6478. "src/"
  6479. ]
  6480. }
  6481. },
  6482. "notification-url": "https://packagist.org/downloads/",
  6483. "license": [
  6484. "MIT"
  6485. ],
  6486. "authors": [
  6487. {
  6488. "name": "Mike van Riel",
  6489. "email": "mike.vanriel@naenius.com"
  6490. }
  6491. ],
  6492. "time": "2018-12-13T10:34:14+00:00"
  6493. },
  6494. {
  6495. "name": "composer/ca-bundle",
  6496. "version": "1.2.8",
  6497. "source": {
  6498. "type": "git",
  6499. "url": "https://github.com/composer/ca-bundle.git",
  6500. "reference": "8a7ecad675253e4654ea05505233285377405215"
  6501. },
  6502. "dist": {
  6503. "type": "zip",
  6504. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  6505. "reference": "8a7ecad675253e4654ea05505233285377405215",
  6506. "shasum": ""
  6507. },
  6508. "require": {
  6509. "ext-openssl": "*",
  6510. "ext-pcre": "*",
  6511. "php": "^5.3.2 || ^7.0 || ^8.0"
  6512. },
  6513. "require-dev": {
  6514. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  6515. "psr/log": "^1.0",
  6516. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  6517. },
  6518. "type": "library",
  6519. "extra": {
  6520. "branch-alias": {
  6521. "dev-master": "1.x-dev"
  6522. }
  6523. },
  6524. "autoload": {
  6525. "psr-4": {
  6526. "Composer\\CaBundle\\": "src"
  6527. }
  6528. },
  6529. "notification-url": "https://packagist.org/downloads/",
  6530. "license": [
  6531. "MIT"
  6532. ],
  6533. "authors": [
  6534. {
  6535. "name": "Jordi Boggiano",
  6536. "email": "j.boggiano@seld.be",
  6537. "homepage": "http://seld.be"
  6538. }
  6539. ],
  6540. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  6541. "keywords": [
  6542. "cabundle",
  6543. "cacert",
  6544. "certificate",
  6545. "ssl",
  6546. "tls"
  6547. ],
  6548. "funding": [
  6549. {
  6550. "url": "https://packagist.com",
  6551. "type": "custom"
  6552. },
  6553. {
  6554. "url": "https://github.com/composer",
  6555. "type": "github"
  6556. },
  6557. {
  6558. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6559. "type": "tidelift"
  6560. }
  6561. ],
  6562. "time": "2020-08-23T12:54:47+00:00"
  6563. },
  6564. {
  6565. "name": "composer/composer",
  6566. "version": "1.10.10",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://github.com/composer/composer.git",
  6570. "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://api.github.com/repos/composer/composer/zipball/32966a3b1d48bc01472a8321fd6472b44fad033a",
  6575. "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a",
  6576. "shasum": ""
  6577. },
  6578. "require": {
  6579. "composer/ca-bundle": "^1.0",
  6580. "composer/semver": "^1.0",
  6581. "composer/spdx-licenses": "^1.2",
  6582. "composer/xdebug-handler": "^1.1",
  6583. "justinrainbow/json-schema": "^5.2.10",
  6584. "php": "^5.3.2 || ^7.0",
  6585. "psr/log": "^1.0",
  6586. "seld/jsonlint": "^1.4",
  6587. "seld/phar-utils": "^1.0",
  6588. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6589. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6590. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6591. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6592. },
  6593. "conflict": {
  6594. "symfony/console": "2.8.38"
  6595. },
  6596. "require-dev": {
  6597. "phpspec/prophecy": "^1.10",
  6598. "symfony/phpunit-bridge": "^4.2"
  6599. },
  6600. "suggest": {
  6601. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  6602. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  6603. "ext-zlib": "Allow gzip compression of HTTP requests"
  6604. },
  6605. "bin": [
  6606. "bin/composer"
  6607. ],
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "1.10-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "psr-4": {
  6616. "Composer\\": "src/Composer"
  6617. }
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Nils Adermann",
  6626. "email": "naderman@naderman.de",
  6627. "homepage": "http://www.naderman.de"
  6628. },
  6629. {
  6630. "name": "Jordi Boggiano",
  6631. "email": "j.boggiano@seld.be",
  6632. "homepage": "http://seld.be"
  6633. }
  6634. ],
  6635. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  6636. "homepage": "https://getcomposer.org/",
  6637. "keywords": [
  6638. "autoload",
  6639. "dependency",
  6640. "package"
  6641. ],
  6642. "funding": [
  6643. {
  6644. "url": "https://packagist.com",
  6645. "type": "custom"
  6646. },
  6647. {
  6648. "url": "https://github.com/composer",
  6649. "type": "github"
  6650. },
  6651. {
  6652. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6653. "type": "tidelift"
  6654. }
  6655. ],
  6656. "time": "2020-08-03T09:35:19+00:00"
  6657. },
  6658. {
  6659. "name": "composer/semver",
  6660. "version": "1.5.1",
  6661. "source": {
  6662. "type": "git",
  6663. "url": "https://github.com/composer/semver.git",
  6664. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  6665. },
  6666. "dist": {
  6667. "type": "zip",
  6668. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  6669. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  6670. "shasum": ""
  6671. },
  6672. "require": {
  6673. "php": "^5.3.2 || ^7.0"
  6674. },
  6675. "require-dev": {
  6676. "phpunit/phpunit": "^4.5 || ^5.0.5"
  6677. },
  6678. "type": "library",
  6679. "extra": {
  6680. "branch-alias": {
  6681. "dev-master": "1.x-dev"
  6682. }
  6683. },
  6684. "autoload": {
  6685. "psr-4": {
  6686. "Composer\\Semver\\": "src"
  6687. }
  6688. },
  6689. "notification-url": "https://packagist.org/downloads/",
  6690. "license": [
  6691. "MIT"
  6692. ],
  6693. "authors": [
  6694. {
  6695. "name": "Nils Adermann",
  6696. "email": "naderman@naderman.de",
  6697. "homepage": "http://www.naderman.de"
  6698. },
  6699. {
  6700. "name": "Jordi Boggiano",
  6701. "email": "j.boggiano@seld.be",
  6702. "homepage": "http://seld.be"
  6703. },
  6704. {
  6705. "name": "Rob Bast",
  6706. "email": "rob.bast@gmail.com",
  6707. "homepage": "http://robbast.nl"
  6708. }
  6709. ],
  6710. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6711. "keywords": [
  6712. "semantic",
  6713. "semver",
  6714. "validation",
  6715. "versioning"
  6716. ],
  6717. "time": "2020-01-13T12:06:48+00:00"
  6718. },
  6719. {
  6720. "name": "composer/spdx-licenses",
  6721. "version": "1.5.4",
  6722. "source": {
  6723. "type": "git",
  6724. "url": "https://github.com/composer/spdx-licenses.git",
  6725. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  6726. },
  6727. "dist": {
  6728. "type": "zip",
  6729. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  6730. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  6731. "shasum": ""
  6732. },
  6733. "require": {
  6734. "php": "^5.3.2 || ^7.0 || ^8.0"
  6735. },
  6736. "require-dev": {
  6737. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  6738. },
  6739. "type": "library",
  6740. "extra": {
  6741. "branch-alias": {
  6742. "dev-master": "1.x-dev"
  6743. }
  6744. },
  6745. "autoload": {
  6746. "psr-4": {
  6747. "Composer\\Spdx\\": "src"
  6748. }
  6749. },
  6750. "notification-url": "https://packagist.org/downloads/",
  6751. "license": [
  6752. "MIT"
  6753. ],
  6754. "authors": [
  6755. {
  6756. "name": "Nils Adermann",
  6757. "email": "naderman@naderman.de",
  6758. "homepage": "http://www.naderman.de"
  6759. },
  6760. {
  6761. "name": "Jordi Boggiano",
  6762. "email": "j.boggiano@seld.be",
  6763. "homepage": "http://seld.be"
  6764. },
  6765. {
  6766. "name": "Rob Bast",
  6767. "email": "rob.bast@gmail.com",
  6768. "homepage": "http://robbast.nl"
  6769. }
  6770. ],
  6771. "description": "SPDX licenses list and validation library.",
  6772. "keywords": [
  6773. "license",
  6774. "spdx",
  6775. "validator"
  6776. ],
  6777. "funding": [
  6778. {
  6779. "url": "https://packagist.com",
  6780. "type": "custom"
  6781. },
  6782. {
  6783. "url": "https://github.com/composer",
  6784. "type": "github"
  6785. },
  6786. {
  6787. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6788. "type": "tidelift"
  6789. }
  6790. ],
  6791. "time": "2020-07-15T15:35:07+00:00"
  6792. },
  6793. {
  6794. "name": "composer/xdebug-handler",
  6795. "version": "1.4.3",
  6796. "source": {
  6797. "type": "git",
  6798. "url": "https://github.com/composer/xdebug-handler.git",
  6799. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  6800. },
  6801. "dist": {
  6802. "type": "zip",
  6803. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  6804. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  6805. "shasum": ""
  6806. },
  6807. "require": {
  6808. "php": "^5.3.2 || ^7.0 || ^8.0",
  6809. "psr/log": "^1.0"
  6810. },
  6811. "require-dev": {
  6812. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  6813. },
  6814. "type": "library",
  6815. "autoload": {
  6816. "psr-4": {
  6817. "Composer\\XdebugHandler\\": "src"
  6818. }
  6819. },
  6820. "notification-url": "https://packagist.org/downloads/",
  6821. "license": [
  6822. "MIT"
  6823. ],
  6824. "authors": [
  6825. {
  6826. "name": "John Stevenson",
  6827. "email": "john-stevenson@blueyonder.co.uk"
  6828. }
  6829. ],
  6830. "description": "Restarts a process without Xdebug.",
  6831. "keywords": [
  6832. "Xdebug",
  6833. "performance"
  6834. ],
  6835. "funding": [
  6836. {
  6837. "url": "https://packagist.com",
  6838. "type": "custom"
  6839. },
  6840. {
  6841. "url": "https://github.com/composer",
  6842. "type": "github"
  6843. },
  6844. {
  6845. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6846. "type": "tidelift"
  6847. }
  6848. ],
  6849. "time": "2020-08-19T10:27:58+00:00"
  6850. },
  6851. {
  6852. "name": "doctrine/cache",
  6853. "version": "1.10.2",
  6854. "source": {
  6855. "type": "git",
  6856. "url": "https://github.com/doctrine/cache.git",
  6857. "reference": "13e3381b25847283a91948d04640543941309727"
  6858. },
  6859. "dist": {
  6860. "type": "zip",
  6861. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  6862. "reference": "13e3381b25847283a91948d04640543941309727",
  6863. "shasum": ""
  6864. },
  6865. "require": {
  6866. "php": "~7.1 || ^8.0"
  6867. },
  6868. "conflict": {
  6869. "doctrine/common": ">2.2,<2.4"
  6870. },
  6871. "require-dev": {
  6872. "alcaeus/mongo-php-adapter": "^1.1",
  6873. "doctrine/coding-standard": "^6.0",
  6874. "mongodb/mongodb": "^1.1",
  6875. "phpunit/phpunit": "^7.0",
  6876. "predis/predis": "~1.0"
  6877. },
  6878. "suggest": {
  6879. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  6880. },
  6881. "type": "library",
  6882. "extra": {
  6883. "branch-alias": {
  6884. "dev-master": "1.9.x-dev"
  6885. }
  6886. },
  6887. "autoload": {
  6888. "psr-4": {
  6889. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  6890. }
  6891. },
  6892. "notification-url": "https://packagist.org/downloads/",
  6893. "license": [
  6894. "MIT"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Guilherme Blanco",
  6899. "email": "guilhermeblanco@gmail.com"
  6900. },
  6901. {
  6902. "name": "Roman Borschel",
  6903. "email": "roman@code-factory.org"
  6904. },
  6905. {
  6906. "name": "Benjamin Eberlei",
  6907. "email": "kontakt@beberlei.de"
  6908. },
  6909. {
  6910. "name": "Jonathan Wage",
  6911. "email": "jonwage@gmail.com"
  6912. },
  6913. {
  6914. "name": "Johannes Schmitt",
  6915. "email": "schmittjoh@gmail.com"
  6916. }
  6917. ],
  6918. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  6919. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  6920. "keywords": [
  6921. "abstraction",
  6922. "apcu",
  6923. "cache",
  6924. "caching",
  6925. "couchdb",
  6926. "memcached",
  6927. "php",
  6928. "redis",
  6929. "xcache"
  6930. ],
  6931. "funding": [
  6932. {
  6933. "url": "https://www.doctrine-project.org/sponsorship.html",
  6934. "type": "custom"
  6935. },
  6936. {
  6937. "url": "https://www.patreon.com/phpdoctrine",
  6938. "type": "patreon"
  6939. },
  6940. {
  6941. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  6942. "type": "tidelift"
  6943. }
  6944. ],
  6945. "time": "2020-07-07T18:54:01+00:00"
  6946. },
  6947. {
  6948. "name": "doctrine/dbal",
  6949. "version": "2.10.3",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/doctrine/dbal.git",
  6953. "reference": "03ca23afc2ee062f5d3e32426ad37c34a4770dcf"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/doctrine/dbal/zipball/03ca23afc2ee062f5d3e32426ad37c34a4770dcf",
  6958. "reference": "03ca23afc2ee062f5d3e32426ad37c34a4770dcf",
  6959. "shasum": ""
  6960. },
  6961. "require": {
  6962. "doctrine/cache": "^1.0",
  6963. "doctrine/event-manager": "^1.0",
  6964. "ext-pdo": "*",
  6965. "php": "^7.2"
  6966. },
  6967. "require-dev": {
  6968. "doctrine/coding-standard": "^8.1",
  6969. "jetbrains/phpstorm-stubs": "^2019.1",
  6970. "nikic/php-parser": "^4.4",
  6971. "phpstan/phpstan": "^0.12.40",
  6972. "phpunit/phpunit": "^8.5.5",
  6973. "psalm/plugin-phpunit": "^0.10.0",
  6974. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  6975. "vimeo/psalm": "^3.14.2"
  6976. },
  6977. "suggest": {
  6978. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  6979. },
  6980. "bin": [
  6981. "bin/doctrine-dbal"
  6982. ],
  6983. "type": "library",
  6984. "extra": {
  6985. "branch-alias": {
  6986. "dev-master": "2.10.x-dev",
  6987. "dev-develop": "3.0.x-dev"
  6988. }
  6989. },
  6990. "autoload": {
  6991. "psr-4": {
  6992. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  6993. }
  6994. },
  6995. "notification-url": "https://packagist.org/downloads/",
  6996. "license": [
  6997. "MIT"
  6998. ],
  6999. "authors": [
  7000. {
  7001. "name": "Guilherme Blanco",
  7002. "email": "guilhermeblanco@gmail.com"
  7003. },
  7004. {
  7005. "name": "Roman Borschel",
  7006. "email": "roman@code-factory.org"
  7007. },
  7008. {
  7009. "name": "Benjamin Eberlei",
  7010. "email": "kontakt@beberlei.de"
  7011. },
  7012. {
  7013. "name": "Jonathan Wage",
  7014. "email": "jonwage@gmail.com"
  7015. }
  7016. ],
  7017. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7018. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7019. "keywords": [
  7020. "abstraction",
  7021. "database",
  7022. "db2",
  7023. "dbal",
  7024. "mariadb",
  7025. "mssql",
  7026. "mysql",
  7027. "oci8",
  7028. "oracle",
  7029. "pdo",
  7030. "pgsql",
  7031. "postgresql",
  7032. "queryobject",
  7033. "sasql",
  7034. "sql",
  7035. "sqlanywhere",
  7036. "sqlite",
  7037. "sqlserver",
  7038. "sqlsrv"
  7039. ],
  7040. "funding": [
  7041. {
  7042. "url": "https://www.doctrine-project.org/sponsorship.html",
  7043. "type": "custom"
  7044. },
  7045. {
  7046. "url": "https://www.patreon.com/phpdoctrine",
  7047. "type": "patreon"
  7048. },
  7049. {
  7050. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7051. "type": "tidelift"
  7052. }
  7053. ],
  7054. "time": "2020-09-02T01:35:42+00:00"
  7055. },
  7056. {
  7057. "name": "doctrine/event-manager",
  7058. "version": "1.1.1",
  7059. "source": {
  7060. "type": "git",
  7061. "url": "https://github.com/doctrine/event-manager.git",
  7062. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7063. },
  7064. "dist": {
  7065. "type": "zip",
  7066. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7067. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7068. "shasum": ""
  7069. },
  7070. "require": {
  7071. "php": "^7.1 || ^8.0"
  7072. },
  7073. "conflict": {
  7074. "doctrine/common": "<2.9@dev"
  7075. },
  7076. "require-dev": {
  7077. "doctrine/coding-standard": "^6.0",
  7078. "phpunit/phpunit": "^7.0"
  7079. },
  7080. "type": "library",
  7081. "extra": {
  7082. "branch-alias": {
  7083. "dev-master": "1.0.x-dev"
  7084. }
  7085. },
  7086. "autoload": {
  7087. "psr-4": {
  7088. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7089. }
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Guilherme Blanco",
  7098. "email": "guilhermeblanco@gmail.com"
  7099. },
  7100. {
  7101. "name": "Roman Borschel",
  7102. "email": "roman@code-factory.org"
  7103. },
  7104. {
  7105. "name": "Benjamin Eberlei",
  7106. "email": "kontakt@beberlei.de"
  7107. },
  7108. {
  7109. "name": "Jonathan Wage",
  7110. "email": "jonwage@gmail.com"
  7111. },
  7112. {
  7113. "name": "Johannes Schmitt",
  7114. "email": "schmittjoh@gmail.com"
  7115. },
  7116. {
  7117. "name": "Marco Pivetta",
  7118. "email": "ocramius@gmail.com"
  7119. }
  7120. ],
  7121. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7122. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7123. "keywords": [
  7124. "event",
  7125. "event dispatcher",
  7126. "event manager",
  7127. "event system",
  7128. "events"
  7129. ],
  7130. "funding": [
  7131. {
  7132. "url": "https://www.doctrine-project.org/sponsorship.html",
  7133. "type": "custom"
  7134. },
  7135. {
  7136. "url": "https://www.patreon.com/phpdoctrine",
  7137. "type": "patreon"
  7138. },
  7139. {
  7140. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7141. "type": "tidelift"
  7142. }
  7143. ],
  7144. "time": "2020-05-29T18:28:51+00:00"
  7145. },
  7146. {
  7147. "name": "doctrine/instantiator",
  7148. "version": "1.3.1",
  7149. "source": {
  7150. "type": "git",
  7151. "url": "https://github.com/doctrine/instantiator.git",
  7152. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  7153. },
  7154. "dist": {
  7155. "type": "zip",
  7156. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  7157. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  7158. "shasum": ""
  7159. },
  7160. "require": {
  7161. "php": "^7.1 || ^8.0"
  7162. },
  7163. "require-dev": {
  7164. "doctrine/coding-standard": "^6.0",
  7165. "ext-pdo": "*",
  7166. "ext-phar": "*",
  7167. "phpbench/phpbench": "^0.13",
  7168. "phpstan/phpstan-phpunit": "^0.11",
  7169. "phpstan/phpstan-shim": "^0.11",
  7170. "phpunit/phpunit": "^7.0"
  7171. },
  7172. "type": "library",
  7173. "extra": {
  7174. "branch-alias": {
  7175. "dev-master": "1.2.x-dev"
  7176. }
  7177. },
  7178. "autoload": {
  7179. "psr-4": {
  7180. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7181. }
  7182. },
  7183. "notification-url": "https://packagist.org/downloads/",
  7184. "license": [
  7185. "MIT"
  7186. ],
  7187. "authors": [
  7188. {
  7189. "name": "Marco Pivetta",
  7190. "email": "ocramius@gmail.com",
  7191. "homepage": "http://ocramius.github.com/"
  7192. }
  7193. ],
  7194. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7195. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7196. "keywords": [
  7197. "constructor",
  7198. "instantiate"
  7199. ],
  7200. "funding": [
  7201. {
  7202. "url": "https://www.doctrine-project.org/sponsorship.html",
  7203. "type": "custom"
  7204. },
  7205. {
  7206. "url": "https://www.patreon.com/phpdoctrine",
  7207. "type": "patreon"
  7208. },
  7209. {
  7210. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7211. "type": "tidelift"
  7212. }
  7213. ],
  7214. "time": "2020-05-29T17:27:14+00:00"
  7215. },
  7216. {
  7217. "name": "facade/flare-client-php",
  7218. "version": "1.3.5",
  7219. "source": {
  7220. "type": "git",
  7221. "url": "https://github.com/facade/flare-client-php.git",
  7222. "reference": "25907a113bfc212a38d458ae365bfb902b4e7fb8"
  7223. },
  7224. "dist": {
  7225. "type": "zip",
  7226. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/25907a113bfc212a38d458ae365bfb902b4e7fb8",
  7227. "reference": "25907a113bfc212a38d458ae365bfb902b4e7fb8",
  7228. "shasum": ""
  7229. },
  7230. "require": {
  7231. "facade/ignition-contracts": "~1.0",
  7232. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7233. "php": "^7.1",
  7234. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7235. "symfony/mime": "^3.4|^4.0|^5.1",
  7236. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7237. },
  7238. "require-dev": {
  7239. "friendsofphp/php-cs-fixer": "^2.14",
  7240. "larapack/dd": "^1.1",
  7241. "phpunit/phpunit": "^7.5.16",
  7242. "spatie/phpunit-snapshot-assertions": "^2.0"
  7243. },
  7244. "type": "library",
  7245. "extra": {
  7246. "branch-alias": {
  7247. "dev-master": "1.0-dev"
  7248. }
  7249. },
  7250. "autoload": {
  7251. "psr-4": {
  7252. "Facade\\FlareClient\\": "src"
  7253. },
  7254. "files": [
  7255. "src/helpers.php"
  7256. ]
  7257. },
  7258. "notification-url": "https://packagist.org/downloads/",
  7259. "license": [
  7260. "MIT"
  7261. ],
  7262. "description": "Send PHP errors to Flare",
  7263. "homepage": "https://github.com/facade/flare-client-php",
  7264. "keywords": [
  7265. "exception",
  7266. "facade",
  7267. "flare",
  7268. "reporting"
  7269. ],
  7270. "funding": [
  7271. {
  7272. "url": "https://github.com/spatie",
  7273. "type": "github"
  7274. }
  7275. ],
  7276. "time": "2020-08-26T18:06:23+00:00"
  7277. },
  7278. {
  7279. "name": "facade/ignition",
  7280. "version": "2.3.6",
  7281. "source": {
  7282. "type": "git",
  7283. "url": "https://github.com/facade/ignition.git",
  7284. "reference": "d7d05dba5a0bdbf018a2cb7be268f22f5d73eb81"
  7285. },
  7286. "dist": {
  7287. "type": "zip",
  7288. "url": "https://api.github.com/repos/facade/ignition/zipball/d7d05dba5a0bdbf018a2cb7be268f22f5d73eb81",
  7289. "reference": "d7d05dba5a0bdbf018a2cb7be268f22f5d73eb81",
  7290. "shasum": ""
  7291. },
  7292. "require": {
  7293. "ext-json": "*",
  7294. "ext-mbstring": "*",
  7295. "facade/flare-client-php": "^1.0",
  7296. "facade/ignition-contracts": "^1.0",
  7297. "filp/whoops": "^2.4",
  7298. "illuminate/support": "^7.0|^8.0",
  7299. "monolog/monolog": "^2.0",
  7300. "php": "^7.2.5",
  7301. "scrivo/highlight.php": "^9.15",
  7302. "symfony/console": "^5.0",
  7303. "symfony/var-dumper": "^5.0"
  7304. },
  7305. "require-dev": {
  7306. "friendsofphp/php-cs-fixer": "^2.14",
  7307. "mockery/mockery": "^1.3",
  7308. "orchestra/testbench": "5.0",
  7309. "psalm/plugin-laravel": "^1.2"
  7310. },
  7311. "suggest": {
  7312. "laravel/telescope": "^3.1"
  7313. },
  7314. "type": "library",
  7315. "extra": {
  7316. "branch-alias": {
  7317. "dev-master": "2.x-dev"
  7318. },
  7319. "laravel": {
  7320. "providers": [
  7321. "Facade\\Ignition\\IgnitionServiceProvider"
  7322. ],
  7323. "aliases": {
  7324. "Flare": "Facade\\Ignition\\Facades\\Flare"
  7325. }
  7326. }
  7327. },
  7328. "autoload": {
  7329. "psr-4": {
  7330. "Facade\\Ignition\\": "src"
  7331. },
  7332. "files": [
  7333. "src/helpers.php"
  7334. ]
  7335. },
  7336. "notification-url": "https://packagist.org/downloads/",
  7337. "license": [
  7338. "MIT"
  7339. ],
  7340. "description": "A beautiful error page for Laravel applications.",
  7341. "homepage": "https://github.com/facade/ignition",
  7342. "keywords": [
  7343. "error",
  7344. "flare",
  7345. "laravel",
  7346. "page"
  7347. ],
  7348. "time": "2020-08-10T13:50:38+00:00"
  7349. },
  7350. {
  7351. "name": "facade/ignition-contracts",
  7352. "version": "1.0.1",
  7353. "source": {
  7354. "type": "git",
  7355. "url": "https://github.com/facade/ignition-contracts.git",
  7356. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  7357. },
  7358. "dist": {
  7359. "type": "zip",
  7360. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  7361. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  7362. "shasum": ""
  7363. },
  7364. "require": {
  7365. "php": "^7.1"
  7366. },
  7367. "require-dev": {
  7368. "friendsofphp/php-cs-fixer": "^2.14",
  7369. "phpunit/phpunit": "^7.5|^8.0",
  7370. "vimeo/psalm": "^3.12"
  7371. },
  7372. "type": "library",
  7373. "autoload": {
  7374. "psr-4": {
  7375. "Facade\\IgnitionContracts\\": "src"
  7376. }
  7377. },
  7378. "notification-url": "https://packagist.org/downloads/",
  7379. "license": [
  7380. "MIT"
  7381. ],
  7382. "authors": [
  7383. {
  7384. "name": "Freek Van der Herten",
  7385. "email": "freek@spatie.be",
  7386. "homepage": "https://flareapp.io",
  7387. "role": "Developer"
  7388. }
  7389. ],
  7390. "description": "Solution contracts for Ignition",
  7391. "homepage": "https://github.com/facade/ignition-contracts",
  7392. "keywords": [
  7393. "contracts",
  7394. "flare",
  7395. "ignition"
  7396. ],
  7397. "time": "2020-07-14T10:10:28+00:00"
  7398. },
  7399. {
  7400. "name": "filp/whoops",
  7401. "version": "2.7.3",
  7402. "source": {
  7403. "type": "git",
  7404. "url": "https://github.com/filp/whoops.git",
  7405. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  7406. },
  7407. "dist": {
  7408. "type": "zip",
  7409. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  7410. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  7411. "shasum": ""
  7412. },
  7413. "require": {
  7414. "php": "^5.5.9 || ^7.0",
  7415. "psr/log": "^1.0.1"
  7416. },
  7417. "require-dev": {
  7418. "mockery/mockery": "^0.9 || ^1.0",
  7419. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  7420. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7421. },
  7422. "suggest": {
  7423. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7424. "whoops/soap": "Formats errors as SOAP responses"
  7425. },
  7426. "type": "library",
  7427. "extra": {
  7428. "branch-alias": {
  7429. "dev-master": "2.6-dev"
  7430. }
  7431. },
  7432. "autoload": {
  7433. "psr-4": {
  7434. "Whoops\\": "src/Whoops/"
  7435. }
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Filipe Dobreira",
  7444. "homepage": "https://github.com/filp",
  7445. "role": "Developer"
  7446. }
  7447. ],
  7448. "description": "php error handling for cool kids",
  7449. "homepage": "https://filp.github.io/whoops/",
  7450. "keywords": [
  7451. "error",
  7452. "exception",
  7453. "handling",
  7454. "library",
  7455. "throwable",
  7456. "whoops"
  7457. ],
  7458. "time": "2020-06-14T09:00:00+00:00"
  7459. },
  7460. {
  7461. "name": "fzaninotto/faker",
  7462. "version": "v1.9.1",
  7463. "source": {
  7464. "type": "git",
  7465. "url": "https://github.com/fzaninotto/Faker.git",
  7466. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  7467. },
  7468. "dist": {
  7469. "type": "zip",
  7470. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  7471. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  7472. "shasum": ""
  7473. },
  7474. "require": {
  7475. "php": "^5.3.3 || ^7.0"
  7476. },
  7477. "require-dev": {
  7478. "ext-intl": "*",
  7479. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7480. "squizlabs/php_codesniffer": "^2.9.2"
  7481. },
  7482. "type": "library",
  7483. "extra": {
  7484. "branch-alias": {
  7485. "dev-master": "1.9-dev"
  7486. }
  7487. },
  7488. "autoload": {
  7489. "psr-4": {
  7490. "Faker\\": "src/Faker/"
  7491. }
  7492. },
  7493. "notification-url": "https://packagist.org/downloads/",
  7494. "license": [
  7495. "MIT"
  7496. ],
  7497. "authors": [
  7498. {
  7499. "name": "François Zaninotto"
  7500. }
  7501. ],
  7502. "description": "Faker is a PHP library that generates fake data for you.",
  7503. "keywords": [
  7504. "data",
  7505. "faker",
  7506. "fixtures"
  7507. ],
  7508. "time": "2019-12-12T13:22:17+00:00"
  7509. },
  7510. {
  7511. "name": "hamcrest/hamcrest-php",
  7512. "version": "v2.0.1",
  7513. "source": {
  7514. "type": "git",
  7515. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7516. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7517. },
  7518. "dist": {
  7519. "type": "zip",
  7520. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7521. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7522. "shasum": ""
  7523. },
  7524. "require": {
  7525. "php": "^5.3|^7.0|^8.0"
  7526. },
  7527. "replace": {
  7528. "cordoval/hamcrest-php": "*",
  7529. "davedevelopment/hamcrest-php": "*",
  7530. "kodova/hamcrest-php": "*"
  7531. },
  7532. "require-dev": {
  7533. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7534. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7535. },
  7536. "type": "library",
  7537. "extra": {
  7538. "branch-alias": {
  7539. "dev-master": "2.1-dev"
  7540. }
  7541. },
  7542. "autoload": {
  7543. "classmap": [
  7544. "hamcrest"
  7545. ]
  7546. },
  7547. "notification-url": "https://packagist.org/downloads/",
  7548. "license": [
  7549. "BSD-3-Clause"
  7550. ],
  7551. "description": "This is the PHP port of Hamcrest Matchers",
  7552. "keywords": [
  7553. "test"
  7554. ],
  7555. "time": "2020-07-09T08:09:16+00:00"
  7556. },
  7557. {
  7558. "name": "justinrainbow/json-schema",
  7559. "version": "5.2.10",
  7560. "source": {
  7561. "type": "git",
  7562. "url": "https://github.com/justinrainbow/json-schema.git",
  7563. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  7564. },
  7565. "dist": {
  7566. "type": "zip",
  7567. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  7568. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  7569. "shasum": ""
  7570. },
  7571. "require": {
  7572. "php": ">=5.3.3"
  7573. },
  7574. "require-dev": {
  7575. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7576. "json-schema/json-schema-test-suite": "1.2.0",
  7577. "phpunit/phpunit": "^4.8.35"
  7578. },
  7579. "bin": [
  7580. "bin/validate-json"
  7581. ],
  7582. "type": "library",
  7583. "extra": {
  7584. "branch-alias": {
  7585. "dev-master": "5.0.x-dev"
  7586. }
  7587. },
  7588. "autoload": {
  7589. "psr-4": {
  7590. "JsonSchema\\": "src/JsonSchema/"
  7591. }
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "MIT"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "Bruno Prieto Reis",
  7600. "email": "bruno.p.reis@gmail.com"
  7601. },
  7602. {
  7603. "name": "Justin Rainbow",
  7604. "email": "justin.rainbow@gmail.com"
  7605. },
  7606. {
  7607. "name": "Igor Wiedler",
  7608. "email": "igor@wiedler.ch"
  7609. },
  7610. {
  7611. "name": "Robert Schönthal",
  7612. "email": "seroscho@googlemail.com"
  7613. }
  7614. ],
  7615. "description": "A library to validate a json schema.",
  7616. "homepage": "https://github.com/justinrainbow/json-schema",
  7617. "keywords": [
  7618. "json",
  7619. "schema"
  7620. ],
  7621. "time": "2020-05-27T16:41:55+00:00"
  7622. },
  7623. {
  7624. "name": "maximebf/debugbar",
  7625. "version": "v1.16.3",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/maximebf/php-debugbar.git",
  7629. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  7634. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  7635. "shasum": ""
  7636. },
  7637. "require": {
  7638. "php": "^7.1",
  7639. "psr/log": "^1.0",
  7640. "symfony/var-dumper": "^2.6|^3|^4|^5"
  7641. },
  7642. "require-dev": {
  7643. "phpunit/phpunit": "^5"
  7644. },
  7645. "suggest": {
  7646. "kriswallsmith/assetic": "The best way to manage assets",
  7647. "monolog/monolog": "Log using Monolog",
  7648. "predis/predis": "Redis storage"
  7649. },
  7650. "type": "library",
  7651. "extra": {
  7652. "branch-alias": {
  7653. "dev-master": "1.16-dev"
  7654. }
  7655. },
  7656. "autoload": {
  7657. "psr-4": {
  7658. "DebugBar\\": "src/DebugBar/"
  7659. }
  7660. },
  7661. "notification-url": "https://packagist.org/downloads/",
  7662. "license": [
  7663. "MIT"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "Maxime Bouroumeau-Fuseau",
  7668. "email": "maxime.bouroumeau@gmail.com",
  7669. "homepage": "http://maximebf.com"
  7670. },
  7671. {
  7672. "name": "Barry vd. Heuvel",
  7673. "email": "barryvdh@gmail.com"
  7674. }
  7675. ],
  7676. "description": "Debug bar in the browser for php application",
  7677. "homepage": "https://github.com/maximebf/php-debugbar",
  7678. "keywords": [
  7679. "debug",
  7680. "debugbar"
  7681. ],
  7682. "time": "2020-05-06T07:06:27+00:00"
  7683. },
  7684. {
  7685. "name": "mockery/mockery",
  7686. "version": "1.4.2",
  7687. "source": {
  7688. "type": "git",
  7689. "url": "https://github.com/mockery/mockery.git",
  7690. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  7691. },
  7692. "dist": {
  7693. "type": "zip",
  7694. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  7695. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  7696. "shasum": ""
  7697. },
  7698. "require": {
  7699. "hamcrest/hamcrest-php": "^2.0.1",
  7700. "lib-pcre": ">=7.0",
  7701. "php": "^7.3 || ^8.0"
  7702. },
  7703. "conflict": {
  7704. "phpunit/phpunit": "<8.0"
  7705. },
  7706. "require-dev": {
  7707. "phpunit/phpunit": "^8.5 || ^9.3"
  7708. },
  7709. "type": "library",
  7710. "extra": {
  7711. "branch-alias": {
  7712. "dev-master": "1.4.x-dev"
  7713. }
  7714. },
  7715. "autoload": {
  7716. "psr-0": {
  7717. "Mockery": "library/"
  7718. }
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "BSD-3-Clause"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Pádraic Brady",
  7727. "email": "padraic.brady@gmail.com",
  7728. "homepage": "http://blog.astrumfutura.com"
  7729. },
  7730. {
  7731. "name": "Dave Marshall",
  7732. "email": "dave.marshall@atstsolutions.co.uk",
  7733. "homepage": "http://davedevelopment.co.uk"
  7734. }
  7735. ],
  7736. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7737. "homepage": "https://github.com/mockery/mockery",
  7738. "keywords": [
  7739. "BDD",
  7740. "TDD",
  7741. "library",
  7742. "mock",
  7743. "mock objects",
  7744. "mockery",
  7745. "stub",
  7746. "test",
  7747. "test double",
  7748. "testing"
  7749. ],
  7750. "time": "2020-08-11T18:10:13+00:00"
  7751. },
  7752. {
  7753. "name": "myclabs/deep-copy",
  7754. "version": "1.10.1",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/myclabs/DeepCopy.git",
  7758. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  7763. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "php": "^7.1 || ^8.0"
  7768. },
  7769. "replace": {
  7770. "myclabs/deep-copy": "self.version"
  7771. },
  7772. "require-dev": {
  7773. "doctrine/collections": "^1.0",
  7774. "doctrine/common": "^2.6",
  7775. "phpunit/phpunit": "^7.1"
  7776. },
  7777. "type": "library",
  7778. "autoload": {
  7779. "psr-4": {
  7780. "DeepCopy\\": "src/DeepCopy/"
  7781. },
  7782. "files": [
  7783. "src/DeepCopy/deep_copy.php"
  7784. ]
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "MIT"
  7789. ],
  7790. "description": "Create deep copies (clones) of your objects",
  7791. "keywords": [
  7792. "clone",
  7793. "copy",
  7794. "duplicate",
  7795. "object",
  7796. "object graph"
  7797. ],
  7798. "funding": [
  7799. {
  7800. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7801. "type": "tidelift"
  7802. }
  7803. ],
  7804. "time": "2020-06-29T13:22:24+00:00"
  7805. },
  7806. {
  7807. "name": "nunomaduro/collision",
  7808. "version": "v4.2.0",
  7809. "source": {
  7810. "type": "git",
  7811. "url": "https://github.com/nunomaduro/collision.git",
  7812. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  7813. },
  7814. "dist": {
  7815. "type": "zip",
  7816. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  7817. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  7818. "shasum": ""
  7819. },
  7820. "require": {
  7821. "facade/ignition-contracts": "^1.0",
  7822. "filp/whoops": "^2.4",
  7823. "php": "^7.2.5",
  7824. "symfony/console": "^5.0"
  7825. },
  7826. "require-dev": {
  7827. "facade/ignition": "^2.0",
  7828. "fideloper/proxy": "^4.2",
  7829. "friendsofphp/php-cs-fixer": "^2.16",
  7830. "fruitcake/laravel-cors": "^1.0",
  7831. "laravel/framework": "^7.0",
  7832. "laravel/tinker": "^2.0",
  7833. "nunomaduro/larastan": "^0.5",
  7834. "orchestra/testbench": "^5.0",
  7835. "phpstan/phpstan": "^0.12.3",
  7836. "phpunit/phpunit": "^8.5.1 || ^9.0"
  7837. },
  7838. "type": "library",
  7839. "extra": {
  7840. "laravel": {
  7841. "providers": [
  7842. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7843. ]
  7844. }
  7845. },
  7846. "autoload": {
  7847. "psr-4": {
  7848. "NunoMaduro\\Collision\\": "src/"
  7849. }
  7850. },
  7851. "notification-url": "https://packagist.org/downloads/",
  7852. "license": [
  7853. "MIT"
  7854. ],
  7855. "authors": [
  7856. {
  7857. "name": "Nuno Maduro",
  7858. "email": "enunomaduro@gmail.com"
  7859. }
  7860. ],
  7861. "description": "Cli error handling for console/command-line PHP applications.",
  7862. "keywords": [
  7863. "artisan",
  7864. "cli",
  7865. "command-line",
  7866. "console",
  7867. "error",
  7868. "handling",
  7869. "laravel",
  7870. "laravel-zero",
  7871. "php",
  7872. "symfony"
  7873. ],
  7874. "funding": [
  7875. {
  7876. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  7877. "type": "custom"
  7878. },
  7879. {
  7880. "url": "https://github.com/nunomaduro",
  7881. "type": "github"
  7882. },
  7883. {
  7884. "url": "https://www.patreon.com/nunomaduro",
  7885. "type": "patreon"
  7886. }
  7887. ],
  7888. "time": "2020-04-04T19:56:08+00:00"
  7889. },
  7890. {
  7891. "name": "phar-io/manifest",
  7892. "version": "1.0.3",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://github.com/phar-io/manifest.git",
  7896. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  7901. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  7902. "shasum": ""
  7903. },
  7904. "require": {
  7905. "ext-dom": "*",
  7906. "ext-phar": "*",
  7907. "phar-io/version": "^2.0",
  7908. "php": "^5.6 || ^7.0"
  7909. },
  7910. "type": "library",
  7911. "extra": {
  7912. "branch-alias": {
  7913. "dev-master": "1.0.x-dev"
  7914. }
  7915. },
  7916. "autoload": {
  7917. "classmap": [
  7918. "src/"
  7919. ]
  7920. },
  7921. "notification-url": "https://packagist.org/downloads/",
  7922. "license": [
  7923. "BSD-3-Clause"
  7924. ],
  7925. "authors": [
  7926. {
  7927. "name": "Arne Blankerts",
  7928. "email": "arne@blankerts.de",
  7929. "role": "Developer"
  7930. },
  7931. {
  7932. "name": "Sebastian Heuer",
  7933. "email": "sebastian@phpeople.de",
  7934. "role": "Developer"
  7935. },
  7936. {
  7937. "name": "Sebastian Bergmann",
  7938. "email": "sebastian@phpunit.de",
  7939. "role": "Developer"
  7940. }
  7941. ],
  7942. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7943. "time": "2018-07-08T19:23:20+00:00"
  7944. },
  7945. {
  7946. "name": "phar-io/version",
  7947. "version": "2.0.1",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/phar-io/version.git",
  7951. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  7956. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  7957. "shasum": ""
  7958. },
  7959. "require": {
  7960. "php": "^5.6 || ^7.0"
  7961. },
  7962. "type": "library",
  7963. "autoload": {
  7964. "classmap": [
  7965. "src/"
  7966. ]
  7967. },
  7968. "notification-url": "https://packagist.org/downloads/",
  7969. "license": [
  7970. "BSD-3-Clause"
  7971. ],
  7972. "authors": [
  7973. {
  7974. "name": "Arne Blankerts",
  7975. "email": "arne@blankerts.de",
  7976. "role": "Developer"
  7977. },
  7978. {
  7979. "name": "Sebastian Heuer",
  7980. "email": "sebastian@phpeople.de",
  7981. "role": "Developer"
  7982. },
  7983. {
  7984. "name": "Sebastian Bergmann",
  7985. "email": "sebastian@phpunit.de",
  7986. "role": "Developer"
  7987. }
  7988. ],
  7989. "description": "Library for handling version information and constraints",
  7990. "time": "2018-07-08T19:19:57+00:00"
  7991. },
  7992. {
  7993. "name": "phpdocumentor/reflection-common",
  7994. "version": "2.2.0",
  7995. "source": {
  7996. "type": "git",
  7997. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7998. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  7999. },
  8000. "dist": {
  8001. "type": "zip",
  8002. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8003. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8004. "shasum": ""
  8005. },
  8006. "require": {
  8007. "php": "^7.2 || ^8.0"
  8008. },
  8009. "type": "library",
  8010. "extra": {
  8011. "branch-alias": {
  8012. "dev-2.x": "2.x-dev"
  8013. }
  8014. },
  8015. "autoload": {
  8016. "psr-4": {
  8017. "phpDocumentor\\Reflection\\": "src/"
  8018. }
  8019. },
  8020. "notification-url": "https://packagist.org/downloads/",
  8021. "license": [
  8022. "MIT"
  8023. ],
  8024. "authors": [
  8025. {
  8026. "name": "Jaap van Otterdijk",
  8027. "email": "opensource@ijaap.nl"
  8028. }
  8029. ],
  8030. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8031. "homepage": "http://www.phpdoc.org",
  8032. "keywords": [
  8033. "FQSEN",
  8034. "phpDocumentor",
  8035. "phpdoc",
  8036. "reflection",
  8037. "static analysis"
  8038. ],
  8039. "time": "2020-06-27T09:03:43+00:00"
  8040. },
  8041. {
  8042. "name": "phpdocumentor/reflection-docblock",
  8043. "version": "5.2.1",
  8044. "source": {
  8045. "type": "git",
  8046. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8047. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44"
  8048. },
  8049. "dist": {
  8050. "type": "zip",
  8051. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44",
  8052. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44",
  8053. "shasum": ""
  8054. },
  8055. "require": {
  8056. "ext-filter": "*",
  8057. "php": "^7.2 || ^8.0",
  8058. "phpdocumentor/reflection-common": "^2.2",
  8059. "phpdocumentor/type-resolver": "^1.3",
  8060. "webmozart/assert": "^1.9.1"
  8061. },
  8062. "require-dev": {
  8063. "mockery/mockery": "~1.3.2"
  8064. },
  8065. "type": "library",
  8066. "extra": {
  8067. "branch-alias": {
  8068. "dev-master": "5.x-dev"
  8069. }
  8070. },
  8071. "autoload": {
  8072. "psr-4": {
  8073. "phpDocumentor\\Reflection\\": "src"
  8074. }
  8075. },
  8076. "notification-url": "https://packagist.org/downloads/",
  8077. "license": [
  8078. "MIT"
  8079. ],
  8080. "authors": [
  8081. {
  8082. "name": "Mike van Riel",
  8083. "email": "me@mikevanriel.com"
  8084. },
  8085. {
  8086. "name": "Jaap van Otterdijk",
  8087. "email": "account@ijaap.nl"
  8088. }
  8089. ],
  8090. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8091. "time": "2020-08-15T11:14:08+00:00"
  8092. },
  8093. {
  8094. "name": "phpdocumentor/type-resolver",
  8095. "version": "1.3.0",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8099. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651",
  8104. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651",
  8105. "shasum": ""
  8106. },
  8107. "require": {
  8108. "php": "^7.2 || ^8.0",
  8109. "phpdocumentor/reflection-common": "^2.0"
  8110. },
  8111. "require-dev": {
  8112. "ext-tokenizer": "*"
  8113. },
  8114. "type": "library",
  8115. "extra": {
  8116. "branch-alias": {
  8117. "dev-1.x": "1.x-dev"
  8118. }
  8119. },
  8120. "autoload": {
  8121. "psr-4": {
  8122. "phpDocumentor\\Reflection\\": "src"
  8123. }
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "MIT"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Mike van Riel",
  8132. "email": "me@mikevanriel.com"
  8133. }
  8134. ],
  8135. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8136. "time": "2020-06-27T10:12:23+00:00"
  8137. },
  8138. {
  8139. "name": "phpspec/prophecy",
  8140. "version": "1.11.1",
  8141. "source": {
  8142. "type": "git",
  8143. "url": "https://github.com/phpspec/prophecy.git",
  8144. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160"
  8145. },
  8146. "dist": {
  8147. "type": "zip",
  8148. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160",
  8149. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160",
  8150. "shasum": ""
  8151. },
  8152. "require": {
  8153. "doctrine/instantiator": "^1.2",
  8154. "php": "^7.2",
  8155. "phpdocumentor/reflection-docblock": "^5.0",
  8156. "sebastian/comparator": "^3.0 || ^4.0",
  8157. "sebastian/recursion-context": "^3.0 || ^4.0"
  8158. },
  8159. "require-dev": {
  8160. "phpspec/phpspec": "^6.0",
  8161. "phpunit/phpunit": "^8.0"
  8162. },
  8163. "type": "library",
  8164. "extra": {
  8165. "branch-alias": {
  8166. "dev-master": "1.11.x-dev"
  8167. }
  8168. },
  8169. "autoload": {
  8170. "psr-4": {
  8171. "Prophecy\\": "src/Prophecy"
  8172. }
  8173. },
  8174. "notification-url": "https://packagist.org/downloads/",
  8175. "license": [
  8176. "MIT"
  8177. ],
  8178. "authors": [
  8179. {
  8180. "name": "Konstantin Kudryashov",
  8181. "email": "ever.zet@gmail.com",
  8182. "homepage": "http://everzet.com"
  8183. },
  8184. {
  8185. "name": "Marcello Duarte",
  8186. "email": "marcello.duarte@gmail.com"
  8187. }
  8188. ],
  8189. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8190. "homepage": "https://github.com/phpspec/prophecy",
  8191. "keywords": [
  8192. "Double",
  8193. "Dummy",
  8194. "fake",
  8195. "mock",
  8196. "spy",
  8197. "stub"
  8198. ],
  8199. "time": "2020-07-08T12:44:21+00:00"
  8200. },
  8201. {
  8202. "name": "phpunit/php-code-coverage",
  8203. "version": "7.0.10",
  8204. "source": {
  8205. "type": "git",
  8206. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8207. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  8208. },
  8209. "dist": {
  8210. "type": "zip",
  8211. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  8212. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  8213. "shasum": ""
  8214. },
  8215. "require": {
  8216. "ext-dom": "*",
  8217. "ext-xmlwriter": "*",
  8218. "php": "^7.2",
  8219. "phpunit/php-file-iterator": "^2.0.2",
  8220. "phpunit/php-text-template": "^1.2.1",
  8221. "phpunit/php-token-stream": "^3.1.1",
  8222. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8223. "sebastian/environment": "^4.2.2",
  8224. "sebastian/version": "^2.0.1",
  8225. "theseer/tokenizer": "^1.1.3"
  8226. },
  8227. "require-dev": {
  8228. "phpunit/phpunit": "^8.2.2"
  8229. },
  8230. "suggest": {
  8231. "ext-xdebug": "^2.7.2"
  8232. },
  8233. "type": "library",
  8234. "extra": {
  8235. "branch-alias": {
  8236. "dev-master": "7.0-dev"
  8237. }
  8238. },
  8239. "autoload": {
  8240. "classmap": [
  8241. "src/"
  8242. ]
  8243. },
  8244. "notification-url": "https://packagist.org/downloads/",
  8245. "license": [
  8246. "BSD-3-Clause"
  8247. ],
  8248. "authors": [
  8249. {
  8250. "name": "Sebastian Bergmann",
  8251. "email": "sebastian@phpunit.de",
  8252. "role": "lead"
  8253. }
  8254. ],
  8255. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8256. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8257. "keywords": [
  8258. "coverage",
  8259. "testing",
  8260. "xunit"
  8261. ],
  8262. "time": "2019-11-20T13:55:58+00:00"
  8263. },
  8264. {
  8265. "name": "phpunit/php-file-iterator",
  8266. "version": "2.0.2",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8270. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  8275. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  8276. "shasum": ""
  8277. },
  8278. "require": {
  8279. "php": "^7.1"
  8280. },
  8281. "require-dev": {
  8282. "phpunit/phpunit": "^7.1"
  8283. },
  8284. "type": "library",
  8285. "extra": {
  8286. "branch-alias": {
  8287. "dev-master": "2.0.x-dev"
  8288. }
  8289. },
  8290. "autoload": {
  8291. "classmap": [
  8292. "src/"
  8293. ]
  8294. },
  8295. "notification-url": "https://packagist.org/downloads/",
  8296. "license": [
  8297. "BSD-3-Clause"
  8298. ],
  8299. "authors": [
  8300. {
  8301. "name": "Sebastian Bergmann",
  8302. "email": "sebastian@phpunit.de",
  8303. "role": "lead"
  8304. }
  8305. ],
  8306. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8307. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8308. "keywords": [
  8309. "filesystem",
  8310. "iterator"
  8311. ],
  8312. "time": "2018-09-13T20:33:42+00:00"
  8313. },
  8314. {
  8315. "name": "phpunit/php-text-template",
  8316. "version": "1.2.1",
  8317. "source": {
  8318. "type": "git",
  8319. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8320. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8321. },
  8322. "dist": {
  8323. "type": "zip",
  8324. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8325. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8326. "shasum": ""
  8327. },
  8328. "require": {
  8329. "php": ">=5.3.3"
  8330. },
  8331. "type": "library",
  8332. "autoload": {
  8333. "classmap": [
  8334. "src/"
  8335. ]
  8336. },
  8337. "notification-url": "https://packagist.org/downloads/",
  8338. "license": [
  8339. "BSD-3-Clause"
  8340. ],
  8341. "authors": [
  8342. {
  8343. "name": "Sebastian Bergmann",
  8344. "email": "sebastian@phpunit.de",
  8345. "role": "lead"
  8346. }
  8347. ],
  8348. "description": "Simple template engine.",
  8349. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8350. "keywords": [
  8351. "template"
  8352. ],
  8353. "time": "2015-06-21T13:50:34+00:00"
  8354. },
  8355. {
  8356. "name": "phpunit/php-timer",
  8357. "version": "2.1.2",
  8358. "source": {
  8359. "type": "git",
  8360. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8361. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  8362. },
  8363. "dist": {
  8364. "type": "zip",
  8365. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  8366. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  8367. "shasum": ""
  8368. },
  8369. "require": {
  8370. "php": "^7.1"
  8371. },
  8372. "require-dev": {
  8373. "phpunit/phpunit": "^7.0"
  8374. },
  8375. "type": "library",
  8376. "extra": {
  8377. "branch-alias": {
  8378. "dev-master": "2.1-dev"
  8379. }
  8380. },
  8381. "autoload": {
  8382. "classmap": [
  8383. "src/"
  8384. ]
  8385. },
  8386. "notification-url": "https://packagist.org/downloads/",
  8387. "license": [
  8388. "BSD-3-Clause"
  8389. ],
  8390. "authors": [
  8391. {
  8392. "name": "Sebastian Bergmann",
  8393. "email": "sebastian@phpunit.de",
  8394. "role": "lead"
  8395. }
  8396. ],
  8397. "description": "Utility class for timing",
  8398. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8399. "keywords": [
  8400. "timer"
  8401. ],
  8402. "time": "2019-06-07T04:22:29+00:00"
  8403. },
  8404. {
  8405. "name": "phpunit/php-token-stream",
  8406. "version": "3.1.1",
  8407. "source": {
  8408. "type": "git",
  8409. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8410. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  8411. },
  8412. "dist": {
  8413. "type": "zip",
  8414. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  8415. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  8416. "shasum": ""
  8417. },
  8418. "require": {
  8419. "ext-tokenizer": "*",
  8420. "php": "^7.1"
  8421. },
  8422. "require-dev": {
  8423. "phpunit/phpunit": "^7.0"
  8424. },
  8425. "type": "library",
  8426. "extra": {
  8427. "branch-alias": {
  8428. "dev-master": "3.1-dev"
  8429. }
  8430. },
  8431. "autoload": {
  8432. "classmap": [
  8433. "src/"
  8434. ]
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "BSD-3-Clause"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "Sebastian Bergmann",
  8443. "email": "sebastian@phpunit.de"
  8444. }
  8445. ],
  8446. "description": "Wrapper around PHP's tokenizer extension.",
  8447. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8448. "keywords": [
  8449. "tokenizer"
  8450. ],
  8451. "abandoned": true,
  8452. "time": "2019-09-17T06:23:10+00:00"
  8453. },
  8454. {
  8455. "name": "phpunit/phpunit",
  8456. "version": "8.5.8",
  8457. "source": {
  8458. "type": "git",
  8459. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8460. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  8461. },
  8462. "dist": {
  8463. "type": "zip",
  8464. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  8465. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  8466. "shasum": ""
  8467. },
  8468. "require": {
  8469. "doctrine/instantiator": "^1.2.0",
  8470. "ext-dom": "*",
  8471. "ext-json": "*",
  8472. "ext-libxml": "*",
  8473. "ext-mbstring": "*",
  8474. "ext-xml": "*",
  8475. "ext-xmlwriter": "*",
  8476. "myclabs/deep-copy": "^1.9.1",
  8477. "phar-io/manifest": "^1.0.3",
  8478. "phar-io/version": "^2.0.1",
  8479. "php": "^7.2",
  8480. "phpspec/prophecy": "^1.8.1",
  8481. "phpunit/php-code-coverage": "^7.0.7",
  8482. "phpunit/php-file-iterator": "^2.0.2",
  8483. "phpunit/php-text-template": "^1.2.1",
  8484. "phpunit/php-timer": "^2.1.2",
  8485. "sebastian/comparator": "^3.0.2",
  8486. "sebastian/diff": "^3.0.2",
  8487. "sebastian/environment": "^4.2.2",
  8488. "sebastian/exporter": "^3.1.1",
  8489. "sebastian/global-state": "^3.0.0",
  8490. "sebastian/object-enumerator": "^3.0.3",
  8491. "sebastian/resource-operations": "^2.0.1",
  8492. "sebastian/type": "^1.1.3",
  8493. "sebastian/version": "^2.0.1"
  8494. },
  8495. "require-dev": {
  8496. "ext-pdo": "*"
  8497. },
  8498. "suggest": {
  8499. "ext-soap": "*",
  8500. "ext-xdebug": "*",
  8501. "phpunit/php-invoker": "^2.0.0"
  8502. },
  8503. "bin": [
  8504. "phpunit"
  8505. ],
  8506. "type": "library",
  8507. "extra": {
  8508. "branch-alias": {
  8509. "dev-master": "8.5-dev"
  8510. }
  8511. },
  8512. "autoload": {
  8513. "classmap": [
  8514. "src/"
  8515. ]
  8516. },
  8517. "notification-url": "https://packagist.org/downloads/",
  8518. "license": [
  8519. "BSD-3-Clause"
  8520. ],
  8521. "authors": [
  8522. {
  8523. "name": "Sebastian Bergmann",
  8524. "email": "sebastian@phpunit.de",
  8525. "role": "lead"
  8526. }
  8527. ],
  8528. "description": "The PHP Unit Testing framework.",
  8529. "homepage": "https://phpunit.de/",
  8530. "keywords": [
  8531. "phpunit",
  8532. "testing",
  8533. "xunit"
  8534. ],
  8535. "funding": [
  8536. {
  8537. "url": "https://phpunit.de/donate.html",
  8538. "type": "custom"
  8539. },
  8540. {
  8541. "url": "https://github.com/sebastianbergmann",
  8542. "type": "github"
  8543. }
  8544. ],
  8545. "time": "2020-06-22T07:06:58+00:00"
  8546. },
  8547. {
  8548. "name": "scrivo/highlight.php",
  8549. "version": "v9.18.1.2",
  8550. "source": {
  8551. "type": "git",
  8552. "url": "https://github.com/scrivo/highlight.php.git",
  8553. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9"
  8554. },
  8555. "dist": {
  8556. "type": "zip",
  8557. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  8558. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  8559. "shasum": ""
  8560. },
  8561. "require": {
  8562. "ext-json": "*",
  8563. "ext-mbstring": "*",
  8564. "php": ">=5.4"
  8565. },
  8566. "require-dev": {
  8567. "phpunit/phpunit": "^4.8|^5.7",
  8568. "sabberworm/php-css-parser": "^8.3",
  8569. "symfony/finder": "^2.8|^3.4",
  8570. "symfony/var-dumper": "^2.8|^3.4"
  8571. },
  8572. "suggest": {
  8573. "ext-dom": "Needed to make use of the features in the utilities namespace"
  8574. },
  8575. "type": "library",
  8576. "autoload": {
  8577. "psr-0": {
  8578. "Highlight\\": "",
  8579. "HighlightUtilities\\": ""
  8580. },
  8581. "files": [
  8582. "HighlightUtilities/functions.php"
  8583. ]
  8584. },
  8585. "notification-url": "https://packagist.org/downloads/",
  8586. "license": [
  8587. "BSD-3-Clause"
  8588. ],
  8589. "authors": [
  8590. {
  8591. "name": "Geert Bergman",
  8592. "homepage": "http://www.scrivo.org/",
  8593. "role": "Project Author"
  8594. },
  8595. {
  8596. "name": "Vladimir Jimenez",
  8597. "homepage": "https://allejo.io",
  8598. "role": "Maintainer"
  8599. },
  8600. {
  8601. "name": "Martin Folkers",
  8602. "homepage": "https://twobrain.io",
  8603. "role": "Contributor"
  8604. }
  8605. ],
  8606. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  8607. "keywords": [
  8608. "code",
  8609. "highlight",
  8610. "highlight.js",
  8611. "highlight.php",
  8612. "syntax"
  8613. ],
  8614. "funding": [
  8615. {
  8616. "url": "https://github.com/allejo",
  8617. "type": "github"
  8618. }
  8619. ],
  8620. "time": "2020-08-27T03:24:44+00:00"
  8621. },
  8622. {
  8623. "name": "sebastian/code-unit-reverse-lookup",
  8624. "version": "1.0.1",
  8625. "source": {
  8626. "type": "git",
  8627. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8628. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8629. },
  8630. "dist": {
  8631. "type": "zip",
  8632. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8633. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8634. "shasum": ""
  8635. },
  8636. "require": {
  8637. "php": "^5.6 || ^7.0"
  8638. },
  8639. "require-dev": {
  8640. "phpunit/phpunit": "^5.7 || ^6.0"
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-master": "1.0.x-dev"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "classmap": [
  8650. "src/"
  8651. ]
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "BSD-3-Clause"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Sebastian Bergmann",
  8660. "email": "sebastian@phpunit.de"
  8661. }
  8662. ],
  8663. "description": "Looks up which function or method a line of code belongs to",
  8664. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8665. "time": "2017-03-04T06:30:41+00:00"
  8666. },
  8667. {
  8668. "name": "sebastian/comparator",
  8669. "version": "3.0.2",
  8670. "source": {
  8671. "type": "git",
  8672. "url": "https://github.com/sebastianbergmann/comparator.git",
  8673. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  8674. },
  8675. "dist": {
  8676. "type": "zip",
  8677. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  8678. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  8679. "shasum": ""
  8680. },
  8681. "require": {
  8682. "php": "^7.1",
  8683. "sebastian/diff": "^3.0",
  8684. "sebastian/exporter": "^3.1"
  8685. },
  8686. "require-dev": {
  8687. "phpunit/phpunit": "^7.1"
  8688. },
  8689. "type": "library",
  8690. "extra": {
  8691. "branch-alias": {
  8692. "dev-master": "3.0-dev"
  8693. }
  8694. },
  8695. "autoload": {
  8696. "classmap": [
  8697. "src/"
  8698. ]
  8699. },
  8700. "notification-url": "https://packagist.org/downloads/",
  8701. "license": [
  8702. "BSD-3-Clause"
  8703. ],
  8704. "authors": [
  8705. {
  8706. "name": "Jeff Welch",
  8707. "email": "whatthejeff@gmail.com"
  8708. },
  8709. {
  8710. "name": "Volker Dusch",
  8711. "email": "github@wallbash.com"
  8712. },
  8713. {
  8714. "name": "Bernhard Schussek",
  8715. "email": "bschussek@2bepublished.at"
  8716. },
  8717. {
  8718. "name": "Sebastian Bergmann",
  8719. "email": "sebastian@phpunit.de"
  8720. }
  8721. ],
  8722. "description": "Provides the functionality to compare PHP values for equality",
  8723. "homepage": "https://github.com/sebastianbergmann/comparator",
  8724. "keywords": [
  8725. "comparator",
  8726. "compare",
  8727. "equality"
  8728. ],
  8729. "time": "2018-07-12T15:12:46+00:00"
  8730. },
  8731. {
  8732. "name": "sebastian/diff",
  8733. "version": "3.0.2",
  8734. "source": {
  8735. "type": "git",
  8736. "url": "https://github.com/sebastianbergmann/diff.git",
  8737. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  8738. },
  8739. "dist": {
  8740. "type": "zip",
  8741. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  8742. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  8743. "shasum": ""
  8744. },
  8745. "require": {
  8746. "php": "^7.1"
  8747. },
  8748. "require-dev": {
  8749. "phpunit/phpunit": "^7.5 || ^8.0",
  8750. "symfony/process": "^2 || ^3.3 || ^4"
  8751. },
  8752. "type": "library",
  8753. "extra": {
  8754. "branch-alias": {
  8755. "dev-master": "3.0-dev"
  8756. }
  8757. },
  8758. "autoload": {
  8759. "classmap": [
  8760. "src/"
  8761. ]
  8762. },
  8763. "notification-url": "https://packagist.org/downloads/",
  8764. "license": [
  8765. "BSD-3-Clause"
  8766. ],
  8767. "authors": [
  8768. {
  8769. "name": "Kore Nordmann",
  8770. "email": "mail@kore-nordmann.de"
  8771. },
  8772. {
  8773. "name": "Sebastian Bergmann",
  8774. "email": "sebastian@phpunit.de"
  8775. }
  8776. ],
  8777. "description": "Diff implementation",
  8778. "homepage": "https://github.com/sebastianbergmann/diff",
  8779. "keywords": [
  8780. "diff",
  8781. "udiff",
  8782. "unidiff",
  8783. "unified diff"
  8784. ],
  8785. "time": "2019-02-04T06:01:07+00:00"
  8786. },
  8787. {
  8788. "name": "sebastian/environment",
  8789. "version": "4.2.3",
  8790. "source": {
  8791. "type": "git",
  8792. "url": "https://github.com/sebastianbergmann/environment.git",
  8793. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  8794. },
  8795. "dist": {
  8796. "type": "zip",
  8797. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  8798. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  8799. "shasum": ""
  8800. },
  8801. "require": {
  8802. "php": "^7.1"
  8803. },
  8804. "require-dev": {
  8805. "phpunit/phpunit": "^7.5"
  8806. },
  8807. "suggest": {
  8808. "ext-posix": "*"
  8809. },
  8810. "type": "library",
  8811. "extra": {
  8812. "branch-alias": {
  8813. "dev-master": "4.2-dev"
  8814. }
  8815. },
  8816. "autoload": {
  8817. "classmap": [
  8818. "src/"
  8819. ]
  8820. },
  8821. "notification-url": "https://packagist.org/downloads/",
  8822. "license": [
  8823. "BSD-3-Clause"
  8824. ],
  8825. "authors": [
  8826. {
  8827. "name": "Sebastian Bergmann",
  8828. "email": "sebastian@phpunit.de"
  8829. }
  8830. ],
  8831. "description": "Provides functionality to handle HHVM/PHP environments",
  8832. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8833. "keywords": [
  8834. "Xdebug",
  8835. "environment",
  8836. "hhvm"
  8837. ],
  8838. "time": "2019-11-20T08:46:58+00:00"
  8839. },
  8840. {
  8841. "name": "sebastian/exporter",
  8842. "version": "3.1.2",
  8843. "source": {
  8844. "type": "git",
  8845. "url": "https://github.com/sebastianbergmann/exporter.git",
  8846. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8847. },
  8848. "dist": {
  8849. "type": "zip",
  8850. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8851. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8852. "shasum": ""
  8853. },
  8854. "require": {
  8855. "php": "^7.0",
  8856. "sebastian/recursion-context": "^3.0"
  8857. },
  8858. "require-dev": {
  8859. "ext-mbstring": "*",
  8860. "phpunit/phpunit": "^6.0"
  8861. },
  8862. "type": "library",
  8863. "extra": {
  8864. "branch-alias": {
  8865. "dev-master": "3.1.x-dev"
  8866. }
  8867. },
  8868. "autoload": {
  8869. "classmap": [
  8870. "src/"
  8871. ]
  8872. },
  8873. "notification-url": "https://packagist.org/downloads/",
  8874. "license": [
  8875. "BSD-3-Clause"
  8876. ],
  8877. "authors": [
  8878. {
  8879. "name": "Sebastian Bergmann",
  8880. "email": "sebastian@phpunit.de"
  8881. },
  8882. {
  8883. "name": "Jeff Welch",
  8884. "email": "whatthejeff@gmail.com"
  8885. },
  8886. {
  8887. "name": "Volker Dusch",
  8888. "email": "github@wallbash.com"
  8889. },
  8890. {
  8891. "name": "Adam Harvey",
  8892. "email": "aharvey@php.net"
  8893. },
  8894. {
  8895. "name": "Bernhard Schussek",
  8896. "email": "bschussek@gmail.com"
  8897. }
  8898. ],
  8899. "description": "Provides the functionality to export PHP variables for visualization",
  8900. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8901. "keywords": [
  8902. "export",
  8903. "exporter"
  8904. ],
  8905. "time": "2019-09-14T09:02:43+00:00"
  8906. },
  8907. {
  8908. "name": "sebastian/global-state",
  8909. "version": "3.0.0",
  8910. "source": {
  8911. "type": "git",
  8912. "url": "https://github.com/sebastianbergmann/global-state.git",
  8913. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  8914. },
  8915. "dist": {
  8916. "type": "zip",
  8917. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  8918. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  8919. "shasum": ""
  8920. },
  8921. "require": {
  8922. "php": "^7.2",
  8923. "sebastian/object-reflector": "^1.1.1",
  8924. "sebastian/recursion-context": "^3.0"
  8925. },
  8926. "require-dev": {
  8927. "ext-dom": "*",
  8928. "phpunit/phpunit": "^8.0"
  8929. },
  8930. "suggest": {
  8931. "ext-uopz": "*"
  8932. },
  8933. "type": "library",
  8934. "extra": {
  8935. "branch-alias": {
  8936. "dev-master": "3.0-dev"
  8937. }
  8938. },
  8939. "autoload": {
  8940. "classmap": [
  8941. "src/"
  8942. ]
  8943. },
  8944. "notification-url": "https://packagist.org/downloads/",
  8945. "license": [
  8946. "BSD-3-Clause"
  8947. ],
  8948. "authors": [
  8949. {
  8950. "name": "Sebastian Bergmann",
  8951. "email": "sebastian@phpunit.de"
  8952. }
  8953. ],
  8954. "description": "Snapshotting of global state",
  8955. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8956. "keywords": [
  8957. "global state"
  8958. ],
  8959. "time": "2019-02-01T05:30:01+00:00"
  8960. },
  8961. {
  8962. "name": "sebastian/object-enumerator",
  8963. "version": "3.0.3",
  8964. "source": {
  8965. "type": "git",
  8966. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8967. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8968. },
  8969. "dist": {
  8970. "type": "zip",
  8971. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8972. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8973. "shasum": ""
  8974. },
  8975. "require": {
  8976. "php": "^7.0",
  8977. "sebastian/object-reflector": "^1.1.1",
  8978. "sebastian/recursion-context": "^3.0"
  8979. },
  8980. "require-dev": {
  8981. "phpunit/phpunit": "^6.0"
  8982. },
  8983. "type": "library",
  8984. "extra": {
  8985. "branch-alias": {
  8986. "dev-master": "3.0.x-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "classmap": [
  8991. "src/"
  8992. ]
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "BSD-3-Clause"
  8997. ],
  8998. "authors": [
  8999. {
  9000. "name": "Sebastian Bergmann",
  9001. "email": "sebastian@phpunit.de"
  9002. }
  9003. ],
  9004. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9005. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9006. "time": "2017-08-03T12:35:26+00:00"
  9007. },
  9008. {
  9009. "name": "sebastian/object-reflector",
  9010. "version": "1.1.1",
  9011. "source": {
  9012. "type": "git",
  9013. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9014. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  9015. },
  9016. "dist": {
  9017. "type": "zip",
  9018. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  9019. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  9020. "shasum": ""
  9021. },
  9022. "require": {
  9023. "php": "^7.0"
  9024. },
  9025. "require-dev": {
  9026. "phpunit/phpunit": "^6.0"
  9027. },
  9028. "type": "library",
  9029. "extra": {
  9030. "branch-alias": {
  9031. "dev-master": "1.1-dev"
  9032. }
  9033. },
  9034. "autoload": {
  9035. "classmap": [
  9036. "src/"
  9037. ]
  9038. },
  9039. "notification-url": "https://packagist.org/downloads/",
  9040. "license": [
  9041. "BSD-3-Clause"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Sebastian Bergmann",
  9046. "email": "sebastian@phpunit.de"
  9047. }
  9048. ],
  9049. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9050. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9051. "time": "2017-03-29T09:07:27+00:00"
  9052. },
  9053. {
  9054. "name": "sebastian/recursion-context",
  9055. "version": "3.0.0",
  9056. "source": {
  9057. "type": "git",
  9058. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9059. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  9060. },
  9061. "dist": {
  9062. "type": "zip",
  9063. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9064. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9065. "shasum": ""
  9066. },
  9067. "require": {
  9068. "php": "^7.0"
  9069. },
  9070. "require-dev": {
  9071. "phpunit/phpunit": "^6.0"
  9072. },
  9073. "type": "library",
  9074. "extra": {
  9075. "branch-alias": {
  9076. "dev-master": "3.0.x-dev"
  9077. }
  9078. },
  9079. "autoload": {
  9080. "classmap": [
  9081. "src/"
  9082. ]
  9083. },
  9084. "notification-url": "https://packagist.org/downloads/",
  9085. "license": [
  9086. "BSD-3-Clause"
  9087. ],
  9088. "authors": [
  9089. {
  9090. "name": "Jeff Welch",
  9091. "email": "whatthejeff@gmail.com"
  9092. },
  9093. {
  9094. "name": "Sebastian Bergmann",
  9095. "email": "sebastian@phpunit.de"
  9096. },
  9097. {
  9098. "name": "Adam Harvey",
  9099. "email": "aharvey@php.net"
  9100. }
  9101. ],
  9102. "description": "Provides functionality to recursively process PHP variables",
  9103. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9104. "time": "2017-03-03T06:23:57+00:00"
  9105. },
  9106. {
  9107. "name": "sebastian/resource-operations",
  9108. "version": "2.0.1",
  9109. "source": {
  9110. "type": "git",
  9111. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9112. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  9113. },
  9114. "dist": {
  9115. "type": "zip",
  9116. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9117. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9118. "shasum": ""
  9119. },
  9120. "require": {
  9121. "php": "^7.1"
  9122. },
  9123. "type": "library",
  9124. "extra": {
  9125. "branch-alias": {
  9126. "dev-master": "2.0-dev"
  9127. }
  9128. },
  9129. "autoload": {
  9130. "classmap": [
  9131. "src/"
  9132. ]
  9133. },
  9134. "notification-url": "https://packagist.org/downloads/",
  9135. "license": [
  9136. "BSD-3-Clause"
  9137. ],
  9138. "authors": [
  9139. {
  9140. "name": "Sebastian Bergmann",
  9141. "email": "sebastian@phpunit.de"
  9142. }
  9143. ],
  9144. "description": "Provides a list of PHP built-in functions that operate on resources",
  9145. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9146. "time": "2018-10-04T04:07:39+00:00"
  9147. },
  9148. {
  9149. "name": "sebastian/type",
  9150. "version": "1.1.3",
  9151. "source": {
  9152. "type": "git",
  9153. "url": "https://github.com/sebastianbergmann/type.git",
  9154. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  9155. },
  9156. "dist": {
  9157. "type": "zip",
  9158. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  9159. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  9160. "shasum": ""
  9161. },
  9162. "require": {
  9163. "php": "^7.2"
  9164. },
  9165. "require-dev": {
  9166. "phpunit/phpunit": "^8.2"
  9167. },
  9168. "type": "library",
  9169. "extra": {
  9170. "branch-alias": {
  9171. "dev-master": "1.1-dev"
  9172. }
  9173. },
  9174. "autoload": {
  9175. "classmap": [
  9176. "src/"
  9177. ]
  9178. },
  9179. "notification-url": "https://packagist.org/downloads/",
  9180. "license": [
  9181. "BSD-3-Clause"
  9182. ],
  9183. "authors": [
  9184. {
  9185. "name": "Sebastian Bergmann",
  9186. "email": "sebastian@phpunit.de",
  9187. "role": "lead"
  9188. }
  9189. ],
  9190. "description": "Collection of value objects that represent the types of the PHP type system",
  9191. "homepage": "https://github.com/sebastianbergmann/type",
  9192. "time": "2019-07-02T08:10:15+00:00"
  9193. },
  9194. {
  9195. "name": "sebastian/version",
  9196. "version": "2.0.1",
  9197. "source": {
  9198. "type": "git",
  9199. "url": "https://github.com/sebastianbergmann/version.git",
  9200. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9201. },
  9202. "dist": {
  9203. "type": "zip",
  9204. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9205. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9206. "shasum": ""
  9207. },
  9208. "require": {
  9209. "php": ">=5.6"
  9210. },
  9211. "type": "library",
  9212. "extra": {
  9213. "branch-alias": {
  9214. "dev-master": "2.0.x-dev"
  9215. }
  9216. },
  9217. "autoload": {
  9218. "classmap": [
  9219. "src/"
  9220. ]
  9221. },
  9222. "notification-url": "https://packagist.org/downloads/",
  9223. "license": [
  9224. "BSD-3-Clause"
  9225. ],
  9226. "authors": [
  9227. {
  9228. "name": "Sebastian Bergmann",
  9229. "email": "sebastian@phpunit.de",
  9230. "role": "lead"
  9231. }
  9232. ],
  9233. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9234. "homepage": "https://github.com/sebastianbergmann/version",
  9235. "time": "2016-10-03T07:35:21+00:00"
  9236. },
  9237. {
  9238. "name": "seld/jsonlint",
  9239. "version": "1.8.2",
  9240. "source": {
  9241. "type": "git",
  9242. "url": "https://github.com/Seldaek/jsonlint.git",
  9243. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337"
  9244. },
  9245. "dist": {
  9246. "type": "zip",
  9247. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337",
  9248. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337",
  9249. "shasum": ""
  9250. },
  9251. "require": {
  9252. "php": "^5.3 || ^7.0 || ^8.0"
  9253. },
  9254. "require-dev": {
  9255. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  9256. },
  9257. "bin": [
  9258. "bin/jsonlint"
  9259. ],
  9260. "type": "library",
  9261. "autoload": {
  9262. "psr-4": {
  9263. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  9264. }
  9265. },
  9266. "notification-url": "https://packagist.org/downloads/",
  9267. "license": [
  9268. "MIT"
  9269. ],
  9270. "authors": [
  9271. {
  9272. "name": "Jordi Boggiano",
  9273. "email": "j.boggiano@seld.be",
  9274. "homepage": "http://seld.be"
  9275. }
  9276. ],
  9277. "description": "JSON Linter",
  9278. "keywords": [
  9279. "json",
  9280. "linter",
  9281. "parser",
  9282. "validator"
  9283. ],
  9284. "funding": [
  9285. {
  9286. "url": "https://github.com/Seldaek",
  9287. "type": "github"
  9288. },
  9289. {
  9290. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  9291. "type": "tidelift"
  9292. }
  9293. ],
  9294. "time": "2020-08-25T06:56:57+00:00"
  9295. },
  9296. {
  9297. "name": "seld/phar-utils",
  9298. "version": "1.1.1",
  9299. "source": {
  9300. "type": "git",
  9301. "url": "https://github.com/Seldaek/phar-utils.git",
  9302. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  9303. },
  9304. "dist": {
  9305. "type": "zip",
  9306. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  9307. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  9308. "shasum": ""
  9309. },
  9310. "require": {
  9311. "php": ">=5.3"
  9312. },
  9313. "type": "library",
  9314. "extra": {
  9315. "branch-alias": {
  9316. "dev-master": "1.x-dev"
  9317. }
  9318. },
  9319. "autoload": {
  9320. "psr-4": {
  9321. "Seld\\PharUtils\\": "src/"
  9322. }
  9323. },
  9324. "notification-url": "https://packagist.org/downloads/",
  9325. "license": [
  9326. "MIT"
  9327. ],
  9328. "authors": [
  9329. {
  9330. "name": "Jordi Boggiano",
  9331. "email": "j.boggiano@seld.be"
  9332. }
  9333. ],
  9334. "description": "PHAR file format utilities, for when PHP phars you up",
  9335. "keywords": [
  9336. "phar"
  9337. ],
  9338. "time": "2020-07-07T18:42:57+00:00"
  9339. },
  9340. {
  9341. "name": "symfony/debug",
  9342. "version": "v4.4.13",
  9343. "source": {
  9344. "type": "git",
  9345. "url": "https://github.com/symfony/debug.git",
  9346. "reference": "aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e"
  9347. },
  9348. "dist": {
  9349. "type": "zip",
  9350. "url": "https://api.github.com/repos/symfony/debug/zipball/aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e",
  9351. "reference": "aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e",
  9352. "shasum": ""
  9353. },
  9354. "require": {
  9355. "php": ">=7.1.3",
  9356. "psr/log": "~1.0",
  9357. "symfony/polyfill-php80": "^1.15"
  9358. },
  9359. "conflict": {
  9360. "symfony/http-kernel": "<3.4"
  9361. },
  9362. "require-dev": {
  9363. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9364. },
  9365. "type": "library",
  9366. "extra": {
  9367. "branch-alias": {
  9368. "dev-master": "4.4-dev"
  9369. }
  9370. },
  9371. "autoload": {
  9372. "psr-4": {
  9373. "Symfony\\Component\\Debug\\": ""
  9374. },
  9375. "exclude-from-classmap": [
  9376. "/Tests/"
  9377. ]
  9378. },
  9379. "notification-url": "https://packagist.org/downloads/",
  9380. "license": [
  9381. "MIT"
  9382. ],
  9383. "authors": [
  9384. {
  9385. "name": "Fabien Potencier",
  9386. "email": "fabien@symfony.com"
  9387. },
  9388. {
  9389. "name": "Symfony Community",
  9390. "homepage": "https://symfony.com/contributors"
  9391. }
  9392. ],
  9393. "description": "Symfony Debug Component",
  9394. "homepage": "https://symfony.com",
  9395. "funding": [
  9396. {
  9397. "url": "https://symfony.com/sponsor",
  9398. "type": "custom"
  9399. },
  9400. {
  9401. "url": "https://github.com/fabpot",
  9402. "type": "github"
  9403. },
  9404. {
  9405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9406. "type": "tidelift"
  9407. }
  9408. ],
  9409. "time": "2020-08-10T07:47:39+00:00"
  9410. },
  9411. {
  9412. "name": "symfony/filesystem",
  9413. "version": "v5.1.5",
  9414. "source": {
  9415. "type": "git",
  9416. "url": "https://github.com/symfony/filesystem.git",
  9417. "reference": "f7b9ed6142a34252d219801d9767dedbd711da1a"
  9418. },
  9419. "dist": {
  9420. "type": "zip",
  9421. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f7b9ed6142a34252d219801d9767dedbd711da1a",
  9422. "reference": "f7b9ed6142a34252d219801d9767dedbd711da1a",
  9423. "shasum": ""
  9424. },
  9425. "require": {
  9426. "php": ">=7.2.5",
  9427. "symfony/polyfill-ctype": "~1.8"
  9428. },
  9429. "type": "library",
  9430. "extra": {
  9431. "branch-alias": {
  9432. "dev-master": "5.1-dev"
  9433. }
  9434. },
  9435. "autoload": {
  9436. "psr-4": {
  9437. "Symfony\\Component\\Filesystem\\": ""
  9438. },
  9439. "exclude-from-classmap": [
  9440. "/Tests/"
  9441. ]
  9442. },
  9443. "notification-url": "https://packagist.org/downloads/",
  9444. "license": [
  9445. "MIT"
  9446. ],
  9447. "authors": [
  9448. {
  9449. "name": "Fabien Potencier",
  9450. "email": "fabien@symfony.com"
  9451. },
  9452. {
  9453. "name": "Symfony Community",
  9454. "homepage": "https://symfony.com/contributors"
  9455. }
  9456. ],
  9457. "description": "Symfony Filesystem Component",
  9458. "homepage": "https://symfony.com",
  9459. "funding": [
  9460. {
  9461. "url": "https://symfony.com/sponsor",
  9462. "type": "custom"
  9463. },
  9464. {
  9465. "url": "https://github.com/fabpot",
  9466. "type": "github"
  9467. },
  9468. {
  9469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9470. "type": "tidelift"
  9471. }
  9472. ],
  9473. "time": "2020-08-21T17:19:47+00:00"
  9474. },
  9475. {
  9476. "name": "theseer/tokenizer",
  9477. "version": "1.2.0",
  9478. "source": {
  9479. "type": "git",
  9480. "url": "https://github.com/theseer/tokenizer.git",
  9481. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  9482. },
  9483. "dist": {
  9484. "type": "zip",
  9485. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  9486. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  9487. "shasum": ""
  9488. },
  9489. "require": {
  9490. "ext-dom": "*",
  9491. "ext-tokenizer": "*",
  9492. "ext-xmlwriter": "*",
  9493. "php": "^7.2 || ^8.0"
  9494. },
  9495. "type": "library",
  9496. "autoload": {
  9497. "classmap": [
  9498. "src/"
  9499. ]
  9500. },
  9501. "notification-url": "https://packagist.org/downloads/",
  9502. "license": [
  9503. "BSD-3-Clause"
  9504. ],
  9505. "authors": [
  9506. {
  9507. "name": "Arne Blankerts",
  9508. "email": "arne@blankerts.de",
  9509. "role": "Developer"
  9510. }
  9511. ],
  9512. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9513. "funding": [
  9514. {
  9515. "url": "https://github.com/theseer",
  9516. "type": "github"
  9517. }
  9518. ],
  9519. "time": "2020-07-12T23:59:07+00:00"
  9520. },
  9521. {
  9522. "name": "webmozart/assert",
  9523. "version": "1.9.1",
  9524. "source": {
  9525. "type": "git",
  9526. "url": "https://github.com/webmozart/assert.git",
  9527. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  9528. },
  9529. "dist": {
  9530. "type": "zip",
  9531. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9532. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9533. "shasum": ""
  9534. },
  9535. "require": {
  9536. "php": "^5.3.3 || ^7.0 || ^8.0",
  9537. "symfony/polyfill-ctype": "^1.8"
  9538. },
  9539. "conflict": {
  9540. "phpstan/phpstan": "<0.12.20",
  9541. "vimeo/psalm": "<3.9.1"
  9542. },
  9543. "require-dev": {
  9544. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  9545. },
  9546. "type": "library",
  9547. "autoload": {
  9548. "psr-4": {
  9549. "Webmozart\\Assert\\": "src/"
  9550. }
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "MIT"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Bernhard Schussek",
  9559. "email": "bschussek@gmail.com"
  9560. }
  9561. ],
  9562. "description": "Assertions to validate method input/output with nice error messages.",
  9563. "keywords": [
  9564. "assert",
  9565. "check",
  9566. "validate"
  9567. ],
  9568. "time": "2020-07-08T17:02:28+00:00"
  9569. }
  9570. ],
  9571. "aliases": [],
  9572. "minimum-stability": "dev",
  9573. "stability-flags": [],
  9574. "prefer-stable": true,
  9575. "prefer-lowest": false,
  9576. "platform": {
  9577. "php": "^7.2.5",
  9578. "ext-json": "*"
  9579. },
  9580. "platform-dev": [],
  9581. "plugin-api-version": "1.1.0"
  9582. }