composer.lock 339 KB

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