composer.lock 306 KB

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