composer.lock 285 KB

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