composer.lock 330 KB

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