You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 436KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095
  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": "20db665fd760b4852eca329692c71660",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "c6710ee50ad9a394e3f607a0ebbc64905c308e69"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/c6710ee50ad9a394e3f607a0ebbc64905c308e69",
  20. "reference": "c6710ee50ad9a394e3f607a0ebbc64905c308e69",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0|^11.0",
  25. "illuminate/support": "^9.0|^10.0|^11.0",
  26. "illuminate/validation": "^9.0|^10.0|^11.0",
  27. "illuminate/view": "^9.0|^10.0|^11.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0|^9.0",
  33. "phpunit/phpunit": "^9.5|^10.0|^11.0",
  34. "vimeo/psalm": "^4.23|^5.1"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/5.2.0"
  75. },
  76. "time": "2024-03-19T21:43:10+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v4.0.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "2320fe95d32f90c09e17dd23aba6e99086d609e1"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/2320fe95d32f90c09e17dd23aba6e99086d609e1",
  89. "reference": "2320fe95d32f90c09e17dd23aba6e99086d609e1",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.2.29",
  95. "illuminate/console": "^11.0",
  96. "illuminate/contracts": "^11.0",
  97. "illuminate/support": "^11.0",
  98. "laravel/socialite": "^5.12",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.2"
  101. },
  102. "require-dev": {
  103. "laravel/pint": "^1.14",
  104. "laravel/sanctum": "^4.0",
  105. "livewire/livewire": "^3.4.9",
  106. "mockery/mockery": "^1.6",
  107. "orchestra/testbench": "^9.0",
  108. "phpunit/phpunit": "^10.5"
  109. },
  110. "type": "library",
  111. "extra": {
  112. "laravel": {
  113. "providers": [
  114. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  115. ]
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Wallo\\FilamentCompanies\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Andrew Wallo",
  130. "email": "andrewdwallo@gmail.com",
  131. "role": "Developer"
  132. }
  133. ],
  134. "description": "A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.",
  135. "homepage": "https://github.com/andrewdwallo/filament-companies",
  136. "keywords": [
  137. "Authentication",
  138. "ERP",
  139. "andrewdwallo",
  140. "business management",
  141. "company management",
  142. "crm",
  143. "filament",
  144. "filament companies",
  145. "filament-companies",
  146. "laravel",
  147. "multi-tenant",
  148. "saas",
  149. "socialite"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  153. "source": "https://github.com/andrewdwallo/filament-companies/tree/v4.0.2"
  154. },
  155. "time": "2024-04-05T21:36:19+00:00"
  156. },
  157. {
  158. "name": "andrewdwallo/filament-selectify",
  159. "version": "v2.0.7",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  163. "reference": "8d83fdc9c06f14a04060076ed9d809e6363abfc4"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/8d83fdc9c06f14a04060076ed9d809e6363abfc4",
  168. "reference": "8d83fdc9c06f14a04060076ed9d809e6363abfc4",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "filament/forms": "^3.0",
  173. "php": "^8.1",
  174. "spatie/laravel-package-tools": "^1.15.0"
  175. },
  176. "require-dev": {
  177. "laravel/pint": "^1.0",
  178. "nunomaduro/collision": "^7.9",
  179. "orchestra/testbench": "^8.0",
  180. "pestphp/pest": "^2.0",
  181. "pestphp/pest-plugin-arch": "^2.0",
  182. "pestphp/pest-plugin-laravel": "^2.0"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "laravel": {
  187. "providers": [
  188. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  189. ]
  190. }
  191. },
  192. "autoload": {
  193. "psr-4": {
  194. "Wallo\\FilamentSelectify\\": "src/"
  195. }
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Andrew Wallo",
  204. "email": "andrewdwallo@gmail.com",
  205. "role": "Developer"
  206. }
  207. ],
  208. "description": "This is my package filament-selectify",
  209. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  210. "keywords": [
  211. "andrewdwallo",
  212. "filament-selectify",
  213. "laravel"
  214. ],
  215. "support": {
  216. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  217. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.7"
  218. },
  219. "time": "2024-02-26T03:11:42+00:00"
  220. },
  221. {
  222. "name": "andrewdwallo/transmatic",
  223. "version": "v1.1.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  232. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  233. "shasum": ""
  234. },
  235. "require": {
  236. "aws/aws-sdk-php-laravel": "^3.8",
  237. "ext-intl": "*",
  238. "ext-json": "*",
  239. "illuminate/contracts": "^10.0|^11.0",
  240. "php": "^8.1",
  241. "spatie/laravel-package-tools": "^1.14.0"
  242. },
  243. "require-dev": {
  244. "larastan/larastan": "^2.9",
  245. "laravel/pint": "^1.0",
  246. "nunomaduro/collision": "^7.8|^8.0",
  247. "orchestra/testbench": "^8.8|^9.0",
  248. "pestphp/pest": "^2.20",
  249. "pestphp/pest-plugin-arch": "^2.0",
  250. "pestphp/pest-plugin-laravel": "^2.0",
  251. "phpstan/extension-installer": "^1.1",
  252. "phpstan/phpstan-deprecation-rules": "^1.0",
  253. "phpstan/phpstan-phpunit": "^1.0",
  254. "spatie/laravel-ray": "^1.26"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "laravel": {
  259. "providers": [
  260. "Wallo\\Transmatic\\TransmaticServiceProvider"
  261. ],
  262. "aliases": {
  263. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  264. }
  265. }
  266. },
  267. "autoload": {
  268. "files": [
  269. "src/helpers.php"
  270. ],
  271. "psr-4": {
  272. "Wallo\\Transmatic\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Andrew Wallo",
  282. "email": "andrewdwallo@gmail.com",
  283. "role": "Developer"
  284. }
  285. ],
  286. "description": "Automate and streamline real-time text translations in your Laravel applications",
  287. "homepage": "https://github.com/andrewdwallo/transmatic",
  288. "keywords": [
  289. "andrewdwallo",
  290. "aws",
  291. "laravel",
  292. "localization",
  293. "translation",
  294. "translations",
  295. "transmatic"
  296. ],
  297. "support": {
  298. "issues": "https://github.com/andrewdwallo/transmatic/issues",
  299. "source": "https://github.com/andrewdwallo/transmatic/tree/v1.1.0"
  300. },
  301. "time": "2024-03-22T21:31:50+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.2.22",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "6e91093c10940859c4b0549b6a90f18d8db45998"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/6e91093c10940859c4b0549b6a90f18d8db45998",
  314. "reference": "6e91093c10940859c4b0549b6a90f18d8db45998",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.0",
  319. "php": "^7.4|^8.0"
  320. },
  321. "require-dev": {
  322. "friendsofphp/php-cs-fixer": "^3.26",
  323. "laravel/legacy-factories": "^1.1",
  324. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  325. "phpstan/phpstan": "^1.10",
  326. "phpunit/phpunit": "^9.5|^10.5",
  327. "psalm/plugin-laravel": "^2.8",
  328. "squizlabs/php_codesniffer": "^3.7"
  329. },
  330. "type": "library",
  331. "extra": {
  332. "laravel": {
  333. "aliases": {
  334. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  335. }
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "AnourValar\\EloquentSerialize\\": "src/"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "description": "Laravel Query Builder (Eloquent) serialization",
  348. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  349. "keywords": [
  350. "anourvalar",
  351. "builder",
  352. "copy",
  353. "eloquent",
  354. "job",
  355. "laravel",
  356. "query",
  357. "querybuilder",
  358. "queue",
  359. "serializable",
  360. "serialization",
  361. "serialize"
  362. ],
  363. "support": {
  364. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  365. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.22"
  366. },
  367. "time": "2024-03-22T12:56:46+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.0.3",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "1ebbcb8c04c0aaeac8771a6c2c62a8736f8eea9b"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/1ebbcb8c04c0aaeac8771a6c2c62a8736f8eea9b",
  380. "reference": "1ebbcb8c04c0aaeac8771a6c2c62a8736f8eea9b",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "filament/forms": "^3.1",
  385. "php": "^8.1",
  386. "spatie/laravel-package-tools": "^1.13.5"
  387. },
  388. "require-dev": {
  389. "laravel/pint": "^1.0",
  390. "nunomaduro/collision": "^7.0",
  391. "orchestra/testbench": "^8.0",
  392. "pestphp/pest": "^2.0",
  393. "pestphp/pest-plugin-faker": "^2.0",
  394. "pestphp/pest-plugin-laravel": "^2.0",
  395. "pestphp/pest-plugin-livewire": "^2.0",
  396. "phpunit/phpunit": "^10.0",
  397. "spatie/laravel-ray": "^1.26"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "laravel": {
  402. "providers": [
  403. "Awcodes\\TableRepeater\\TableRepeaterServiceProvider"
  404. ]
  405. }
  406. },
  407. "autoload": {
  408. "psr-4": {
  409. "Awcodes\\TableRepeater\\": "src"
  410. }
  411. },
  412. "notification-url": "https://packagist.org/downloads/",
  413. "license": [
  414. "MIT"
  415. ],
  416. "authors": [
  417. {
  418. "name": "Adam Weston",
  419. "email": "awcodes1@gmail.com",
  420. "role": "Developer"
  421. }
  422. ],
  423. "description": "A modified version of the Filament Forms Repeater to display it as a table.",
  424. "homepage": "https://github.com/awcodes/filament-table-repeater",
  425. "keywords": [
  426. "awcodes",
  427. "filament",
  428. "laravel",
  429. "plugin",
  430. "table repeater"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/awcodes/filament-table-repeater/issues",
  434. "source": "https://github.com/awcodes/filament-table-repeater/tree/v3.0.3"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2024-04-26T13:18:27+00:00"
  443. },
  444. {
  445. "name": "aws/aws-crt-php",
  446. "version": "v1.2.5",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/awslabs/aws-crt-php.git",
  450. "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/0ea1f04ec5aa9f049f97e012d1ed63b76834a31b",
  455. "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": ">=5.5"
  460. },
  461. "require-dev": {
  462. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  463. "yoast/phpunit-polyfills": "^1.0"
  464. },
  465. "suggest": {
  466. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "classmap": [
  471. "src/"
  472. ]
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "Apache-2.0"
  477. ],
  478. "authors": [
  479. {
  480. "name": "AWS SDK Common Runtime Team",
  481. "email": "aws-sdk-common-runtime@amazon.com"
  482. }
  483. ],
  484. "description": "AWS Common Runtime for PHP",
  485. "homepage": "https://github.com/awslabs/aws-crt-php",
  486. "keywords": [
  487. "amazon",
  488. "aws",
  489. "crt",
  490. "sdk"
  491. ],
  492. "support": {
  493. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  494. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.5"
  495. },
  496. "time": "2024-04-19T21:30:56+00:00"
  497. },
  498. {
  499. "name": "aws/aws-sdk-php",
  500. "version": "3.305.4",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "fc26a2ebf720e0b75a353d7e8fe206796671e00b"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/fc26a2ebf720e0b75a353d7e8fe206796671e00b",
  509. "reference": "fc26a2ebf720e0b75a353d7e8fe206796671e00b",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "aws/aws-crt-php": "^1.2.3",
  514. "ext-json": "*",
  515. "ext-pcre": "*",
  516. "ext-simplexml": "*",
  517. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  518. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  519. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  520. "mtdowling/jmespath.php": "^2.6",
  521. "php": ">=7.2.5",
  522. "psr/http-message": "^1.0 || ^2.0"
  523. },
  524. "require-dev": {
  525. "andrewsville/php-token-reflection": "^1.4",
  526. "aws/aws-php-sns-message-validator": "~1.0",
  527. "behat/behat": "~3.0",
  528. "composer/composer": "^1.10.22",
  529. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  530. "doctrine/cache": "~1.4",
  531. "ext-dom": "*",
  532. "ext-openssl": "*",
  533. "ext-pcntl": "*",
  534. "ext-sockets": "*",
  535. "nette/neon": "^2.3",
  536. "paragonie/random_compat": ">= 2",
  537. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  538. "psr/cache": "^1.0",
  539. "psr/simple-cache": "^1.0",
  540. "sebastian/comparator": "^1.2.3 || ^4.0",
  541. "yoast/phpunit-polyfills": "^1.0"
  542. },
  543. "suggest": {
  544. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  545. "doctrine/cache": "To use the DoctrineCacheAdapter",
  546. "ext-curl": "To send requests using cURL",
  547. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  548. "ext-sockets": "To use client-side monitoring"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "3.0-dev"
  554. }
  555. },
  556. "autoload": {
  557. "files": [
  558. "src/functions.php"
  559. ],
  560. "psr-4": {
  561. "Aws\\": "src/"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "Apache-2.0"
  567. ],
  568. "authors": [
  569. {
  570. "name": "Amazon Web Services",
  571. "homepage": "http://aws.amazon.com"
  572. }
  573. ],
  574. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  575. "homepage": "http://aws.amazon.com/sdkforphp",
  576. "keywords": [
  577. "amazon",
  578. "aws",
  579. "cloud",
  580. "dynamodb",
  581. "ec2",
  582. "glacier",
  583. "s3",
  584. "sdk"
  585. ],
  586. "support": {
  587. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  588. "issues": "https://github.com/aws/aws-sdk-php/issues",
  589. "source": "https://github.com/aws/aws-sdk-php/tree/3.305.4"
  590. },
  591. "time": "2024-04-26T18:06:31+00:00"
  592. },
  593. {
  594. "name": "aws/aws-sdk-php-laravel",
  595. "version": "3.9.0",
  596. "source": {
  597. "type": "git",
  598. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  599. "reference": "11cb363873bd77a91b262936936abfa6a2122d53"
  600. },
  601. "dist": {
  602. "type": "zip",
  603. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/11cb363873bd77a91b262936936abfa6a2122d53",
  604. "reference": "11cb363873bd77a91b262936936abfa6a2122d53",
  605. "shasum": ""
  606. },
  607. "require": {
  608. "aws/aws-sdk-php": "^3.279.0",
  609. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
  610. "php": ">=7.2.5"
  611. },
  612. "require-dev": {
  613. "phpunit/phpunit": "^8.0 || ^9.0",
  614. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  615. "yoast/phpunit-polyfills": "^1.0"
  616. },
  617. "suggest": {
  618. "laravel/framework": "To test the Laravel bindings",
  619. "laravel/lumen-framework": "To test the Lumen bindings"
  620. },
  621. "type": "library",
  622. "extra": {
  623. "laravel": {
  624. "providers": [
  625. "Aws\\Laravel\\AwsServiceProvider"
  626. ],
  627. "aliases": {
  628. "AWS": "Aws\\Laravel\\AwsFacade"
  629. }
  630. }
  631. },
  632. "autoload": {
  633. "psr-4": {
  634. "Aws\\Laravel\\": "src/"
  635. }
  636. },
  637. "notification-url": "https://packagist.org/downloads/",
  638. "license": [
  639. "Apache-2.0"
  640. ],
  641. "authors": [
  642. {
  643. "name": "Amazon Web Services",
  644. "homepage": "http://aws.amazon.com"
  645. }
  646. ],
  647. "description": "A simple Laravel 6/7/8/9/10/11 service provider for including the AWS SDK for PHP.",
  648. "homepage": "https://aws.amazon.com/sdk-for-php/",
  649. "keywords": [
  650. "amazon",
  651. "aws",
  652. "dynamodb",
  653. "ec2",
  654. "laravel",
  655. "laravel 10",
  656. "laravel 11",
  657. "laravel 6",
  658. "laravel 7",
  659. "laravel 8",
  660. "laravel 9",
  661. "s3",
  662. "sdk"
  663. ],
  664. "support": {
  665. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  666. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.9.0"
  667. },
  668. "time": "2024-03-18T17:43:45+00:00"
  669. },
  670. {
  671. "name": "barryvdh/laravel-dompdf",
  672. "version": "v2.1.1",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  676. "reference": "cb37868365f9b937039d316727a1fced1e87b31c"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/cb37868365f9b937039d316727a1fced1e87b31c",
  681. "reference": "cb37868365f9b937039d316727a1fced1e87b31c",
  682. "shasum": ""
  683. },
  684. "require": {
  685. "dompdf/dompdf": "^2.0.3",
  686. "illuminate/support": "^6|^7|^8|^9|^10|^11",
  687. "php": "^7.2 || ^8.0"
  688. },
  689. "require-dev": {
  690. "larastan/larastan": "^1.0|^2.7.0",
  691. "orchestra/testbench": "^4|^5|^6|^7|^8|^9",
  692. "phpro/grumphp": "^1 || ^2.5",
  693. "squizlabs/php_codesniffer": "^3.5"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "2.0-dev"
  699. },
  700. "laravel": {
  701. "providers": [
  702. "Barryvdh\\DomPDF\\ServiceProvider"
  703. ],
  704. "aliases": {
  705. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
  706. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
  707. }
  708. }
  709. },
  710. "autoload": {
  711. "psr-4": {
  712. "Barryvdh\\DomPDF\\": "src"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Barry vd. Heuvel",
  722. "email": "barryvdh@gmail.com"
  723. }
  724. ],
  725. "description": "A DOMPDF Wrapper for Laravel",
  726. "keywords": [
  727. "dompdf",
  728. "laravel",
  729. "pdf"
  730. ],
  731. "support": {
  732. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  733. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.1.1"
  734. },
  735. "funding": [
  736. {
  737. "url": "https://fruitcake.nl",
  738. "type": "custom"
  739. },
  740. {
  741. "url": "https://github.com/barryvdh",
  742. "type": "github"
  743. }
  744. ],
  745. "time": "2024-03-15T12:48:39+00:00"
  746. },
  747. {
  748. "name": "bezhansalleh/filament-panel-switch",
  749. "version": "1.0.5",
  750. "source": {
  751. "type": "git",
  752. "url": "https://github.com/bezhanSalleh/filament-panel-switch.git",
  753. "reference": "85fdf7ec35a7c35f380d952146594cd423af683d"
  754. },
  755. "dist": {
  756. "type": "zip",
  757. "url": "https://api.github.com/repos/bezhanSalleh/filament-panel-switch/zipball/85fdf7ec35a7c35f380d952146594cd423af683d",
  758. "reference": "85fdf7ec35a7c35f380d952146594cd423af683d",
  759. "shasum": ""
  760. },
  761. "require": {
  762. "filament/filament": "^3.0",
  763. "php": "^8.1",
  764. "spatie/laravel-package-tools": "^1.15.0"
  765. },
  766. "require-dev": {
  767. "laravel/pint": "^1.0",
  768. "nunomaduro/collision": "^7.9",
  769. "orchestra/testbench": "^8.0",
  770. "pestphp/pest": "^2.0",
  771. "pestphp/pest-plugin-arch": "^2.0",
  772. "pestphp/pest-plugin-laravel": "^2.0",
  773. "spatie/laravel-ray": "^1.26"
  774. },
  775. "type": "library",
  776. "extra": {
  777. "laravel": {
  778. "providers": [
  779. "BezhanSalleh\\PanelSwitch\\PanelSwitchServiceProvider"
  780. ],
  781. "aliases": {
  782. "PanelSwitch": "BezhanSalleh\\PanelSwitch\\Facades\\PanelSwitch"
  783. }
  784. }
  785. },
  786. "autoload": {
  787. "psr-4": {
  788. "BezhanSalleh\\PanelSwitch\\": "src/",
  789. "BezhanSalleh\\PanelSwitch\\Database\\Factories\\": "database/factories/"
  790. }
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Bezhan Salleh",
  799. "email": "bezhan_salleh@yahoo.com",
  800. "role": "Developer"
  801. }
  802. ],
  803. "description": "Easily Switch between your Filament Panels",
  804. "homepage": "https://github.com/bezhansalleh/filament-panel-switch",
  805. "keywords": [
  806. "bezhanSalleh",
  807. "filament",
  808. "filament-panel-switch",
  809. "panel-changer",
  810. "panel-navigation",
  811. "panel-switch"
  812. ],
  813. "support": {
  814. "issues": "https://github.com/bezhansalleh/filament-panel-switch/issues",
  815. "source": "https://github.com/bezhansalleh/filament-panel-switch"
  816. },
  817. "funding": [
  818. {
  819. "url": "https://github.com/bezhanSalleh",
  820. "type": "github"
  821. }
  822. ],
  823. "time": "2024-01-12T02:52:11+00:00"
  824. },
  825. {
  826. "name": "blade-ui-kit/blade-heroicons",
  827. "version": "2.3.0",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  831. "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/a265dbcf2a098121aad05752d0bba9f59022e4ba",
  836. "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "blade-ui-kit/blade-icons": "^1.6",
  841. "illuminate/support": "^9.0|^10.0|^11.0",
  842. "php": "^8.0"
  843. },
  844. "require-dev": {
  845. "orchestra/testbench": "^7.0|^8.0|^9.0",
  846. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "laravel": {
  851. "providers": [
  852. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  853. ]
  854. }
  855. },
  856. "autoload": {
  857. "psr-4": {
  858. "BladeUI\\Heroicons\\": "src"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "Dries Vints",
  868. "homepage": "https://driesvints.com"
  869. }
  870. ],
  871. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  872. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  873. "keywords": [
  874. "Heroicons",
  875. "blade",
  876. "laravel"
  877. ],
  878. "support": {
  879. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  880. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.3.0"
  881. },
  882. "funding": [
  883. {
  884. "url": "https://github.com/sponsors/driesvints",
  885. "type": "github"
  886. },
  887. {
  888. "url": "https://www.paypal.com/paypalme/driesvints",
  889. "type": "paypal"
  890. }
  891. ],
  892. "time": "2024-02-07T16:33:46+00:00"
  893. },
  894. {
  895. "name": "blade-ui-kit/blade-icons",
  896. "version": "1.6.0",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  900. "reference": "89660d93f9897d231e9113ba203cd17f4c5efade"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/89660d93f9897d231e9113ba203cd17f4c5efade",
  905. "reference": "89660d93f9897d231e9113ba203cd17f4c5efade",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
  910. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
  911. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  912. "illuminate/view": "^8.0|^9.0|^10.0|^11.0",
  913. "php": "^7.4|^8.0",
  914. "symfony/console": "^5.3|^6.0|^7.0",
  915. "symfony/finder": "^5.3|^6.0|^7.0"
  916. },
  917. "require-dev": {
  918. "mockery/mockery": "^1.5.1",
  919. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  920. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  921. },
  922. "bin": [
  923. "bin/blade-icons-generate"
  924. ],
  925. "type": "library",
  926. "extra": {
  927. "laravel": {
  928. "providers": [
  929. "BladeUI\\Icons\\BladeIconsServiceProvider"
  930. ]
  931. }
  932. },
  933. "autoload": {
  934. "files": [
  935. "src/helpers.php"
  936. ],
  937. "psr-4": {
  938. "BladeUI\\Icons\\": "src"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Dries Vints",
  948. "homepage": "https://driesvints.com"
  949. }
  950. ],
  951. "description": "A package to easily make use of icons in your Laravel Blade views.",
  952. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  953. "keywords": [
  954. "blade",
  955. "icons",
  956. "laravel",
  957. "svg"
  958. ],
  959. "support": {
  960. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  961. "source": "https://github.com/blade-ui-kit/blade-icons"
  962. },
  963. "funding": [
  964. {
  965. "url": "https://github.com/sponsors/driesvints",
  966. "type": "github"
  967. },
  968. {
  969. "url": "https://www.paypal.com/paypalme/driesvints",
  970. "type": "paypal"
  971. }
  972. ],
  973. "time": "2024-02-07T16:09:20+00:00"
  974. },
  975. {
  976. "name": "brick/math",
  977. "version": "0.11.0",
  978. "source": {
  979. "type": "git",
  980. "url": "https://github.com/brick/math.git",
  981. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  982. },
  983. "dist": {
  984. "type": "zip",
  985. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  986. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  987. "shasum": ""
  988. },
  989. "require": {
  990. "php": "^8.0"
  991. },
  992. "require-dev": {
  993. "php-coveralls/php-coveralls": "^2.2",
  994. "phpunit/phpunit": "^9.0",
  995. "vimeo/psalm": "5.0.0"
  996. },
  997. "type": "library",
  998. "autoload": {
  999. "psr-4": {
  1000. "Brick\\Math\\": "src/"
  1001. }
  1002. },
  1003. "notification-url": "https://packagist.org/downloads/",
  1004. "license": [
  1005. "MIT"
  1006. ],
  1007. "description": "Arbitrary-precision arithmetic library",
  1008. "keywords": [
  1009. "Arbitrary-precision",
  1010. "BigInteger",
  1011. "BigRational",
  1012. "arithmetic",
  1013. "bigdecimal",
  1014. "bignum",
  1015. "brick",
  1016. "math"
  1017. ],
  1018. "support": {
  1019. "issues": "https://github.com/brick/math/issues",
  1020. "source": "https://github.com/brick/math/tree/0.11.0"
  1021. },
  1022. "funding": [
  1023. {
  1024. "url": "https://github.com/BenMorel",
  1025. "type": "github"
  1026. }
  1027. ],
  1028. "time": "2023-01-15T23:15:59+00:00"
  1029. },
  1030. {
  1031. "name": "carbonphp/carbon-doctrine-types",
  1032. "version": "2.1.0",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1036. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1041. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "php": "^7.4 || ^8.0"
  1046. },
  1047. "conflict": {
  1048. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1049. },
  1050. "require-dev": {
  1051. "doctrine/dbal": "^3.7.0",
  1052. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1053. "phpunit/phpunit": "^10.3"
  1054. },
  1055. "type": "library",
  1056. "autoload": {
  1057. "psr-4": {
  1058. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "MIT"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "KyleKatarn",
  1068. "email": "kylekatarnls@gmail.com"
  1069. }
  1070. ],
  1071. "description": "Types to use Carbon in Doctrine",
  1072. "keywords": [
  1073. "carbon",
  1074. "date",
  1075. "datetime",
  1076. "doctrine",
  1077. "time"
  1078. ],
  1079. "support": {
  1080. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1081. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1082. },
  1083. "funding": [
  1084. {
  1085. "url": "https://github.com/kylekatarnls",
  1086. "type": "github"
  1087. },
  1088. {
  1089. "url": "https://opencollective.com/Carbon",
  1090. "type": "open_collective"
  1091. },
  1092. {
  1093. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1094. "type": "tidelift"
  1095. }
  1096. ],
  1097. "time": "2023-12-11T17:09:12+00:00"
  1098. },
  1099. {
  1100. "name": "danharrin/date-format-converter",
  1101. "version": "v0.3.0",
  1102. "source": {
  1103. "type": "git",
  1104. "url": "https://github.com/danharrin/date-format-converter.git",
  1105. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
  1106. },
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  1110. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  1111. "shasum": ""
  1112. },
  1113. "require": {
  1114. "php": "^7.2|^8.0"
  1115. },
  1116. "type": "library",
  1117. "autoload": {
  1118. "files": [
  1119. "src/helpers.php",
  1120. "src/standards.php"
  1121. ],
  1122. "psr-4": {
  1123. "DanHarrin\\DateFormatConverter\\": "src/"
  1124. }
  1125. },
  1126. "notification-url": "https://packagist.org/downloads/",
  1127. "license": [
  1128. "MIT"
  1129. ],
  1130. "authors": [
  1131. {
  1132. "name": "Dan Harrin",
  1133. "email": "dan@danharrin.com"
  1134. }
  1135. ],
  1136. "description": "Convert token-based date formats between standards.",
  1137. "homepage": "https://github.com/danharrin/date-format-converter",
  1138. "support": {
  1139. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1140. "source": "https://github.com/danharrin/date-format-converter"
  1141. },
  1142. "funding": [
  1143. {
  1144. "url": "https://github.com/danharrin",
  1145. "type": "github"
  1146. }
  1147. ],
  1148. "time": "2022-09-29T07:48:20+00:00"
  1149. },
  1150. {
  1151. "name": "danharrin/livewire-rate-limiting",
  1152. "version": "v1.3.0",
  1153. "source": {
  1154. "type": "git",
  1155. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1156. "reference": "bf16003f0d977b5a41071526d697eec94ac41735"
  1157. },
  1158. "dist": {
  1159. "type": "zip",
  1160. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/bf16003f0d977b5a41071526d697eec94ac41735",
  1161. "reference": "bf16003f0d977b5a41071526d697eec94ac41735",
  1162. "shasum": ""
  1163. },
  1164. "require": {
  1165. "illuminate/support": "^9.0|^10.0|^11.0",
  1166. "php": "^8.0"
  1167. },
  1168. "require-dev": {
  1169. "livewire/livewire": "^3.0",
  1170. "livewire/volt": "^1.3",
  1171. "orchestra/testbench": "^7.0|^8.0|^9.0",
  1172. "phpunit/phpunit": "^9.0|^10.0"
  1173. },
  1174. "type": "library",
  1175. "autoload": {
  1176. "psr-4": {
  1177. "DanHarrin\\LivewireRateLimiting\\": "src"
  1178. }
  1179. },
  1180. "notification-url": "https://packagist.org/downloads/",
  1181. "license": [
  1182. "MIT"
  1183. ],
  1184. "authors": [
  1185. {
  1186. "name": "Dan Harrin",
  1187. "email": "dan@danharrin.com"
  1188. }
  1189. ],
  1190. "description": "Apply rate limiters to Laravel Livewire actions.",
  1191. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1192. "support": {
  1193. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1194. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://github.com/danharrin",
  1199. "type": "github"
  1200. }
  1201. ],
  1202. "time": "2024-01-21T14:53:34+00:00"
  1203. },
  1204. {
  1205. "name": "dflydev/dot-access-data",
  1206. "version": "v3.0.2",
  1207. "source": {
  1208. "type": "git",
  1209. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1210. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1211. },
  1212. "dist": {
  1213. "type": "zip",
  1214. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1215. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1216. "shasum": ""
  1217. },
  1218. "require": {
  1219. "php": "^7.1 || ^8.0"
  1220. },
  1221. "require-dev": {
  1222. "phpstan/phpstan": "^0.12.42",
  1223. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1224. "scrutinizer/ocular": "1.6.0",
  1225. "squizlabs/php_codesniffer": "^3.5",
  1226. "vimeo/psalm": "^4.0.0"
  1227. },
  1228. "type": "library",
  1229. "extra": {
  1230. "branch-alias": {
  1231. "dev-main": "3.x-dev"
  1232. }
  1233. },
  1234. "autoload": {
  1235. "psr-4": {
  1236. "Dflydev\\DotAccessData\\": "src/"
  1237. }
  1238. },
  1239. "notification-url": "https://packagist.org/downloads/",
  1240. "license": [
  1241. "MIT"
  1242. ],
  1243. "authors": [
  1244. {
  1245. "name": "Dragonfly Development Inc.",
  1246. "email": "info@dflydev.com",
  1247. "homepage": "http://dflydev.com"
  1248. },
  1249. {
  1250. "name": "Beau Simensen",
  1251. "email": "beau@dflydev.com",
  1252. "homepage": "http://beausimensen.com"
  1253. },
  1254. {
  1255. "name": "Carlos Frutos",
  1256. "email": "carlos@kiwing.it",
  1257. "homepage": "https://github.com/cfrutos"
  1258. },
  1259. {
  1260. "name": "Colin O'Dell",
  1261. "email": "colinodell@gmail.com",
  1262. "homepage": "https://www.colinodell.com"
  1263. }
  1264. ],
  1265. "description": "Given a deep data structure, access data by dot notation.",
  1266. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1267. "keywords": [
  1268. "access",
  1269. "data",
  1270. "dot",
  1271. "notation"
  1272. ],
  1273. "support": {
  1274. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1275. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1276. },
  1277. "time": "2022-10-27T11:44:00+00:00"
  1278. },
  1279. {
  1280. "name": "doctrine/cache",
  1281. "version": "2.2.0",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/doctrine/cache.git",
  1285. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1290. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1291. "shasum": ""
  1292. },
  1293. "require": {
  1294. "php": "~7.1 || ^8.0"
  1295. },
  1296. "conflict": {
  1297. "doctrine/common": ">2.2,<2.4"
  1298. },
  1299. "require-dev": {
  1300. "cache/integration-tests": "dev-master",
  1301. "doctrine/coding-standard": "^9",
  1302. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1303. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1304. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1305. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1306. },
  1307. "type": "library",
  1308. "autoload": {
  1309. "psr-4": {
  1310. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1311. }
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "MIT"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Guilherme Blanco",
  1320. "email": "guilhermeblanco@gmail.com"
  1321. },
  1322. {
  1323. "name": "Roman Borschel",
  1324. "email": "roman@code-factory.org"
  1325. },
  1326. {
  1327. "name": "Benjamin Eberlei",
  1328. "email": "kontakt@beberlei.de"
  1329. },
  1330. {
  1331. "name": "Jonathan Wage",
  1332. "email": "jonwage@gmail.com"
  1333. },
  1334. {
  1335. "name": "Johannes Schmitt",
  1336. "email": "schmittjoh@gmail.com"
  1337. }
  1338. ],
  1339. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1340. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1341. "keywords": [
  1342. "abstraction",
  1343. "apcu",
  1344. "cache",
  1345. "caching",
  1346. "couchdb",
  1347. "memcached",
  1348. "php",
  1349. "redis",
  1350. "xcache"
  1351. ],
  1352. "support": {
  1353. "issues": "https://github.com/doctrine/cache/issues",
  1354. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1355. },
  1356. "funding": [
  1357. {
  1358. "url": "https://www.doctrine-project.org/sponsorship.html",
  1359. "type": "custom"
  1360. },
  1361. {
  1362. "url": "https://www.patreon.com/phpdoctrine",
  1363. "type": "patreon"
  1364. },
  1365. {
  1366. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1367. "type": "tidelift"
  1368. }
  1369. ],
  1370. "time": "2022-05-20T20:07:39+00:00"
  1371. },
  1372. {
  1373. "name": "doctrine/dbal",
  1374. "version": "3.8.4",
  1375. "source": {
  1376. "type": "git",
  1377. "url": "https://github.com/doctrine/dbal.git",
  1378. "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd"
  1379. },
  1380. "dist": {
  1381. "type": "zip",
  1382. "url": "https://api.github.com/repos/doctrine/dbal/zipball/b05e48a745f722801f55408d0dbd8003b403dbbd",
  1383. "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd",
  1384. "shasum": ""
  1385. },
  1386. "require": {
  1387. "composer-runtime-api": "^2",
  1388. "doctrine/cache": "^1.11|^2.0",
  1389. "doctrine/deprecations": "^0.5.3|^1",
  1390. "doctrine/event-manager": "^1|^2",
  1391. "php": "^7.4 || ^8.0",
  1392. "psr/cache": "^1|^2|^3",
  1393. "psr/log": "^1|^2|^3"
  1394. },
  1395. "require-dev": {
  1396. "doctrine/coding-standard": "12.0.0",
  1397. "fig/log-test": "^1",
  1398. "jetbrains/phpstorm-stubs": "2023.1",
  1399. "phpstan/phpstan": "1.10.58",
  1400. "phpstan/phpstan-strict-rules": "^1.5",
  1401. "phpunit/phpunit": "9.6.16",
  1402. "psalm/plugin-phpunit": "0.18.4",
  1403. "slevomat/coding-standard": "8.13.1",
  1404. "squizlabs/php_codesniffer": "3.9.0",
  1405. "symfony/cache": "^5.4|^6.0|^7.0",
  1406. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  1407. "vimeo/psalm": "4.30.0"
  1408. },
  1409. "suggest": {
  1410. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1411. },
  1412. "bin": [
  1413. "bin/doctrine-dbal"
  1414. ],
  1415. "type": "library",
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Doctrine\\DBAL\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Guilherme Blanco",
  1428. "email": "guilhermeblanco@gmail.com"
  1429. },
  1430. {
  1431. "name": "Roman Borschel",
  1432. "email": "roman@code-factory.org"
  1433. },
  1434. {
  1435. "name": "Benjamin Eberlei",
  1436. "email": "kontakt@beberlei.de"
  1437. },
  1438. {
  1439. "name": "Jonathan Wage",
  1440. "email": "jonwage@gmail.com"
  1441. }
  1442. ],
  1443. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1444. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1445. "keywords": [
  1446. "abstraction",
  1447. "database",
  1448. "db2",
  1449. "dbal",
  1450. "mariadb",
  1451. "mssql",
  1452. "mysql",
  1453. "oci8",
  1454. "oracle",
  1455. "pdo",
  1456. "pgsql",
  1457. "postgresql",
  1458. "queryobject",
  1459. "sasql",
  1460. "sql",
  1461. "sqlite",
  1462. "sqlserver",
  1463. "sqlsrv"
  1464. ],
  1465. "support": {
  1466. "issues": "https://github.com/doctrine/dbal/issues",
  1467. "source": "https://github.com/doctrine/dbal/tree/3.8.4"
  1468. },
  1469. "funding": [
  1470. {
  1471. "url": "https://www.doctrine-project.org/sponsorship.html",
  1472. "type": "custom"
  1473. },
  1474. {
  1475. "url": "https://www.patreon.com/phpdoctrine",
  1476. "type": "patreon"
  1477. },
  1478. {
  1479. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1480. "type": "tidelift"
  1481. }
  1482. ],
  1483. "time": "2024-04-25T07:04:44+00:00"
  1484. },
  1485. {
  1486. "name": "doctrine/deprecations",
  1487. "version": "1.1.3",
  1488. "source": {
  1489. "type": "git",
  1490. "url": "https://github.com/doctrine/deprecations.git",
  1491. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1492. },
  1493. "dist": {
  1494. "type": "zip",
  1495. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1496. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1497. "shasum": ""
  1498. },
  1499. "require": {
  1500. "php": "^7.1 || ^8.0"
  1501. },
  1502. "require-dev": {
  1503. "doctrine/coding-standard": "^9",
  1504. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1505. "phpstan/phpstan-phpunit": "^1.0",
  1506. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1507. "psalm/plugin-phpunit": "0.18.4",
  1508. "psr/log": "^1 || ^2 || ^3",
  1509. "vimeo/psalm": "4.30.0 || 5.12.0"
  1510. },
  1511. "suggest": {
  1512. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1513. },
  1514. "type": "library",
  1515. "autoload": {
  1516. "psr-4": {
  1517. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1518. }
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1525. "homepage": "https://www.doctrine-project.org/",
  1526. "support": {
  1527. "issues": "https://github.com/doctrine/deprecations/issues",
  1528. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1529. },
  1530. "time": "2024-01-30T19:34:25+00:00"
  1531. },
  1532. {
  1533. "name": "doctrine/event-manager",
  1534. "version": "2.0.0",
  1535. "source": {
  1536. "type": "git",
  1537. "url": "https://github.com/doctrine/event-manager.git",
  1538. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  1539. },
  1540. "dist": {
  1541. "type": "zip",
  1542. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1543. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1544. "shasum": ""
  1545. },
  1546. "require": {
  1547. "php": "^8.1"
  1548. },
  1549. "conflict": {
  1550. "doctrine/common": "<2.9"
  1551. },
  1552. "require-dev": {
  1553. "doctrine/coding-standard": "^10",
  1554. "phpstan/phpstan": "^1.8.8",
  1555. "phpunit/phpunit": "^9.5",
  1556. "vimeo/psalm": "^4.28"
  1557. },
  1558. "type": "library",
  1559. "autoload": {
  1560. "psr-4": {
  1561. "Doctrine\\Common\\": "src"
  1562. }
  1563. },
  1564. "notification-url": "https://packagist.org/downloads/",
  1565. "license": [
  1566. "MIT"
  1567. ],
  1568. "authors": [
  1569. {
  1570. "name": "Guilherme Blanco",
  1571. "email": "guilhermeblanco@gmail.com"
  1572. },
  1573. {
  1574. "name": "Roman Borschel",
  1575. "email": "roman@code-factory.org"
  1576. },
  1577. {
  1578. "name": "Benjamin Eberlei",
  1579. "email": "kontakt@beberlei.de"
  1580. },
  1581. {
  1582. "name": "Jonathan Wage",
  1583. "email": "jonwage@gmail.com"
  1584. },
  1585. {
  1586. "name": "Johannes Schmitt",
  1587. "email": "schmittjoh@gmail.com"
  1588. },
  1589. {
  1590. "name": "Marco Pivetta",
  1591. "email": "ocramius@gmail.com"
  1592. }
  1593. ],
  1594. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1595. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1596. "keywords": [
  1597. "event",
  1598. "event dispatcher",
  1599. "event manager",
  1600. "event system",
  1601. "events"
  1602. ],
  1603. "support": {
  1604. "issues": "https://github.com/doctrine/event-manager/issues",
  1605. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  1606. },
  1607. "funding": [
  1608. {
  1609. "url": "https://www.doctrine-project.org/sponsorship.html",
  1610. "type": "custom"
  1611. },
  1612. {
  1613. "url": "https://www.patreon.com/phpdoctrine",
  1614. "type": "patreon"
  1615. },
  1616. {
  1617. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1618. "type": "tidelift"
  1619. }
  1620. ],
  1621. "time": "2022-10-12T20:59:15+00:00"
  1622. },
  1623. {
  1624. "name": "doctrine/inflector",
  1625. "version": "2.0.10",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/doctrine/inflector.git",
  1629. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1634. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "php": "^7.2 || ^8.0"
  1639. },
  1640. "require-dev": {
  1641. "doctrine/coding-standard": "^11.0",
  1642. "phpstan/phpstan": "^1.8",
  1643. "phpstan/phpstan-phpunit": "^1.1",
  1644. "phpstan/phpstan-strict-rules": "^1.3",
  1645. "phpunit/phpunit": "^8.5 || ^9.5",
  1646. "vimeo/psalm": "^4.25 || ^5.4"
  1647. },
  1648. "type": "library",
  1649. "autoload": {
  1650. "psr-4": {
  1651. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1652. }
  1653. },
  1654. "notification-url": "https://packagist.org/downloads/",
  1655. "license": [
  1656. "MIT"
  1657. ],
  1658. "authors": [
  1659. {
  1660. "name": "Guilherme Blanco",
  1661. "email": "guilhermeblanco@gmail.com"
  1662. },
  1663. {
  1664. "name": "Roman Borschel",
  1665. "email": "roman@code-factory.org"
  1666. },
  1667. {
  1668. "name": "Benjamin Eberlei",
  1669. "email": "kontakt@beberlei.de"
  1670. },
  1671. {
  1672. "name": "Jonathan Wage",
  1673. "email": "jonwage@gmail.com"
  1674. },
  1675. {
  1676. "name": "Johannes Schmitt",
  1677. "email": "schmittjoh@gmail.com"
  1678. }
  1679. ],
  1680. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1681. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1682. "keywords": [
  1683. "inflection",
  1684. "inflector",
  1685. "lowercase",
  1686. "manipulation",
  1687. "php",
  1688. "plural",
  1689. "singular",
  1690. "strings",
  1691. "uppercase",
  1692. "words"
  1693. ],
  1694. "support": {
  1695. "issues": "https://github.com/doctrine/inflector/issues",
  1696. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1697. },
  1698. "funding": [
  1699. {
  1700. "url": "https://www.doctrine-project.org/sponsorship.html",
  1701. "type": "custom"
  1702. },
  1703. {
  1704. "url": "https://www.patreon.com/phpdoctrine",
  1705. "type": "patreon"
  1706. },
  1707. {
  1708. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1709. "type": "tidelift"
  1710. }
  1711. ],
  1712. "time": "2024-02-18T20:23:39+00:00"
  1713. },
  1714. {
  1715. "name": "doctrine/lexer",
  1716. "version": "3.0.1",
  1717. "source": {
  1718. "type": "git",
  1719. "url": "https://github.com/doctrine/lexer.git",
  1720. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1721. },
  1722. "dist": {
  1723. "type": "zip",
  1724. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1725. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1726. "shasum": ""
  1727. },
  1728. "require": {
  1729. "php": "^8.1"
  1730. },
  1731. "require-dev": {
  1732. "doctrine/coding-standard": "^12",
  1733. "phpstan/phpstan": "^1.10",
  1734. "phpunit/phpunit": "^10.5",
  1735. "psalm/plugin-phpunit": "^0.18.3",
  1736. "vimeo/psalm": "^5.21"
  1737. },
  1738. "type": "library",
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Doctrine\\Common\\Lexer\\": "src"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Guilherme Blanco",
  1751. "email": "guilhermeblanco@gmail.com"
  1752. },
  1753. {
  1754. "name": "Roman Borschel",
  1755. "email": "roman@code-factory.org"
  1756. },
  1757. {
  1758. "name": "Johannes Schmitt",
  1759. "email": "schmittjoh@gmail.com"
  1760. }
  1761. ],
  1762. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1763. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1764. "keywords": [
  1765. "annotations",
  1766. "docblock",
  1767. "lexer",
  1768. "parser",
  1769. "php"
  1770. ],
  1771. "support": {
  1772. "issues": "https://github.com/doctrine/lexer/issues",
  1773. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1774. },
  1775. "funding": [
  1776. {
  1777. "url": "https://www.doctrine-project.org/sponsorship.html",
  1778. "type": "custom"
  1779. },
  1780. {
  1781. "url": "https://www.patreon.com/phpdoctrine",
  1782. "type": "patreon"
  1783. },
  1784. {
  1785. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1786. "type": "tidelift"
  1787. }
  1788. ],
  1789. "time": "2024-02-05T11:56:58+00:00"
  1790. },
  1791. {
  1792. "name": "dompdf/dompdf",
  1793. "version": "v2.0.7",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/dompdf/dompdf.git",
  1797. "reference": "ab0123052b42ad0867348f25df8c228f1ece8f14"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/ab0123052b42ad0867348f25df8c228f1ece8f14",
  1802. "reference": "ab0123052b42ad0867348f25df8c228f1ece8f14",
  1803. "shasum": ""
  1804. },
  1805. "require": {
  1806. "ext-dom": "*",
  1807. "ext-mbstring": "*",
  1808. "masterminds/html5": "^2.0",
  1809. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  1810. "phenx/php-svg-lib": ">=0.5.2 <1.0.0",
  1811. "php": "^7.1 || ^8.0"
  1812. },
  1813. "require-dev": {
  1814. "ext-json": "*",
  1815. "ext-zip": "*",
  1816. "mockery/mockery": "^1.3",
  1817. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  1818. "squizlabs/php_codesniffer": "^3.5"
  1819. },
  1820. "suggest": {
  1821. "ext-gd": "Needed to process images",
  1822. "ext-gmagick": "Improves image processing performance",
  1823. "ext-imagick": "Improves image processing performance",
  1824. "ext-zlib": "Needed for pdf stream compression"
  1825. },
  1826. "type": "library",
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Dompdf\\": "src/"
  1830. },
  1831. "classmap": [
  1832. "lib/"
  1833. ]
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "LGPL-2.1"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "The Dompdf Community",
  1842. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  1843. }
  1844. ],
  1845. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  1846. "homepage": "https://github.com/dompdf/dompdf",
  1847. "support": {
  1848. "issues": "https://github.com/dompdf/dompdf/issues",
  1849. "source": "https://github.com/dompdf/dompdf/tree/v2.0.7"
  1850. },
  1851. "time": "2024-04-15T12:40:33+00:00"
  1852. },
  1853. {
  1854. "name": "dragonmantank/cron-expression",
  1855. "version": "v3.3.3",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/dragonmantank/cron-expression.git",
  1859. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1864. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "php": "^7.2|^8.0",
  1869. "webmozart/assert": "^1.0"
  1870. },
  1871. "replace": {
  1872. "mtdowling/cron-expression": "^1.0"
  1873. },
  1874. "require-dev": {
  1875. "phpstan/extension-installer": "^1.0",
  1876. "phpstan/phpstan": "^1.0",
  1877. "phpstan/phpstan-webmozart-assert": "^1.0",
  1878. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1879. },
  1880. "type": "library",
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Cron\\": "src/Cron/"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Chris Tankersley",
  1893. "email": "chris@ctankersley.com",
  1894. "homepage": "https://github.com/dragonmantank"
  1895. }
  1896. ],
  1897. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1898. "keywords": [
  1899. "cron",
  1900. "schedule"
  1901. ],
  1902. "support": {
  1903. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1904. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1905. },
  1906. "funding": [
  1907. {
  1908. "url": "https://github.com/dragonmantank",
  1909. "type": "github"
  1910. }
  1911. ],
  1912. "time": "2023-08-10T19:36:49+00:00"
  1913. },
  1914. {
  1915. "name": "egulias/email-validator",
  1916. "version": "4.0.2",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/egulias/EmailValidator.git",
  1920. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1925. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1926. "shasum": ""
  1927. },
  1928. "require": {
  1929. "doctrine/lexer": "^2.0 || ^3.0",
  1930. "php": ">=8.1",
  1931. "symfony/polyfill-intl-idn": "^1.26"
  1932. },
  1933. "require-dev": {
  1934. "phpunit/phpunit": "^10.2",
  1935. "vimeo/psalm": "^5.12"
  1936. },
  1937. "suggest": {
  1938. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1939. },
  1940. "type": "library",
  1941. "extra": {
  1942. "branch-alias": {
  1943. "dev-master": "4.0.x-dev"
  1944. }
  1945. },
  1946. "autoload": {
  1947. "psr-4": {
  1948. "Egulias\\EmailValidator\\": "src"
  1949. }
  1950. },
  1951. "notification-url": "https://packagist.org/downloads/",
  1952. "license": [
  1953. "MIT"
  1954. ],
  1955. "authors": [
  1956. {
  1957. "name": "Eduardo Gulias Davis"
  1958. }
  1959. ],
  1960. "description": "A library for validating emails against several RFCs",
  1961. "homepage": "https://github.com/egulias/EmailValidator",
  1962. "keywords": [
  1963. "email",
  1964. "emailvalidation",
  1965. "emailvalidator",
  1966. "validation",
  1967. "validator"
  1968. ],
  1969. "support": {
  1970. "issues": "https://github.com/egulias/EmailValidator/issues",
  1971. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1972. },
  1973. "funding": [
  1974. {
  1975. "url": "https://github.com/egulias",
  1976. "type": "github"
  1977. }
  1978. ],
  1979. "time": "2023-10-06T06:47:41+00:00"
  1980. },
  1981. {
  1982. "name": "filament/actions",
  1983. "version": "v3.2.71",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/filamentphp/actions.git",
  1987. "reference": "d3150c3b3f7b9680283194b4a5b362117cd4c4da"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/filamentphp/actions/zipball/d3150c3b3f7b9680283194b4a5b362117cd4c4da",
  1992. "reference": "d3150c3b3f7b9680283194b4a5b362117cd4c4da",
  1993. "shasum": ""
  1994. },
  1995. "require": {
  1996. "anourvalar/eloquent-serialize": "^1.2",
  1997. "filament/forms": "self.version",
  1998. "filament/infolists": "self.version",
  1999. "filament/notifications": "self.version",
  2000. "filament/support": "self.version",
  2001. "illuminate/contracts": "^10.45|^11.0",
  2002. "illuminate/database": "^10.45|^11.0",
  2003. "illuminate/support": "^10.45|^11.0",
  2004. "league/csv": "^9.14",
  2005. "openspout/openspout": "^4.23",
  2006. "php": "^8.1",
  2007. "spatie/laravel-package-tools": "^1.9"
  2008. },
  2009. "type": "library",
  2010. "extra": {
  2011. "laravel": {
  2012. "providers": [
  2013. "Filament\\Actions\\ActionsServiceProvider"
  2014. ]
  2015. }
  2016. },
  2017. "autoload": {
  2018. "psr-4": {
  2019. "Filament\\Actions\\": "src"
  2020. }
  2021. },
  2022. "notification-url": "https://packagist.org/downloads/",
  2023. "license": [
  2024. "MIT"
  2025. ],
  2026. "description": "Easily add beautiful action modals to any Livewire component.",
  2027. "homepage": "https://github.com/filamentphp/filament",
  2028. "support": {
  2029. "issues": "https://github.com/filamentphp/filament/issues",
  2030. "source": "https://github.com/filamentphp/filament"
  2031. },
  2032. "time": "2024-04-21T22:23:26+00:00"
  2033. },
  2034. {
  2035. "name": "filament/filament",
  2036. "version": "v3.2.71",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/filamentphp/panels.git",
  2040. "reference": "e00510fb4edc73b027f784317381f791b47c22de"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/filamentphp/panels/zipball/e00510fb4edc73b027f784317381f791b47c22de",
  2045. "reference": "e00510fb4edc73b027f784317381f791b47c22de",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  2050. "filament/actions": "self.version",
  2051. "filament/forms": "self.version",
  2052. "filament/infolists": "self.version",
  2053. "filament/notifications": "self.version",
  2054. "filament/support": "self.version",
  2055. "filament/tables": "self.version",
  2056. "filament/widgets": "self.version",
  2057. "illuminate/auth": "^10.45|^11.0",
  2058. "illuminate/console": "^10.45|^11.0",
  2059. "illuminate/contracts": "^10.45|^11.0",
  2060. "illuminate/cookie": "^10.45|^11.0",
  2061. "illuminate/database": "^10.45|^11.0",
  2062. "illuminate/http": "^10.45|^11.0",
  2063. "illuminate/routing": "^10.45|^11.0",
  2064. "illuminate/session": "^10.45|^11.0",
  2065. "illuminate/support": "^10.45|^11.0",
  2066. "illuminate/view": "^10.45|^11.0",
  2067. "php": "^8.1",
  2068. "spatie/laravel-package-tools": "^1.9"
  2069. },
  2070. "type": "library",
  2071. "extra": {
  2072. "laravel": {
  2073. "providers": [
  2074. "Filament\\FilamentServiceProvider"
  2075. ]
  2076. }
  2077. },
  2078. "autoload": {
  2079. "files": [
  2080. "src/global_helpers.php",
  2081. "src/helpers.php"
  2082. ],
  2083. "psr-4": {
  2084. "Filament\\": "src"
  2085. }
  2086. },
  2087. "notification-url": "https://packagist.org/downloads/",
  2088. "license": [
  2089. "MIT"
  2090. ],
  2091. "description": "A collection of full-stack components for accelerated Laravel app development.",
  2092. "homepage": "https://github.com/filamentphp/filament",
  2093. "support": {
  2094. "issues": "https://github.com/filamentphp/filament/issues",
  2095. "source": "https://github.com/filamentphp/filament"
  2096. },
  2097. "time": "2024-04-21T22:24:02+00:00"
  2098. },
  2099. {
  2100. "name": "filament/forms",
  2101. "version": "v3.2.71",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/filamentphp/forms.git",
  2105. "reference": "eea1a3ec87bbe62d470dd0a26d9f4b8ef9cb5d39"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/filamentphp/forms/zipball/eea1a3ec87bbe62d470dd0a26d9f4b8ef9cb5d39",
  2110. "reference": "eea1a3ec87bbe62d470dd0a26d9f4b8ef9cb5d39",
  2111. "shasum": ""
  2112. },
  2113. "require": {
  2114. "danharrin/date-format-converter": "^0.3",
  2115. "filament/actions": "self.version",
  2116. "filament/support": "self.version",
  2117. "illuminate/console": "^10.45|^11.0",
  2118. "illuminate/contracts": "^10.45|^11.0",
  2119. "illuminate/database": "^10.45|^11.0",
  2120. "illuminate/filesystem": "^10.45|^11.0",
  2121. "illuminate/support": "^10.45|^11.0",
  2122. "illuminate/validation": "^10.45|^11.0",
  2123. "illuminate/view": "^10.45|^11.0",
  2124. "php": "^8.1",
  2125. "spatie/laravel-package-tools": "^1.9"
  2126. },
  2127. "type": "library",
  2128. "extra": {
  2129. "laravel": {
  2130. "providers": [
  2131. "Filament\\Forms\\FormsServiceProvider"
  2132. ]
  2133. }
  2134. },
  2135. "autoload": {
  2136. "files": [
  2137. "src/helpers.php"
  2138. ],
  2139. "psr-4": {
  2140. "Filament\\Forms\\": "src"
  2141. }
  2142. },
  2143. "notification-url": "https://packagist.org/downloads/",
  2144. "license": [
  2145. "MIT"
  2146. ],
  2147. "description": "Easily add beautiful forms to any Livewire component.",
  2148. "homepage": "https://github.com/filamentphp/filament",
  2149. "support": {
  2150. "issues": "https://github.com/filamentphp/filament/issues",
  2151. "source": "https://github.com/filamentphp/filament"
  2152. },
  2153. "time": "2024-04-21T22:23:42+00:00"
  2154. },
  2155. {
  2156. "name": "filament/infolists",
  2157. "version": "v3.2.71",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/filamentphp/infolists.git",
  2161. "reference": "d205fbeacc7faf4430abb05c49334a64fb4d84ae"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/d205fbeacc7faf4430abb05c49334a64fb4d84ae",
  2166. "reference": "d205fbeacc7faf4430abb05c49334a64fb4d84ae",
  2167. "shasum": ""
  2168. },
  2169. "require": {
  2170. "filament/actions": "self.version",
  2171. "filament/support": "self.version",
  2172. "illuminate/console": "^10.45|^11.0",
  2173. "illuminate/contracts": "^10.45|^11.0",
  2174. "illuminate/database": "^10.45|^11.0",
  2175. "illuminate/filesystem": "^10.45|^11.0",
  2176. "illuminate/support": "^10.45|^11.0",
  2177. "illuminate/view": "^10.45|^11.0",
  2178. "php": "^8.1",
  2179. "spatie/laravel-package-tools": "^1.9"
  2180. },
  2181. "type": "library",
  2182. "extra": {
  2183. "laravel": {
  2184. "providers": [
  2185. "Filament\\Infolists\\InfolistsServiceProvider"
  2186. ]
  2187. }
  2188. },
  2189. "autoload": {
  2190. "psr-4": {
  2191. "Filament\\Infolists\\": "src"
  2192. }
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "MIT"
  2197. ],
  2198. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  2199. "homepage": "https://github.com/filamentphp/filament",
  2200. "support": {
  2201. "issues": "https://github.com/filamentphp/filament/issues",
  2202. "source": "https://github.com/filamentphp/filament"
  2203. },
  2204. "time": "2024-04-18T11:26:13+00:00"
  2205. },
  2206. {
  2207. "name": "filament/notifications",
  2208. "version": "v3.2.71",
  2209. "source": {
  2210. "type": "git",
  2211. "url": "https://github.com/filamentphp/notifications.git",
  2212. "reference": "dcc47b498c2a5a89296c2f46da651a8aa5e0bf55"
  2213. },
  2214. "dist": {
  2215. "type": "zip",
  2216. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/dcc47b498c2a5a89296c2f46da651a8aa5e0bf55",
  2217. "reference": "dcc47b498c2a5a89296c2f46da651a8aa5e0bf55",
  2218. "shasum": ""
  2219. },
  2220. "require": {
  2221. "filament/actions": "self.version",
  2222. "filament/support": "self.version",
  2223. "illuminate/contracts": "^10.45|^11.0",
  2224. "illuminate/filesystem": "^10.45|^11.0",
  2225. "illuminate/notifications": "^10.45|^11.0",
  2226. "illuminate/support": "^10.45|^11.0",
  2227. "php": "^8.1",
  2228. "spatie/laravel-package-tools": "^1.9"
  2229. },
  2230. "type": "library",
  2231. "extra": {
  2232. "laravel": {
  2233. "providers": [
  2234. "Filament\\Notifications\\NotificationsServiceProvider"
  2235. ]
  2236. }
  2237. },
  2238. "autoload": {
  2239. "files": [
  2240. "src/Testing/Autoload.php"
  2241. ],
  2242. "psr-4": {
  2243. "Filament\\Notifications\\": "src"
  2244. }
  2245. },
  2246. "notification-url": "https://packagist.org/downloads/",
  2247. "license": [
  2248. "MIT"
  2249. ],
  2250. "description": "Easily add beautiful notifications to any Livewire app.",
  2251. "homepage": "https://github.com/filamentphp/filament",
  2252. "support": {
  2253. "issues": "https://github.com/filamentphp/filament/issues",
  2254. "source": "https://github.com/filamentphp/filament"
  2255. },
  2256. "time": "2024-04-18T11:26:15+00:00"
  2257. },
  2258. {
  2259. "name": "filament/support",
  2260. "version": "v3.2.71",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/filamentphp/support.git",
  2264. "reference": "594f8d38e365578b6d91455c5beade6c54def5a4"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/filamentphp/support/zipball/594f8d38e365578b6d91455c5beade6c54def5a4",
  2269. "reference": "594f8d38e365578b6d91455c5beade6c54def5a4",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "blade-ui-kit/blade-heroicons": "^2.2.1",
  2274. "doctrine/dbal": "^3.2",
  2275. "ext-intl": "*",
  2276. "illuminate/contracts": "^10.45|^11.0",
  2277. "illuminate/support": "^10.45|^11.0",
  2278. "illuminate/view": "^10.45|^11.0",
  2279. "livewire/livewire": "^3.4.10",
  2280. "php": "^8.1",
  2281. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2282. "spatie/color": "^1.5",
  2283. "spatie/invade": "^1.0|^2.0",
  2284. "spatie/laravel-package-tools": "^1.9",
  2285. "symfony/console": "^6.0|^7.0",
  2286. "symfony/html-sanitizer": "^6.1|^7.0"
  2287. },
  2288. "type": "library",
  2289. "extra": {
  2290. "laravel": {
  2291. "providers": [
  2292. "Filament\\Support\\SupportServiceProvider"
  2293. ]
  2294. }
  2295. },
  2296. "autoload": {
  2297. "files": [
  2298. "src/helpers.php"
  2299. ],
  2300. "psr-4": {
  2301. "Filament\\Support\\": "src"
  2302. }
  2303. },
  2304. "notification-url": "https://packagist.org/downloads/",
  2305. "license": [
  2306. "MIT"
  2307. ],
  2308. "description": "Core helper methods and foundation code for all Filament packages.",
  2309. "homepage": "https://github.com/filamentphp/filament",
  2310. "support": {
  2311. "issues": "https://github.com/filamentphp/filament/issues",
  2312. "source": "https://github.com/filamentphp/filament"
  2313. },
  2314. "time": "2024-04-21T22:24:20+00:00"
  2315. },
  2316. {
  2317. "name": "filament/tables",
  2318. "version": "v3.2.71",
  2319. "source": {
  2320. "type": "git",
  2321. "url": "https://github.com/filamentphp/tables.git",
  2322. "reference": "b3bc1d2b5947562eb64748e6d3f59ed1073effe7"
  2323. },
  2324. "dist": {
  2325. "type": "zip",
  2326. "url": "https://api.github.com/repos/filamentphp/tables/zipball/b3bc1d2b5947562eb64748e6d3f59ed1073effe7",
  2327. "reference": "b3bc1d2b5947562eb64748e6d3f59ed1073effe7",
  2328. "shasum": ""
  2329. },
  2330. "require": {
  2331. "filament/actions": "self.version",
  2332. "filament/forms": "self.version",
  2333. "filament/support": "self.version",
  2334. "illuminate/console": "^10.45|^11.0",
  2335. "illuminate/contracts": "^10.45|^11.0",
  2336. "illuminate/database": "^10.45|^11.0",
  2337. "illuminate/filesystem": "^10.45|^11.0",
  2338. "illuminate/support": "^10.45|^11.0",
  2339. "illuminate/view": "^10.45|^11.0",
  2340. "kirschbaum-development/eloquent-power-joins": "^3.0",
  2341. "php": "^8.1",
  2342. "spatie/laravel-package-tools": "^1.9"
  2343. },
  2344. "type": "library",
  2345. "extra": {
  2346. "laravel": {
  2347. "providers": [
  2348. "Filament\\Tables\\TablesServiceProvider"
  2349. ]
  2350. }
  2351. },
  2352. "autoload": {
  2353. "psr-4": {
  2354. "Filament\\Tables\\": "src"
  2355. }
  2356. },
  2357. "notification-url": "https://packagist.org/downloads/",
  2358. "license": [
  2359. "MIT"
  2360. ],
  2361. "description": "Easily add beautiful tables to any Livewire component.",
  2362. "homepage": "https://github.com/filamentphp/filament",
  2363. "support": {
  2364. "issues": "https://github.com/filamentphp/filament/issues",
  2365. "source": "https://github.com/filamentphp/filament"
  2366. },
  2367. "time": "2024-04-21T22:24:20+00:00"
  2368. },
  2369. {
  2370. "name": "filament/widgets",
  2371. "version": "v3.2.71",
  2372. "source": {
  2373. "type": "git",
  2374. "url": "https://github.com/filamentphp/widgets.git",
  2375. "reference": "bbc450b18cf37c8afa0b81f6e7f9ec6927c67382"
  2376. },
  2377. "dist": {
  2378. "type": "zip",
  2379. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/bbc450b18cf37c8afa0b81f6e7f9ec6927c67382",
  2380. "reference": "bbc450b18cf37c8afa0b81f6e7f9ec6927c67382",
  2381. "shasum": ""
  2382. },
  2383. "require": {
  2384. "filament/support": "self.version",
  2385. "php": "^8.1",
  2386. "spatie/laravel-package-tools": "^1.9"
  2387. },
  2388. "type": "library",
  2389. "extra": {
  2390. "laravel": {
  2391. "providers": [
  2392. "Filament\\Widgets\\WidgetsServiceProvider"
  2393. ]
  2394. }
  2395. },
  2396. "autoload": {
  2397. "psr-4": {
  2398. "Filament\\Widgets\\": "src"
  2399. }
  2400. },
  2401. "notification-url": "https://packagist.org/downloads/",
  2402. "license": [
  2403. "MIT"
  2404. ],
  2405. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2406. "homepage": "https://github.com/filamentphp/filament",
  2407. "support": {
  2408. "issues": "https://github.com/filamentphp/filament/issues",
  2409. "source": "https://github.com/filamentphp/filament"
  2410. },
  2411. "time": "2024-04-05T21:55:38+00:00"
  2412. },
  2413. {
  2414. "name": "firebase/php-jwt",
  2415. "version": "v6.10.0",
  2416. "source": {
  2417. "type": "git",
  2418. "url": "https://github.com/firebase/php-jwt.git",
  2419. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  2420. },
  2421. "dist": {
  2422. "type": "zip",
  2423. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  2424. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  2425. "shasum": ""
  2426. },
  2427. "require": {
  2428. "php": "^7.4||^8.0"
  2429. },
  2430. "require-dev": {
  2431. "guzzlehttp/guzzle": "^6.5||^7.4",
  2432. "phpspec/prophecy-phpunit": "^2.0",
  2433. "phpunit/phpunit": "^9.5",
  2434. "psr/cache": "^1.0||^2.0",
  2435. "psr/http-client": "^1.0",
  2436. "psr/http-factory": "^1.0"
  2437. },
  2438. "suggest": {
  2439. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2440. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2441. },
  2442. "type": "library",
  2443. "autoload": {
  2444. "psr-4": {
  2445. "Firebase\\JWT\\": "src"
  2446. }
  2447. },
  2448. "notification-url": "https://packagist.org/downloads/",
  2449. "license": [
  2450. "BSD-3-Clause"
  2451. ],
  2452. "authors": [
  2453. {
  2454. "name": "Neuman Vong",
  2455. "email": "neuman+pear@twilio.com",
  2456. "role": "Developer"
  2457. },
  2458. {
  2459. "name": "Anant Narayanan",
  2460. "email": "anant@php.net",
  2461. "role": "Developer"
  2462. }
  2463. ],
  2464. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2465. "homepage": "https://github.com/firebase/php-jwt",
  2466. "keywords": [
  2467. "jwt",
  2468. "php"
  2469. ],
  2470. "support": {
  2471. "issues": "https://github.com/firebase/php-jwt/issues",
  2472. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  2473. },
  2474. "time": "2023-12-01T16:26:39+00:00"
  2475. },
  2476. {
  2477. "name": "fruitcake/php-cors",
  2478. "version": "v1.3.0",
  2479. "source": {
  2480. "type": "git",
  2481. "url": "https://github.com/fruitcake/php-cors.git",
  2482. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2483. },
  2484. "dist": {
  2485. "type": "zip",
  2486. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2487. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2488. "shasum": ""
  2489. },
  2490. "require": {
  2491. "php": "^7.4|^8.0",
  2492. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2493. },
  2494. "require-dev": {
  2495. "phpstan/phpstan": "^1.4",
  2496. "phpunit/phpunit": "^9",
  2497. "squizlabs/php_codesniffer": "^3.5"
  2498. },
  2499. "type": "library",
  2500. "extra": {
  2501. "branch-alias": {
  2502. "dev-master": "1.2-dev"
  2503. }
  2504. },
  2505. "autoload": {
  2506. "psr-4": {
  2507. "Fruitcake\\Cors\\": "src/"
  2508. }
  2509. },
  2510. "notification-url": "https://packagist.org/downloads/",
  2511. "license": [
  2512. "MIT"
  2513. ],
  2514. "authors": [
  2515. {
  2516. "name": "Fruitcake",
  2517. "homepage": "https://fruitcake.nl"
  2518. },
  2519. {
  2520. "name": "Barryvdh",
  2521. "email": "barryvdh@gmail.com"
  2522. }
  2523. ],
  2524. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2525. "homepage": "https://github.com/fruitcake/php-cors",
  2526. "keywords": [
  2527. "cors",
  2528. "laravel",
  2529. "symfony"
  2530. ],
  2531. "support": {
  2532. "issues": "https://github.com/fruitcake/php-cors/issues",
  2533. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2534. },
  2535. "funding": [
  2536. {
  2537. "url": "https://fruitcake.nl",
  2538. "type": "custom"
  2539. },
  2540. {
  2541. "url": "https://github.com/barryvdh",
  2542. "type": "github"
  2543. }
  2544. ],
  2545. "time": "2023-10-12T05:21:21+00:00"
  2546. },
  2547. {
  2548. "name": "graham-campbell/result-type",
  2549. "version": "v1.1.2",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2553. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2558. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2559. "shasum": ""
  2560. },
  2561. "require": {
  2562. "php": "^7.2.5 || ^8.0",
  2563. "phpoption/phpoption": "^1.9.2"
  2564. },
  2565. "require-dev": {
  2566. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  2567. },
  2568. "type": "library",
  2569. "autoload": {
  2570. "psr-4": {
  2571. "GrahamCampbell\\ResultType\\": "src/"
  2572. }
  2573. },
  2574. "notification-url": "https://packagist.org/downloads/",
  2575. "license": [
  2576. "MIT"
  2577. ],
  2578. "authors": [
  2579. {
  2580. "name": "Graham Campbell",
  2581. "email": "hello@gjcampbell.co.uk",
  2582. "homepage": "https://github.com/GrahamCampbell"
  2583. }
  2584. ],
  2585. "description": "An Implementation Of The Result Type",
  2586. "keywords": [
  2587. "Graham Campbell",
  2588. "GrahamCampbell",
  2589. "Result Type",
  2590. "Result-Type",
  2591. "result"
  2592. ],
  2593. "support": {
  2594. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2595. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  2596. },
  2597. "funding": [
  2598. {
  2599. "url": "https://github.com/GrahamCampbell",
  2600. "type": "github"
  2601. },
  2602. {
  2603. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2604. "type": "tidelift"
  2605. }
  2606. ],
  2607. "time": "2023-11-12T22:16:48+00:00"
  2608. },
  2609. {
  2610. "name": "guava/filament-clusters",
  2611. "version": "1.2.0",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2615. "reference": "b9bd5a413e8f392653c06e77acb19c20b6a26924"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/b9bd5a413e8f392653c06e77acb19c20b6a26924",
  2620. "reference": "b9bd5a413e8f392653c06e77acb19c20b6a26924",
  2621. "shasum": ""
  2622. },
  2623. "require": {
  2624. "filament/filament": "^3.0",
  2625. "illuminate/contracts": "^10.0 | ^11.0",
  2626. "php": "^8.1",
  2627. "spatie/laravel-package-tools": "^1.14.0"
  2628. },
  2629. "require-dev": {
  2630. "laravel/pint": "^1.0",
  2631. "nunomaduro/collision": "^7.8",
  2632. "nunomaduro/larastan": "^2.0.1",
  2633. "orchestra/testbench": "^8.8",
  2634. "pestphp/pest": "^2.0",
  2635. "pestphp/pest-plugin-arch": "^2.0",
  2636. "pestphp/pest-plugin-laravel": "^2.0",
  2637. "phpstan/extension-installer": "^1.1",
  2638. "phpstan/phpstan-deprecation-rules": "^1.0",
  2639. "phpstan/phpstan-phpunit": "^1.0"
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "laravel": {
  2644. "providers": [
  2645. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2646. ]
  2647. }
  2648. },
  2649. "autoload": {
  2650. "psr-4": {
  2651. "Guava\\FilamentClusters\\": "src/"
  2652. }
  2653. },
  2654. "notification-url": "https://packagist.org/downloads/",
  2655. "license": [
  2656. "MIT"
  2657. ],
  2658. "authors": [
  2659. {
  2660. "name": "Lukas Frey",
  2661. "email": "lukas.frey@guava.cz",
  2662. "role": "Developer"
  2663. }
  2664. ],
  2665. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2666. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2667. "keywords": [
  2668. "Guava",
  2669. "filament-clusters",
  2670. "laravel"
  2671. ],
  2672. "support": {
  2673. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2674. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.2.0"
  2675. },
  2676. "funding": [
  2677. {
  2678. "url": "https://github.com/GuavaCZ",
  2679. "type": "github"
  2680. }
  2681. ],
  2682. "time": "2024-03-15T12:43:01+00:00"
  2683. },
  2684. {
  2685. "name": "guzzlehttp/guzzle",
  2686. "version": "7.8.1",
  2687. "source": {
  2688. "type": "git",
  2689. "url": "https://github.com/guzzle/guzzle.git",
  2690. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  2691. },
  2692. "dist": {
  2693. "type": "zip",
  2694. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  2695. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  2696. "shasum": ""
  2697. },
  2698. "require": {
  2699. "ext-json": "*",
  2700. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  2701. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  2702. "php": "^7.2.5 || ^8.0",
  2703. "psr/http-client": "^1.0",
  2704. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2705. },
  2706. "provide": {
  2707. "psr/http-client-implementation": "1.0"
  2708. },
  2709. "require-dev": {
  2710. "bamarni/composer-bin-plugin": "^1.8.2",
  2711. "ext-curl": "*",
  2712. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  2713. "php-http/message-factory": "^1.1",
  2714. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2715. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2716. },
  2717. "suggest": {
  2718. "ext-curl": "Required for CURL handler support",
  2719. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2720. "psr/log": "Required for using the Log middleware"
  2721. },
  2722. "type": "library",
  2723. "extra": {
  2724. "bamarni-bin": {
  2725. "bin-links": true,
  2726. "forward-command": false
  2727. }
  2728. },
  2729. "autoload": {
  2730. "files": [
  2731. "src/functions_include.php"
  2732. ],
  2733. "psr-4": {
  2734. "GuzzleHttp\\": "src/"
  2735. }
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "authors": [
  2742. {
  2743. "name": "Graham Campbell",
  2744. "email": "hello@gjcampbell.co.uk",
  2745. "homepage": "https://github.com/GrahamCampbell"
  2746. },
  2747. {
  2748. "name": "Michael Dowling",
  2749. "email": "mtdowling@gmail.com",
  2750. "homepage": "https://github.com/mtdowling"
  2751. },
  2752. {
  2753. "name": "Jeremy Lindblom",
  2754. "email": "jeremeamia@gmail.com",
  2755. "homepage": "https://github.com/jeremeamia"
  2756. },
  2757. {
  2758. "name": "George Mponos",
  2759. "email": "gmponos@gmail.com",
  2760. "homepage": "https://github.com/gmponos"
  2761. },
  2762. {
  2763. "name": "Tobias Nyholm",
  2764. "email": "tobias.nyholm@gmail.com",
  2765. "homepage": "https://github.com/Nyholm"
  2766. },
  2767. {
  2768. "name": "Márk Sági-Kazár",
  2769. "email": "mark.sagikazar@gmail.com",
  2770. "homepage": "https://github.com/sagikazarmark"
  2771. },
  2772. {
  2773. "name": "Tobias Schultze",
  2774. "email": "webmaster@tubo-world.de",
  2775. "homepage": "https://github.com/Tobion"
  2776. }
  2777. ],
  2778. "description": "Guzzle is a PHP HTTP client library",
  2779. "keywords": [
  2780. "client",
  2781. "curl",
  2782. "framework",
  2783. "http",
  2784. "http client",
  2785. "psr-18",
  2786. "psr-7",
  2787. "rest",
  2788. "web service"
  2789. ],
  2790. "support": {
  2791. "issues": "https://github.com/guzzle/guzzle/issues",
  2792. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  2793. },
  2794. "funding": [
  2795. {
  2796. "url": "https://github.com/GrahamCampbell",
  2797. "type": "github"
  2798. },
  2799. {
  2800. "url": "https://github.com/Nyholm",
  2801. "type": "github"
  2802. },
  2803. {
  2804. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2805. "type": "tidelift"
  2806. }
  2807. ],
  2808. "time": "2023-12-03T20:35:24+00:00"
  2809. },
  2810. {
  2811. "name": "guzzlehttp/promises",
  2812. "version": "2.0.2",
  2813. "source": {
  2814. "type": "git",
  2815. "url": "https://github.com/guzzle/promises.git",
  2816. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  2817. },
  2818. "dist": {
  2819. "type": "zip",
  2820. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  2821. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  2822. "shasum": ""
  2823. },
  2824. "require": {
  2825. "php": "^7.2.5 || ^8.0"
  2826. },
  2827. "require-dev": {
  2828. "bamarni/composer-bin-plugin": "^1.8.2",
  2829. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2830. },
  2831. "type": "library",
  2832. "extra": {
  2833. "bamarni-bin": {
  2834. "bin-links": true,
  2835. "forward-command": false
  2836. }
  2837. },
  2838. "autoload": {
  2839. "psr-4": {
  2840. "GuzzleHttp\\Promise\\": "src/"
  2841. }
  2842. },
  2843. "notification-url": "https://packagist.org/downloads/",
  2844. "license": [
  2845. "MIT"
  2846. ],
  2847. "authors": [
  2848. {
  2849. "name": "Graham Campbell",
  2850. "email": "hello@gjcampbell.co.uk",
  2851. "homepage": "https://github.com/GrahamCampbell"
  2852. },
  2853. {
  2854. "name": "Michael Dowling",
  2855. "email": "mtdowling@gmail.com",
  2856. "homepage": "https://github.com/mtdowling"
  2857. },
  2858. {
  2859. "name": "Tobias Nyholm",
  2860. "email": "tobias.nyholm@gmail.com",
  2861. "homepage": "https://github.com/Nyholm"
  2862. },
  2863. {
  2864. "name": "Tobias Schultze",
  2865. "email": "webmaster@tubo-world.de",
  2866. "homepage": "https://github.com/Tobion"
  2867. }
  2868. ],
  2869. "description": "Guzzle promises library",
  2870. "keywords": [
  2871. "promise"
  2872. ],
  2873. "support": {
  2874. "issues": "https://github.com/guzzle/promises/issues",
  2875. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2876. },
  2877. "funding": [
  2878. {
  2879. "url": "https://github.com/GrahamCampbell",
  2880. "type": "github"
  2881. },
  2882. {
  2883. "url": "https://github.com/Nyholm",
  2884. "type": "github"
  2885. },
  2886. {
  2887. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2888. "type": "tidelift"
  2889. }
  2890. ],
  2891. "time": "2023-12-03T20:19:20+00:00"
  2892. },
  2893. {
  2894. "name": "guzzlehttp/psr7",
  2895. "version": "2.6.2",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/guzzle/psr7.git",
  2899. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2904. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2905. "shasum": ""
  2906. },
  2907. "require": {
  2908. "php": "^7.2.5 || ^8.0",
  2909. "psr/http-factory": "^1.0",
  2910. "psr/http-message": "^1.1 || ^2.0",
  2911. "ralouphie/getallheaders": "^3.0"
  2912. },
  2913. "provide": {
  2914. "psr/http-factory-implementation": "1.0",
  2915. "psr/http-message-implementation": "1.0"
  2916. },
  2917. "require-dev": {
  2918. "bamarni/composer-bin-plugin": "^1.8.2",
  2919. "http-interop/http-factory-tests": "^0.9",
  2920. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2921. },
  2922. "suggest": {
  2923. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2924. },
  2925. "type": "library",
  2926. "extra": {
  2927. "bamarni-bin": {
  2928. "bin-links": true,
  2929. "forward-command": false
  2930. }
  2931. },
  2932. "autoload": {
  2933. "psr-4": {
  2934. "GuzzleHttp\\Psr7\\": "src/"
  2935. }
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "Graham Campbell",
  2944. "email": "hello@gjcampbell.co.uk",
  2945. "homepage": "https://github.com/GrahamCampbell"
  2946. },
  2947. {
  2948. "name": "Michael Dowling",
  2949. "email": "mtdowling@gmail.com",
  2950. "homepage": "https://github.com/mtdowling"
  2951. },
  2952. {
  2953. "name": "George Mponos",
  2954. "email": "gmponos@gmail.com",
  2955. "homepage": "https://github.com/gmponos"
  2956. },
  2957. {
  2958. "name": "Tobias Nyholm",
  2959. "email": "tobias.nyholm@gmail.com",
  2960. "homepage": "https://github.com/Nyholm"
  2961. },
  2962. {
  2963. "name": "Márk Sági-Kazár",
  2964. "email": "mark.sagikazar@gmail.com",
  2965. "homepage": "https://github.com/sagikazarmark"
  2966. },
  2967. {
  2968. "name": "Tobias Schultze",
  2969. "email": "webmaster@tubo-world.de",
  2970. "homepage": "https://github.com/Tobion"
  2971. },
  2972. {
  2973. "name": "Márk Sági-Kazár",
  2974. "email": "mark.sagikazar@gmail.com",
  2975. "homepage": "https://sagikazarmark.hu"
  2976. }
  2977. ],
  2978. "description": "PSR-7 message implementation that also provides common utility methods",
  2979. "keywords": [
  2980. "http",
  2981. "message",
  2982. "psr-7",
  2983. "request",
  2984. "response",
  2985. "stream",
  2986. "uri",
  2987. "url"
  2988. ],
  2989. "support": {
  2990. "issues": "https://github.com/guzzle/psr7/issues",
  2991. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2992. },
  2993. "funding": [
  2994. {
  2995. "url": "https://github.com/GrahamCampbell",
  2996. "type": "github"
  2997. },
  2998. {
  2999. "url": "https://github.com/Nyholm",
  3000. "type": "github"
  3001. },
  3002. {
  3003. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  3004. "type": "tidelift"
  3005. }
  3006. ],
  3007. "time": "2023-12-03T20:05:35+00:00"
  3008. },
  3009. {
  3010. "name": "guzzlehttp/uri-template",
  3011. "version": "v1.0.3",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/guzzle/uri-template.git",
  3015. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  3020. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "php": "^7.2.5 || ^8.0",
  3025. "symfony/polyfill-php80": "^1.24"
  3026. },
  3027. "require-dev": {
  3028. "bamarni/composer-bin-plugin": "^1.8.2",
  3029. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  3030. "uri-template/tests": "1.0.0"
  3031. },
  3032. "type": "library",
  3033. "extra": {
  3034. "bamarni-bin": {
  3035. "bin-links": true,
  3036. "forward-command": false
  3037. }
  3038. },
  3039. "autoload": {
  3040. "psr-4": {
  3041. "GuzzleHttp\\UriTemplate\\": "src"
  3042. }
  3043. },
  3044. "notification-url": "https://packagist.org/downloads/",
  3045. "license": [
  3046. "MIT"
  3047. ],
  3048. "authors": [
  3049. {
  3050. "name": "Graham Campbell",
  3051. "email": "hello@gjcampbell.co.uk",
  3052. "homepage": "https://github.com/GrahamCampbell"
  3053. },
  3054. {
  3055. "name": "Michael Dowling",
  3056. "email": "mtdowling@gmail.com",
  3057. "homepage": "https://github.com/mtdowling"
  3058. },
  3059. {
  3060. "name": "George Mponos",
  3061. "email": "gmponos@gmail.com",
  3062. "homepage": "https://github.com/gmponos"
  3063. },
  3064. {
  3065. "name": "Tobias Nyholm",
  3066. "email": "tobias.nyholm@gmail.com",
  3067. "homepage": "https://github.com/Nyholm"
  3068. }
  3069. ],
  3070. "description": "A polyfill class for uri_template of PHP",
  3071. "keywords": [
  3072. "guzzlehttp",
  3073. "uri-template"
  3074. ],
  3075. "support": {
  3076. "issues": "https://github.com/guzzle/uri-template/issues",
  3077. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  3078. },
  3079. "funding": [
  3080. {
  3081. "url": "https://github.com/GrahamCampbell",
  3082. "type": "github"
  3083. },
  3084. {
  3085. "url": "https://github.com/Nyholm",
  3086. "type": "github"
  3087. },
  3088. {
  3089. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  3090. "type": "tidelift"
  3091. }
  3092. ],
  3093. "time": "2023-12-03T19:50:20+00:00"
  3094. },
  3095. {
  3096. "name": "kirschbaum-development/eloquent-power-joins",
  3097. "version": "3.5.6",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  3101. "reference": "6de51d9ec43af34e77bd1d9908173de1416a0aed"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/6de51d9ec43af34e77bd1d9908173de1416a0aed",
  3106. "reference": "6de51d9ec43af34e77bd1d9908173de1416a0aed",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "illuminate/database": "^8.0|^9.0|^10.0|^11.0",
  3111. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  3112. "php": "^8.0"
  3113. },
  3114. "require-dev": {
  3115. "laravel/legacy-factories": "^1.0@dev",
  3116. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3117. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  3118. },
  3119. "type": "library",
  3120. "extra": {
  3121. "laravel": {
  3122. "providers": [
  3123. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  3124. ]
  3125. }
  3126. },
  3127. "autoload": {
  3128. "psr-4": {
  3129. "Kirschbaum\\PowerJoins\\": "src"
  3130. }
  3131. },
  3132. "notification-url": "https://packagist.org/downloads/",
  3133. "license": [
  3134. "MIT"
  3135. ],
  3136. "authors": [
  3137. {
  3138. "name": "Luis Dalmolin",
  3139. "email": "luis.nh@gmail.com",
  3140. "role": "Developer"
  3141. }
  3142. ],
  3143. "description": "The Laravel magic applied to joins.",
  3144. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  3145. "keywords": [
  3146. "eloquent",
  3147. "join",
  3148. "laravel",
  3149. "mysql"
  3150. ],
  3151. "support": {
  3152. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  3153. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.5.6"
  3154. },
  3155. "time": "2024-04-09T00:35:30+00:00"
  3156. },
  3157. {
  3158. "name": "laravel/framework",
  3159. "version": "v11.5.0",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://github.com/laravel/framework.git",
  3163. "reference": "e3c24268f1404805e15099b9f035fe310cb30753"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://api.github.com/repos/laravel/framework/zipball/e3c24268f1404805e15099b9f035fe310cb30753",
  3168. "reference": "e3c24268f1404805e15099b9f035fe310cb30753",
  3169. "shasum": ""
  3170. },
  3171. "require": {
  3172. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3173. "composer-runtime-api": "^2.2",
  3174. "doctrine/inflector": "^2.0.5",
  3175. "dragonmantank/cron-expression": "^3.3.2",
  3176. "egulias/email-validator": "^3.2.1|^4.0",
  3177. "ext-ctype": "*",
  3178. "ext-filter": "*",
  3179. "ext-hash": "*",
  3180. "ext-mbstring": "*",
  3181. "ext-openssl": "*",
  3182. "ext-session": "*",
  3183. "ext-tokenizer": "*",
  3184. "fruitcake/php-cors": "^1.3",
  3185. "guzzlehttp/guzzle": "^7.8",
  3186. "guzzlehttp/uri-template": "^1.0",
  3187. "laravel/prompts": "^0.1.18",
  3188. "laravel/serializable-closure": "^1.3",
  3189. "league/commonmark": "^2.2.1",
  3190. "league/flysystem": "^3.8.0",
  3191. "monolog/monolog": "^3.0",
  3192. "nesbot/carbon": "^2.72.2|^3.0",
  3193. "nunomaduro/termwind": "^2.0",
  3194. "php": "^8.2",
  3195. "psr/container": "^1.1.1|^2.0.1",
  3196. "psr/log": "^1.0|^2.0|^3.0",
  3197. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3198. "ramsey/uuid": "^4.7",
  3199. "symfony/console": "^7.0",
  3200. "symfony/error-handler": "^7.0",
  3201. "symfony/finder": "^7.0",
  3202. "symfony/http-foundation": "^7.0",
  3203. "symfony/http-kernel": "^7.0",
  3204. "symfony/mailer": "^7.0",
  3205. "symfony/mime": "^7.0",
  3206. "symfony/polyfill-php83": "^1.28",
  3207. "symfony/process": "^7.0",
  3208. "symfony/routing": "^7.0",
  3209. "symfony/uid": "^7.0",
  3210. "symfony/var-dumper": "^7.0",
  3211. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3212. "vlucas/phpdotenv": "^5.4.1",
  3213. "voku/portable-ascii": "^2.0"
  3214. },
  3215. "conflict": {
  3216. "mockery/mockery": "1.6.8",
  3217. "tightenco/collect": "<5.5.33"
  3218. },
  3219. "provide": {
  3220. "psr/container-implementation": "1.1|2.0",
  3221. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3222. },
  3223. "replace": {
  3224. "illuminate/auth": "self.version",
  3225. "illuminate/broadcasting": "self.version",
  3226. "illuminate/bus": "self.version",
  3227. "illuminate/cache": "self.version",
  3228. "illuminate/collections": "self.version",
  3229. "illuminate/conditionable": "self.version",
  3230. "illuminate/config": "self.version",
  3231. "illuminate/console": "self.version",
  3232. "illuminate/container": "self.version",
  3233. "illuminate/contracts": "self.version",
  3234. "illuminate/cookie": "self.version",
  3235. "illuminate/database": "self.version",
  3236. "illuminate/encryption": "self.version",
  3237. "illuminate/events": "self.version",
  3238. "illuminate/filesystem": "self.version",
  3239. "illuminate/hashing": "self.version",
  3240. "illuminate/http": "self.version",
  3241. "illuminate/log": "self.version",
  3242. "illuminate/macroable": "self.version",
  3243. "illuminate/mail": "self.version",
  3244. "illuminate/notifications": "self.version",
  3245. "illuminate/pagination": "self.version",
  3246. "illuminate/pipeline": "self.version",
  3247. "illuminate/process": "self.version",
  3248. "illuminate/queue": "self.version",
  3249. "illuminate/redis": "self.version",
  3250. "illuminate/routing": "self.version",
  3251. "illuminate/session": "self.version",
  3252. "illuminate/support": "self.version",
  3253. "illuminate/testing": "self.version",
  3254. "illuminate/translation": "self.version",
  3255. "illuminate/validation": "self.version",
  3256. "illuminate/view": "self.version",
  3257. "spatie/once": "*"
  3258. },
  3259. "require-dev": {
  3260. "ably/ably-php": "^1.0",
  3261. "aws/aws-sdk-php": "^3.235.5",
  3262. "ext-gmp": "*",
  3263. "fakerphp/faker": "^1.23",
  3264. "league/flysystem-aws-s3-v3": "^3.0",
  3265. "league/flysystem-ftp": "^3.0",
  3266. "league/flysystem-path-prefixing": "^3.3",
  3267. "league/flysystem-read-only": "^3.3",
  3268. "league/flysystem-sftp-v3": "^3.0",
  3269. "mockery/mockery": "^1.6",
  3270. "nyholm/psr7": "^1.2",
  3271. "orchestra/testbench-core": "^9.0.6",
  3272. "pda/pheanstalk": "^5.0",
  3273. "phpstan/phpstan": "^1.4.7",
  3274. "phpunit/phpunit": "^10.5|^11.0",
  3275. "predis/predis": "^2.0.2",
  3276. "resend/resend-php": "^0.10.0",
  3277. "symfony/cache": "^7.0",
  3278. "symfony/http-client": "^7.0",
  3279. "symfony/psr-http-message-bridge": "^7.0"
  3280. },
  3281. "suggest": {
  3282. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3283. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  3284. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3285. "ext-apcu": "Required to use the APC cache driver.",
  3286. "ext-fileinfo": "Required to use the Filesystem class.",
  3287. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3288. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3289. "ext-memcached": "Required to use the memcache cache driver.",
  3290. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3291. "ext-pdo": "Required to use all database features.",
  3292. "ext-posix": "Required to use all features of the queue worker.",
  3293. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3294. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3295. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3296. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3297. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  3298. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  3299. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  3300. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  3301. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  3302. "mockery/mockery": "Required to use mocking (^1.6).",
  3303. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3304. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3305. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3306. "predis/predis": "Required to use the predis connector (^2.0.2).",
  3307. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3308. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3309. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3310. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3311. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3312. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3313. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3314. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3315. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3316. },
  3317. "type": "library",
  3318. "extra": {
  3319. "branch-alias": {
  3320. "dev-master": "11.x-dev"
  3321. }
  3322. },
  3323. "autoload": {
  3324. "files": [
  3325. "src/Illuminate/Collections/helpers.php",
  3326. "src/Illuminate/Events/functions.php",
  3327. "src/Illuminate/Filesystem/functions.php",
  3328. "src/Illuminate/Foundation/helpers.php",
  3329. "src/Illuminate/Support/helpers.php"
  3330. ],
  3331. "psr-4": {
  3332. "Illuminate\\": "src/Illuminate/",
  3333. "Illuminate\\Support\\": [
  3334. "src/Illuminate/Macroable/",
  3335. "src/Illuminate/Collections/",
  3336. "src/Illuminate/Conditionable/"
  3337. ]
  3338. }
  3339. },
  3340. "notification-url": "https://packagist.org/downloads/",
  3341. "license": [
  3342. "MIT"
  3343. ],
  3344. "authors": [
  3345. {
  3346. "name": "Taylor Otwell",
  3347. "email": "taylor@laravel.com"
  3348. }
  3349. ],
  3350. "description": "The Laravel Framework.",
  3351. "homepage": "https://laravel.com",
  3352. "keywords": [
  3353. "framework",
  3354. "laravel"
  3355. ],
  3356. "support": {
  3357. "issues": "https://github.com/laravel/framework/issues",
  3358. "source": "https://github.com/laravel/framework"
  3359. },
  3360. "time": "2024-04-23T15:11:31+00:00"
  3361. },
  3362. {
  3363. "name": "laravel/prompts",
  3364. "version": "v0.1.20",
  3365. "source": {
  3366. "type": "git",
  3367. "url": "https://github.com/laravel/prompts.git",
  3368. "reference": "bf9a360c484976692de0f3792f30066f4f4b34a2"
  3369. },
  3370. "dist": {
  3371. "type": "zip",
  3372. "url": "https://api.github.com/repos/laravel/prompts/zipball/bf9a360c484976692de0f3792f30066f4f4b34a2",
  3373. "reference": "bf9a360c484976692de0f3792f30066f4f4b34a2",
  3374. "shasum": ""
  3375. },
  3376. "require": {
  3377. "ext-mbstring": "*",
  3378. "illuminate/collections": "^10.0|^11.0",
  3379. "php": "^8.1",
  3380. "symfony/console": "^6.2|^7.0"
  3381. },
  3382. "conflict": {
  3383. "illuminate/console": ">=10.17.0 <10.25.0",
  3384. "laravel/framework": ">=10.17.0 <10.25.0"
  3385. },
  3386. "require-dev": {
  3387. "mockery/mockery": "^1.5",
  3388. "pestphp/pest": "^2.3",
  3389. "phpstan/phpstan": "^1.11",
  3390. "phpstan/phpstan-mockery": "^1.1"
  3391. },
  3392. "suggest": {
  3393. "ext-pcntl": "Required for the spinner to be animated."
  3394. },
  3395. "type": "library",
  3396. "extra": {
  3397. "branch-alias": {
  3398. "dev-main": "0.1.x-dev"
  3399. }
  3400. },
  3401. "autoload": {
  3402. "files": [
  3403. "src/helpers.php"
  3404. ],
  3405. "psr-4": {
  3406. "Laravel\\Prompts\\": "src/"
  3407. }
  3408. },
  3409. "notification-url": "https://packagist.org/downloads/",
  3410. "license": [
  3411. "MIT"
  3412. ],
  3413. "support": {
  3414. "issues": "https://github.com/laravel/prompts/issues",
  3415. "source": "https://github.com/laravel/prompts/tree/v0.1.20"
  3416. },
  3417. "time": "2024-04-18T00:45:25+00:00"
  3418. },
  3419. {
  3420. "name": "laravel/sanctum",
  3421. "version": "v4.0.2",
  3422. "source": {
  3423. "type": "git",
  3424. "url": "https://github.com/laravel/sanctum.git",
  3425. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1"
  3426. },
  3427. "dist": {
  3428. "type": "zip",
  3429. "url": "https://api.github.com/repos/laravel/sanctum/zipball/9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  3430. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  3431. "shasum": ""
  3432. },
  3433. "require": {
  3434. "ext-json": "*",
  3435. "illuminate/console": "^11.0",
  3436. "illuminate/contracts": "^11.0",
  3437. "illuminate/database": "^11.0",
  3438. "illuminate/support": "^11.0",
  3439. "php": "^8.2",
  3440. "symfony/console": "^7.0"
  3441. },
  3442. "require-dev": {
  3443. "mockery/mockery": "^1.6",
  3444. "orchestra/testbench": "^9.0",
  3445. "phpstan/phpstan": "^1.10",
  3446. "phpunit/phpunit": "^10.5"
  3447. },
  3448. "type": "library",
  3449. "extra": {
  3450. "laravel": {
  3451. "providers": [
  3452. "Laravel\\Sanctum\\SanctumServiceProvider"
  3453. ]
  3454. }
  3455. },
  3456. "autoload": {
  3457. "psr-4": {
  3458. "Laravel\\Sanctum\\": "src/"
  3459. }
  3460. },
  3461. "notification-url": "https://packagist.org/downloads/",
  3462. "license": [
  3463. "MIT"
  3464. ],
  3465. "authors": [
  3466. {
  3467. "name": "Taylor Otwell",
  3468. "email": "taylor@laravel.com"
  3469. }
  3470. ],
  3471. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3472. "keywords": [
  3473. "auth",
  3474. "laravel",
  3475. "sanctum"
  3476. ],
  3477. "support": {
  3478. "issues": "https://github.com/laravel/sanctum/issues",
  3479. "source": "https://github.com/laravel/sanctum"
  3480. },
  3481. "time": "2024-04-10T19:39:58+00:00"
  3482. },
  3483. {
  3484. "name": "laravel/serializable-closure",
  3485. "version": "v1.3.3",
  3486. "source": {
  3487. "type": "git",
  3488. "url": "https://github.com/laravel/serializable-closure.git",
  3489. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  3490. },
  3491. "dist": {
  3492. "type": "zip",
  3493. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  3494. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  3495. "shasum": ""
  3496. },
  3497. "require": {
  3498. "php": "^7.3|^8.0"
  3499. },
  3500. "require-dev": {
  3501. "nesbot/carbon": "^2.61",
  3502. "pestphp/pest": "^1.21.3",
  3503. "phpstan/phpstan": "^1.8.2",
  3504. "symfony/var-dumper": "^5.4.11"
  3505. },
  3506. "type": "library",
  3507. "extra": {
  3508. "branch-alias": {
  3509. "dev-master": "1.x-dev"
  3510. }
  3511. },
  3512. "autoload": {
  3513. "psr-4": {
  3514. "Laravel\\SerializableClosure\\": "src/"
  3515. }
  3516. },
  3517. "notification-url": "https://packagist.org/downloads/",
  3518. "license": [
  3519. "MIT"
  3520. ],
  3521. "authors": [
  3522. {
  3523. "name": "Taylor Otwell",
  3524. "email": "taylor@laravel.com"
  3525. },
  3526. {
  3527. "name": "Nuno Maduro",
  3528. "email": "nuno@laravel.com"
  3529. }
  3530. ],
  3531. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3532. "keywords": [
  3533. "closure",
  3534. "laravel",
  3535. "serializable"
  3536. ],
  3537. "support": {
  3538. "issues": "https://github.com/laravel/serializable-closure/issues",
  3539. "source": "https://github.com/laravel/serializable-closure"
  3540. },
  3541. "time": "2023-11-08T14:08:06+00:00"
  3542. },
  3543. {
  3544. "name": "laravel/socialite",
  3545. "version": "v5.13.1",
  3546. "source": {
  3547. "type": "git",
  3548. "url": "https://github.com/laravel/socialite.git",
  3549. "reference": "feed1c1ccfd991bc12af59de4aa24f657d9c5cbe"
  3550. },
  3551. "dist": {
  3552. "type": "zip",
  3553. "url": "https://api.github.com/repos/laravel/socialite/zipball/feed1c1ccfd991bc12af59de4aa24f657d9c5cbe",
  3554. "reference": "feed1c1ccfd991bc12af59de4aa24f657d9c5cbe",
  3555. "shasum": ""
  3556. },
  3557. "require": {
  3558. "ext-json": "*",
  3559. "firebase/php-jwt": "^6.4",
  3560. "guzzlehttp/guzzle": "^6.0|^7.0",
  3561. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3562. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3563. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3564. "league/oauth1-client": "^1.10.1",
  3565. "php": "^7.2|^8.0",
  3566. "phpseclib/phpseclib": "^3.0"
  3567. },
  3568. "require-dev": {
  3569. "mockery/mockery": "^1.0",
  3570. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3571. "phpstan/phpstan": "^1.10",
  3572. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3573. },
  3574. "type": "library",
  3575. "extra": {
  3576. "branch-alias": {
  3577. "dev-master": "5.x-dev"
  3578. },
  3579. "laravel": {
  3580. "providers": [
  3581. "Laravel\\Socialite\\SocialiteServiceProvider"
  3582. ],
  3583. "aliases": {
  3584. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3585. }
  3586. }
  3587. },
  3588. "autoload": {
  3589. "psr-4": {
  3590. "Laravel\\Socialite\\": "src/"
  3591. }
  3592. },
  3593. "notification-url": "https://packagist.org/downloads/",
  3594. "license": [
  3595. "MIT"
  3596. ],
  3597. "authors": [
  3598. {
  3599. "name": "Taylor Otwell",
  3600. "email": "taylor@laravel.com"
  3601. }
  3602. ],
  3603. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3604. "homepage": "https://laravel.com",
  3605. "keywords": [
  3606. "laravel",
  3607. "oauth"
  3608. ],
  3609. "support": {
  3610. "issues": "https://github.com/laravel/socialite/issues",
  3611. "source": "https://github.com/laravel/socialite"
  3612. },
  3613. "time": "2024-04-24T20:36:50+00:00"
  3614. },
  3615. {
  3616. "name": "laravel/tinker",
  3617. "version": "v2.9.0",
  3618. "source": {
  3619. "type": "git",
  3620. "url": "https://github.com/laravel/tinker.git",
  3621. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  3622. },
  3623. "dist": {
  3624. "type": "zip",
  3625. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3626. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3627. "shasum": ""
  3628. },
  3629. "require": {
  3630. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3631. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3632. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3633. "php": "^7.2.5|^8.0",
  3634. "psy/psysh": "^0.11.1|^0.12.0",
  3635. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3636. },
  3637. "require-dev": {
  3638. "mockery/mockery": "~1.3.3|^1.4.2",
  3639. "phpstan/phpstan": "^1.10",
  3640. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3641. },
  3642. "suggest": {
  3643. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3644. },
  3645. "type": "library",
  3646. "extra": {
  3647. "laravel": {
  3648. "providers": [
  3649. "Laravel\\Tinker\\TinkerServiceProvider"
  3650. ]
  3651. }
  3652. },
  3653. "autoload": {
  3654. "psr-4": {
  3655. "Laravel\\Tinker\\": "src/"
  3656. }
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "authors": [
  3663. {
  3664. "name": "Taylor Otwell",
  3665. "email": "taylor@laravel.com"
  3666. }
  3667. ],
  3668. "description": "Powerful REPL for the Laravel framework.",
  3669. "keywords": [
  3670. "REPL",
  3671. "Tinker",
  3672. "laravel",
  3673. "psysh"
  3674. ],
  3675. "support": {
  3676. "issues": "https://github.com/laravel/tinker/issues",
  3677. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  3678. },
  3679. "time": "2024-01-04T16:10:04+00:00"
  3680. },
  3681. {
  3682. "name": "league/commonmark",
  3683. "version": "2.4.2",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/thephpleague/commonmark.git",
  3687. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  3692. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  3693. "shasum": ""
  3694. },
  3695. "require": {
  3696. "ext-mbstring": "*",
  3697. "league/config": "^1.1.1",
  3698. "php": "^7.4 || ^8.0",
  3699. "psr/event-dispatcher": "^1.0",
  3700. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3701. "symfony/polyfill-php80": "^1.16"
  3702. },
  3703. "require-dev": {
  3704. "cebe/markdown": "^1.0",
  3705. "commonmark/cmark": "0.30.3",
  3706. "commonmark/commonmark.js": "0.30.0",
  3707. "composer/package-versions-deprecated": "^1.8",
  3708. "embed/embed": "^4.4",
  3709. "erusev/parsedown": "^1.0",
  3710. "ext-json": "*",
  3711. "github/gfm": "0.29.0",
  3712. "michelf/php-markdown": "^1.4 || ^2.0",
  3713. "nyholm/psr7": "^1.5",
  3714. "phpstan/phpstan": "^1.8.2",
  3715. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3716. "scrutinizer/ocular": "^1.8.1",
  3717. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  3718. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  3719. "unleashedtech/php-coding-standard": "^3.1.1",
  3720. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3721. },
  3722. "suggest": {
  3723. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3724. },
  3725. "type": "library",
  3726. "extra": {
  3727. "branch-alias": {
  3728. "dev-main": "2.5-dev"
  3729. }
  3730. },
  3731. "autoload": {
  3732. "psr-4": {
  3733. "League\\CommonMark\\": "src"
  3734. }
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "BSD-3-Clause"
  3739. ],
  3740. "authors": [
  3741. {
  3742. "name": "Colin O'Dell",
  3743. "email": "colinodell@gmail.com",
  3744. "homepage": "https://www.colinodell.com",
  3745. "role": "Lead Developer"
  3746. }
  3747. ],
  3748. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3749. "homepage": "https://commonmark.thephpleague.com",
  3750. "keywords": [
  3751. "commonmark",
  3752. "flavored",
  3753. "gfm",
  3754. "github",
  3755. "github-flavored",
  3756. "markdown",
  3757. "md",
  3758. "parser"
  3759. ],
  3760. "support": {
  3761. "docs": "https://commonmark.thephpleague.com/",
  3762. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3763. "issues": "https://github.com/thephpleague/commonmark/issues",
  3764. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3765. "source": "https://github.com/thephpleague/commonmark"
  3766. },
  3767. "funding": [
  3768. {
  3769. "url": "https://www.colinodell.com/sponsor",
  3770. "type": "custom"
  3771. },
  3772. {
  3773. "url": "https://www.paypal.me/colinpodell/10.00",
  3774. "type": "custom"
  3775. },
  3776. {
  3777. "url": "https://github.com/colinodell",
  3778. "type": "github"
  3779. },
  3780. {
  3781. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3782. "type": "tidelift"
  3783. }
  3784. ],
  3785. "time": "2024-02-02T11:59:32+00:00"
  3786. },
  3787. {
  3788. "name": "league/config",
  3789. "version": "v1.2.0",
  3790. "source": {
  3791. "type": "git",
  3792. "url": "https://github.com/thephpleague/config.git",
  3793. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3794. },
  3795. "dist": {
  3796. "type": "zip",
  3797. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3798. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3799. "shasum": ""
  3800. },
  3801. "require": {
  3802. "dflydev/dot-access-data": "^3.0.1",
  3803. "nette/schema": "^1.2",
  3804. "php": "^7.4 || ^8.0"
  3805. },
  3806. "require-dev": {
  3807. "phpstan/phpstan": "^1.8.2",
  3808. "phpunit/phpunit": "^9.5.5",
  3809. "scrutinizer/ocular": "^1.8.1",
  3810. "unleashedtech/php-coding-standard": "^3.1",
  3811. "vimeo/psalm": "^4.7.3"
  3812. },
  3813. "type": "library",
  3814. "extra": {
  3815. "branch-alias": {
  3816. "dev-main": "1.2-dev"
  3817. }
  3818. },
  3819. "autoload": {
  3820. "psr-4": {
  3821. "League\\Config\\": "src"
  3822. }
  3823. },
  3824. "notification-url": "https://packagist.org/downloads/",
  3825. "license": [
  3826. "BSD-3-Clause"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "Colin O'Dell",
  3831. "email": "colinodell@gmail.com",
  3832. "homepage": "https://www.colinodell.com",
  3833. "role": "Lead Developer"
  3834. }
  3835. ],
  3836. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3837. "homepage": "https://config.thephpleague.com",
  3838. "keywords": [
  3839. "array",
  3840. "config",
  3841. "configuration",
  3842. "dot",
  3843. "dot-access",
  3844. "nested",
  3845. "schema"
  3846. ],
  3847. "support": {
  3848. "docs": "https://config.thephpleague.com/",
  3849. "issues": "https://github.com/thephpleague/config/issues",
  3850. "rss": "https://github.com/thephpleague/config/releases.atom",
  3851. "source": "https://github.com/thephpleague/config"
  3852. },
  3853. "funding": [
  3854. {
  3855. "url": "https://www.colinodell.com/sponsor",
  3856. "type": "custom"
  3857. },
  3858. {
  3859. "url": "https://www.paypal.me/colinpodell/10.00",
  3860. "type": "custom"
  3861. },
  3862. {
  3863. "url": "https://github.com/colinodell",
  3864. "type": "github"
  3865. }
  3866. ],
  3867. "time": "2022-12-11T20:36:23+00:00"
  3868. },
  3869. {
  3870. "name": "league/csv",
  3871. "version": "9.15.0",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://github.com/thephpleague/csv.git",
  3875. "reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://api.github.com/repos/thephpleague/csv/zipball/fa7e2441c0bc9b2360f4314fd6c954f7ff40d435",
  3880. "reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435",
  3881. "shasum": ""
  3882. },
  3883. "require": {
  3884. "ext-filter": "*",
  3885. "ext-json": "*",
  3886. "ext-mbstring": "*",
  3887. "php": "^8.1.2"
  3888. },
  3889. "require-dev": {
  3890. "doctrine/collections": "^2.1.4",
  3891. "ext-dom": "*",
  3892. "ext-xdebug": "*",
  3893. "friendsofphp/php-cs-fixer": "^v3.22.0",
  3894. "phpbench/phpbench": "^1.2.15",
  3895. "phpstan/phpstan": "^1.10.57",
  3896. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  3897. "phpstan/phpstan-phpunit": "^1.3.15",
  3898. "phpstan/phpstan-strict-rules": "^1.5.2",
  3899. "phpunit/phpunit": "^10.5.9",
  3900. "symfony/var-dumper": "^6.4.2"
  3901. },
  3902. "suggest": {
  3903. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3904. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-master": "9.x-dev"
  3910. }
  3911. },
  3912. "autoload": {
  3913. "files": [
  3914. "src/functions_include.php"
  3915. ],
  3916. "psr-4": {
  3917. "League\\Csv\\": "src"
  3918. }
  3919. },
  3920. "notification-url": "https://packagist.org/downloads/",
  3921. "license": [
  3922. "MIT"
  3923. ],
  3924. "authors": [
  3925. {
  3926. "name": "Ignace Nyamagana Butera",
  3927. "email": "nyamsprod@gmail.com",
  3928. "homepage": "https://github.com/nyamsprod/",
  3929. "role": "Developer"
  3930. }
  3931. ],
  3932. "description": "CSV data manipulation made easy in PHP",
  3933. "homepage": "https://csv.thephpleague.com",
  3934. "keywords": [
  3935. "convert",
  3936. "csv",
  3937. "export",
  3938. "filter",
  3939. "import",
  3940. "read",
  3941. "transform",
  3942. "write"
  3943. ],
  3944. "support": {
  3945. "docs": "https://csv.thephpleague.com",
  3946. "issues": "https://github.com/thephpleague/csv/issues",
  3947. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3948. "source": "https://github.com/thephpleague/csv"
  3949. },
  3950. "funding": [
  3951. {
  3952. "url": "https://github.com/sponsors/nyamsprod",
  3953. "type": "github"
  3954. }
  3955. ],
  3956. "time": "2024-02-20T20:00:00+00:00"
  3957. },
  3958. {
  3959. "name": "league/flysystem",
  3960. "version": "3.27.0",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/thephpleague/flysystem.git",
  3964. "reference": "4729745b1ab737908c7d055148c9a6b3e959832f"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4729745b1ab737908c7d055148c9a6b3e959832f",
  3969. "reference": "4729745b1ab737908c7d055148c9a6b3e959832f",
  3970. "shasum": ""
  3971. },
  3972. "require": {
  3973. "league/flysystem-local": "^3.0.0",
  3974. "league/mime-type-detection": "^1.0.0",
  3975. "php": "^8.0.2"
  3976. },
  3977. "conflict": {
  3978. "async-aws/core": "<1.19.0",
  3979. "async-aws/s3": "<1.14.0",
  3980. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3981. "guzzlehttp/guzzle": "<7.0",
  3982. "guzzlehttp/ringphp": "<1.1.1",
  3983. "phpseclib/phpseclib": "3.0.15",
  3984. "symfony/http-client": "<5.2"
  3985. },
  3986. "require-dev": {
  3987. "async-aws/s3": "^1.5 || ^2.0",
  3988. "async-aws/simple-s3": "^1.1 || ^2.0",
  3989. "aws/aws-sdk-php": "^3.295.10",
  3990. "composer/semver": "^3.0",
  3991. "ext-fileinfo": "*",
  3992. "ext-ftp": "*",
  3993. "ext-zip": "*",
  3994. "friendsofphp/php-cs-fixer": "^3.5",
  3995. "google/cloud-storage": "^1.23",
  3996. "microsoft/azure-storage-blob": "^1.1",
  3997. "phpseclib/phpseclib": "^3.0.36",
  3998. "phpstan/phpstan": "^1.10",
  3999. "phpunit/phpunit": "^9.5.11|^10.0",
  4000. "sabre/dav": "^4.6.0"
  4001. },
  4002. "type": "library",
  4003. "autoload": {
  4004. "psr-4": {
  4005. "League\\Flysystem\\": "src"
  4006. }
  4007. },
  4008. "notification-url": "https://packagist.org/downloads/",
  4009. "license": [
  4010. "MIT"
  4011. ],
  4012. "authors": [
  4013. {
  4014. "name": "Frank de Jonge",
  4015. "email": "info@frankdejonge.nl"
  4016. }
  4017. ],
  4018. "description": "File storage abstraction for PHP",
  4019. "keywords": [
  4020. "WebDAV",
  4021. "aws",
  4022. "cloud",
  4023. "file",
  4024. "files",
  4025. "filesystem",
  4026. "filesystems",
  4027. "ftp",
  4028. "s3",
  4029. "sftp",
  4030. "storage"
  4031. ],
  4032. "support": {
  4033. "issues": "https://github.com/thephpleague/flysystem/issues",
  4034. "source": "https://github.com/thephpleague/flysystem/tree/3.27.0"
  4035. },
  4036. "funding": [
  4037. {
  4038. "url": "https://ecologi.com/frankdejonge",
  4039. "type": "custom"
  4040. },
  4041. {
  4042. "url": "https://github.com/frankdejonge",
  4043. "type": "github"
  4044. }
  4045. ],
  4046. "time": "2024-04-07T19:17:50+00:00"
  4047. },
  4048. {
  4049. "name": "league/flysystem-local",
  4050. "version": "3.25.1",
  4051. "source": {
  4052. "type": "git",
  4053. "url": "https://github.com/thephpleague/flysystem-local.git",
  4054. "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92"
  4055. },
  4056. "dist": {
  4057. "type": "zip",
  4058. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/61a6a90d6e999e4ddd9ce5adb356de0939060b92",
  4059. "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92",
  4060. "shasum": ""
  4061. },
  4062. "require": {
  4063. "ext-fileinfo": "*",
  4064. "league/flysystem": "^3.0.0",
  4065. "league/mime-type-detection": "^1.0.0",
  4066. "php": "^8.0.2"
  4067. },
  4068. "type": "library",
  4069. "autoload": {
  4070. "psr-4": {
  4071. "League\\Flysystem\\Local\\": ""
  4072. }
  4073. },
  4074. "notification-url": "https://packagist.org/downloads/",
  4075. "license": [
  4076. "MIT"
  4077. ],
  4078. "authors": [
  4079. {
  4080. "name": "Frank de Jonge",
  4081. "email": "info@frankdejonge.nl"
  4082. }
  4083. ],
  4084. "description": "Local filesystem adapter for Flysystem.",
  4085. "keywords": [
  4086. "Flysystem",
  4087. "file",
  4088. "files",
  4089. "filesystem",
  4090. "local"
  4091. ],
  4092. "support": {
  4093. "source": "https://github.com/thephpleague/flysystem-local/tree/3.25.1"
  4094. },
  4095. "funding": [
  4096. {
  4097. "url": "https://ecologi.com/frankdejonge",
  4098. "type": "custom"
  4099. },
  4100. {
  4101. "url": "https://github.com/frankdejonge",
  4102. "type": "github"
  4103. }
  4104. ],
  4105. "time": "2024-03-15T19:58:44+00:00"
  4106. },
  4107. {
  4108. "name": "league/mime-type-detection",
  4109. "version": "1.15.0",
  4110. "source": {
  4111. "type": "git",
  4112. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4113. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  4114. },
  4115. "dist": {
  4116. "type": "zip",
  4117. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  4118. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  4119. "shasum": ""
  4120. },
  4121. "require": {
  4122. "ext-fileinfo": "*",
  4123. "php": "^7.4 || ^8.0"
  4124. },
  4125. "require-dev": {
  4126. "friendsofphp/php-cs-fixer": "^3.2",
  4127. "phpstan/phpstan": "^0.12.68",
  4128. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4129. },
  4130. "type": "library",
  4131. "autoload": {
  4132. "psr-4": {
  4133. "League\\MimeTypeDetection\\": "src"
  4134. }
  4135. },
  4136. "notification-url": "https://packagist.org/downloads/",
  4137. "license": [
  4138. "MIT"
  4139. ],
  4140. "authors": [
  4141. {
  4142. "name": "Frank de Jonge",
  4143. "email": "info@frankdejonge.nl"
  4144. }
  4145. ],
  4146. "description": "Mime-type detection for Flysystem",
  4147. "support": {
  4148. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4149. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  4150. },
  4151. "funding": [
  4152. {
  4153. "url": "https://github.com/frankdejonge",
  4154. "type": "github"
  4155. },
  4156. {
  4157. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4158. "type": "tidelift"
  4159. }
  4160. ],
  4161. "time": "2024-01-28T23:22:08+00:00"
  4162. },
  4163. {
  4164. "name": "league/oauth1-client",
  4165. "version": "v1.10.1",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://github.com/thephpleague/oauth1-client.git",
  4169. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4174. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4175. "shasum": ""
  4176. },
  4177. "require": {
  4178. "ext-json": "*",
  4179. "ext-openssl": "*",
  4180. "guzzlehttp/guzzle": "^6.0|^7.0",
  4181. "guzzlehttp/psr7": "^1.7|^2.0",
  4182. "php": ">=7.1||>=8.0"
  4183. },
  4184. "require-dev": {
  4185. "ext-simplexml": "*",
  4186. "friendsofphp/php-cs-fixer": "^2.17",
  4187. "mockery/mockery": "^1.3.3",
  4188. "phpstan/phpstan": "^0.12.42",
  4189. "phpunit/phpunit": "^7.5||9.5"
  4190. },
  4191. "suggest": {
  4192. "ext-simplexml": "For decoding XML-based responses."
  4193. },
  4194. "type": "library",
  4195. "extra": {
  4196. "branch-alias": {
  4197. "dev-master": "1.0-dev",
  4198. "dev-develop": "2.0-dev"
  4199. }
  4200. },
  4201. "autoload": {
  4202. "psr-4": {
  4203. "League\\OAuth1\\Client\\": "src/"
  4204. }
  4205. },
  4206. "notification-url": "https://packagist.org/downloads/",
  4207. "license": [
  4208. "MIT"
  4209. ],
  4210. "authors": [
  4211. {
  4212. "name": "Ben Corlett",
  4213. "email": "bencorlett@me.com",
  4214. "homepage": "http://www.webcomm.com.au",
  4215. "role": "Developer"
  4216. }
  4217. ],
  4218. "description": "OAuth 1.0 Client Library",
  4219. "keywords": [
  4220. "Authentication",
  4221. "SSO",
  4222. "authorization",
  4223. "bitbucket",
  4224. "identity",
  4225. "idp",
  4226. "oauth",
  4227. "oauth1",
  4228. "single sign on",
  4229. "trello",
  4230. "tumblr",
  4231. "twitter"
  4232. ],
  4233. "support": {
  4234. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4235. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4236. },
  4237. "time": "2022-04-15T14:02:14+00:00"
  4238. },
  4239. {
  4240. "name": "league/uri",
  4241. "version": "7.4.1",
  4242. "source": {
  4243. "type": "git",
  4244. "url": "https://github.com/thephpleague/uri.git",
  4245. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  4246. },
  4247. "dist": {
  4248. "type": "zip",
  4249. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4250. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4251. "shasum": ""
  4252. },
  4253. "require": {
  4254. "league/uri-interfaces": "^7.3",
  4255. "php": "^8.1"
  4256. },
  4257. "conflict": {
  4258. "league/uri-schemes": "^1.0"
  4259. },
  4260. "suggest": {
  4261. "ext-bcmath": "to improve IPV4 host parsing",
  4262. "ext-fileinfo": "to create Data URI from file contennts",
  4263. "ext-gmp": "to improve IPV4 host parsing",
  4264. "ext-intl": "to handle IDN host with the best performance",
  4265. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4266. "league/uri-components": "Needed to easily manipulate URI objects components",
  4267. "php-64bit": "to improve IPV4 host parsing",
  4268. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4269. },
  4270. "type": "library",
  4271. "extra": {
  4272. "branch-alias": {
  4273. "dev-master": "7.x-dev"
  4274. }
  4275. },
  4276. "autoload": {
  4277. "psr-4": {
  4278. "League\\Uri\\": ""
  4279. }
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "Ignace Nyamagana Butera",
  4288. "email": "nyamsprod@gmail.com",
  4289. "homepage": "https://nyamsprod.com"
  4290. }
  4291. ],
  4292. "description": "URI manipulation library",
  4293. "homepage": "https://uri.thephpleague.com",
  4294. "keywords": [
  4295. "data-uri",
  4296. "file-uri",
  4297. "ftp",
  4298. "hostname",
  4299. "http",
  4300. "https",
  4301. "middleware",
  4302. "parse_str",
  4303. "parse_url",
  4304. "psr-7",
  4305. "query-string",
  4306. "querystring",
  4307. "rfc3986",
  4308. "rfc3987",
  4309. "rfc6570",
  4310. "uri",
  4311. "uri-template",
  4312. "url",
  4313. "ws"
  4314. ],
  4315. "support": {
  4316. "docs": "https://uri.thephpleague.com",
  4317. "forum": "https://thephpleague.slack.com",
  4318. "issues": "https://github.com/thephpleague/uri-src/issues",
  4319. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  4320. },
  4321. "funding": [
  4322. {
  4323. "url": "https://github.com/sponsors/nyamsprod",
  4324. "type": "github"
  4325. }
  4326. ],
  4327. "time": "2024-03-23T07:42:40+00:00"
  4328. },
  4329. {
  4330. "name": "league/uri-interfaces",
  4331. "version": "7.4.1",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4335. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  4340. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  4341. "shasum": ""
  4342. },
  4343. "require": {
  4344. "ext-filter": "*",
  4345. "php": "^8.1",
  4346. "psr/http-factory": "^1",
  4347. "psr/http-message": "^1.1 || ^2.0"
  4348. },
  4349. "suggest": {
  4350. "ext-bcmath": "to improve IPV4 host parsing",
  4351. "ext-gmp": "to improve IPV4 host parsing",
  4352. "ext-intl": "to handle IDN host with the best performance",
  4353. "php-64bit": "to improve IPV4 host parsing",
  4354. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4355. },
  4356. "type": "library",
  4357. "extra": {
  4358. "branch-alias": {
  4359. "dev-master": "7.x-dev"
  4360. }
  4361. },
  4362. "autoload": {
  4363. "psr-4": {
  4364. "League\\Uri\\": ""
  4365. }
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Ignace Nyamagana Butera",
  4374. "email": "nyamsprod@gmail.com",
  4375. "homepage": "https://nyamsprod.com"
  4376. }
  4377. ],
  4378. "description": "Common interfaces and classes for URI representation and interaction",
  4379. "homepage": "https://uri.thephpleague.com",
  4380. "keywords": [
  4381. "data-uri",
  4382. "file-uri",
  4383. "ftp",
  4384. "hostname",
  4385. "http",
  4386. "https",
  4387. "parse_str",
  4388. "parse_url",
  4389. "psr-7",
  4390. "query-string",
  4391. "querystring",
  4392. "rfc3986",
  4393. "rfc3987",
  4394. "rfc6570",
  4395. "uri",
  4396. "url",
  4397. "ws"
  4398. ],
  4399. "support": {
  4400. "docs": "https://uri.thephpleague.com",
  4401. "forum": "https://thephpleague.slack.com",
  4402. "issues": "https://github.com/thephpleague/uri-src/issues",
  4403. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  4404. },
  4405. "funding": [
  4406. {
  4407. "url": "https://github.com/sponsors/nyamsprod",
  4408. "type": "github"
  4409. }
  4410. ],
  4411. "time": "2024-03-23T07:42:40+00:00"
  4412. },
  4413. {
  4414. "name": "livewire/livewire",
  4415. "version": "v3.4.11",
  4416. "source": {
  4417. "type": "git",
  4418. "url": "https://github.com/livewire/livewire.git",
  4419. "reference": "8a78d0c3ae9b4c96a2d8932ea4ac0dc782325de0"
  4420. },
  4421. "dist": {
  4422. "type": "zip",
  4423. "url": "https://api.github.com/repos/livewire/livewire/zipball/8a78d0c3ae9b4c96a2d8932ea4ac0dc782325de0",
  4424. "reference": "8a78d0c3ae9b4c96a2d8932ea4ac0dc782325de0",
  4425. "shasum": ""
  4426. },
  4427. "require": {
  4428. "illuminate/database": "^10.0|^11.0",
  4429. "illuminate/routing": "^10.0|^11.0",
  4430. "illuminate/support": "^10.0|^11.0",
  4431. "illuminate/validation": "^10.0|^11.0",
  4432. "league/mime-type-detection": "^1.9",
  4433. "php": "^8.1",
  4434. "symfony/console": "^6.0|^7.0",
  4435. "symfony/http-kernel": "^6.2|^7.0"
  4436. },
  4437. "require-dev": {
  4438. "calebporzio/sushi": "^2.1",
  4439. "laravel/framework": "^10.0|^11.0",
  4440. "laravel/prompts": "^0.1.6",
  4441. "mockery/mockery": "^1.3.1",
  4442. "orchestra/testbench": "^8.21.0|^9.0",
  4443. "orchestra/testbench-dusk": "^8.24|^9.1",
  4444. "phpunit/phpunit": "^10.4",
  4445. "psy/psysh": "^0.11.22|^0.12"
  4446. },
  4447. "type": "library",
  4448. "extra": {
  4449. "laravel": {
  4450. "providers": [
  4451. "Livewire\\LivewireServiceProvider"
  4452. ],
  4453. "aliases": {
  4454. "Livewire": "Livewire\\Livewire"
  4455. }
  4456. }
  4457. },
  4458. "autoload": {
  4459. "files": [
  4460. "src/helpers.php"
  4461. ],
  4462. "psr-4": {
  4463. "Livewire\\": "src/"
  4464. }
  4465. },
  4466. "notification-url": "https://packagist.org/downloads/",
  4467. "license": [
  4468. "MIT"
  4469. ],
  4470. "authors": [
  4471. {
  4472. "name": "Caleb Porzio",
  4473. "email": "calebporzio@gmail.com"
  4474. }
  4475. ],
  4476. "description": "A front-end framework for Laravel.",
  4477. "support": {
  4478. "issues": "https://github.com/livewire/livewire/issues",
  4479. "source": "https://github.com/livewire/livewire/tree/v3.4.11"
  4480. },
  4481. "funding": [
  4482. {
  4483. "url": "https://github.com/livewire",
  4484. "type": "github"
  4485. }
  4486. ],
  4487. "time": "2024-04-24T12:14:15+00:00"
  4488. },
  4489. {
  4490. "name": "masterminds/html5",
  4491. "version": "2.9.0",
  4492. "source": {
  4493. "type": "git",
  4494. "url": "https://github.com/Masterminds/html5-php.git",
  4495. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4496. },
  4497. "dist": {
  4498. "type": "zip",
  4499. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4500. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4501. "shasum": ""
  4502. },
  4503. "require": {
  4504. "ext-dom": "*",
  4505. "php": ">=5.3.0"
  4506. },
  4507. "require-dev": {
  4508. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4509. },
  4510. "type": "library",
  4511. "extra": {
  4512. "branch-alias": {
  4513. "dev-master": "2.7-dev"
  4514. }
  4515. },
  4516. "autoload": {
  4517. "psr-4": {
  4518. "Masterminds\\": "src"
  4519. }
  4520. },
  4521. "notification-url": "https://packagist.org/downloads/",
  4522. "license": [
  4523. "MIT"
  4524. ],
  4525. "authors": [
  4526. {
  4527. "name": "Matt Butcher",
  4528. "email": "technosophos@gmail.com"
  4529. },
  4530. {
  4531. "name": "Matt Farina",
  4532. "email": "matt@mattfarina.com"
  4533. },
  4534. {
  4535. "name": "Asmir Mustafic",
  4536. "email": "goetas@gmail.com"
  4537. }
  4538. ],
  4539. "description": "An HTML5 parser and serializer.",
  4540. "homepage": "http://masterminds.github.io/html5-php",
  4541. "keywords": [
  4542. "HTML5",
  4543. "dom",
  4544. "html",
  4545. "parser",
  4546. "querypath",
  4547. "serializer",
  4548. "xml"
  4549. ],
  4550. "support": {
  4551. "issues": "https://github.com/Masterminds/html5-php/issues",
  4552. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4553. },
  4554. "time": "2024-03-31T07:05:07+00:00"
  4555. },
  4556. {
  4557. "name": "matomo/device-detector",
  4558. "version": "6.3.1",
  4559. "source": {
  4560. "type": "git",
  4561. "url": "https://github.com/matomo-org/device-detector.git",
  4562. "reference": "8096093346917ee2477d802ab3b00c4c091c5cee"
  4563. },
  4564. "dist": {
  4565. "type": "zip",
  4566. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/8096093346917ee2477d802ab3b00c4c091c5cee",
  4567. "reference": "8096093346917ee2477d802ab3b00c4c091c5cee",
  4568. "shasum": ""
  4569. },
  4570. "require": {
  4571. "mustangostang/spyc": "*",
  4572. "php": "^7.2|^8.0"
  4573. },
  4574. "replace": {
  4575. "piwik/device-detector": "self.version"
  4576. },
  4577. "require-dev": {
  4578. "matthiasmullie/scrapbook": "^1.4.7",
  4579. "mayflower/mo4-coding-standard": "^v9.0.0",
  4580. "phpstan/phpstan": "^1.10.44",
  4581. "phpunit/phpunit": "^8.5.8",
  4582. "psr/cache": "^1.0.1",
  4583. "psr/simple-cache": "^1.0.1",
  4584. "symfony/yaml": "^5.1.7"
  4585. },
  4586. "suggest": {
  4587. "doctrine/cache": "Can directly be used for caching purpose",
  4588. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4589. },
  4590. "type": "library",
  4591. "autoload": {
  4592. "psr-4": {
  4593. "DeviceDetector\\": ""
  4594. },
  4595. "exclude-from-classmap": [
  4596. "Tests/"
  4597. ]
  4598. },
  4599. "notification-url": "https://packagist.org/downloads/",
  4600. "license": [
  4601. "LGPL-3.0-or-later"
  4602. ],
  4603. "authors": [
  4604. {
  4605. "name": "The Matomo Team",
  4606. "email": "hello@matomo.org",
  4607. "homepage": "https://matomo.org/team/"
  4608. }
  4609. ],
  4610. "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
  4611. "homepage": "https://matomo.org",
  4612. "keywords": [
  4613. "devicedetection",
  4614. "parser",
  4615. "useragent"
  4616. ],
  4617. "support": {
  4618. "forum": "https://forum.matomo.org/",
  4619. "issues": "https://github.com/matomo-org/device-detector/issues",
  4620. "source": "https://github.com/matomo-org/matomo",
  4621. "wiki": "https://dev.matomo.org/"
  4622. },
  4623. "time": "2024-04-12T12:16:21+00:00"
  4624. },
  4625. {
  4626. "name": "monolog/monolog",
  4627. "version": "3.6.0",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://github.com/Seldaek/monolog.git",
  4631. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4636. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4637. "shasum": ""
  4638. },
  4639. "require": {
  4640. "php": ">=8.1",
  4641. "psr/log": "^2.0 || ^3.0"
  4642. },
  4643. "provide": {
  4644. "psr/log-implementation": "3.0.0"
  4645. },
  4646. "require-dev": {
  4647. "aws/aws-sdk-php": "^3.0",
  4648. "doctrine/couchdb": "~1.0@dev",
  4649. "elasticsearch/elasticsearch": "^7 || ^8",
  4650. "ext-json": "*",
  4651. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4652. "guzzlehttp/guzzle": "^7.4.5",
  4653. "guzzlehttp/psr7": "^2.2",
  4654. "mongodb/mongodb": "^1.8",
  4655. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4656. "phpstan/phpstan": "^1.9",
  4657. "phpstan/phpstan-deprecation-rules": "^1.0",
  4658. "phpstan/phpstan-strict-rules": "^1.4",
  4659. "phpunit/phpunit": "^10.5.17",
  4660. "predis/predis": "^1.1 || ^2",
  4661. "ruflin/elastica": "^7",
  4662. "symfony/mailer": "^5.4 || ^6",
  4663. "symfony/mime": "^5.4 || ^6"
  4664. },
  4665. "suggest": {
  4666. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4667. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4668. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4669. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4670. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4671. "ext-mbstring": "Allow to work properly with unicode symbols",
  4672. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4673. "ext-openssl": "Required to send log messages using SSL",
  4674. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4675. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4676. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4677. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4678. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4679. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4680. },
  4681. "type": "library",
  4682. "extra": {
  4683. "branch-alias": {
  4684. "dev-main": "3.x-dev"
  4685. }
  4686. },
  4687. "autoload": {
  4688. "psr-4": {
  4689. "Monolog\\": "src/Monolog"
  4690. }
  4691. },
  4692. "notification-url": "https://packagist.org/downloads/",
  4693. "license": [
  4694. "MIT"
  4695. ],
  4696. "authors": [
  4697. {
  4698. "name": "Jordi Boggiano",
  4699. "email": "j.boggiano@seld.be",
  4700. "homepage": "https://seld.be"
  4701. }
  4702. ],
  4703. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4704. "homepage": "https://github.com/Seldaek/monolog",
  4705. "keywords": [
  4706. "log",
  4707. "logging",
  4708. "psr-3"
  4709. ],
  4710. "support": {
  4711. "issues": "https://github.com/Seldaek/monolog/issues",
  4712. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4713. },
  4714. "funding": [
  4715. {
  4716. "url": "https://github.com/Seldaek",
  4717. "type": "github"
  4718. },
  4719. {
  4720. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4721. "type": "tidelift"
  4722. }
  4723. ],
  4724. "time": "2024-04-12T21:02:21+00:00"
  4725. },
  4726. {
  4727. "name": "mtdowling/jmespath.php",
  4728. "version": "2.7.0",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/jmespath/jmespath.php.git",
  4732. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4737. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4738. "shasum": ""
  4739. },
  4740. "require": {
  4741. "php": "^7.2.5 || ^8.0",
  4742. "symfony/polyfill-mbstring": "^1.17"
  4743. },
  4744. "require-dev": {
  4745. "composer/xdebug-handler": "^3.0.3",
  4746. "phpunit/phpunit": "^8.5.33"
  4747. },
  4748. "bin": [
  4749. "bin/jp.php"
  4750. ],
  4751. "type": "library",
  4752. "extra": {
  4753. "branch-alias": {
  4754. "dev-master": "2.7-dev"
  4755. }
  4756. },
  4757. "autoload": {
  4758. "files": [
  4759. "src/JmesPath.php"
  4760. ],
  4761. "psr-4": {
  4762. "JmesPath\\": "src/"
  4763. }
  4764. },
  4765. "notification-url": "https://packagist.org/downloads/",
  4766. "license": [
  4767. "MIT"
  4768. ],
  4769. "authors": [
  4770. {
  4771. "name": "Graham Campbell",
  4772. "email": "hello@gjcampbell.co.uk",
  4773. "homepage": "https://github.com/GrahamCampbell"
  4774. },
  4775. {
  4776. "name": "Michael Dowling",
  4777. "email": "mtdowling@gmail.com",
  4778. "homepage": "https://github.com/mtdowling"
  4779. }
  4780. ],
  4781. "description": "Declaratively specify how to extract elements from a JSON document",
  4782. "keywords": [
  4783. "json",
  4784. "jsonpath"
  4785. ],
  4786. "support": {
  4787. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4788. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  4789. },
  4790. "time": "2023-08-25T10:54:48+00:00"
  4791. },
  4792. {
  4793. "name": "mustangostang/spyc",
  4794. "version": "0.6.3",
  4795. "source": {
  4796. "type": "git",
  4797. "url": "https://github.com/mustangostang/spyc.git",
  4798. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4799. },
  4800. "dist": {
  4801. "type": "zip",
  4802. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4803. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4804. "shasum": ""
  4805. },
  4806. "require": {
  4807. "php": ">=5.3.1"
  4808. },
  4809. "require-dev": {
  4810. "phpunit/phpunit": "4.3.*@dev"
  4811. },
  4812. "type": "library",
  4813. "extra": {
  4814. "branch-alias": {
  4815. "dev-master": "0.5.x-dev"
  4816. }
  4817. },
  4818. "autoload": {
  4819. "files": [
  4820. "Spyc.php"
  4821. ]
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "MIT"
  4826. ],
  4827. "authors": [
  4828. {
  4829. "name": "mustangostang",
  4830. "email": "vlad.andersen@gmail.com"
  4831. }
  4832. ],
  4833. "description": "A simple YAML loader/dumper class for PHP",
  4834. "homepage": "https://github.com/mustangostang/spyc/",
  4835. "keywords": [
  4836. "spyc",
  4837. "yaml",
  4838. "yml"
  4839. ],
  4840. "support": {
  4841. "issues": "https://github.com/mustangostang/spyc/issues",
  4842. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4843. },
  4844. "time": "2019-09-10T13:16:29+00:00"
  4845. },
  4846. {
  4847. "name": "nesbot/carbon",
  4848. "version": "3.3.0",
  4849. "source": {
  4850. "type": "git",
  4851. "url": "https://github.com/briannesbitt/Carbon.git",
  4852. "reference": "7219739c4e01d4680c980545821733b6ed8ee880"
  4853. },
  4854. "dist": {
  4855. "type": "zip",
  4856. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7219739c4e01d4680c980545821733b6ed8ee880",
  4857. "reference": "7219739c4e01d4680c980545821733b6ed8ee880",
  4858. "shasum": ""
  4859. },
  4860. "require": {
  4861. "carbonphp/carbon-doctrine-types": "*",
  4862. "ext-json": "*",
  4863. "php": "^8.1",
  4864. "psr/clock": "^1.0",
  4865. "symfony/clock": "^6.3 || ^7.0",
  4866. "symfony/polyfill-mbstring": "^1.0",
  4867. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4868. },
  4869. "provide": {
  4870. "psr/clock-implementation": "1.0"
  4871. },
  4872. "require-dev": {
  4873. "doctrine/dbal": "^3.6.3 || ^4.0",
  4874. "doctrine/orm": "^2.15.2 || ^3.0",
  4875. "friendsofphp/php-cs-fixer": "^3.52.1",
  4876. "kylekatarnls/multi-tester": "^2.5.3",
  4877. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4878. "phpmd/phpmd": "^2.15.0",
  4879. "phpstan/extension-installer": "^1.3.1",
  4880. "phpstan/phpstan": "^1.10.65",
  4881. "phpunit/phpunit": "^10.5.15",
  4882. "squizlabs/php_codesniffer": "^3.9.0"
  4883. },
  4884. "bin": [
  4885. "bin/carbon"
  4886. ],
  4887. "type": "library",
  4888. "extra": {
  4889. "branch-alias": {
  4890. "dev-master": "3.x-dev",
  4891. "dev-2.x": "2.x-dev"
  4892. },
  4893. "laravel": {
  4894. "providers": [
  4895. "Carbon\\Laravel\\ServiceProvider"
  4896. ]
  4897. },
  4898. "phpstan": {
  4899. "includes": [
  4900. "extension.neon"
  4901. ]
  4902. }
  4903. },
  4904. "autoload": {
  4905. "psr-4": {
  4906. "Carbon\\": "src/Carbon/"
  4907. }
  4908. },
  4909. "notification-url": "https://packagist.org/downloads/",
  4910. "license": [
  4911. "MIT"
  4912. ],
  4913. "authors": [
  4914. {
  4915. "name": "Brian Nesbitt",
  4916. "email": "brian@nesbot.com",
  4917. "homepage": "https://markido.com"
  4918. },
  4919. {
  4920. "name": "kylekatarnls",
  4921. "homepage": "https://github.com/kylekatarnls"
  4922. }
  4923. ],
  4924. "description": "An API extension for DateTime that supports 281 different languages.",
  4925. "homepage": "https://carbon.nesbot.com",
  4926. "keywords": [
  4927. "date",
  4928. "datetime",
  4929. "time"
  4930. ],
  4931. "support": {
  4932. "docs": "https://carbon.nesbot.com/docs",
  4933. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4934. "source": "https://github.com/briannesbitt/Carbon"
  4935. },
  4936. "funding": [
  4937. {
  4938. "url": "https://github.com/sponsors/kylekatarnls",
  4939. "type": "github"
  4940. },
  4941. {
  4942. "url": "https://opencollective.com/Carbon#sponsor",
  4943. "type": "opencollective"
  4944. },
  4945. {
  4946. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4947. "type": "tidelift"
  4948. }
  4949. ],
  4950. "time": "2024-04-18T16:35:06+00:00"
  4951. },
  4952. {
  4953. "name": "nette/schema",
  4954. "version": "v1.3.0",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/nette/schema.git",
  4958. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4963. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4964. "shasum": ""
  4965. },
  4966. "require": {
  4967. "nette/utils": "^4.0",
  4968. "php": "8.1 - 8.3"
  4969. },
  4970. "require-dev": {
  4971. "nette/tester": "^2.4",
  4972. "phpstan/phpstan-nette": "^1.0",
  4973. "tracy/tracy": "^2.8"
  4974. },
  4975. "type": "library",
  4976. "extra": {
  4977. "branch-alias": {
  4978. "dev-master": "1.3-dev"
  4979. }
  4980. },
  4981. "autoload": {
  4982. "classmap": [
  4983. "src/"
  4984. ]
  4985. },
  4986. "notification-url": "https://packagist.org/downloads/",
  4987. "license": [
  4988. "BSD-3-Clause",
  4989. "GPL-2.0-only",
  4990. "GPL-3.0-only"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "David Grudl",
  4995. "homepage": "https://davidgrudl.com"
  4996. },
  4997. {
  4998. "name": "Nette Community",
  4999. "homepage": "https://nette.org/contributors"
  5000. }
  5001. ],
  5002. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  5003. "homepage": "https://nette.org",
  5004. "keywords": [
  5005. "config",
  5006. "nette"
  5007. ],
  5008. "support": {
  5009. "issues": "https://github.com/nette/schema/issues",
  5010. "source": "https://github.com/nette/schema/tree/v1.3.0"
  5011. },
  5012. "time": "2023-12-11T11:54:22+00:00"
  5013. },
  5014. {
  5015. "name": "nette/utils",
  5016. "version": "v4.0.4",
  5017. "source": {
  5018. "type": "git",
  5019. "url": "https://github.com/nette/utils.git",
  5020. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  5021. },
  5022. "dist": {
  5023. "type": "zip",
  5024. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  5025. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  5026. "shasum": ""
  5027. },
  5028. "require": {
  5029. "php": ">=8.0 <8.4"
  5030. },
  5031. "conflict": {
  5032. "nette/finder": "<3",
  5033. "nette/schema": "<1.2.2"
  5034. },
  5035. "require-dev": {
  5036. "jetbrains/phpstorm-attributes": "dev-master",
  5037. "nette/tester": "^2.5",
  5038. "phpstan/phpstan": "^1.0",
  5039. "tracy/tracy": "^2.9"
  5040. },
  5041. "suggest": {
  5042. "ext-gd": "to use Image",
  5043. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5044. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5045. "ext-json": "to use Nette\\Utils\\Json",
  5046. "ext-mbstring": "to use Strings::lower() etc...",
  5047. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5048. },
  5049. "type": "library",
  5050. "extra": {
  5051. "branch-alias": {
  5052. "dev-master": "4.0-dev"
  5053. }
  5054. },
  5055. "autoload": {
  5056. "classmap": [
  5057. "src/"
  5058. ]
  5059. },
  5060. "notification-url": "https://packagist.org/downloads/",
  5061. "license": [
  5062. "BSD-3-Clause",
  5063. "GPL-2.0-only",
  5064. "GPL-3.0-only"
  5065. ],
  5066. "authors": [
  5067. {
  5068. "name": "David Grudl",
  5069. "homepage": "https://davidgrudl.com"
  5070. },
  5071. {
  5072. "name": "Nette Community",
  5073. "homepage": "https://nette.org/contributors"
  5074. }
  5075. ],
  5076. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5077. "homepage": "https://nette.org",
  5078. "keywords": [
  5079. "array",
  5080. "core",
  5081. "datetime",
  5082. "images",
  5083. "json",
  5084. "nette",
  5085. "paginator",
  5086. "password",
  5087. "slugify",
  5088. "string",
  5089. "unicode",
  5090. "utf-8",
  5091. "utility",
  5092. "validation"
  5093. ],
  5094. "support": {
  5095. "issues": "https://github.com/nette/utils/issues",
  5096. "source": "https://github.com/nette/utils/tree/v4.0.4"
  5097. },
  5098. "time": "2024-01-17T16:50:36+00:00"
  5099. },
  5100. {
  5101. "name": "nikic/php-parser",
  5102. "version": "v5.0.2",
  5103. "source": {
  5104. "type": "git",
  5105. "url": "https://github.com/nikic/PHP-Parser.git",
  5106. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
  5107. },
  5108. "dist": {
  5109. "type": "zip",
  5110. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
  5111. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
  5112. "shasum": ""
  5113. },
  5114. "require": {
  5115. "ext-ctype": "*",
  5116. "ext-json": "*",
  5117. "ext-tokenizer": "*",
  5118. "php": ">=7.4"
  5119. },
  5120. "require-dev": {
  5121. "ircmaxell/php-yacc": "^0.0.7",
  5122. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5123. },
  5124. "bin": [
  5125. "bin/php-parse"
  5126. ],
  5127. "type": "library",
  5128. "extra": {
  5129. "branch-alias": {
  5130. "dev-master": "5.0-dev"
  5131. }
  5132. },
  5133. "autoload": {
  5134. "psr-4": {
  5135. "PhpParser\\": "lib/PhpParser"
  5136. }
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "BSD-3-Clause"
  5141. ],
  5142. "authors": [
  5143. {
  5144. "name": "Nikita Popov"
  5145. }
  5146. ],
  5147. "description": "A PHP parser written in PHP",
  5148. "keywords": [
  5149. "parser",
  5150. "php"
  5151. ],
  5152. "support": {
  5153. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5154. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
  5155. },
  5156. "time": "2024-03-05T20:51:40+00:00"
  5157. },
  5158. {
  5159. "name": "nunomaduro/termwind",
  5160. "version": "v2.0.1",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/nunomaduro/termwind.git",
  5164. "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/58c4c58cf23df7f498daeb97092e34f5259feb6a",
  5169. "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "ext-mbstring": "*",
  5174. "php": "^8.2",
  5175. "symfony/console": "^7.0.4"
  5176. },
  5177. "require-dev": {
  5178. "ergebnis/phpstan-rules": "^2.2.0",
  5179. "illuminate/console": "^11.0.0",
  5180. "laravel/pint": "^1.14.0",
  5181. "mockery/mockery": "^1.6.7",
  5182. "pestphp/pest": "^2.34.1",
  5183. "phpstan/phpstan": "^1.10.59",
  5184. "phpstan/phpstan-strict-rules": "^1.5.2",
  5185. "symfony/var-dumper": "^7.0.4",
  5186. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5187. },
  5188. "type": "library",
  5189. "extra": {
  5190. "laravel": {
  5191. "providers": [
  5192. "Termwind\\Laravel\\TermwindServiceProvider"
  5193. ]
  5194. },
  5195. "branch-alias": {
  5196. "dev-2.x": "2.x-dev"
  5197. }
  5198. },
  5199. "autoload": {
  5200. "files": [
  5201. "src/Functions.php"
  5202. ],
  5203. "psr-4": {
  5204. "Termwind\\": "src/"
  5205. }
  5206. },
  5207. "notification-url": "https://packagist.org/downloads/",
  5208. "license": [
  5209. "MIT"
  5210. ],
  5211. "authors": [
  5212. {
  5213. "name": "Nuno Maduro",
  5214. "email": "enunomaduro@gmail.com"
  5215. }
  5216. ],
  5217. "description": "Its like Tailwind CSS, but for the console.",
  5218. "keywords": [
  5219. "cli",
  5220. "console",
  5221. "css",
  5222. "package",
  5223. "php",
  5224. "style"
  5225. ],
  5226. "support": {
  5227. "issues": "https://github.com/nunomaduro/termwind/issues",
  5228. "source": "https://github.com/nunomaduro/termwind/tree/v2.0.1"
  5229. },
  5230. "funding": [
  5231. {
  5232. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5233. "type": "custom"
  5234. },
  5235. {
  5236. "url": "https://github.com/nunomaduro",
  5237. "type": "github"
  5238. },
  5239. {
  5240. "url": "https://github.com/xiCO2k",
  5241. "type": "github"
  5242. }
  5243. ],
  5244. "time": "2024-03-06T16:17:14+00:00"
  5245. },
  5246. {
  5247. "name": "openspout/openspout",
  5248. "version": "v4.23.0",
  5249. "source": {
  5250. "type": "git",
  5251. "url": "https://github.com/openspout/openspout.git",
  5252. "reference": "28f6a0e45acc3377f34c26cc3866e21f0447e0c8"
  5253. },
  5254. "dist": {
  5255. "type": "zip",
  5256. "url": "https://api.github.com/repos/openspout/openspout/zipball/28f6a0e45acc3377f34c26cc3866e21f0447e0c8",
  5257. "reference": "28f6a0e45acc3377f34c26cc3866e21f0447e0c8",
  5258. "shasum": ""
  5259. },
  5260. "require": {
  5261. "ext-dom": "*",
  5262. "ext-fileinfo": "*",
  5263. "ext-filter": "*",
  5264. "ext-libxml": "*",
  5265. "ext-xmlreader": "*",
  5266. "ext-zip": "*",
  5267. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  5268. },
  5269. "require-dev": {
  5270. "ext-zlib": "*",
  5271. "friendsofphp/php-cs-fixer": "^3.46.0",
  5272. "infection/infection": "^0.27.9",
  5273. "phpbench/phpbench": "^1.2.15",
  5274. "phpstan/phpstan": "^1.10.55",
  5275. "phpstan/phpstan-phpunit": "^1.3.15",
  5276. "phpstan/phpstan-strict-rules": "^1.5.2",
  5277. "phpunit/phpunit": "^10.5.5"
  5278. },
  5279. "suggest": {
  5280. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5281. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5282. },
  5283. "type": "library",
  5284. "extra": {
  5285. "branch-alias": {
  5286. "dev-master": "3.3.x-dev"
  5287. }
  5288. },
  5289. "autoload": {
  5290. "psr-4": {
  5291. "OpenSpout\\": "src/"
  5292. }
  5293. },
  5294. "notification-url": "https://packagist.org/downloads/",
  5295. "license": [
  5296. "MIT"
  5297. ],
  5298. "authors": [
  5299. {
  5300. "name": "Adrien Loison",
  5301. "email": "adrien@box.com"
  5302. }
  5303. ],
  5304. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5305. "homepage": "https://github.com/openspout/openspout",
  5306. "keywords": [
  5307. "OOXML",
  5308. "csv",
  5309. "excel",
  5310. "memory",
  5311. "odf",
  5312. "ods",
  5313. "office",
  5314. "open",
  5315. "php",
  5316. "read",
  5317. "scale",
  5318. "spreadsheet",
  5319. "stream",
  5320. "write",
  5321. "xlsx"
  5322. ],
  5323. "support": {
  5324. "issues": "https://github.com/openspout/openspout/issues",
  5325. "source": "https://github.com/openspout/openspout/tree/v4.23.0"
  5326. },
  5327. "funding": [
  5328. {
  5329. "url": "https://paypal.me/filippotessarotto",
  5330. "type": "custom"
  5331. },
  5332. {
  5333. "url": "https://github.com/Slamdunk",
  5334. "type": "github"
  5335. }
  5336. ],
  5337. "time": "2024-01-09T09:30:37+00:00"
  5338. },
  5339. {
  5340. "name": "paragonie/constant_time_encoding",
  5341. "version": "v2.6.3",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5345. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  5346. },
  5347. "dist": {
  5348. "type": "zip",
  5349. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  5350. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  5351. "shasum": ""
  5352. },
  5353. "require": {
  5354. "php": "^7|^8"
  5355. },
  5356. "require-dev": {
  5357. "phpunit/phpunit": "^6|^7|^8|^9",
  5358. "vimeo/psalm": "^1|^2|^3|^4"
  5359. },
  5360. "type": "library",
  5361. "autoload": {
  5362. "psr-4": {
  5363. "ParagonIE\\ConstantTime\\": "src/"
  5364. }
  5365. },
  5366. "notification-url": "https://packagist.org/downloads/",
  5367. "license": [
  5368. "MIT"
  5369. ],
  5370. "authors": [
  5371. {
  5372. "name": "Paragon Initiative Enterprises",
  5373. "email": "security@paragonie.com",
  5374. "homepage": "https://paragonie.com",
  5375. "role": "Maintainer"
  5376. },
  5377. {
  5378. "name": "Steve 'Sc00bz' Thomas",
  5379. "email": "steve@tobtu.com",
  5380. "homepage": "https://www.tobtu.com",
  5381. "role": "Original Developer"
  5382. }
  5383. ],
  5384. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5385. "keywords": [
  5386. "base16",
  5387. "base32",
  5388. "base32_decode",
  5389. "base32_encode",
  5390. "base64",
  5391. "base64_decode",
  5392. "base64_encode",
  5393. "bin2hex",
  5394. "encoding",
  5395. "hex",
  5396. "hex2bin",
  5397. "rfc4648"
  5398. ],
  5399. "support": {
  5400. "email": "info@paragonie.com",
  5401. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5402. "source": "https://github.com/paragonie/constant_time_encoding"
  5403. },
  5404. "time": "2022-06-14T06:56:20+00:00"
  5405. },
  5406. {
  5407. "name": "paragonie/random_compat",
  5408. "version": "v9.99.100",
  5409. "source": {
  5410. "type": "git",
  5411. "url": "https://github.com/paragonie/random_compat.git",
  5412. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5413. },
  5414. "dist": {
  5415. "type": "zip",
  5416. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5417. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5418. "shasum": ""
  5419. },
  5420. "require": {
  5421. "php": ">= 7"
  5422. },
  5423. "require-dev": {
  5424. "phpunit/phpunit": "4.*|5.*",
  5425. "vimeo/psalm": "^1"
  5426. },
  5427. "suggest": {
  5428. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5429. },
  5430. "type": "library",
  5431. "notification-url": "https://packagist.org/downloads/",
  5432. "license": [
  5433. "MIT"
  5434. ],
  5435. "authors": [
  5436. {
  5437. "name": "Paragon Initiative Enterprises",
  5438. "email": "security@paragonie.com",
  5439. "homepage": "https://paragonie.com"
  5440. }
  5441. ],
  5442. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5443. "keywords": [
  5444. "csprng",
  5445. "polyfill",
  5446. "pseudorandom",
  5447. "random"
  5448. ],
  5449. "support": {
  5450. "email": "info@paragonie.com",
  5451. "issues": "https://github.com/paragonie/random_compat/issues",
  5452. "source": "https://github.com/paragonie/random_compat"
  5453. },
  5454. "time": "2020-10-15T08:29:30+00:00"
  5455. },
  5456. {
  5457. "name": "phenx/php-font-lib",
  5458. "version": "0.5.6",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/dompdf/php-font-lib.git",
  5462. "reference": "a1681e9793040740a405ac5b189275059e2a9863"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
  5467. "reference": "a1681e9793040740a405ac5b189275059e2a9863",
  5468. "shasum": ""
  5469. },
  5470. "require": {
  5471. "ext-mbstring": "*"
  5472. },
  5473. "require-dev": {
  5474. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  5475. },
  5476. "type": "library",
  5477. "autoload": {
  5478. "psr-4": {
  5479. "FontLib\\": "src/FontLib"
  5480. }
  5481. },
  5482. "notification-url": "https://packagist.org/downloads/",
  5483. "license": [
  5484. "LGPL-2.1-or-later"
  5485. ],
  5486. "authors": [
  5487. {
  5488. "name": "Fabien Ménager",
  5489. "email": "fabien.menager@gmail.com"
  5490. }
  5491. ],
  5492. "description": "A library to read, parse, export and make subsets of different types of font files.",
  5493. "homepage": "https://github.com/PhenX/php-font-lib",
  5494. "support": {
  5495. "issues": "https://github.com/dompdf/php-font-lib/issues",
  5496. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6"
  5497. },
  5498. "time": "2024-01-29T14:45:26+00:00"
  5499. },
  5500. {
  5501. "name": "phenx/php-svg-lib",
  5502. "version": "0.5.4",
  5503. "source": {
  5504. "type": "git",
  5505. "url": "https://github.com/dompdf/php-svg-lib.git",
  5506. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691"
  5507. },
  5508. "dist": {
  5509. "type": "zip",
  5510. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  5511. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  5512. "shasum": ""
  5513. },
  5514. "require": {
  5515. "ext-mbstring": "*",
  5516. "php": "^7.1 || ^8.0",
  5517. "sabberworm/php-css-parser": "^8.4"
  5518. },
  5519. "require-dev": {
  5520. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  5521. },
  5522. "type": "library",
  5523. "autoload": {
  5524. "psr-4": {
  5525. "Svg\\": "src/Svg"
  5526. }
  5527. },
  5528. "notification-url": "https://packagist.org/downloads/",
  5529. "license": [
  5530. "LGPL-3.0-or-later"
  5531. ],
  5532. "authors": [
  5533. {
  5534. "name": "Fabien Ménager",
  5535. "email": "fabien.menager@gmail.com"
  5536. }
  5537. ],
  5538. "description": "A library to read, parse and export to PDF SVG files.",
  5539. "homepage": "https://github.com/PhenX/php-svg-lib",
  5540. "support": {
  5541. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  5542. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4"
  5543. },
  5544. "time": "2024-04-08T12:52:34+00:00"
  5545. },
  5546. {
  5547. "name": "phpoption/phpoption",
  5548. "version": "1.9.2",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/schmittjoh/php-option.git",
  5552. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5557. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5558. "shasum": ""
  5559. },
  5560. "require": {
  5561. "php": "^7.2.5 || ^8.0"
  5562. },
  5563. "require-dev": {
  5564. "bamarni/composer-bin-plugin": "^1.8.2",
  5565. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5566. },
  5567. "type": "library",
  5568. "extra": {
  5569. "bamarni-bin": {
  5570. "bin-links": true,
  5571. "forward-command": true
  5572. },
  5573. "branch-alias": {
  5574. "dev-master": "1.9-dev"
  5575. }
  5576. },
  5577. "autoload": {
  5578. "psr-4": {
  5579. "PhpOption\\": "src/PhpOption/"
  5580. }
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "Apache-2.0"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Johannes M. Schmitt",
  5589. "email": "schmittjoh@gmail.com",
  5590. "homepage": "https://github.com/schmittjoh"
  5591. },
  5592. {
  5593. "name": "Graham Campbell",
  5594. "email": "hello@gjcampbell.co.uk",
  5595. "homepage": "https://github.com/GrahamCampbell"
  5596. }
  5597. ],
  5598. "description": "Option Type for PHP",
  5599. "keywords": [
  5600. "language",
  5601. "option",
  5602. "php",
  5603. "type"
  5604. ],
  5605. "support": {
  5606. "issues": "https://github.com/schmittjoh/php-option/issues",
  5607. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5608. },
  5609. "funding": [
  5610. {
  5611. "url": "https://github.com/GrahamCampbell",
  5612. "type": "github"
  5613. },
  5614. {
  5615. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5616. "type": "tidelift"
  5617. }
  5618. ],
  5619. "time": "2023-11-12T21:59:55+00:00"
  5620. },
  5621. {
  5622. "name": "phpseclib/phpseclib",
  5623. "version": "3.0.37",
  5624. "source": {
  5625. "type": "git",
  5626. "url": "https://github.com/phpseclib/phpseclib.git",
  5627. "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8"
  5628. },
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cfa2013d0f68c062055180dd4328cc8b9d1f30b8",
  5632. "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8",
  5633. "shasum": ""
  5634. },
  5635. "require": {
  5636. "paragonie/constant_time_encoding": "^1|^2",
  5637. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5638. "php": ">=5.6.1"
  5639. },
  5640. "require-dev": {
  5641. "phpunit/phpunit": "*"
  5642. },
  5643. "suggest": {
  5644. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5645. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5646. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5647. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5648. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5649. },
  5650. "type": "library",
  5651. "autoload": {
  5652. "files": [
  5653. "phpseclib/bootstrap.php"
  5654. ],
  5655. "psr-4": {
  5656. "phpseclib3\\": "phpseclib/"
  5657. }
  5658. },
  5659. "notification-url": "https://packagist.org/downloads/",
  5660. "license": [
  5661. "MIT"
  5662. ],
  5663. "authors": [
  5664. {
  5665. "name": "Jim Wigginton",
  5666. "email": "terrafrost@php.net",
  5667. "role": "Lead Developer"
  5668. },
  5669. {
  5670. "name": "Patrick Monnerat",
  5671. "email": "pm@datasphere.ch",
  5672. "role": "Developer"
  5673. },
  5674. {
  5675. "name": "Andreas Fischer",
  5676. "email": "bantu@phpbb.com",
  5677. "role": "Developer"
  5678. },
  5679. {
  5680. "name": "Hans-Jürgen Petrich",
  5681. "email": "petrich@tronic-media.com",
  5682. "role": "Developer"
  5683. },
  5684. {
  5685. "name": "Graham Campbell",
  5686. "email": "graham@alt-three.com",
  5687. "role": "Developer"
  5688. }
  5689. ],
  5690. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5691. "homepage": "http://phpseclib.sourceforge.net",
  5692. "keywords": [
  5693. "BigInteger",
  5694. "aes",
  5695. "asn.1",
  5696. "asn1",
  5697. "blowfish",
  5698. "crypto",
  5699. "cryptography",
  5700. "encryption",
  5701. "rsa",
  5702. "security",
  5703. "sftp",
  5704. "signature",
  5705. "signing",
  5706. "ssh",
  5707. "twofish",
  5708. "x.509",
  5709. "x509"
  5710. ],
  5711. "support": {
  5712. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5713. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.37"
  5714. },
  5715. "funding": [
  5716. {
  5717. "url": "https://github.com/terrafrost",
  5718. "type": "github"
  5719. },
  5720. {
  5721. "url": "https://www.patreon.com/phpseclib",
  5722. "type": "patreon"
  5723. },
  5724. {
  5725. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5726. "type": "tidelift"
  5727. }
  5728. ],
  5729. "time": "2024-03-03T02:14:58+00:00"
  5730. },
  5731. {
  5732. "name": "psr/cache",
  5733. "version": "3.0.0",
  5734. "source": {
  5735. "type": "git",
  5736. "url": "https://github.com/php-fig/cache.git",
  5737. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5738. },
  5739. "dist": {
  5740. "type": "zip",
  5741. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5742. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5743. "shasum": ""
  5744. },
  5745. "require": {
  5746. "php": ">=8.0.0"
  5747. },
  5748. "type": "library",
  5749. "extra": {
  5750. "branch-alias": {
  5751. "dev-master": "1.0.x-dev"
  5752. }
  5753. },
  5754. "autoload": {
  5755. "psr-4": {
  5756. "Psr\\Cache\\": "src/"
  5757. }
  5758. },
  5759. "notification-url": "https://packagist.org/downloads/",
  5760. "license": [
  5761. "MIT"
  5762. ],
  5763. "authors": [
  5764. {
  5765. "name": "PHP-FIG",
  5766. "homepage": "https://www.php-fig.org/"
  5767. }
  5768. ],
  5769. "description": "Common interface for caching libraries",
  5770. "keywords": [
  5771. "cache",
  5772. "psr",
  5773. "psr-6"
  5774. ],
  5775. "support": {
  5776. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5777. },
  5778. "time": "2021-02-03T23:26:27+00:00"
  5779. },
  5780. {
  5781. "name": "psr/clock",
  5782. "version": "1.0.0",
  5783. "source": {
  5784. "type": "git",
  5785. "url": "https://github.com/php-fig/clock.git",
  5786. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5787. },
  5788. "dist": {
  5789. "type": "zip",
  5790. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5791. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5792. "shasum": ""
  5793. },
  5794. "require": {
  5795. "php": "^7.0 || ^8.0"
  5796. },
  5797. "type": "library",
  5798. "autoload": {
  5799. "psr-4": {
  5800. "Psr\\Clock\\": "src/"
  5801. }
  5802. },
  5803. "notification-url": "https://packagist.org/downloads/",
  5804. "license": [
  5805. "MIT"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "PHP-FIG",
  5810. "homepage": "https://www.php-fig.org/"
  5811. }
  5812. ],
  5813. "description": "Common interface for reading the clock.",
  5814. "homepage": "https://github.com/php-fig/clock",
  5815. "keywords": [
  5816. "clock",
  5817. "now",
  5818. "psr",
  5819. "psr-20",
  5820. "time"
  5821. ],
  5822. "support": {
  5823. "issues": "https://github.com/php-fig/clock/issues",
  5824. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5825. },
  5826. "time": "2022-11-25T14:36:26+00:00"
  5827. },
  5828. {
  5829. "name": "psr/container",
  5830. "version": "2.0.2",
  5831. "source": {
  5832. "type": "git",
  5833. "url": "https://github.com/php-fig/container.git",
  5834. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5835. },
  5836. "dist": {
  5837. "type": "zip",
  5838. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5839. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5840. "shasum": ""
  5841. },
  5842. "require": {
  5843. "php": ">=7.4.0"
  5844. },
  5845. "type": "library",
  5846. "extra": {
  5847. "branch-alias": {
  5848. "dev-master": "2.0.x-dev"
  5849. }
  5850. },
  5851. "autoload": {
  5852. "psr-4": {
  5853. "Psr\\Container\\": "src/"
  5854. }
  5855. },
  5856. "notification-url": "https://packagist.org/downloads/",
  5857. "license": [
  5858. "MIT"
  5859. ],
  5860. "authors": [
  5861. {
  5862. "name": "PHP-FIG",
  5863. "homepage": "https://www.php-fig.org/"
  5864. }
  5865. ],
  5866. "description": "Common Container Interface (PHP FIG PSR-11)",
  5867. "homepage": "https://github.com/php-fig/container",
  5868. "keywords": [
  5869. "PSR-11",
  5870. "container",
  5871. "container-interface",
  5872. "container-interop",
  5873. "psr"
  5874. ],
  5875. "support": {
  5876. "issues": "https://github.com/php-fig/container/issues",
  5877. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5878. },
  5879. "time": "2021-11-05T16:47:00+00:00"
  5880. },
  5881. {
  5882. "name": "psr/event-dispatcher",
  5883. "version": "1.0.0",
  5884. "source": {
  5885. "type": "git",
  5886. "url": "https://github.com/php-fig/event-dispatcher.git",
  5887. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5888. },
  5889. "dist": {
  5890. "type": "zip",
  5891. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5892. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5893. "shasum": ""
  5894. },
  5895. "require": {
  5896. "php": ">=7.2.0"
  5897. },
  5898. "type": "library",
  5899. "extra": {
  5900. "branch-alias": {
  5901. "dev-master": "1.0.x-dev"
  5902. }
  5903. },
  5904. "autoload": {
  5905. "psr-4": {
  5906. "Psr\\EventDispatcher\\": "src/"
  5907. }
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "MIT"
  5912. ],
  5913. "authors": [
  5914. {
  5915. "name": "PHP-FIG",
  5916. "homepage": "http://www.php-fig.org/"
  5917. }
  5918. ],
  5919. "description": "Standard interfaces for event handling.",
  5920. "keywords": [
  5921. "events",
  5922. "psr",
  5923. "psr-14"
  5924. ],
  5925. "support": {
  5926. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5927. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5928. },
  5929. "time": "2019-01-08T18:20:26+00:00"
  5930. },
  5931. {
  5932. "name": "psr/http-client",
  5933. "version": "1.0.3",
  5934. "source": {
  5935. "type": "git",
  5936. "url": "https://github.com/php-fig/http-client.git",
  5937. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5938. },
  5939. "dist": {
  5940. "type": "zip",
  5941. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5942. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5943. "shasum": ""
  5944. },
  5945. "require": {
  5946. "php": "^7.0 || ^8.0",
  5947. "psr/http-message": "^1.0 || ^2.0"
  5948. },
  5949. "type": "library",
  5950. "extra": {
  5951. "branch-alias": {
  5952. "dev-master": "1.0.x-dev"
  5953. }
  5954. },
  5955. "autoload": {
  5956. "psr-4": {
  5957. "Psr\\Http\\Client\\": "src/"
  5958. }
  5959. },
  5960. "notification-url": "https://packagist.org/downloads/",
  5961. "license": [
  5962. "MIT"
  5963. ],
  5964. "authors": [
  5965. {
  5966. "name": "PHP-FIG",
  5967. "homepage": "https://www.php-fig.org/"
  5968. }
  5969. ],
  5970. "description": "Common interface for HTTP clients",
  5971. "homepage": "https://github.com/php-fig/http-client",
  5972. "keywords": [
  5973. "http",
  5974. "http-client",
  5975. "psr",
  5976. "psr-18"
  5977. ],
  5978. "support": {
  5979. "source": "https://github.com/php-fig/http-client"
  5980. },
  5981. "time": "2023-09-23T14:17:50+00:00"
  5982. },
  5983. {
  5984. "name": "psr/http-factory",
  5985. "version": "1.0.2",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://github.com/php-fig/http-factory.git",
  5989. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5994. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5995. "shasum": ""
  5996. },
  5997. "require": {
  5998. "php": ">=7.0.0",
  5999. "psr/http-message": "^1.0 || ^2.0"
  6000. },
  6001. "type": "library",
  6002. "extra": {
  6003. "branch-alias": {
  6004. "dev-master": "1.0.x-dev"
  6005. }
  6006. },
  6007. "autoload": {
  6008. "psr-4": {
  6009. "Psr\\Http\\Message\\": "src/"
  6010. }
  6011. },
  6012. "notification-url": "https://packagist.org/downloads/",
  6013. "license": [
  6014. "MIT"
  6015. ],
  6016. "authors": [
  6017. {
  6018. "name": "PHP-FIG",
  6019. "homepage": "https://www.php-fig.org/"
  6020. }
  6021. ],
  6022. "description": "Common interfaces for PSR-7 HTTP message factories",
  6023. "keywords": [
  6024. "factory",
  6025. "http",
  6026. "message",
  6027. "psr",
  6028. "psr-17",
  6029. "psr-7",
  6030. "request",
  6031. "response"
  6032. ],
  6033. "support": {
  6034. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  6035. },
  6036. "time": "2023-04-10T20:10:41+00:00"
  6037. },
  6038. {
  6039. "name": "psr/http-message",
  6040. "version": "2.0",
  6041. "source": {
  6042. "type": "git",
  6043. "url": "https://github.com/php-fig/http-message.git",
  6044. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6045. },
  6046. "dist": {
  6047. "type": "zip",
  6048. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6049. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6050. "shasum": ""
  6051. },
  6052. "require": {
  6053. "php": "^7.2 || ^8.0"
  6054. },
  6055. "type": "library",
  6056. "extra": {
  6057. "branch-alias": {
  6058. "dev-master": "2.0.x-dev"
  6059. }
  6060. },
  6061. "autoload": {
  6062. "psr-4": {
  6063. "Psr\\Http\\Message\\": "src/"
  6064. }
  6065. },
  6066. "notification-url": "https://packagist.org/downloads/",
  6067. "license": [
  6068. "MIT"
  6069. ],
  6070. "authors": [
  6071. {
  6072. "name": "PHP-FIG",
  6073. "homepage": "https://www.php-fig.org/"
  6074. }
  6075. ],
  6076. "description": "Common interface for HTTP messages",
  6077. "homepage": "https://github.com/php-fig/http-message",
  6078. "keywords": [
  6079. "http",
  6080. "http-message",
  6081. "psr",
  6082. "psr-7",
  6083. "request",
  6084. "response"
  6085. ],
  6086. "support": {
  6087. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6088. },
  6089. "time": "2023-04-04T09:54:51+00:00"
  6090. },
  6091. {
  6092. "name": "psr/log",
  6093. "version": "3.0.0",
  6094. "source": {
  6095. "type": "git",
  6096. "url": "https://github.com/php-fig/log.git",
  6097. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6098. },
  6099. "dist": {
  6100. "type": "zip",
  6101. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6102. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6103. "shasum": ""
  6104. },
  6105. "require": {
  6106. "php": ">=8.0.0"
  6107. },
  6108. "type": "library",
  6109. "extra": {
  6110. "branch-alias": {
  6111. "dev-master": "3.x-dev"
  6112. }
  6113. },
  6114. "autoload": {
  6115. "psr-4": {
  6116. "Psr\\Log\\": "src"
  6117. }
  6118. },
  6119. "notification-url": "https://packagist.org/downloads/",
  6120. "license": [
  6121. "MIT"
  6122. ],
  6123. "authors": [
  6124. {
  6125. "name": "PHP-FIG",
  6126. "homepage": "https://www.php-fig.org/"
  6127. }
  6128. ],
  6129. "description": "Common interface for logging libraries",
  6130. "homepage": "https://github.com/php-fig/log",
  6131. "keywords": [
  6132. "log",
  6133. "psr",
  6134. "psr-3"
  6135. ],
  6136. "support": {
  6137. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6138. },
  6139. "time": "2021-07-14T16:46:02+00:00"
  6140. },
  6141. {
  6142. "name": "psr/simple-cache",
  6143. "version": "3.0.0",
  6144. "source": {
  6145. "type": "git",
  6146. "url": "https://github.com/php-fig/simple-cache.git",
  6147. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6148. },
  6149. "dist": {
  6150. "type": "zip",
  6151. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6152. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6153. "shasum": ""
  6154. },
  6155. "require": {
  6156. "php": ">=8.0.0"
  6157. },
  6158. "type": "library",
  6159. "extra": {
  6160. "branch-alias": {
  6161. "dev-master": "3.0.x-dev"
  6162. }
  6163. },
  6164. "autoload": {
  6165. "psr-4": {
  6166. "Psr\\SimpleCache\\": "src/"
  6167. }
  6168. },
  6169. "notification-url": "https://packagist.org/downloads/",
  6170. "license": [
  6171. "MIT"
  6172. ],
  6173. "authors": [
  6174. {
  6175. "name": "PHP-FIG",
  6176. "homepage": "https://www.php-fig.org/"
  6177. }
  6178. ],
  6179. "description": "Common interfaces for simple caching",
  6180. "keywords": [
  6181. "cache",
  6182. "caching",
  6183. "psr",
  6184. "psr-16",
  6185. "simple-cache"
  6186. ],
  6187. "support": {
  6188. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6189. },
  6190. "time": "2021-10-29T13:26:27+00:00"
  6191. },
  6192. {
  6193. "name": "psy/psysh",
  6194. "version": "v0.12.3",
  6195. "source": {
  6196. "type": "git",
  6197. "url": "https://github.com/bobthecow/psysh.git",
  6198. "reference": "b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73"
  6199. },
  6200. "dist": {
  6201. "type": "zip",
  6202. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73",
  6203. "reference": "b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73",
  6204. "shasum": ""
  6205. },
  6206. "require": {
  6207. "ext-json": "*",
  6208. "ext-tokenizer": "*",
  6209. "nikic/php-parser": "^5.0 || ^4.0",
  6210. "php": "^8.0 || ^7.4",
  6211. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6212. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6213. },
  6214. "conflict": {
  6215. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6216. },
  6217. "require-dev": {
  6218. "bamarni/composer-bin-plugin": "^1.2"
  6219. },
  6220. "suggest": {
  6221. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6222. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6223. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6224. },
  6225. "bin": [
  6226. "bin/psysh"
  6227. ],
  6228. "type": "library",
  6229. "extra": {
  6230. "branch-alias": {
  6231. "dev-main": "0.12.x-dev"
  6232. },
  6233. "bamarni-bin": {
  6234. "bin-links": false,
  6235. "forward-command": false
  6236. }
  6237. },
  6238. "autoload": {
  6239. "files": [
  6240. "src/functions.php"
  6241. ],
  6242. "psr-4": {
  6243. "Psy\\": "src/"
  6244. }
  6245. },
  6246. "notification-url": "https://packagist.org/downloads/",
  6247. "license": [
  6248. "MIT"
  6249. ],
  6250. "authors": [
  6251. {
  6252. "name": "Justin Hileman",
  6253. "email": "justin@justinhileman.info",
  6254. "homepage": "http://justinhileman.com"
  6255. }
  6256. ],
  6257. "description": "An interactive shell for modern PHP.",
  6258. "homepage": "http://psysh.org",
  6259. "keywords": [
  6260. "REPL",
  6261. "console",
  6262. "interactive",
  6263. "shell"
  6264. ],
  6265. "support": {
  6266. "issues": "https://github.com/bobthecow/psysh/issues",
  6267. "source": "https://github.com/bobthecow/psysh/tree/v0.12.3"
  6268. },
  6269. "time": "2024-04-02T15:57:53+00:00"
  6270. },
  6271. {
  6272. "name": "ralouphie/getallheaders",
  6273. "version": "3.0.3",
  6274. "source": {
  6275. "type": "git",
  6276. "url": "https://github.com/ralouphie/getallheaders.git",
  6277. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6278. },
  6279. "dist": {
  6280. "type": "zip",
  6281. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6282. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6283. "shasum": ""
  6284. },
  6285. "require": {
  6286. "php": ">=5.6"
  6287. },
  6288. "require-dev": {
  6289. "php-coveralls/php-coveralls": "^2.1",
  6290. "phpunit/phpunit": "^5 || ^6.5"
  6291. },
  6292. "type": "library",
  6293. "autoload": {
  6294. "files": [
  6295. "src/getallheaders.php"
  6296. ]
  6297. },
  6298. "notification-url": "https://packagist.org/downloads/",
  6299. "license": [
  6300. "MIT"
  6301. ],
  6302. "authors": [
  6303. {
  6304. "name": "Ralph Khattar",
  6305. "email": "ralph.khattar@gmail.com"
  6306. }
  6307. ],
  6308. "description": "A polyfill for getallheaders.",
  6309. "support": {
  6310. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6311. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6312. },
  6313. "time": "2019-03-08T08:55:37+00:00"
  6314. },
  6315. {
  6316. "name": "ramsey/collection",
  6317. "version": "2.0.0",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/ramsey/collection.git",
  6321. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6326. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "php": "^8.1"
  6331. },
  6332. "require-dev": {
  6333. "captainhook/plugin-composer": "^5.3",
  6334. "ergebnis/composer-normalize": "^2.28.3",
  6335. "fakerphp/faker": "^1.21",
  6336. "hamcrest/hamcrest-php": "^2.0",
  6337. "jangregor/phpstan-prophecy": "^1.0",
  6338. "mockery/mockery": "^1.5",
  6339. "php-parallel-lint/php-console-highlighter": "^1.0",
  6340. "php-parallel-lint/php-parallel-lint": "^1.3",
  6341. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6342. "phpspec/prophecy-phpunit": "^2.0",
  6343. "phpstan/extension-installer": "^1.2",
  6344. "phpstan/phpstan": "^1.9",
  6345. "phpstan/phpstan-mockery": "^1.1",
  6346. "phpstan/phpstan-phpunit": "^1.3",
  6347. "phpunit/phpunit": "^9.5",
  6348. "psalm/plugin-mockery": "^1.1",
  6349. "psalm/plugin-phpunit": "^0.18.4",
  6350. "ramsey/coding-standard": "^2.0.3",
  6351. "ramsey/conventional-commits": "^1.3",
  6352. "vimeo/psalm": "^5.4"
  6353. },
  6354. "type": "library",
  6355. "extra": {
  6356. "captainhook": {
  6357. "force-install": true
  6358. },
  6359. "ramsey/conventional-commits": {
  6360. "configFile": "conventional-commits.json"
  6361. }
  6362. },
  6363. "autoload": {
  6364. "psr-4": {
  6365. "Ramsey\\Collection\\": "src/"
  6366. }
  6367. },
  6368. "notification-url": "https://packagist.org/downloads/",
  6369. "license": [
  6370. "MIT"
  6371. ],
  6372. "authors": [
  6373. {
  6374. "name": "Ben Ramsey",
  6375. "email": "ben@benramsey.com",
  6376. "homepage": "https://benramsey.com"
  6377. }
  6378. ],
  6379. "description": "A PHP library for representing and manipulating collections.",
  6380. "keywords": [
  6381. "array",
  6382. "collection",
  6383. "hash",
  6384. "map",
  6385. "queue",
  6386. "set"
  6387. ],
  6388. "support": {
  6389. "issues": "https://github.com/ramsey/collection/issues",
  6390. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6391. },
  6392. "funding": [
  6393. {
  6394. "url": "https://github.com/ramsey",
  6395. "type": "github"
  6396. },
  6397. {
  6398. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6399. "type": "tidelift"
  6400. }
  6401. ],
  6402. "time": "2022-12-31T21:50:55+00:00"
  6403. },
  6404. {
  6405. "name": "ramsey/uuid",
  6406. "version": "4.7.5",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/ramsey/uuid.git",
  6410. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  6415. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  6416. "shasum": ""
  6417. },
  6418. "require": {
  6419. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  6420. "ext-json": "*",
  6421. "php": "^8.0",
  6422. "ramsey/collection": "^1.2 || ^2.0"
  6423. },
  6424. "replace": {
  6425. "rhumsaa/uuid": "self.version"
  6426. },
  6427. "require-dev": {
  6428. "captainhook/captainhook": "^5.10",
  6429. "captainhook/plugin-composer": "^5.3",
  6430. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6431. "doctrine/annotations": "^1.8",
  6432. "ergebnis/composer-normalize": "^2.15",
  6433. "mockery/mockery": "^1.3",
  6434. "paragonie/random-lib": "^2",
  6435. "php-mock/php-mock": "^2.2",
  6436. "php-mock/php-mock-mockery": "^1.3",
  6437. "php-parallel-lint/php-parallel-lint": "^1.1",
  6438. "phpbench/phpbench": "^1.0",
  6439. "phpstan/extension-installer": "^1.1",
  6440. "phpstan/phpstan": "^1.8",
  6441. "phpstan/phpstan-mockery": "^1.1",
  6442. "phpstan/phpstan-phpunit": "^1.1",
  6443. "phpunit/phpunit": "^8.5 || ^9",
  6444. "ramsey/composer-repl": "^1.4",
  6445. "slevomat/coding-standard": "^8.4",
  6446. "squizlabs/php_codesniffer": "^3.5",
  6447. "vimeo/psalm": "^4.9"
  6448. },
  6449. "suggest": {
  6450. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6451. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6452. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6453. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6454. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6455. },
  6456. "type": "library",
  6457. "extra": {
  6458. "captainhook": {
  6459. "force-install": true
  6460. }
  6461. },
  6462. "autoload": {
  6463. "files": [
  6464. "src/functions.php"
  6465. ],
  6466. "psr-4": {
  6467. "Ramsey\\Uuid\\": "src/"
  6468. }
  6469. },
  6470. "notification-url": "https://packagist.org/downloads/",
  6471. "license": [
  6472. "MIT"
  6473. ],
  6474. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6475. "keywords": [
  6476. "guid",
  6477. "identifier",
  6478. "uuid"
  6479. ],
  6480. "support": {
  6481. "issues": "https://github.com/ramsey/uuid/issues",
  6482. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  6483. },
  6484. "funding": [
  6485. {
  6486. "url": "https://github.com/ramsey",
  6487. "type": "github"
  6488. },
  6489. {
  6490. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6491. "type": "tidelift"
  6492. }
  6493. ],
  6494. "time": "2023-11-08T05:53:05+00:00"
  6495. },
  6496. {
  6497. "name": "ryangjchandler/blade-capture-directive",
  6498. "version": "v1.0.0",
  6499. "source": {
  6500. "type": "git",
  6501. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6502. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6503. },
  6504. "dist": {
  6505. "type": "zip",
  6506. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6507. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6508. "shasum": ""
  6509. },
  6510. "require": {
  6511. "illuminate/contracts": "^10.0|^11.0",
  6512. "php": "^8.1",
  6513. "spatie/laravel-package-tools": "^1.9.2"
  6514. },
  6515. "require-dev": {
  6516. "nunomaduro/collision": "^7.0|^8.0",
  6517. "nunomaduro/larastan": "^2.0",
  6518. "orchestra/testbench": "^8.0|^9.0",
  6519. "pestphp/pest": "^2.0",
  6520. "pestphp/pest-plugin-laravel": "^2.0",
  6521. "phpstan/extension-installer": "^1.1",
  6522. "phpstan/phpstan-deprecation-rules": "^1.0",
  6523. "phpstan/phpstan-phpunit": "^1.0",
  6524. "phpunit/phpunit": "^10.0",
  6525. "spatie/laravel-ray": "^1.26"
  6526. },
  6527. "type": "library",
  6528. "extra": {
  6529. "laravel": {
  6530. "providers": [
  6531. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6532. ],
  6533. "aliases": {
  6534. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6535. }
  6536. }
  6537. },
  6538. "autoload": {
  6539. "psr-4": {
  6540. "RyanChandler\\BladeCaptureDirective\\": "src",
  6541. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6542. }
  6543. },
  6544. "notification-url": "https://packagist.org/downloads/",
  6545. "license": [
  6546. "MIT"
  6547. ],
  6548. "authors": [
  6549. {
  6550. "name": "Ryan Chandler",
  6551. "email": "support@ryangjchandler.co.uk",
  6552. "role": "Developer"
  6553. }
  6554. ],
  6555. "description": "Create inline partials in your Blade templates with ease.",
  6556. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6557. "keywords": [
  6558. "blade-capture-directive",
  6559. "laravel",
  6560. "ryangjchandler"
  6561. ],
  6562. "support": {
  6563. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6564. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6565. },
  6566. "funding": [
  6567. {
  6568. "url": "https://github.com/ryangjchandler",
  6569. "type": "github"
  6570. }
  6571. ],
  6572. "time": "2024-02-26T18:08:49+00:00"
  6573. },
  6574. {
  6575. "name": "sabberworm/php-css-parser",
  6576. "version": "v8.5.1",
  6577. "source": {
  6578. "type": "git",
  6579. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  6580. "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152"
  6581. },
  6582. "dist": {
  6583. "type": "zip",
  6584. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/4a3d572b0f8b28bb6fd016ae8bbfc445facef152",
  6585. "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152",
  6586. "shasum": ""
  6587. },
  6588. "require": {
  6589. "ext-iconv": "*",
  6590. "php": ">=5.6.20"
  6591. },
  6592. "require-dev": {
  6593. "phpunit/phpunit": "^5.7.27"
  6594. },
  6595. "suggest": {
  6596. "ext-mbstring": "for parsing UTF-8 CSS"
  6597. },
  6598. "type": "library",
  6599. "extra": {
  6600. "branch-alias": {
  6601. "dev-main": "9.0.x-dev"
  6602. }
  6603. },
  6604. "autoload": {
  6605. "psr-4": {
  6606. "Sabberworm\\CSS\\": "src/"
  6607. }
  6608. },
  6609. "notification-url": "https://packagist.org/downloads/",
  6610. "license": [
  6611. "MIT"
  6612. ],
  6613. "authors": [
  6614. {
  6615. "name": "Raphael Schweikert"
  6616. },
  6617. {
  6618. "name": "Oliver Klee",
  6619. "email": "github@oliverklee.de"
  6620. },
  6621. {
  6622. "name": "Jake Hotson",
  6623. "email": "jake.github@qzdesign.co.uk"
  6624. }
  6625. ],
  6626. "description": "Parser for CSS Files written in PHP",
  6627. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  6628. "keywords": [
  6629. "css",
  6630. "parser",
  6631. "stylesheet"
  6632. ],
  6633. "support": {
  6634. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  6635. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.5.1"
  6636. },
  6637. "time": "2024-02-15T16:41:13+00:00"
  6638. },
  6639. {
  6640. "name": "spatie/color",
  6641. "version": "1.5.3",
  6642. "source": {
  6643. "type": "git",
  6644. "url": "https://github.com/spatie/color.git",
  6645. "reference": "49739265900cabce4640cd26c3266fd8d2cca390"
  6646. },
  6647. "dist": {
  6648. "type": "zip",
  6649. "url": "https://api.github.com/repos/spatie/color/zipball/49739265900cabce4640cd26c3266fd8d2cca390",
  6650. "reference": "49739265900cabce4640cd26c3266fd8d2cca390",
  6651. "shasum": ""
  6652. },
  6653. "require": {
  6654. "php": "^7.3|^8.0"
  6655. },
  6656. "require-dev": {
  6657. "pestphp/pest": "^1.22",
  6658. "phpunit/phpunit": "^6.5||^9.0"
  6659. },
  6660. "type": "library",
  6661. "autoload": {
  6662. "psr-4": {
  6663. "Spatie\\Color\\": "src"
  6664. }
  6665. },
  6666. "notification-url": "https://packagist.org/downloads/",
  6667. "license": [
  6668. "MIT"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "Sebastian De Deyne",
  6673. "email": "sebastian@spatie.be",
  6674. "homepage": "https://spatie.be",
  6675. "role": "Developer"
  6676. }
  6677. ],
  6678. "description": "A little library to handle color conversions",
  6679. "homepage": "https://github.com/spatie/color",
  6680. "keywords": [
  6681. "color",
  6682. "conversion",
  6683. "rgb",
  6684. "spatie"
  6685. ],
  6686. "support": {
  6687. "issues": "https://github.com/spatie/color/issues",
  6688. "source": "https://github.com/spatie/color/tree/1.5.3"
  6689. },
  6690. "funding": [
  6691. {
  6692. "url": "https://github.com/spatie",
  6693. "type": "github"
  6694. }
  6695. ],
  6696. "time": "2022-12-18T12:58:32+00:00"
  6697. },
  6698. {
  6699. "name": "spatie/invade",
  6700. "version": "2.0.0",
  6701. "source": {
  6702. "type": "git",
  6703. "url": "https://github.com/spatie/invade.git",
  6704. "reference": "7b20a25486de69198e402da20dc924d8bcc8024a"
  6705. },
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://api.github.com/repos/spatie/invade/zipball/7b20a25486de69198e402da20dc924d8bcc8024a",
  6709. "reference": "7b20a25486de69198e402da20dc924d8bcc8024a",
  6710. "shasum": ""
  6711. },
  6712. "require": {
  6713. "php": "^8.0"
  6714. },
  6715. "require-dev": {
  6716. "pestphp/pest": "^1.20",
  6717. "phpstan/phpstan": "^1.4",
  6718. "spatie/ray": "^1.28"
  6719. },
  6720. "type": "library",
  6721. "autoload": {
  6722. "files": [
  6723. "src/functions.php"
  6724. ],
  6725. "psr-4": {
  6726. "Spatie\\Invade\\": "src"
  6727. }
  6728. },
  6729. "notification-url": "https://packagist.org/downloads/",
  6730. "license": [
  6731. "MIT"
  6732. ],
  6733. "authors": [
  6734. {
  6735. "name": "Freek Van der Herten",
  6736. "email": "freek@spatie.be",
  6737. "role": "Developer"
  6738. }
  6739. ],
  6740. "description": "A PHP function to work with private properties and methods",
  6741. "homepage": "https://github.com/spatie/invade",
  6742. "keywords": [
  6743. "invade",
  6744. "spatie"
  6745. ],
  6746. "support": {
  6747. "source": "https://github.com/spatie/invade/tree/2.0.0"
  6748. },
  6749. "funding": [
  6750. {
  6751. "url": "https://github.com/spatie",
  6752. "type": "github"
  6753. }
  6754. ],
  6755. "time": "2023-07-19T18:55:36+00:00"
  6756. },
  6757. {
  6758. "name": "spatie/laravel-package-tools",
  6759. "version": "1.16.4",
  6760. "source": {
  6761. "type": "git",
  6762. "url": "https://github.com/spatie/laravel-package-tools.git",
  6763. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53"
  6764. },
  6765. "dist": {
  6766. "type": "zip",
  6767. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  6768. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  6769. "shasum": ""
  6770. },
  6771. "require": {
  6772. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6773. "php": "^8.0"
  6774. },
  6775. "require-dev": {
  6776. "mockery/mockery": "^1.5",
  6777. "orchestra/testbench": "^7.7|^8.0",
  6778. "pestphp/pest": "^1.22",
  6779. "phpunit/phpunit": "^9.5.24",
  6780. "spatie/pest-plugin-test-time": "^1.1"
  6781. },
  6782. "type": "library",
  6783. "autoload": {
  6784. "psr-4": {
  6785. "Spatie\\LaravelPackageTools\\": "src"
  6786. }
  6787. },
  6788. "notification-url": "https://packagist.org/downloads/",
  6789. "license": [
  6790. "MIT"
  6791. ],
  6792. "authors": [
  6793. {
  6794. "name": "Freek Van der Herten",
  6795. "email": "freek@spatie.be",
  6796. "role": "Developer"
  6797. }
  6798. ],
  6799. "description": "Tools for creating Laravel packages",
  6800. "homepage": "https://github.com/spatie/laravel-package-tools",
  6801. "keywords": [
  6802. "laravel-package-tools",
  6803. "spatie"
  6804. ],
  6805. "support": {
  6806. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6807. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.4"
  6808. },
  6809. "funding": [
  6810. {
  6811. "url": "https://github.com/spatie",
  6812. "type": "github"
  6813. }
  6814. ],
  6815. "time": "2024-03-20T07:29:11+00:00"
  6816. },
  6817. {
  6818. "name": "squirephp/model",
  6819. "version": "v3.5.0",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://github.com/squirephp/model.git",
  6823. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6824. },
  6825. "dist": {
  6826. "type": "zip",
  6827. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6828. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6829. "shasum": ""
  6830. },
  6831. "require": {
  6832. "ext-pdo_sqlite": "*",
  6833. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6834. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6835. "php": "^8.0"
  6836. },
  6837. "type": "library",
  6838. "extra": {
  6839. "laravel": {
  6840. "providers": [
  6841. "Squire\\ModelServiceProvider"
  6842. ]
  6843. }
  6844. },
  6845. "autoload": {
  6846. "psr-4": {
  6847. "Squire\\": "src"
  6848. }
  6849. },
  6850. "notification-url": "https://packagist.org/downloads/",
  6851. "license": [
  6852. "MIT"
  6853. ],
  6854. "authors": [
  6855. {
  6856. "name": "Dan Harrin",
  6857. "email": "dan@danharrin.com"
  6858. }
  6859. ],
  6860. "description": "A library containing the base Squire model class.",
  6861. "homepage": "https://github.com/squirephp",
  6862. "keywords": [
  6863. "squire"
  6864. ],
  6865. "support": {
  6866. "issues": "https://github.com/squirephp/squire/issues",
  6867. "source": "https://github.com/squirephp/squire"
  6868. },
  6869. "time": "2024-03-11T11:06:10+00:00"
  6870. },
  6871. {
  6872. "name": "squirephp/repository",
  6873. "version": "v3.5.0",
  6874. "source": {
  6875. "type": "git",
  6876. "url": "https://github.com/squirephp/repository.git",
  6877. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6878. },
  6879. "dist": {
  6880. "type": "zip",
  6881. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6882. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6883. "shasum": ""
  6884. },
  6885. "require": {
  6886. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6887. "php": "^8.0"
  6888. },
  6889. "type": "library",
  6890. "extra": {
  6891. "laravel": {
  6892. "providers": [
  6893. "Squire\\RepositoryServiceProvider"
  6894. ],
  6895. "aliases": {
  6896. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6897. }
  6898. }
  6899. },
  6900. "autoload": {
  6901. "psr-4": {
  6902. "Squire\\": "src"
  6903. }
  6904. },
  6905. "notification-url": "https://packagist.org/downloads/",
  6906. "license": [
  6907. "MIT"
  6908. ],
  6909. "authors": [
  6910. {
  6911. "name": "Dan Harrin",
  6912. "email": "dan@danharrin.com"
  6913. }
  6914. ],
  6915. "description": "A library containing the Squire repository.",
  6916. "homepage": "https://github.com/squirephp",
  6917. "keywords": [
  6918. "squire"
  6919. ],
  6920. "support": {
  6921. "issues": "https://github.com/squirephp/squire/issues",
  6922. "source": "https://github.com/squirephp/squire"
  6923. },
  6924. "time": "2024-03-11T11:06:10+00:00"
  6925. },
  6926. {
  6927. "name": "symfony/clock",
  6928. "version": "v7.0.5",
  6929. "source": {
  6930. "type": "git",
  6931. "url": "https://github.com/symfony/clock.git",
  6932. "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2"
  6933. },
  6934. "dist": {
  6935. "type": "zip",
  6936. "url": "https://api.github.com/repos/symfony/clock/zipball/8b9d08887353d627d5f6c3bf3373b398b49051c2",
  6937. "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2",
  6938. "shasum": ""
  6939. },
  6940. "require": {
  6941. "php": ">=8.2",
  6942. "psr/clock": "^1.0",
  6943. "symfony/polyfill-php83": "^1.28"
  6944. },
  6945. "provide": {
  6946. "psr/clock-implementation": "1.0"
  6947. },
  6948. "type": "library",
  6949. "autoload": {
  6950. "files": [
  6951. "Resources/now.php"
  6952. ],
  6953. "psr-4": {
  6954. "Symfony\\Component\\Clock\\": ""
  6955. },
  6956. "exclude-from-classmap": [
  6957. "/Tests/"
  6958. ]
  6959. },
  6960. "notification-url": "https://packagist.org/downloads/",
  6961. "license": [
  6962. "MIT"
  6963. ],
  6964. "authors": [
  6965. {
  6966. "name": "Nicolas Grekas",
  6967. "email": "p@tchwork.com"
  6968. },
  6969. {
  6970. "name": "Symfony Community",
  6971. "homepage": "https://symfony.com/contributors"
  6972. }
  6973. ],
  6974. "description": "Decouples applications from the system clock",
  6975. "homepage": "https://symfony.com",
  6976. "keywords": [
  6977. "clock",
  6978. "psr20",
  6979. "time"
  6980. ],
  6981. "support": {
  6982. "source": "https://github.com/symfony/clock/tree/v7.0.5"
  6983. },
  6984. "funding": [
  6985. {
  6986. "url": "https://symfony.com/sponsor",
  6987. "type": "custom"
  6988. },
  6989. {
  6990. "url": "https://github.com/fabpot",
  6991. "type": "github"
  6992. },
  6993. {
  6994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6995. "type": "tidelift"
  6996. }
  6997. ],
  6998. "time": "2024-03-02T12:46:12+00:00"
  6999. },
  7000. {
  7001. "name": "symfony/console",
  7002. "version": "v7.0.6",
  7003. "source": {
  7004. "type": "git",
  7005. "url": "https://github.com/symfony/console.git",
  7006. "reference": "fde915cd8e7eb99b3d531d3d5c09531429c3f9e5"
  7007. },
  7008. "dist": {
  7009. "type": "zip",
  7010. "url": "https://api.github.com/repos/symfony/console/zipball/fde915cd8e7eb99b3d531d3d5c09531429c3f9e5",
  7011. "reference": "fde915cd8e7eb99b3d531d3d5c09531429c3f9e5",
  7012. "shasum": ""
  7013. },
  7014. "require": {
  7015. "php": ">=8.2",
  7016. "symfony/polyfill-mbstring": "~1.0",
  7017. "symfony/service-contracts": "^2.5|^3",
  7018. "symfony/string": "^6.4|^7.0"
  7019. },
  7020. "conflict": {
  7021. "symfony/dependency-injection": "<6.4",
  7022. "symfony/dotenv": "<6.4",
  7023. "symfony/event-dispatcher": "<6.4",
  7024. "symfony/lock": "<6.4",
  7025. "symfony/process": "<6.4"
  7026. },
  7027. "provide": {
  7028. "psr/log-implementation": "1.0|2.0|3.0"
  7029. },
  7030. "require-dev": {
  7031. "psr/log": "^1|^2|^3",
  7032. "symfony/config": "^6.4|^7.0",
  7033. "symfony/dependency-injection": "^6.4|^7.0",
  7034. "symfony/event-dispatcher": "^6.4|^7.0",
  7035. "symfony/http-foundation": "^6.4|^7.0",
  7036. "symfony/http-kernel": "^6.4|^7.0",
  7037. "symfony/lock": "^6.4|^7.0",
  7038. "symfony/messenger": "^6.4|^7.0",
  7039. "symfony/process": "^6.4|^7.0",
  7040. "symfony/stopwatch": "^6.4|^7.0",
  7041. "symfony/var-dumper": "^6.4|^7.0"
  7042. },
  7043. "type": "library",
  7044. "autoload": {
  7045. "psr-4": {
  7046. "Symfony\\Component\\Console\\": ""
  7047. },
  7048. "exclude-from-classmap": [
  7049. "/Tests/"
  7050. ]
  7051. },
  7052. "notification-url": "https://packagist.org/downloads/",
  7053. "license": [
  7054. "MIT"
  7055. ],
  7056. "authors": [
  7057. {
  7058. "name": "Fabien Potencier",
  7059. "email": "fabien@symfony.com"
  7060. },
  7061. {
  7062. "name": "Symfony Community",
  7063. "homepage": "https://symfony.com/contributors"
  7064. }
  7065. ],
  7066. "description": "Eases the creation of beautiful and testable command line interfaces",
  7067. "homepage": "https://symfony.com",
  7068. "keywords": [
  7069. "cli",
  7070. "command-line",
  7071. "console",
  7072. "terminal"
  7073. ],
  7074. "support": {
  7075. "source": "https://github.com/symfony/console/tree/v7.0.6"
  7076. },
  7077. "funding": [
  7078. {
  7079. "url": "https://symfony.com/sponsor",
  7080. "type": "custom"
  7081. },
  7082. {
  7083. "url": "https://github.com/fabpot",
  7084. "type": "github"
  7085. },
  7086. {
  7087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7088. "type": "tidelift"
  7089. }
  7090. ],
  7091. "time": "2024-04-01T11:04:53+00:00"
  7092. },
  7093. {
  7094. "name": "symfony/css-selector",
  7095. "version": "v7.0.3",
  7096. "source": {
  7097. "type": "git",
  7098. "url": "https://github.com/symfony/css-selector.git",
  7099. "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be"
  7100. },
  7101. "dist": {
  7102. "type": "zip",
  7103. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ec60a4edf94e63b0556b6a0888548bb400a3a3be",
  7104. "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be",
  7105. "shasum": ""
  7106. },
  7107. "require": {
  7108. "php": ">=8.2"
  7109. },
  7110. "type": "library",
  7111. "autoload": {
  7112. "psr-4": {
  7113. "Symfony\\Component\\CssSelector\\": ""
  7114. },
  7115. "exclude-from-classmap": [
  7116. "/Tests/"
  7117. ]
  7118. },
  7119. "notification-url": "https://packagist.org/downloads/",
  7120. "license": [
  7121. "MIT"
  7122. ],
  7123. "authors": [
  7124. {
  7125. "name": "Fabien Potencier",
  7126. "email": "fabien@symfony.com"
  7127. },
  7128. {
  7129. "name": "Jean-François Simon",
  7130. "email": "jeanfrancois.simon@sensiolabs.com"
  7131. },
  7132. {
  7133. "name": "Symfony Community",
  7134. "homepage": "https://symfony.com/contributors"
  7135. }
  7136. ],
  7137. "description": "Converts CSS selectors to XPath expressions",
  7138. "homepage": "https://symfony.com",
  7139. "support": {
  7140. "source": "https://github.com/symfony/css-selector/tree/v7.0.3"
  7141. },
  7142. "funding": [
  7143. {
  7144. "url": "https://symfony.com/sponsor",
  7145. "type": "custom"
  7146. },
  7147. {
  7148. "url": "https://github.com/fabpot",
  7149. "type": "github"
  7150. },
  7151. {
  7152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7153. "type": "tidelift"
  7154. }
  7155. ],
  7156. "time": "2024-01-23T15:02:46+00:00"
  7157. },
  7158. {
  7159. "name": "symfony/deprecation-contracts",
  7160. "version": "v3.4.0",
  7161. "source": {
  7162. "type": "git",
  7163. "url": "https://github.com/symfony/deprecation-contracts.git",
  7164. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  7165. },
  7166. "dist": {
  7167. "type": "zip",
  7168. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  7169. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  7170. "shasum": ""
  7171. },
  7172. "require": {
  7173. "php": ">=8.1"
  7174. },
  7175. "type": "library",
  7176. "extra": {
  7177. "branch-alias": {
  7178. "dev-main": "3.4-dev"
  7179. },
  7180. "thanks": {
  7181. "name": "symfony/contracts",
  7182. "url": "https://github.com/symfony/contracts"
  7183. }
  7184. },
  7185. "autoload": {
  7186. "files": [
  7187. "function.php"
  7188. ]
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Nicolas Grekas",
  7197. "email": "p@tchwork.com"
  7198. },
  7199. {
  7200. "name": "Symfony Community",
  7201. "homepage": "https://symfony.com/contributors"
  7202. }
  7203. ],
  7204. "description": "A generic function and convention to trigger deprecation notices",
  7205. "homepage": "https://symfony.com",
  7206. "support": {
  7207. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  7208. },
  7209. "funding": [
  7210. {
  7211. "url": "https://symfony.com/sponsor",
  7212. "type": "custom"
  7213. },
  7214. {
  7215. "url": "https://github.com/fabpot",
  7216. "type": "github"
  7217. },
  7218. {
  7219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7220. "type": "tidelift"
  7221. }
  7222. ],
  7223. "time": "2023-05-23T14:45:45+00:00"
  7224. },
  7225. {
  7226. "name": "symfony/error-handler",
  7227. "version": "v7.0.6",
  7228. "source": {
  7229. "type": "git",
  7230. "url": "https://github.com/symfony/error-handler.git",
  7231. "reference": "46a4cc138f799886d4bd70477c55c699d3e9dfc8"
  7232. },
  7233. "dist": {
  7234. "type": "zip",
  7235. "url": "https://api.github.com/repos/symfony/error-handler/zipball/46a4cc138f799886d4bd70477c55c699d3e9dfc8",
  7236. "reference": "46a4cc138f799886d4bd70477c55c699d3e9dfc8",
  7237. "shasum": ""
  7238. },
  7239. "require": {
  7240. "php": ">=8.2",
  7241. "psr/log": "^1|^2|^3",
  7242. "symfony/var-dumper": "^6.4|^7.0"
  7243. },
  7244. "conflict": {
  7245. "symfony/deprecation-contracts": "<2.5",
  7246. "symfony/http-kernel": "<6.4"
  7247. },
  7248. "require-dev": {
  7249. "symfony/deprecation-contracts": "^2.5|^3",
  7250. "symfony/http-kernel": "^6.4|^7.0",
  7251. "symfony/serializer": "^6.4|^7.0"
  7252. },
  7253. "bin": [
  7254. "Resources/bin/patch-type-declarations"
  7255. ],
  7256. "type": "library",
  7257. "autoload": {
  7258. "psr-4": {
  7259. "Symfony\\Component\\ErrorHandler\\": ""
  7260. },
  7261. "exclude-from-classmap": [
  7262. "/Tests/"
  7263. ]
  7264. },
  7265. "notification-url": "https://packagist.org/downloads/",
  7266. "license": [
  7267. "MIT"
  7268. ],
  7269. "authors": [
  7270. {
  7271. "name": "Fabien Potencier",
  7272. "email": "fabien@symfony.com"
  7273. },
  7274. {
  7275. "name": "Symfony Community",
  7276. "homepage": "https://symfony.com/contributors"
  7277. }
  7278. ],
  7279. "description": "Provides tools to manage errors and ease debugging PHP code",
  7280. "homepage": "https://symfony.com",
  7281. "support": {
  7282. "source": "https://github.com/symfony/error-handler/tree/v7.0.6"
  7283. },
  7284. "funding": [
  7285. {
  7286. "url": "https://symfony.com/sponsor",
  7287. "type": "custom"
  7288. },
  7289. {
  7290. "url": "https://github.com/fabpot",
  7291. "type": "github"
  7292. },
  7293. {
  7294. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7295. "type": "tidelift"
  7296. }
  7297. ],
  7298. "time": "2024-03-19T11:57:22+00:00"
  7299. },
  7300. {
  7301. "name": "symfony/event-dispatcher",
  7302. "version": "v7.0.3",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/symfony/event-dispatcher.git",
  7306. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e",
  7311. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "php": ">=8.2",
  7316. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7317. },
  7318. "conflict": {
  7319. "symfony/dependency-injection": "<6.4",
  7320. "symfony/service-contracts": "<2.5"
  7321. },
  7322. "provide": {
  7323. "psr/event-dispatcher-implementation": "1.0",
  7324. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7325. },
  7326. "require-dev": {
  7327. "psr/log": "^1|^2|^3",
  7328. "symfony/config": "^6.4|^7.0",
  7329. "symfony/dependency-injection": "^6.4|^7.0",
  7330. "symfony/error-handler": "^6.4|^7.0",
  7331. "symfony/expression-language": "^6.4|^7.0",
  7332. "symfony/http-foundation": "^6.4|^7.0",
  7333. "symfony/service-contracts": "^2.5|^3",
  7334. "symfony/stopwatch": "^6.4|^7.0"
  7335. },
  7336. "type": "library",
  7337. "autoload": {
  7338. "psr-4": {
  7339. "Symfony\\Component\\EventDispatcher\\": ""
  7340. },
  7341. "exclude-from-classmap": [
  7342. "/Tests/"
  7343. ]
  7344. },
  7345. "notification-url": "https://packagist.org/downloads/",
  7346. "license": [
  7347. "MIT"
  7348. ],
  7349. "authors": [
  7350. {
  7351. "name": "Fabien Potencier",
  7352. "email": "fabien@symfony.com"
  7353. },
  7354. {
  7355. "name": "Symfony Community",
  7356. "homepage": "https://symfony.com/contributors"
  7357. }
  7358. ],
  7359. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7360. "homepage": "https://symfony.com",
  7361. "support": {
  7362. "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3"
  7363. },
  7364. "funding": [
  7365. {
  7366. "url": "https://symfony.com/sponsor",
  7367. "type": "custom"
  7368. },
  7369. {
  7370. "url": "https://github.com/fabpot",
  7371. "type": "github"
  7372. },
  7373. {
  7374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7375. "type": "tidelift"
  7376. }
  7377. ],
  7378. "time": "2024-01-23T15:02:46+00:00"
  7379. },
  7380. {
  7381. "name": "symfony/event-dispatcher-contracts",
  7382. "version": "v3.4.2",
  7383. "source": {
  7384. "type": "git",
  7385. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7386. "reference": "4e64b49bf370ade88e567de29465762e316e4224"
  7387. },
  7388. "dist": {
  7389. "type": "zip",
  7390. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/4e64b49bf370ade88e567de29465762e316e4224",
  7391. "reference": "4e64b49bf370ade88e567de29465762e316e4224",
  7392. "shasum": ""
  7393. },
  7394. "require": {
  7395. "php": ">=8.1",
  7396. "psr/event-dispatcher": "^1"
  7397. },
  7398. "type": "library",
  7399. "extra": {
  7400. "branch-alias": {
  7401. "dev-main": "3.4-dev"
  7402. },
  7403. "thanks": {
  7404. "name": "symfony/contracts",
  7405. "url": "https://github.com/symfony/contracts"
  7406. }
  7407. },
  7408. "autoload": {
  7409. "psr-4": {
  7410. "Symfony\\Contracts\\EventDispatcher\\": ""
  7411. }
  7412. },
  7413. "notification-url": "https://packagist.org/downloads/",
  7414. "license": [
  7415. "MIT"
  7416. ],
  7417. "authors": [
  7418. {
  7419. "name": "Nicolas Grekas",
  7420. "email": "p@tchwork.com"
  7421. },
  7422. {
  7423. "name": "Symfony Community",
  7424. "homepage": "https://symfony.com/contributors"
  7425. }
  7426. ],
  7427. "description": "Generic abstractions related to dispatching event",
  7428. "homepage": "https://symfony.com",
  7429. "keywords": [
  7430. "abstractions",
  7431. "contracts",
  7432. "decoupling",
  7433. "interfaces",
  7434. "interoperability",
  7435. "standards"
  7436. ],
  7437. "support": {
  7438. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.2"
  7439. },
  7440. "funding": [
  7441. {
  7442. "url": "https://symfony.com/sponsor",
  7443. "type": "custom"
  7444. },
  7445. {
  7446. "url": "https://github.com/fabpot",
  7447. "type": "github"
  7448. },
  7449. {
  7450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7451. "type": "tidelift"
  7452. }
  7453. ],
  7454. "time": "2024-01-23T14:51:35+00:00"
  7455. },
  7456. {
  7457. "name": "symfony/finder",
  7458. "version": "v7.0.0",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/symfony/finder.git",
  7462. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  7467. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  7468. "shasum": ""
  7469. },
  7470. "require": {
  7471. "php": ">=8.2"
  7472. },
  7473. "require-dev": {
  7474. "symfony/filesystem": "^6.4|^7.0"
  7475. },
  7476. "type": "library",
  7477. "autoload": {
  7478. "psr-4": {
  7479. "Symfony\\Component\\Finder\\": ""
  7480. },
  7481. "exclude-from-classmap": [
  7482. "/Tests/"
  7483. ]
  7484. },
  7485. "notification-url": "https://packagist.org/downloads/",
  7486. "license": [
  7487. "MIT"
  7488. ],
  7489. "authors": [
  7490. {
  7491. "name": "Fabien Potencier",
  7492. "email": "fabien@symfony.com"
  7493. },
  7494. {
  7495. "name": "Symfony Community",
  7496. "homepage": "https://symfony.com/contributors"
  7497. }
  7498. ],
  7499. "description": "Finds files and directories via an intuitive fluent interface",
  7500. "homepage": "https://symfony.com",
  7501. "support": {
  7502. "source": "https://github.com/symfony/finder/tree/v7.0.0"
  7503. },
  7504. "funding": [
  7505. {
  7506. "url": "https://symfony.com/sponsor",
  7507. "type": "custom"
  7508. },
  7509. {
  7510. "url": "https://github.com/fabpot",
  7511. "type": "github"
  7512. },
  7513. {
  7514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7515. "type": "tidelift"
  7516. }
  7517. ],
  7518. "time": "2023-10-31T17:59:56+00:00"
  7519. },
  7520. {
  7521. "name": "symfony/html-sanitizer",
  7522. "version": "v7.0.4",
  7523. "source": {
  7524. "type": "git",
  7525. "url": "https://github.com/symfony/html-sanitizer.git",
  7526. "reference": "a8543ad56bc5250378ca44bb3988516fcb073c5d"
  7527. },
  7528. "dist": {
  7529. "type": "zip",
  7530. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/a8543ad56bc5250378ca44bb3988516fcb073c5d",
  7531. "reference": "a8543ad56bc5250378ca44bb3988516fcb073c5d",
  7532. "shasum": ""
  7533. },
  7534. "require": {
  7535. "ext-dom": "*",
  7536. "league/uri": "^6.5|^7.0",
  7537. "masterminds/html5": "^2.7.2",
  7538. "php": ">=8.2"
  7539. },
  7540. "type": "library",
  7541. "autoload": {
  7542. "psr-4": {
  7543. "Symfony\\Component\\HtmlSanitizer\\": ""
  7544. },
  7545. "exclude-from-classmap": [
  7546. "/Tests/"
  7547. ]
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "Titouan Galopin",
  7556. "email": "galopintitouan@gmail.com"
  7557. },
  7558. {
  7559. "name": "Symfony Community",
  7560. "homepage": "https://symfony.com/contributors"
  7561. }
  7562. ],
  7563. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7564. "homepage": "https://symfony.com",
  7565. "keywords": [
  7566. "Purifier",
  7567. "html",
  7568. "sanitizer"
  7569. ],
  7570. "support": {
  7571. "source": "https://github.com/symfony/html-sanitizer/tree/v7.0.4"
  7572. },
  7573. "funding": [
  7574. {
  7575. "url": "https://symfony.com/sponsor",
  7576. "type": "custom"
  7577. },
  7578. {
  7579. "url": "https://github.com/fabpot",
  7580. "type": "github"
  7581. },
  7582. {
  7583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7584. "type": "tidelift"
  7585. }
  7586. ],
  7587. "time": "2024-02-15T11:33:06+00:00"
  7588. },
  7589. {
  7590. "name": "symfony/http-foundation",
  7591. "version": "v7.0.6",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/symfony/http-foundation.git",
  7595. "reference": "8789625dcf36e5fbf753014678a1e090f1bc759c"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8789625dcf36e5fbf753014678a1e090f1bc759c",
  7600. "reference": "8789625dcf36e5fbf753014678a1e090f1bc759c",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "php": ">=8.2",
  7605. "symfony/polyfill-mbstring": "~1.1",
  7606. "symfony/polyfill-php83": "^1.27"
  7607. },
  7608. "conflict": {
  7609. "doctrine/dbal": "<3.6",
  7610. "symfony/cache": "<6.4"
  7611. },
  7612. "require-dev": {
  7613. "doctrine/dbal": "^3.6|^4",
  7614. "predis/predis": "^1.1|^2.0",
  7615. "symfony/cache": "^6.4|^7.0",
  7616. "symfony/dependency-injection": "^6.4|^7.0",
  7617. "symfony/expression-language": "^6.4|^7.0",
  7618. "symfony/http-kernel": "^6.4|^7.0",
  7619. "symfony/mime": "^6.4|^7.0",
  7620. "symfony/rate-limiter": "^6.4|^7.0"
  7621. },
  7622. "type": "library",
  7623. "autoload": {
  7624. "psr-4": {
  7625. "Symfony\\Component\\HttpFoundation\\": ""
  7626. },
  7627. "exclude-from-classmap": [
  7628. "/Tests/"
  7629. ]
  7630. },
  7631. "notification-url": "https://packagist.org/downloads/",
  7632. "license": [
  7633. "MIT"
  7634. ],
  7635. "authors": [
  7636. {
  7637. "name": "Fabien Potencier",
  7638. "email": "fabien@symfony.com"
  7639. },
  7640. {
  7641. "name": "Symfony Community",
  7642. "homepage": "https://symfony.com/contributors"
  7643. }
  7644. ],
  7645. "description": "Defines an object-oriented layer for the HTTP specification",
  7646. "homepage": "https://symfony.com",
  7647. "support": {
  7648. "source": "https://github.com/symfony/http-foundation/tree/v7.0.6"
  7649. },
  7650. "funding": [
  7651. {
  7652. "url": "https://symfony.com/sponsor",
  7653. "type": "custom"
  7654. },
  7655. {
  7656. "url": "https://github.com/fabpot",
  7657. "type": "github"
  7658. },
  7659. {
  7660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7661. "type": "tidelift"
  7662. }
  7663. ],
  7664. "time": "2024-03-19T11:46:48+00:00"
  7665. },
  7666. {
  7667. "name": "symfony/http-kernel",
  7668. "version": "v7.0.6",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/symfony/http-kernel.git",
  7672. "reference": "34c872391046d59af804af62d4573b829cfe4824"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/34c872391046d59af804af62d4573b829cfe4824",
  7677. "reference": "34c872391046d59af804af62d4573b829cfe4824",
  7678. "shasum": ""
  7679. },
  7680. "require": {
  7681. "php": ">=8.2",
  7682. "psr/log": "^1|^2|^3",
  7683. "symfony/error-handler": "^6.4|^7.0",
  7684. "symfony/event-dispatcher": "^6.4|^7.0",
  7685. "symfony/http-foundation": "^6.4|^7.0",
  7686. "symfony/polyfill-ctype": "^1.8"
  7687. },
  7688. "conflict": {
  7689. "symfony/browser-kit": "<6.4",
  7690. "symfony/cache": "<6.4",
  7691. "symfony/config": "<6.4",
  7692. "symfony/console": "<6.4",
  7693. "symfony/dependency-injection": "<6.4",
  7694. "symfony/doctrine-bridge": "<6.4",
  7695. "symfony/form": "<6.4",
  7696. "symfony/http-client": "<6.4",
  7697. "symfony/http-client-contracts": "<2.5",
  7698. "symfony/mailer": "<6.4",
  7699. "symfony/messenger": "<6.4",
  7700. "symfony/translation": "<6.4",
  7701. "symfony/translation-contracts": "<2.5",
  7702. "symfony/twig-bridge": "<6.4",
  7703. "symfony/validator": "<6.4",
  7704. "symfony/var-dumper": "<6.4",
  7705. "twig/twig": "<3.0.4"
  7706. },
  7707. "provide": {
  7708. "psr/log-implementation": "1.0|2.0|3.0"
  7709. },
  7710. "require-dev": {
  7711. "psr/cache": "^1.0|^2.0|^3.0",
  7712. "symfony/browser-kit": "^6.4|^7.0",
  7713. "symfony/clock": "^6.4|^7.0",
  7714. "symfony/config": "^6.4|^7.0",
  7715. "symfony/console": "^6.4|^7.0",
  7716. "symfony/css-selector": "^6.4|^7.0",
  7717. "symfony/dependency-injection": "^6.4|^7.0",
  7718. "symfony/dom-crawler": "^6.4|^7.0",
  7719. "symfony/expression-language": "^6.4|^7.0",
  7720. "symfony/finder": "^6.4|^7.0",
  7721. "symfony/http-client-contracts": "^2.5|^3",
  7722. "symfony/process": "^6.4|^7.0",
  7723. "symfony/property-access": "^6.4|^7.0",
  7724. "symfony/routing": "^6.4|^7.0",
  7725. "symfony/serializer": "^6.4.4|^7.0.4",
  7726. "symfony/stopwatch": "^6.4|^7.0",
  7727. "symfony/translation": "^6.4|^7.0",
  7728. "symfony/translation-contracts": "^2.5|^3",
  7729. "symfony/uid": "^6.4|^7.0",
  7730. "symfony/validator": "^6.4|^7.0",
  7731. "symfony/var-exporter": "^6.4|^7.0",
  7732. "twig/twig": "^3.0.4"
  7733. },
  7734. "type": "library",
  7735. "autoload": {
  7736. "psr-4": {
  7737. "Symfony\\Component\\HttpKernel\\": ""
  7738. },
  7739. "exclude-from-classmap": [
  7740. "/Tests/"
  7741. ]
  7742. },
  7743. "notification-url": "https://packagist.org/downloads/",
  7744. "license": [
  7745. "MIT"
  7746. ],
  7747. "authors": [
  7748. {
  7749. "name": "Fabien Potencier",
  7750. "email": "fabien@symfony.com"
  7751. },
  7752. {
  7753. "name": "Symfony Community",
  7754. "homepage": "https://symfony.com/contributors"
  7755. }
  7756. ],
  7757. "description": "Provides a structured process for converting a Request into a Response",
  7758. "homepage": "https://symfony.com",
  7759. "support": {
  7760. "source": "https://github.com/symfony/http-kernel/tree/v7.0.6"
  7761. },
  7762. "funding": [
  7763. {
  7764. "url": "https://symfony.com/sponsor",
  7765. "type": "custom"
  7766. },
  7767. {
  7768. "url": "https://github.com/fabpot",
  7769. "type": "github"
  7770. },
  7771. {
  7772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7773. "type": "tidelift"
  7774. }
  7775. ],
  7776. "time": "2024-04-03T06:12:25+00:00"
  7777. },
  7778. {
  7779. "name": "symfony/intl",
  7780. "version": "v6.4.3",
  7781. "source": {
  7782. "type": "git",
  7783. "url": "https://github.com/symfony/intl.git",
  7784. "reference": "2628ded562ca132ed7cdea72f5ec6aaf65d94414"
  7785. },
  7786. "dist": {
  7787. "type": "zip",
  7788. "url": "https://api.github.com/repos/symfony/intl/zipball/2628ded562ca132ed7cdea72f5ec6aaf65d94414",
  7789. "reference": "2628ded562ca132ed7cdea72f5ec6aaf65d94414",
  7790. "shasum": ""
  7791. },
  7792. "require": {
  7793. "php": ">=8.1"
  7794. },
  7795. "require-dev": {
  7796. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7797. "symfony/finder": "^5.4|^6.0|^7.0",
  7798. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7799. },
  7800. "type": "library",
  7801. "autoload": {
  7802. "psr-4": {
  7803. "Symfony\\Component\\Intl\\": ""
  7804. },
  7805. "exclude-from-classmap": [
  7806. "/Tests/"
  7807. ]
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "MIT"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Bernhard Schussek",
  7816. "email": "bschussek@gmail.com"
  7817. },
  7818. {
  7819. "name": "Eriksen Costa",
  7820. "email": "eriksen.costa@infranology.com.br"
  7821. },
  7822. {
  7823. "name": "Igor Wiedler",
  7824. "email": "igor@wiedler.ch"
  7825. },
  7826. {
  7827. "name": "Symfony Community",
  7828. "homepage": "https://symfony.com/contributors"
  7829. }
  7830. ],
  7831. "description": "Provides access to the localization data of the ICU library",
  7832. "homepage": "https://symfony.com",
  7833. "keywords": [
  7834. "i18n",
  7835. "icu",
  7836. "internationalization",
  7837. "intl",
  7838. "l10n",
  7839. "localization"
  7840. ],
  7841. "support": {
  7842. "source": "https://github.com/symfony/intl/tree/v6.4.3"
  7843. },
  7844. "funding": [
  7845. {
  7846. "url": "https://symfony.com/sponsor",
  7847. "type": "custom"
  7848. },
  7849. {
  7850. "url": "https://github.com/fabpot",
  7851. "type": "github"
  7852. },
  7853. {
  7854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7855. "type": "tidelift"
  7856. }
  7857. ],
  7858. "time": "2024-01-23T14:51:35+00:00"
  7859. },
  7860. {
  7861. "name": "symfony/mailer",
  7862. "version": "v7.0.6",
  7863. "source": {
  7864. "type": "git",
  7865. "url": "https://github.com/symfony/mailer.git",
  7866. "reference": "eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0"
  7867. },
  7868. "dist": {
  7869. "type": "zip",
  7870. "url": "https://api.github.com/repos/symfony/mailer/zipball/eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0",
  7871. "reference": "eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0",
  7872. "shasum": ""
  7873. },
  7874. "require": {
  7875. "egulias/email-validator": "^2.1.10|^3|^4",
  7876. "php": ">=8.2",
  7877. "psr/event-dispatcher": "^1",
  7878. "psr/log": "^1|^2|^3",
  7879. "symfony/event-dispatcher": "^6.4|^7.0",
  7880. "symfony/mime": "^6.4|^7.0",
  7881. "symfony/service-contracts": "^2.5|^3"
  7882. },
  7883. "conflict": {
  7884. "symfony/http-client-contracts": "<2.5",
  7885. "symfony/http-kernel": "<6.4",
  7886. "symfony/messenger": "<6.4",
  7887. "symfony/mime": "<6.4",
  7888. "symfony/twig-bridge": "<6.4"
  7889. },
  7890. "require-dev": {
  7891. "symfony/console": "^6.4|^7.0",
  7892. "symfony/http-client": "^6.4|^7.0",
  7893. "symfony/messenger": "^6.4|^7.0",
  7894. "symfony/twig-bridge": "^6.4|^7.0"
  7895. },
  7896. "type": "library",
  7897. "autoload": {
  7898. "psr-4": {
  7899. "Symfony\\Component\\Mailer\\": ""
  7900. },
  7901. "exclude-from-classmap": [
  7902. "/Tests/"
  7903. ]
  7904. },
  7905. "notification-url": "https://packagist.org/downloads/",
  7906. "license": [
  7907. "MIT"
  7908. ],
  7909. "authors": [
  7910. {
  7911. "name": "Fabien Potencier",
  7912. "email": "fabien@symfony.com"
  7913. },
  7914. {
  7915. "name": "Symfony Community",
  7916. "homepage": "https://symfony.com/contributors"
  7917. }
  7918. ],
  7919. "description": "Helps sending emails",
  7920. "homepage": "https://symfony.com",
  7921. "support": {
  7922. "source": "https://github.com/symfony/mailer/tree/v7.0.6"
  7923. },
  7924. "funding": [
  7925. {
  7926. "url": "https://symfony.com/sponsor",
  7927. "type": "custom"
  7928. },
  7929. {
  7930. "url": "https://github.com/fabpot",
  7931. "type": "github"
  7932. },
  7933. {
  7934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7935. "type": "tidelift"
  7936. }
  7937. ],
  7938. "time": "2024-03-28T09:20:36+00:00"
  7939. },
  7940. {
  7941. "name": "symfony/mime",
  7942. "version": "v7.0.6",
  7943. "source": {
  7944. "type": "git",
  7945. "url": "https://github.com/symfony/mime.git",
  7946. "reference": "99362408c9abdf8c7cadcf0529b6fc8b16f5ace2"
  7947. },
  7948. "dist": {
  7949. "type": "zip",
  7950. "url": "https://api.github.com/repos/symfony/mime/zipball/99362408c9abdf8c7cadcf0529b6fc8b16f5ace2",
  7951. "reference": "99362408c9abdf8c7cadcf0529b6fc8b16f5ace2",
  7952. "shasum": ""
  7953. },
  7954. "require": {
  7955. "php": ">=8.2",
  7956. "symfony/polyfill-intl-idn": "^1.10",
  7957. "symfony/polyfill-mbstring": "^1.0"
  7958. },
  7959. "conflict": {
  7960. "egulias/email-validator": "~3.0.0",
  7961. "phpdocumentor/reflection-docblock": "<3.2.2",
  7962. "phpdocumentor/type-resolver": "<1.4.0",
  7963. "symfony/mailer": "<6.4",
  7964. "symfony/serializer": "<6.4"
  7965. },
  7966. "require-dev": {
  7967. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7968. "league/html-to-markdown": "^5.0",
  7969. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7970. "symfony/dependency-injection": "^6.4|^7.0",
  7971. "symfony/process": "^6.4|^7.0",
  7972. "symfony/property-access": "^6.4|^7.0",
  7973. "symfony/property-info": "^6.4|^7.0",
  7974. "symfony/serializer": "^6.4|^7.0"
  7975. },
  7976. "type": "library",
  7977. "autoload": {
  7978. "psr-4": {
  7979. "Symfony\\Component\\Mime\\": ""
  7980. },
  7981. "exclude-from-classmap": [
  7982. "/Tests/"
  7983. ]
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Fabien Potencier",
  7992. "email": "fabien@symfony.com"
  7993. },
  7994. {
  7995. "name": "Symfony Community",
  7996. "homepage": "https://symfony.com/contributors"
  7997. }
  7998. ],
  7999. "description": "Allows manipulating MIME messages",
  8000. "homepage": "https://symfony.com",
  8001. "keywords": [
  8002. "mime",
  8003. "mime-type"
  8004. ],
  8005. "support": {
  8006. "source": "https://github.com/symfony/mime/tree/v7.0.6"
  8007. },
  8008. "funding": [
  8009. {
  8010. "url": "https://symfony.com/sponsor",
  8011. "type": "custom"
  8012. },
  8013. {
  8014. "url": "https://github.com/fabpot",
  8015. "type": "github"
  8016. },
  8017. {
  8018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8019. "type": "tidelift"
  8020. }
  8021. ],
  8022. "time": "2024-03-21T19:37:36+00:00"
  8023. },
  8024. {
  8025. "name": "symfony/polyfill-ctype",
  8026. "version": "v1.29.0",
  8027. "source": {
  8028. "type": "git",
  8029. "url": "https://github.com/symfony/polyfill-ctype.git",
  8030. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  8031. },
  8032. "dist": {
  8033. "type": "zip",
  8034. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  8035. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  8036. "shasum": ""
  8037. },
  8038. "require": {
  8039. "php": ">=7.1"
  8040. },
  8041. "provide": {
  8042. "ext-ctype": "*"
  8043. },
  8044. "suggest": {
  8045. "ext-ctype": "For best performance"
  8046. },
  8047. "type": "library",
  8048. "extra": {
  8049. "thanks": {
  8050. "name": "symfony/polyfill",
  8051. "url": "https://github.com/symfony/polyfill"
  8052. }
  8053. },
  8054. "autoload": {
  8055. "files": [
  8056. "bootstrap.php"
  8057. ],
  8058. "psr-4": {
  8059. "Symfony\\Polyfill\\Ctype\\": ""
  8060. }
  8061. },
  8062. "notification-url": "https://packagist.org/downloads/",
  8063. "license": [
  8064. "MIT"
  8065. ],
  8066. "authors": [
  8067. {
  8068. "name": "Gert de Pagter",
  8069. "email": "BackEndTea@gmail.com"
  8070. },
  8071. {
  8072. "name": "Symfony Community",
  8073. "homepage": "https://symfony.com/contributors"
  8074. }
  8075. ],
  8076. "description": "Symfony polyfill for ctype functions",
  8077. "homepage": "https://symfony.com",
  8078. "keywords": [
  8079. "compatibility",
  8080. "ctype",
  8081. "polyfill",
  8082. "portable"
  8083. ],
  8084. "support": {
  8085. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  8086. },
  8087. "funding": [
  8088. {
  8089. "url": "https://symfony.com/sponsor",
  8090. "type": "custom"
  8091. },
  8092. {
  8093. "url": "https://github.com/fabpot",
  8094. "type": "github"
  8095. },
  8096. {
  8097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8098. "type": "tidelift"
  8099. }
  8100. ],
  8101. "time": "2024-01-29T20:11:03+00:00"
  8102. },
  8103. {
  8104. "name": "symfony/polyfill-intl-grapheme",
  8105. "version": "v1.29.0",
  8106. "source": {
  8107. "type": "git",
  8108. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8109. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  8110. },
  8111. "dist": {
  8112. "type": "zip",
  8113. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  8114. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  8115. "shasum": ""
  8116. },
  8117. "require": {
  8118. "php": ">=7.1"
  8119. },
  8120. "suggest": {
  8121. "ext-intl": "For best performance"
  8122. },
  8123. "type": "library",
  8124. "extra": {
  8125. "thanks": {
  8126. "name": "symfony/polyfill",
  8127. "url": "https://github.com/symfony/polyfill"
  8128. }
  8129. },
  8130. "autoload": {
  8131. "files": [
  8132. "bootstrap.php"
  8133. ],
  8134. "psr-4": {
  8135. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8136. }
  8137. },
  8138. "notification-url": "https://packagist.org/downloads/",
  8139. "license": [
  8140. "MIT"
  8141. ],
  8142. "authors": [
  8143. {
  8144. "name": "Nicolas Grekas",
  8145. "email": "p@tchwork.com"
  8146. },
  8147. {
  8148. "name": "Symfony Community",
  8149. "homepage": "https://symfony.com/contributors"
  8150. }
  8151. ],
  8152. "description": "Symfony polyfill for intl's grapheme_* functions",
  8153. "homepage": "https://symfony.com",
  8154. "keywords": [
  8155. "compatibility",
  8156. "grapheme",
  8157. "intl",
  8158. "polyfill",
  8159. "portable",
  8160. "shim"
  8161. ],
  8162. "support": {
  8163. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  8164. },
  8165. "funding": [
  8166. {
  8167. "url": "https://symfony.com/sponsor",
  8168. "type": "custom"
  8169. },
  8170. {
  8171. "url": "https://github.com/fabpot",
  8172. "type": "github"
  8173. },
  8174. {
  8175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8176. "type": "tidelift"
  8177. }
  8178. ],
  8179. "time": "2024-01-29T20:11:03+00:00"
  8180. },
  8181. {
  8182. "name": "symfony/polyfill-intl-idn",
  8183. "version": "v1.29.0",
  8184. "source": {
  8185. "type": "git",
  8186. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8187. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  8188. },
  8189. "dist": {
  8190. "type": "zip",
  8191. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  8192. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  8193. "shasum": ""
  8194. },
  8195. "require": {
  8196. "php": ">=7.1",
  8197. "symfony/polyfill-intl-normalizer": "^1.10",
  8198. "symfony/polyfill-php72": "^1.10"
  8199. },
  8200. "suggest": {
  8201. "ext-intl": "For best performance"
  8202. },
  8203. "type": "library",
  8204. "extra": {
  8205. "thanks": {
  8206. "name": "symfony/polyfill",
  8207. "url": "https://github.com/symfony/polyfill"
  8208. }
  8209. },
  8210. "autoload": {
  8211. "files": [
  8212. "bootstrap.php"
  8213. ],
  8214. "psr-4": {
  8215. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8216. }
  8217. },
  8218. "notification-url": "https://packagist.org/downloads/",
  8219. "license": [
  8220. "MIT"
  8221. ],
  8222. "authors": [
  8223. {
  8224. "name": "Laurent Bassin",
  8225. "email": "laurent@bassin.info"
  8226. },
  8227. {
  8228. "name": "Trevor Rowbotham",
  8229. "email": "trevor.rowbotham@pm.me"
  8230. },
  8231. {
  8232. "name": "Symfony Community",
  8233. "homepage": "https://symfony.com/contributors"
  8234. }
  8235. ],
  8236. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8237. "homepage": "https://symfony.com",
  8238. "keywords": [
  8239. "compatibility",
  8240. "idn",
  8241. "intl",
  8242. "polyfill",
  8243. "portable",
  8244. "shim"
  8245. ],
  8246. "support": {
  8247. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  8248. },
  8249. "funding": [
  8250. {
  8251. "url": "https://symfony.com/sponsor",
  8252. "type": "custom"
  8253. },
  8254. {
  8255. "url": "https://github.com/fabpot",
  8256. "type": "github"
  8257. },
  8258. {
  8259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8260. "type": "tidelift"
  8261. }
  8262. ],
  8263. "time": "2024-01-29T20:11:03+00:00"
  8264. },
  8265. {
  8266. "name": "symfony/polyfill-intl-normalizer",
  8267. "version": "v1.29.0",
  8268. "source": {
  8269. "type": "git",
  8270. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8271. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  8272. },
  8273. "dist": {
  8274. "type": "zip",
  8275. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  8276. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  8277. "shasum": ""
  8278. },
  8279. "require": {
  8280. "php": ">=7.1"
  8281. },
  8282. "suggest": {
  8283. "ext-intl": "For best performance"
  8284. },
  8285. "type": "library",
  8286. "extra": {
  8287. "thanks": {
  8288. "name": "symfony/polyfill",
  8289. "url": "https://github.com/symfony/polyfill"
  8290. }
  8291. },
  8292. "autoload": {
  8293. "files": [
  8294. "bootstrap.php"
  8295. ],
  8296. "psr-4": {
  8297. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8298. },
  8299. "classmap": [
  8300. "Resources/stubs"
  8301. ]
  8302. },
  8303. "notification-url": "https://packagist.org/downloads/",
  8304. "license": [
  8305. "MIT"
  8306. ],
  8307. "authors": [
  8308. {
  8309. "name": "Nicolas Grekas",
  8310. "email": "p@tchwork.com"
  8311. },
  8312. {
  8313. "name": "Symfony Community",
  8314. "homepage": "https://symfony.com/contributors"
  8315. }
  8316. ],
  8317. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8318. "homepage": "https://symfony.com",
  8319. "keywords": [
  8320. "compatibility",
  8321. "intl",
  8322. "normalizer",
  8323. "polyfill",
  8324. "portable",
  8325. "shim"
  8326. ],
  8327. "support": {
  8328. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  8329. },
  8330. "funding": [
  8331. {
  8332. "url": "https://symfony.com/sponsor",
  8333. "type": "custom"
  8334. },
  8335. {
  8336. "url": "https://github.com/fabpot",
  8337. "type": "github"
  8338. },
  8339. {
  8340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8341. "type": "tidelift"
  8342. }
  8343. ],
  8344. "time": "2024-01-29T20:11:03+00:00"
  8345. },
  8346. {
  8347. "name": "symfony/polyfill-mbstring",
  8348. "version": "v1.29.0",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8352. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  8357. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "php": ">=7.1"
  8362. },
  8363. "provide": {
  8364. "ext-mbstring": "*"
  8365. },
  8366. "suggest": {
  8367. "ext-mbstring": "For best performance"
  8368. },
  8369. "type": "library",
  8370. "extra": {
  8371. "thanks": {
  8372. "name": "symfony/polyfill",
  8373. "url": "https://github.com/symfony/polyfill"
  8374. }
  8375. },
  8376. "autoload": {
  8377. "files": [
  8378. "bootstrap.php"
  8379. ],
  8380. "psr-4": {
  8381. "Symfony\\Polyfill\\Mbstring\\": ""
  8382. }
  8383. },
  8384. "notification-url": "https://packagist.org/downloads/",
  8385. "license": [
  8386. "MIT"
  8387. ],
  8388. "authors": [
  8389. {
  8390. "name": "Nicolas Grekas",
  8391. "email": "p@tchwork.com"
  8392. },
  8393. {
  8394. "name": "Symfony Community",
  8395. "homepage": "https://symfony.com/contributors"
  8396. }
  8397. ],
  8398. "description": "Symfony polyfill for the Mbstring extension",
  8399. "homepage": "https://symfony.com",
  8400. "keywords": [
  8401. "compatibility",
  8402. "mbstring",
  8403. "polyfill",
  8404. "portable",
  8405. "shim"
  8406. ],
  8407. "support": {
  8408. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  8409. },
  8410. "funding": [
  8411. {
  8412. "url": "https://symfony.com/sponsor",
  8413. "type": "custom"
  8414. },
  8415. {
  8416. "url": "https://github.com/fabpot",
  8417. "type": "github"
  8418. },
  8419. {
  8420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8421. "type": "tidelift"
  8422. }
  8423. ],
  8424. "time": "2024-01-29T20:11:03+00:00"
  8425. },
  8426. {
  8427. "name": "symfony/polyfill-php72",
  8428. "version": "v1.29.0",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/symfony/polyfill-php72.git",
  8432. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  8437. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  8438. "shasum": ""
  8439. },
  8440. "require": {
  8441. "php": ">=7.1"
  8442. },
  8443. "type": "library",
  8444. "extra": {
  8445. "thanks": {
  8446. "name": "symfony/polyfill",
  8447. "url": "https://github.com/symfony/polyfill"
  8448. }
  8449. },
  8450. "autoload": {
  8451. "files": [
  8452. "bootstrap.php"
  8453. ],
  8454. "psr-4": {
  8455. "Symfony\\Polyfill\\Php72\\": ""
  8456. }
  8457. },
  8458. "notification-url": "https://packagist.org/downloads/",
  8459. "license": [
  8460. "MIT"
  8461. ],
  8462. "authors": [
  8463. {
  8464. "name": "Nicolas Grekas",
  8465. "email": "p@tchwork.com"
  8466. },
  8467. {
  8468. "name": "Symfony Community",
  8469. "homepage": "https://symfony.com/contributors"
  8470. }
  8471. ],
  8472. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8473. "homepage": "https://symfony.com",
  8474. "keywords": [
  8475. "compatibility",
  8476. "polyfill",
  8477. "portable",
  8478. "shim"
  8479. ],
  8480. "support": {
  8481. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  8482. },
  8483. "funding": [
  8484. {
  8485. "url": "https://symfony.com/sponsor",
  8486. "type": "custom"
  8487. },
  8488. {
  8489. "url": "https://github.com/fabpot",
  8490. "type": "github"
  8491. },
  8492. {
  8493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8494. "type": "tidelift"
  8495. }
  8496. ],
  8497. "time": "2024-01-29T20:11:03+00:00"
  8498. },
  8499. {
  8500. "name": "symfony/polyfill-php80",
  8501. "version": "v1.29.0",
  8502. "source": {
  8503. "type": "git",
  8504. "url": "https://github.com/symfony/polyfill-php80.git",
  8505. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  8506. },
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  8510. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  8511. "shasum": ""
  8512. },
  8513. "require": {
  8514. "php": ">=7.1"
  8515. },
  8516. "type": "library",
  8517. "extra": {
  8518. "thanks": {
  8519. "name": "symfony/polyfill",
  8520. "url": "https://github.com/symfony/polyfill"
  8521. }
  8522. },
  8523. "autoload": {
  8524. "files": [
  8525. "bootstrap.php"
  8526. ],
  8527. "psr-4": {
  8528. "Symfony\\Polyfill\\Php80\\": ""
  8529. },
  8530. "classmap": [
  8531. "Resources/stubs"
  8532. ]
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "MIT"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Ion Bazan",
  8541. "email": "ion.bazan@gmail.com"
  8542. },
  8543. {
  8544. "name": "Nicolas Grekas",
  8545. "email": "p@tchwork.com"
  8546. },
  8547. {
  8548. "name": "Symfony Community",
  8549. "homepage": "https://symfony.com/contributors"
  8550. }
  8551. ],
  8552. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8553. "homepage": "https://symfony.com",
  8554. "keywords": [
  8555. "compatibility",
  8556. "polyfill",
  8557. "portable",
  8558. "shim"
  8559. ],
  8560. "support": {
  8561. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  8562. },
  8563. "funding": [
  8564. {
  8565. "url": "https://symfony.com/sponsor",
  8566. "type": "custom"
  8567. },
  8568. {
  8569. "url": "https://github.com/fabpot",
  8570. "type": "github"
  8571. },
  8572. {
  8573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8574. "type": "tidelift"
  8575. }
  8576. ],
  8577. "time": "2024-01-29T20:11:03+00:00"
  8578. },
  8579. {
  8580. "name": "symfony/polyfill-php83",
  8581. "version": "v1.29.0",
  8582. "source": {
  8583. "type": "git",
  8584. "url": "https://github.com/symfony/polyfill-php83.git",
  8585. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  8586. },
  8587. "dist": {
  8588. "type": "zip",
  8589. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  8590. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  8591. "shasum": ""
  8592. },
  8593. "require": {
  8594. "php": ">=7.1",
  8595. "symfony/polyfill-php80": "^1.14"
  8596. },
  8597. "type": "library",
  8598. "extra": {
  8599. "thanks": {
  8600. "name": "symfony/polyfill",
  8601. "url": "https://github.com/symfony/polyfill"
  8602. }
  8603. },
  8604. "autoload": {
  8605. "files": [
  8606. "bootstrap.php"
  8607. ],
  8608. "psr-4": {
  8609. "Symfony\\Polyfill\\Php83\\": ""
  8610. },
  8611. "classmap": [
  8612. "Resources/stubs"
  8613. ]
  8614. },
  8615. "notification-url": "https://packagist.org/downloads/",
  8616. "license": [
  8617. "MIT"
  8618. ],
  8619. "authors": [
  8620. {
  8621. "name": "Nicolas Grekas",
  8622. "email": "p@tchwork.com"
  8623. },
  8624. {
  8625. "name": "Symfony Community",
  8626. "homepage": "https://symfony.com/contributors"
  8627. }
  8628. ],
  8629. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8630. "homepage": "https://symfony.com",
  8631. "keywords": [
  8632. "compatibility",
  8633. "polyfill",
  8634. "portable",
  8635. "shim"
  8636. ],
  8637. "support": {
  8638. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  8639. },
  8640. "funding": [
  8641. {
  8642. "url": "https://symfony.com/sponsor",
  8643. "type": "custom"
  8644. },
  8645. {
  8646. "url": "https://github.com/fabpot",
  8647. "type": "github"
  8648. },
  8649. {
  8650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8651. "type": "tidelift"
  8652. }
  8653. ],
  8654. "time": "2024-01-29T20:11:03+00:00"
  8655. },
  8656. {
  8657. "name": "symfony/polyfill-uuid",
  8658. "version": "v1.29.0",
  8659. "source": {
  8660. "type": "git",
  8661. "url": "https://github.com/symfony/polyfill-uuid.git",
  8662. "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853"
  8663. },
  8664. "dist": {
  8665. "type": "zip",
  8666. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/3abdd21b0ceaa3000ee950097bc3cf9efc137853",
  8667. "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853",
  8668. "shasum": ""
  8669. },
  8670. "require": {
  8671. "php": ">=7.1"
  8672. },
  8673. "provide": {
  8674. "ext-uuid": "*"
  8675. },
  8676. "suggest": {
  8677. "ext-uuid": "For best performance"
  8678. },
  8679. "type": "library",
  8680. "extra": {
  8681. "thanks": {
  8682. "name": "symfony/polyfill",
  8683. "url": "https://github.com/symfony/polyfill"
  8684. }
  8685. },
  8686. "autoload": {
  8687. "files": [
  8688. "bootstrap.php"
  8689. ],
  8690. "psr-4": {
  8691. "Symfony\\Polyfill\\Uuid\\": ""
  8692. }
  8693. },
  8694. "notification-url": "https://packagist.org/downloads/",
  8695. "license": [
  8696. "MIT"
  8697. ],
  8698. "authors": [
  8699. {
  8700. "name": "Grégoire Pineau",
  8701. "email": "lyrixx@lyrixx.info"
  8702. },
  8703. {
  8704. "name": "Symfony Community",
  8705. "homepage": "https://symfony.com/contributors"
  8706. }
  8707. ],
  8708. "description": "Symfony polyfill for uuid functions",
  8709. "homepage": "https://symfony.com",
  8710. "keywords": [
  8711. "compatibility",
  8712. "polyfill",
  8713. "portable",
  8714. "uuid"
  8715. ],
  8716. "support": {
  8717. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.29.0"
  8718. },
  8719. "funding": [
  8720. {
  8721. "url": "https://symfony.com/sponsor",
  8722. "type": "custom"
  8723. },
  8724. {
  8725. "url": "https://github.com/fabpot",
  8726. "type": "github"
  8727. },
  8728. {
  8729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8730. "type": "tidelift"
  8731. }
  8732. ],
  8733. "time": "2024-01-29T20:11:03+00:00"
  8734. },
  8735. {
  8736. "name": "symfony/process",
  8737. "version": "v7.0.4",
  8738. "source": {
  8739. "type": "git",
  8740. "url": "https://github.com/symfony/process.git",
  8741. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9"
  8742. },
  8743. "dist": {
  8744. "type": "zip",
  8745. "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  8746. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  8747. "shasum": ""
  8748. },
  8749. "require": {
  8750. "php": ">=8.2"
  8751. },
  8752. "type": "library",
  8753. "autoload": {
  8754. "psr-4": {
  8755. "Symfony\\Component\\Process\\": ""
  8756. },
  8757. "exclude-from-classmap": [
  8758. "/Tests/"
  8759. ]
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "MIT"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Fabien Potencier",
  8768. "email": "fabien@symfony.com"
  8769. },
  8770. {
  8771. "name": "Symfony Community",
  8772. "homepage": "https://symfony.com/contributors"
  8773. }
  8774. ],
  8775. "description": "Executes commands in sub-processes",
  8776. "homepage": "https://symfony.com",
  8777. "support": {
  8778. "source": "https://github.com/symfony/process/tree/v7.0.4"
  8779. },
  8780. "funding": [
  8781. {
  8782. "url": "https://symfony.com/sponsor",
  8783. "type": "custom"
  8784. },
  8785. {
  8786. "url": "https://github.com/fabpot",
  8787. "type": "github"
  8788. },
  8789. {
  8790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8791. "type": "tidelift"
  8792. }
  8793. ],
  8794. "time": "2024-02-22T20:27:20+00:00"
  8795. },
  8796. {
  8797. "name": "symfony/routing",
  8798. "version": "v7.0.6",
  8799. "source": {
  8800. "type": "git",
  8801. "url": "https://github.com/symfony/routing.git",
  8802. "reference": "cded64e5bbf9f31786f1055fcc76718fdd77519c"
  8803. },
  8804. "dist": {
  8805. "type": "zip",
  8806. "url": "https://api.github.com/repos/symfony/routing/zipball/cded64e5bbf9f31786f1055fcc76718fdd77519c",
  8807. "reference": "cded64e5bbf9f31786f1055fcc76718fdd77519c",
  8808. "shasum": ""
  8809. },
  8810. "require": {
  8811. "php": ">=8.2",
  8812. "symfony/deprecation-contracts": "^2.5|^3"
  8813. },
  8814. "conflict": {
  8815. "symfony/config": "<6.4",
  8816. "symfony/dependency-injection": "<6.4",
  8817. "symfony/yaml": "<6.4"
  8818. },
  8819. "require-dev": {
  8820. "psr/log": "^1|^2|^3",
  8821. "symfony/config": "^6.4|^7.0",
  8822. "symfony/dependency-injection": "^6.4|^7.0",
  8823. "symfony/expression-language": "^6.4|^7.0",
  8824. "symfony/http-foundation": "^6.4|^7.0",
  8825. "symfony/yaml": "^6.4|^7.0"
  8826. },
  8827. "type": "library",
  8828. "autoload": {
  8829. "psr-4": {
  8830. "Symfony\\Component\\Routing\\": ""
  8831. },
  8832. "exclude-from-classmap": [
  8833. "/Tests/"
  8834. ]
  8835. },
  8836. "notification-url": "https://packagist.org/downloads/",
  8837. "license": [
  8838. "MIT"
  8839. ],
  8840. "authors": [
  8841. {
  8842. "name": "Fabien Potencier",
  8843. "email": "fabien@symfony.com"
  8844. },
  8845. {
  8846. "name": "Symfony Community",
  8847. "homepage": "https://symfony.com/contributors"
  8848. }
  8849. ],
  8850. "description": "Maps an HTTP request to a set of configuration variables",
  8851. "homepage": "https://symfony.com",
  8852. "keywords": [
  8853. "router",
  8854. "routing",
  8855. "uri",
  8856. "url"
  8857. ],
  8858. "support": {
  8859. "source": "https://github.com/symfony/routing/tree/v7.0.6"
  8860. },
  8861. "funding": [
  8862. {
  8863. "url": "https://symfony.com/sponsor",
  8864. "type": "custom"
  8865. },
  8866. {
  8867. "url": "https://github.com/fabpot",
  8868. "type": "github"
  8869. },
  8870. {
  8871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8872. "type": "tidelift"
  8873. }
  8874. ],
  8875. "time": "2024-03-28T21:02:11+00:00"
  8876. },
  8877. {
  8878. "name": "symfony/service-contracts",
  8879. "version": "v3.4.2",
  8880. "source": {
  8881. "type": "git",
  8882. "url": "https://github.com/symfony/service-contracts.git",
  8883. "reference": "11bbf19a0fb7b36345861e85c5768844c552906e"
  8884. },
  8885. "dist": {
  8886. "type": "zip",
  8887. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e",
  8888. "reference": "11bbf19a0fb7b36345861e85c5768844c552906e",
  8889. "shasum": ""
  8890. },
  8891. "require": {
  8892. "php": ">=8.1",
  8893. "psr/container": "^1.1|^2.0"
  8894. },
  8895. "conflict": {
  8896. "ext-psr": "<1.1|>=2"
  8897. },
  8898. "type": "library",
  8899. "extra": {
  8900. "branch-alias": {
  8901. "dev-main": "3.4-dev"
  8902. },
  8903. "thanks": {
  8904. "name": "symfony/contracts",
  8905. "url": "https://github.com/symfony/contracts"
  8906. }
  8907. },
  8908. "autoload": {
  8909. "psr-4": {
  8910. "Symfony\\Contracts\\Service\\": ""
  8911. },
  8912. "exclude-from-classmap": [
  8913. "/Test/"
  8914. ]
  8915. },
  8916. "notification-url": "https://packagist.org/downloads/",
  8917. "license": [
  8918. "MIT"
  8919. ],
  8920. "authors": [
  8921. {
  8922. "name": "Nicolas Grekas",
  8923. "email": "p@tchwork.com"
  8924. },
  8925. {
  8926. "name": "Symfony Community",
  8927. "homepage": "https://symfony.com/contributors"
  8928. }
  8929. ],
  8930. "description": "Generic abstractions related to writing services",
  8931. "homepage": "https://symfony.com",
  8932. "keywords": [
  8933. "abstractions",
  8934. "contracts",
  8935. "decoupling",
  8936. "interfaces",
  8937. "interoperability",
  8938. "standards"
  8939. ],
  8940. "support": {
  8941. "source": "https://github.com/symfony/service-contracts/tree/v3.4.2"
  8942. },
  8943. "funding": [
  8944. {
  8945. "url": "https://symfony.com/sponsor",
  8946. "type": "custom"
  8947. },
  8948. {
  8949. "url": "https://github.com/fabpot",
  8950. "type": "github"
  8951. },
  8952. {
  8953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8954. "type": "tidelift"
  8955. }
  8956. ],
  8957. "time": "2023-12-19T21:51:00+00:00"
  8958. },
  8959. {
  8960. "name": "symfony/string",
  8961. "version": "v7.0.4",
  8962. "source": {
  8963. "type": "git",
  8964. "url": "https://github.com/symfony/string.git",
  8965. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
  8966. },
  8967. "dist": {
  8968. "type": "zip",
  8969. "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
  8970. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
  8971. "shasum": ""
  8972. },
  8973. "require": {
  8974. "php": ">=8.2",
  8975. "symfony/polyfill-ctype": "~1.8",
  8976. "symfony/polyfill-intl-grapheme": "~1.0",
  8977. "symfony/polyfill-intl-normalizer": "~1.0",
  8978. "symfony/polyfill-mbstring": "~1.0"
  8979. },
  8980. "conflict": {
  8981. "symfony/translation-contracts": "<2.5"
  8982. },
  8983. "require-dev": {
  8984. "symfony/error-handler": "^6.4|^7.0",
  8985. "symfony/http-client": "^6.4|^7.0",
  8986. "symfony/intl": "^6.4|^7.0",
  8987. "symfony/translation-contracts": "^2.5|^3.0",
  8988. "symfony/var-exporter": "^6.4|^7.0"
  8989. },
  8990. "type": "library",
  8991. "autoload": {
  8992. "files": [
  8993. "Resources/functions.php"
  8994. ],
  8995. "psr-4": {
  8996. "Symfony\\Component\\String\\": ""
  8997. },
  8998. "exclude-from-classmap": [
  8999. "/Tests/"
  9000. ]
  9001. },
  9002. "notification-url": "https://packagist.org/downloads/",
  9003. "license": [
  9004. "MIT"
  9005. ],
  9006. "authors": [
  9007. {
  9008. "name": "Nicolas Grekas",
  9009. "email": "p@tchwork.com"
  9010. },
  9011. {
  9012. "name": "Symfony Community",
  9013. "homepage": "https://symfony.com/contributors"
  9014. }
  9015. ],
  9016. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9017. "homepage": "https://symfony.com",
  9018. "keywords": [
  9019. "grapheme",
  9020. "i18n",
  9021. "string",
  9022. "unicode",
  9023. "utf-8",
  9024. "utf8"
  9025. ],
  9026. "support": {
  9027. "source": "https://github.com/symfony/string/tree/v7.0.4"
  9028. },
  9029. "funding": [
  9030. {
  9031. "url": "https://symfony.com/sponsor",
  9032. "type": "custom"
  9033. },
  9034. {
  9035. "url": "https://github.com/fabpot",
  9036. "type": "github"
  9037. },
  9038. {
  9039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9040. "type": "tidelift"
  9041. }
  9042. ],
  9043. "time": "2024-02-01T13:17:36+00:00"
  9044. },
  9045. {
  9046. "name": "symfony/translation",
  9047. "version": "v7.0.4",
  9048. "source": {
  9049. "type": "git",
  9050. "url": "https://github.com/symfony/translation.git",
  9051. "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0"
  9052. },
  9053. "dist": {
  9054. "type": "zip",
  9055. "url": "https://api.github.com/repos/symfony/translation/zipball/5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
  9056. "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
  9057. "shasum": ""
  9058. },
  9059. "require": {
  9060. "php": ">=8.2",
  9061. "symfony/polyfill-mbstring": "~1.0",
  9062. "symfony/translation-contracts": "^2.5|^3.0"
  9063. },
  9064. "conflict": {
  9065. "symfony/config": "<6.4",
  9066. "symfony/console": "<6.4",
  9067. "symfony/dependency-injection": "<6.4",
  9068. "symfony/http-client-contracts": "<2.5",
  9069. "symfony/http-kernel": "<6.4",
  9070. "symfony/service-contracts": "<2.5",
  9071. "symfony/twig-bundle": "<6.4",
  9072. "symfony/yaml": "<6.4"
  9073. },
  9074. "provide": {
  9075. "symfony/translation-implementation": "2.3|3.0"
  9076. },
  9077. "require-dev": {
  9078. "nikic/php-parser": "^4.18|^5.0",
  9079. "psr/log": "^1|^2|^3",
  9080. "symfony/config": "^6.4|^7.0",
  9081. "symfony/console": "^6.4|^7.0",
  9082. "symfony/dependency-injection": "^6.4|^7.0",
  9083. "symfony/finder": "^6.4|^7.0",
  9084. "symfony/http-client-contracts": "^2.5|^3.0",
  9085. "symfony/http-kernel": "^6.4|^7.0",
  9086. "symfony/intl": "^6.4|^7.0",
  9087. "symfony/polyfill-intl-icu": "^1.21",
  9088. "symfony/routing": "^6.4|^7.0",
  9089. "symfony/service-contracts": "^2.5|^3",
  9090. "symfony/yaml": "^6.4|^7.0"
  9091. },
  9092. "type": "library",
  9093. "autoload": {
  9094. "files": [
  9095. "Resources/functions.php"
  9096. ],
  9097. "psr-4": {
  9098. "Symfony\\Component\\Translation\\": ""
  9099. },
  9100. "exclude-from-classmap": [
  9101. "/Tests/"
  9102. ]
  9103. },
  9104. "notification-url": "https://packagist.org/downloads/",
  9105. "license": [
  9106. "MIT"
  9107. ],
  9108. "authors": [
  9109. {
  9110. "name": "Fabien Potencier",
  9111. "email": "fabien@symfony.com"
  9112. },
  9113. {
  9114. "name": "Symfony Community",
  9115. "homepage": "https://symfony.com/contributors"
  9116. }
  9117. ],
  9118. "description": "Provides tools to internationalize your application",
  9119. "homepage": "https://symfony.com",
  9120. "support": {
  9121. "source": "https://github.com/symfony/translation/tree/v7.0.4"
  9122. },
  9123. "funding": [
  9124. {
  9125. "url": "https://symfony.com/sponsor",
  9126. "type": "custom"
  9127. },
  9128. {
  9129. "url": "https://github.com/fabpot",
  9130. "type": "github"
  9131. },
  9132. {
  9133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9134. "type": "tidelift"
  9135. }
  9136. ],
  9137. "time": "2024-02-22T20:27:20+00:00"
  9138. },
  9139. {
  9140. "name": "symfony/translation-contracts",
  9141. "version": "v3.4.2",
  9142. "source": {
  9143. "type": "git",
  9144. "url": "https://github.com/symfony/translation-contracts.git",
  9145. "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b"
  9146. },
  9147. "dist": {
  9148. "type": "zip",
  9149. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/43810bdb2ddb5400e5c5e778e27b210a0ca83b6b",
  9150. "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b",
  9151. "shasum": ""
  9152. },
  9153. "require": {
  9154. "php": ">=8.1"
  9155. },
  9156. "type": "library",
  9157. "extra": {
  9158. "branch-alias": {
  9159. "dev-main": "3.4-dev"
  9160. },
  9161. "thanks": {
  9162. "name": "symfony/contracts",
  9163. "url": "https://github.com/symfony/contracts"
  9164. }
  9165. },
  9166. "autoload": {
  9167. "psr-4": {
  9168. "Symfony\\Contracts\\Translation\\": ""
  9169. },
  9170. "exclude-from-classmap": [
  9171. "/Test/"
  9172. ]
  9173. },
  9174. "notification-url": "https://packagist.org/downloads/",
  9175. "license": [
  9176. "MIT"
  9177. ],
  9178. "authors": [
  9179. {
  9180. "name": "Nicolas Grekas",
  9181. "email": "p@tchwork.com"
  9182. },
  9183. {
  9184. "name": "Symfony Community",
  9185. "homepage": "https://symfony.com/contributors"
  9186. }
  9187. ],
  9188. "description": "Generic abstractions related to translation",
  9189. "homepage": "https://symfony.com",
  9190. "keywords": [
  9191. "abstractions",
  9192. "contracts",
  9193. "decoupling",
  9194. "interfaces",
  9195. "interoperability",
  9196. "standards"
  9197. ],
  9198. "support": {
  9199. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.2"
  9200. },
  9201. "funding": [
  9202. {
  9203. "url": "https://symfony.com/sponsor",
  9204. "type": "custom"
  9205. },
  9206. {
  9207. "url": "https://github.com/fabpot",
  9208. "type": "github"
  9209. },
  9210. {
  9211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9212. "type": "tidelift"
  9213. }
  9214. ],
  9215. "time": "2024-01-23T14:51:35+00:00"
  9216. },
  9217. {
  9218. "name": "symfony/uid",
  9219. "version": "v7.0.3",
  9220. "source": {
  9221. "type": "git",
  9222. "url": "https://github.com/symfony/uid.git",
  9223. "reference": "87cedaf3fabd7b733859d4d77aa4ca598259054b"
  9224. },
  9225. "dist": {
  9226. "type": "zip",
  9227. "url": "https://api.github.com/repos/symfony/uid/zipball/87cedaf3fabd7b733859d4d77aa4ca598259054b",
  9228. "reference": "87cedaf3fabd7b733859d4d77aa4ca598259054b",
  9229. "shasum": ""
  9230. },
  9231. "require": {
  9232. "php": ">=8.2",
  9233. "symfony/polyfill-uuid": "^1.15"
  9234. },
  9235. "require-dev": {
  9236. "symfony/console": "^6.4|^7.0"
  9237. },
  9238. "type": "library",
  9239. "autoload": {
  9240. "psr-4": {
  9241. "Symfony\\Component\\Uid\\": ""
  9242. },
  9243. "exclude-from-classmap": [
  9244. "/Tests/"
  9245. ]
  9246. },
  9247. "notification-url": "https://packagist.org/downloads/",
  9248. "license": [
  9249. "MIT"
  9250. ],
  9251. "authors": [
  9252. {
  9253. "name": "Grégoire Pineau",
  9254. "email": "lyrixx@lyrixx.info"
  9255. },
  9256. {
  9257. "name": "Nicolas Grekas",
  9258. "email": "p@tchwork.com"
  9259. },
  9260. {
  9261. "name": "Symfony Community",
  9262. "homepage": "https://symfony.com/contributors"
  9263. }
  9264. ],
  9265. "description": "Provides an object-oriented API to generate and represent UIDs",
  9266. "homepage": "https://symfony.com",
  9267. "keywords": [
  9268. "UID",
  9269. "ulid",
  9270. "uuid"
  9271. ],
  9272. "support": {
  9273. "source": "https://github.com/symfony/uid/tree/v7.0.3"
  9274. },
  9275. "funding": [
  9276. {
  9277. "url": "https://symfony.com/sponsor",
  9278. "type": "custom"
  9279. },
  9280. {
  9281. "url": "https://github.com/fabpot",
  9282. "type": "github"
  9283. },
  9284. {
  9285. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9286. "type": "tidelift"
  9287. }
  9288. ],
  9289. "time": "2024-01-23T15:02:46+00:00"
  9290. },
  9291. {
  9292. "name": "symfony/var-dumper",
  9293. "version": "v7.0.6",
  9294. "source": {
  9295. "type": "git",
  9296. "url": "https://github.com/symfony/var-dumper.git",
  9297. "reference": "66d13dc207d5dab6b4f4c2b5460efe1bea29dbfb"
  9298. },
  9299. "dist": {
  9300. "type": "zip",
  9301. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/66d13dc207d5dab6b4f4c2b5460efe1bea29dbfb",
  9302. "reference": "66d13dc207d5dab6b4f4c2b5460efe1bea29dbfb",
  9303. "shasum": ""
  9304. },
  9305. "require": {
  9306. "php": ">=8.2",
  9307. "symfony/polyfill-mbstring": "~1.0"
  9308. },
  9309. "conflict": {
  9310. "symfony/console": "<6.4"
  9311. },
  9312. "require-dev": {
  9313. "ext-iconv": "*",
  9314. "symfony/console": "^6.4|^7.0",
  9315. "symfony/http-kernel": "^6.4|^7.0",
  9316. "symfony/process": "^6.4|^7.0",
  9317. "symfony/uid": "^6.4|^7.0",
  9318. "twig/twig": "^3.0.4"
  9319. },
  9320. "bin": [
  9321. "Resources/bin/var-dump-server"
  9322. ],
  9323. "type": "library",
  9324. "autoload": {
  9325. "files": [
  9326. "Resources/functions/dump.php"
  9327. ],
  9328. "psr-4": {
  9329. "Symfony\\Component\\VarDumper\\": ""
  9330. },
  9331. "exclude-from-classmap": [
  9332. "/Tests/"
  9333. ]
  9334. },
  9335. "notification-url": "https://packagist.org/downloads/",
  9336. "license": [
  9337. "MIT"
  9338. ],
  9339. "authors": [
  9340. {
  9341. "name": "Nicolas Grekas",
  9342. "email": "p@tchwork.com"
  9343. },
  9344. {
  9345. "name": "Symfony Community",
  9346. "homepage": "https://symfony.com/contributors"
  9347. }
  9348. ],
  9349. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9350. "homepage": "https://symfony.com",
  9351. "keywords": [
  9352. "debug",
  9353. "dump"
  9354. ],
  9355. "support": {
  9356. "source": "https://github.com/symfony/var-dumper/tree/v7.0.6"
  9357. },
  9358. "funding": [
  9359. {
  9360. "url": "https://symfony.com/sponsor",
  9361. "type": "custom"
  9362. },
  9363. {
  9364. "url": "https://github.com/fabpot",
  9365. "type": "github"
  9366. },
  9367. {
  9368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9369. "type": "tidelift"
  9370. }
  9371. ],
  9372. "time": "2024-03-19T11:57:22+00:00"
  9373. },
  9374. {
  9375. "name": "tijsverkoyen/css-to-inline-styles",
  9376. "version": "v2.2.7",
  9377. "source": {
  9378. "type": "git",
  9379. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9380. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  9381. },
  9382. "dist": {
  9383. "type": "zip",
  9384. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9385. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9386. "shasum": ""
  9387. },
  9388. "require": {
  9389. "ext-dom": "*",
  9390. "ext-libxml": "*",
  9391. "php": "^5.5 || ^7.0 || ^8.0",
  9392. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  9393. },
  9394. "require-dev": {
  9395. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9396. },
  9397. "type": "library",
  9398. "extra": {
  9399. "branch-alias": {
  9400. "dev-master": "2.2.x-dev"
  9401. }
  9402. },
  9403. "autoload": {
  9404. "psr-4": {
  9405. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9406. }
  9407. },
  9408. "notification-url": "https://packagist.org/downloads/",
  9409. "license": [
  9410. "BSD-3-Clause"
  9411. ],
  9412. "authors": [
  9413. {
  9414. "name": "Tijs Verkoyen",
  9415. "email": "css_to_inline_styles@verkoyen.eu",
  9416. "role": "Developer"
  9417. }
  9418. ],
  9419. "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.",
  9420. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9421. "support": {
  9422. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9423. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  9424. },
  9425. "time": "2023-12-08T13:03:43+00:00"
  9426. },
  9427. {
  9428. "name": "vlucas/phpdotenv",
  9429. "version": "v5.6.0",
  9430. "source": {
  9431. "type": "git",
  9432. "url": "https://github.com/vlucas/phpdotenv.git",
  9433. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  9434. },
  9435. "dist": {
  9436. "type": "zip",
  9437. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  9438. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  9439. "shasum": ""
  9440. },
  9441. "require": {
  9442. "ext-pcre": "*",
  9443. "graham-campbell/result-type": "^1.1.2",
  9444. "php": "^7.2.5 || ^8.0",
  9445. "phpoption/phpoption": "^1.9.2",
  9446. "symfony/polyfill-ctype": "^1.24",
  9447. "symfony/polyfill-mbstring": "^1.24",
  9448. "symfony/polyfill-php80": "^1.24"
  9449. },
  9450. "require-dev": {
  9451. "bamarni/composer-bin-plugin": "^1.8.2",
  9452. "ext-filter": "*",
  9453. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9454. },
  9455. "suggest": {
  9456. "ext-filter": "Required to use the boolean validator."
  9457. },
  9458. "type": "library",
  9459. "extra": {
  9460. "bamarni-bin": {
  9461. "bin-links": true,
  9462. "forward-command": true
  9463. },
  9464. "branch-alias": {
  9465. "dev-master": "5.6-dev"
  9466. }
  9467. },
  9468. "autoload": {
  9469. "psr-4": {
  9470. "Dotenv\\": "src/"
  9471. }
  9472. },
  9473. "notification-url": "https://packagist.org/downloads/",
  9474. "license": [
  9475. "BSD-3-Clause"
  9476. ],
  9477. "authors": [
  9478. {
  9479. "name": "Graham Campbell",
  9480. "email": "hello@gjcampbell.co.uk",
  9481. "homepage": "https://github.com/GrahamCampbell"
  9482. },
  9483. {
  9484. "name": "Vance Lucas",
  9485. "email": "vance@vancelucas.com",
  9486. "homepage": "https://github.com/vlucas"
  9487. }
  9488. ],
  9489. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9490. "keywords": [
  9491. "dotenv",
  9492. "env",
  9493. "environment"
  9494. ],
  9495. "support": {
  9496. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9497. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  9498. },
  9499. "funding": [
  9500. {
  9501. "url": "https://github.com/GrahamCampbell",
  9502. "type": "github"
  9503. },
  9504. {
  9505. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9506. "type": "tidelift"
  9507. }
  9508. ],
  9509. "time": "2023-11-12T22:43:29+00:00"
  9510. },
  9511. {
  9512. "name": "voku/portable-ascii",
  9513. "version": "2.0.1",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/voku/portable-ascii.git",
  9517. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  9522. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  9523. "shasum": ""
  9524. },
  9525. "require": {
  9526. "php": ">=7.0.0"
  9527. },
  9528. "require-dev": {
  9529. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9530. },
  9531. "suggest": {
  9532. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9533. },
  9534. "type": "library",
  9535. "autoload": {
  9536. "psr-4": {
  9537. "voku\\": "src/voku/"
  9538. }
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "MIT"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Lars Moelleken",
  9547. "homepage": "http://www.moelleken.org/"
  9548. }
  9549. ],
  9550. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9551. "homepage": "https://github.com/voku/portable-ascii",
  9552. "keywords": [
  9553. "ascii",
  9554. "clean",
  9555. "php"
  9556. ],
  9557. "support": {
  9558. "issues": "https://github.com/voku/portable-ascii/issues",
  9559. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  9560. },
  9561. "funding": [
  9562. {
  9563. "url": "https://www.paypal.me/moelleken",
  9564. "type": "custom"
  9565. },
  9566. {
  9567. "url": "https://github.com/voku",
  9568. "type": "github"
  9569. },
  9570. {
  9571. "url": "https://opencollective.com/portable-ascii",
  9572. "type": "open_collective"
  9573. },
  9574. {
  9575. "url": "https://www.patreon.com/voku",
  9576. "type": "patreon"
  9577. },
  9578. {
  9579. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9580. "type": "tidelift"
  9581. }
  9582. ],
  9583. "time": "2022-03-08T17:03:00+00:00"
  9584. },
  9585. {
  9586. "name": "webmozart/assert",
  9587. "version": "1.11.0",
  9588. "source": {
  9589. "type": "git",
  9590. "url": "https://github.com/webmozarts/assert.git",
  9591. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9592. },
  9593. "dist": {
  9594. "type": "zip",
  9595. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9596. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9597. "shasum": ""
  9598. },
  9599. "require": {
  9600. "ext-ctype": "*",
  9601. "php": "^7.2 || ^8.0"
  9602. },
  9603. "conflict": {
  9604. "phpstan/phpstan": "<0.12.20",
  9605. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9606. },
  9607. "require-dev": {
  9608. "phpunit/phpunit": "^8.5.13"
  9609. },
  9610. "type": "library",
  9611. "extra": {
  9612. "branch-alias": {
  9613. "dev-master": "1.10-dev"
  9614. }
  9615. },
  9616. "autoload": {
  9617. "psr-4": {
  9618. "Webmozart\\Assert\\": "src/"
  9619. }
  9620. },
  9621. "notification-url": "https://packagist.org/downloads/",
  9622. "license": [
  9623. "MIT"
  9624. ],
  9625. "authors": [
  9626. {
  9627. "name": "Bernhard Schussek",
  9628. "email": "bschussek@gmail.com"
  9629. }
  9630. ],
  9631. "description": "Assertions to validate method input/output with nice error messages.",
  9632. "keywords": [
  9633. "assert",
  9634. "check",
  9635. "validate"
  9636. ],
  9637. "support": {
  9638. "issues": "https://github.com/webmozarts/assert/issues",
  9639. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9640. },
  9641. "time": "2022-06-03T18:03:27+00:00"
  9642. }
  9643. ],
  9644. "packages-dev": [
  9645. {
  9646. "name": "fakerphp/faker",
  9647. "version": "v1.23.1",
  9648. "source": {
  9649. "type": "git",
  9650. "url": "https://github.com/FakerPHP/Faker.git",
  9651. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  9652. },
  9653. "dist": {
  9654. "type": "zip",
  9655. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  9656. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  9657. "shasum": ""
  9658. },
  9659. "require": {
  9660. "php": "^7.4 || ^8.0",
  9661. "psr/container": "^1.0 || ^2.0",
  9662. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9663. },
  9664. "conflict": {
  9665. "fzaninotto/faker": "*"
  9666. },
  9667. "require-dev": {
  9668. "bamarni/composer-bin-plugin": "^1.4.1",
  9669. "doctrine/persistence": "^1.3 || ^2.0",
  9670. "ext-intl": "*",
  9671. "phpunit/phpunit": "^9.5.26",
  9672. "symfony/phpunit-bridge": "^5.4.16"
  9673. },
  9674. "suggest": {
  9675. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9676. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9677. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9678. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9679. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9680. },
  9681. "type": "library",
  9682. "autoload": {
  9683. "psr-4": {
  9684. "Faker\\": "src/Faker/"
  9685. }
  9686. },
  9687. "notification-url": "https://packagist.org/downloads/",
  9688. "license": [
  9689. "MIT"
  9690. ],
  9691. "authors": [
  9692. {
  9693. "name": "François Zaninotto"
  9694. }
  9695. ],
  9696. "description": "Faker is a PHP library that generates fake data for you.",
  9697. "keywords": [
  9698. "data",
  9699. "faker",
  9700. "fixtures"
  9701. ],
  9702. "support": {
  9703. "issues": "https://github.com/FakerPHP/Faker/issues",
  9704. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  9705. },
  9706. "time": "2024-01-02T13:46:09+00:00"
  9707. },
  9708. {
  9709. "name": "filp/whoops",
  9710. "version": "2.15.4",
  9711. "source": {
  9712. "type": "git",
  9713. "url": "https://github.com/filp/whoops.git",
  9714. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9715. },
  9716. "dist": {
  9717. "type": "zip",
  9718. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9719. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9720. "shasum": ""
  9721. },
  9722. "require": {
  9723. "php": "^5.5.9 || ^7.0 || ^8.0",
  9724. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9725. },
  9726. "require-dev": {
  9727. "mockery/mockery": "^0.9 || ^1.0",
  9728. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9729. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9730. },
  9731. "suggest": {
  9732. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9733. "whoops/soap": "Formats errors as SOAP responses"
  9734. },
  9735. "type": "library",
  9736. "extra": {
  9737. "branch-alias": {
  9738. "dev-master": "2.7-dev"
  9739. }
  9740. },
  9741. "autoload": {
  9742. "psr-4": {
  9743. "Whoops\\": "src/Whoops/"
  9744. }
  9745. },
  9746. "notification-url": "https://packagist.org/downloads/",
  9747. "license": [
  9748. "MIT"
  9749. ],
  9750. "authors": [
  9751. {
  9752. "name": "Filipe Dobreira",
  9753. "homepage": "https://github.com/filp",
  9754. "role": "Developer"
  9755. }
  9756. ],
  9757. "description": "php error handling for cool kids",
  9758. "homepage": "https://filp.github.io/whoops/",
  9759. "keywords": [
  9760. "error",
  9761. "exception",
  9762. "handling",
  9763. "library",
  9764. "throwable",
  9765. "whoops"
  9766. ],
  9767. "support": {
  9768. "issues": "https://github.com/filp/whoops/issues",
  9769. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9770. },
  9771. "funding": [
  9772. {
  9773. "url": "https://github.com/denis-sokolov",
  9774. "type": "github"
  9775. }
  9776. ],
  9777. "time": "2023-11-03T12:00:00+00:00"
  9778. },
  9779. {
  9780. "name": "hamcrest/hamcrest-php",
  9781. "version": "v2.0.1",
  9782. "source": {
  9783. "type": "git",
  9784. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9785. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9786. },
  9787. "dist": {
  9788. "type": "zip",
  9789. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9790. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9791. "shasum": ""
  9792. },
  9793. "require": {
  9794. "php": "^5.3|^7.0|^8.0"
  9795. },
  9796. "replace": {
  9797. "cordoval/hamcrest-php": "*",
  9798. "davedevelopment/hamcrest-php": "*",
  9799. "kodova/hamcrest-php": "*"
  9800. },
  9801. "require-dev": {
  9802. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9803. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9804. },
  9805. "type": "library",
  9806. "extra": {
  9807. "branch-alias": {
  9808. "dev-master": "2.1-dev"
  9809. }
  9810. },
  9811. "autoload": {
  9812. "classmap": [
  9813. "hamcrest"
  9814. ]
  9815. },
  9816. "notification-url": "https://packagist.org/downloads/",
  9817. "license": [
  9818. "BSD-3-Clause"
  9819. ],
  9820. "description": "This is the PHP port of Hamcrest Matchers",
  9821. "keywords": [
  9822. "test"
  9823. ],
  9824. "support": {
  9825. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9826. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9827. },
  9828. "time": "2020-07-09T08:09:16+00:00"
  9829. },
  9830. {
  9831. "name": "laravel/pint",
  9832. "version": "v1.15.2",
  9833. "source": {
  9834. "type": "git",
  9835. "url": "https://github.com/laravel/pint.git",
  9836. "reference": "2c9f8004899815f3f0ee3cb28ef7281e2b589134"
  9837. },
  9838. "dist": {
  9839. "type": "zip",
  9840. "url": "https://api.github.com/repos/laravel/pint/zipball/2c9f8004899815f3f0ee3cb28ef7281e2b589134",
  9841. "reference": "2c9f8004899815f3f0ee3cb28ef7281e2b589134",
  9842. "shasum": ""
  9843. },
  9844. "require": {
  9845. "ext-json": "*",
  9846. "ext-mbstring": "*",
  9847. "ext-tokenizer": "*",
  9848. "ext-xml": "*",
  9849. "php": "^8.1.0"
  9850. },
  9851. "require-dev": {
  9852. "friendsofphp/php-cs-fixer": "^3.54.0",
  9853. "illuminate/view": "^10.48.8",
  9854. "larastan/larastan": "^2.9.5",
  9855. "laravel-zero/framework": "^10.3.0",
  9856. "mockery/mockery": "^1.6.11",
  9857. "nunomaduro/termwind": "^1.15.1",
  9858. "pestphp/pest": "^2.34.7"
  9859. },
  9860. "bin": [
  9861. "builds/pint"
  9862. ],
  9863. "type": "project",
  9864. "autoload": {
  9865. "psr-4": {
  9866. "App\\": "app/",
  9867. "Database\\Seeders\\": "database/seeders/",
  9868. "Database\\Factories\\": "database/factories/"
  9869. }
  9870. },
  9871. "notification-url": "https://packagist.org/downloads/",
  9872. "license": [
  9873. "MIT"
  9874. ],
  9875. "authors": [
  9876. {
  9877. "name": "Nuno Maduro",
  9878. "email": "enunomaduro@gmail.com"
  9879. }
  9880. ],
  9881. "description": "An opinionated code formatter for PHP.",
  9882. "homepage": "https://laravel.com",
  9883. "keywords": [
  9884. "format",
  9885. "formatter",
  9886. "lint",
  9887. "linter",
  9888. "php"
  9889. ],
  9890. "support": {
  9891. "issues": "https://github.com/laravel/pint/issues",
  9892. "source": "https://github.com/laravel/pint"
  9893. },
  9894. "time": "2024-04-23T15:42:34+00:00"
  9895. },
  9896. {
  9897. "name": "laravel/sail",
  9898. "version": "v1.29.1",
  9899. "source": {
  9900. "type": "git",
  9901. "url": "https://github.com/laravel/sail.git",
  9902. "reference": "8be4a31150eab3b46af11a2e7b2c4632eefaad7e"
  9903. },
  9904. "dist": {
  9905. "type": "zip",
  9906. "url": "https://api.github.com/repos/laravel/sail/zipball/8be4a31150eab3b46af11a2e7b2c4632eefaad7e",
  9907. "reference": "8be4a31150eab3b46af11a2e7b2c4632eefaad7e",
  9908. "shasum": ""
  9909. },
  9910. "require": {
  9911. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9912. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9913. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9914. "php": "^8.0",
  9915. "symfony/console": "^6.0|^7.0",
  9916. "symfony/yaml": "^6.0|^7.0"
  9917. },
  9918. "require-dev": {
  9919. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9920. "phpstan/phpstan": "^1.10"
  9921. },
  9922. "bin": [
  9923. "bin/sail"
  9924. ],
  9925. "type": "library",
  9926. "extra": {
  9927. "laravel": {
  9928. "providers": [
  9929. "Laravel\\Sail\\SailServiceProvider"
  9930. ]
  9931. }
  9932. },
  9933. "autoload": {
  9934. "psr-4": {
  9935. "Laravel\\Sail\\": "src/"
  9936. }
  9937. },
  9938. "notification-url": "https://packagist.org/downloads/",
  9939. "license": [
  9940. "MIT"
  9941. ],
  9942. "authors": [
  9943. {
  9944. "name": "Taylor Otwell",
  9945. "email": "taylor@laravel.com"
  9946. }
  9947. ],
  9948. "description": "Docker files for running a basic Laravel application.",
  9949. "keywords": [
  9950. "docker",
  9951. "laravel"
  9952. ],
  9953. "support": {
  9954. "issues": "https://github.com/laravel/sail/issues",
  9955. "source": "https://github.com/laravel/sail"
  9956. },
  9957. "time": "2024-03-20T20:09:31+00:00"
  9958. },
  9959. {
  9960. "name": "mockery/mockery",
  9961. "version": "1.6.11",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/mockery/mockery.git",
  9965. "reference": "81a161d0b135df89951abd52296adf97deb0723d"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/mockery/mockery/zipball/81a161d0b135df89951abd52296adf97deb0723d",
  9970. "reference": "81a161d0b135df89951abd52296adf97deb0723d",
  9971. "shasum": ""
  9972. },
  9973. "require": {
  9974. "hamcrest/hamcrest-php": "^2.0.1",
  9975. "lib-pcre": ">=7.0",
  9976. "php": ">=7.3"
  9977. },
  9978. "conflict": {
  9979. "phpunit/phpunit": "<8.0"
  9980. },
  9981. "require-dev": {
  9982. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9983. "symplify/easy-coding-standard": "^12.1.14"
  9984. },
  9985. "type": "library",
  9986. "autoload": {
  9987. "files": [
  9988. "library/helpers.php",
  9989. "library/Mockery.php"
  9990. ],
  9991. "psr-4": {
  9992. "Mockery\\": "library/Mockery"
  9993. }
  9994. },
  9995. "notification-url": "https://packagist.org/downloads/",
  9996. "license": [
  9997. "BSD-3-Clause"
  9998. ],
  9999. "authors": [
  10000. {
  10001. "name": "Pádraic Brady",
  10002. "email": "padraic.brady@gmail.com",
  10003. "homepage": "https://github.com/padraic",
  10004. "role": "Author"
  10005. },
  10006. {
  10007. "name": "Dave Marshall",
  10008. "email": "dave.marshall@atstsolutions.co.uk",
  10009. "homepage": "https://davedevelopment.co.uk",
  10010. "role": "Developer"
  10011. },
  10012. {
  10013. "name": "Nathanael Esayeas",
  10014. "email": "nathanael.esayeas@protonmail.com",
  10015. "homepage": "https://github.com/ghostwriter",
  10016. "role": "Lead Developer"
  10017. }
  10018. ],
  10019. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10020. "homepage": "https://github.com/mockery/mockery",
  10021. "keywords": [
  10022. "BDD",
  10023. "TDD",
  10024. "library",
  10025. "mock",
  10026. "mock objects",
  10027. "mockery",
  10028. "stub",
  10029. "test",
  10030. "test double",
  10031. "testing"
  10032. ],
  10033. "support": {
  10034. "docs": "https://docs.mockery.io/",
  10035. "issues": "https://github.com/mockery/mockery/issues",
  10036. "rss": "https://github.com/mockery/mockery/releases.atom",
  10037. "security": "https://github.com/mockery/mockery/security/advisories",
  10038. "source": "https://github.com/mockery/mockery"
  10039. },
  10040. "time": "2024-03-21T18:34:15+00:00"
  10041. },
  10042. {
  10043. "name": "myclabs/deep-copy",
  10044. "version": "1.11.1",
  10045. "source": {
  10046. "type": "git",
  10047. "url": "https://github.com/myclabs/DeepCopy.git",
  10048. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  10049. },
  10050. "dist": {
  10051. "type": "zip",
  10052. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10053. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10054. "shasum": ""
  10055. },
  10056. "require": {
  10057. "php": "^7.1 || ^8.0"
  10058. },
  10059. "conflict": {
  10060. "doctrine/collections": "<1.6.8",
  10061. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10062. },
  10063. "require-dev": {
  10064. "doctrine/collections": "^1.6.8",
  10065. "doctrine/common": "^2.13.3 || ^3.2.2",
  10066. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10067. },
  10068. "type": "library",
  10069. "autoload": {
  10070. "files": [
  10071. "src/DeepCopy/deep_copy.php"
  10072. ],
  10073. "psr-4": {
  10074. "DeepCopy\\": "src/DeepCopy/"
  10075. }
  10076. },
  10077. "notification-url": "https://packagist.org/downloads/",
  10078. "license": [
  10079. "MIT"
  10080. ],
  10081. "description": "Create deep copies (clones) of your objects",
  10082. "keywords": [
  10083. "clone",
  10084. "copy",
  10085. "duplicate",
  10086. "object",
  10087. "object graph"
  10088. ],
  10089. "support": {
  10090. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10091. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  10092. },
  10093. "funding": [
  10094. {
  10095. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10096. "type": "tidelift"
  10097. }
  10098. ],
  10099. "time": "2023-03-08T13:26:56+00:00"
  10100. },
  10101. {
  10102. "name": "nunomaduro/collision",
  10103. "version": "v8.1.1",
  10104. "source": {
  10105. "type": "git",
  10106. "url": "https://github.com/nunomaduro/collision.git",
  10107. "reference": "13e5d538b95a744d85f447a321ce10adb28e9af9"
  10108. },
  10109. "dist": {
  10110. "type": "zip",
  10111. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/13e5d538b95a744d85f447a321ce10adb28e9af9",
  10112. "reference": "13e5d538b95a744d85f447a321ce10adb28e9af9",
  10113. "shasum": ""
  10114. },
  10115. "require": {
  10116. "filp/whoops": "^2.15.4",
  10117. "nunomaduro/termwind": "^2.0.1",
  10118. "php": "^8.2.0",
  10119. "symfony/console": "^7.0.4"
  10120. },
  10121. "conflict": {
  10122. "laravel/framework": "<11.0.0 || >=12.0.0",
  10123. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  10124. },
  10125. "require-dev": {
  10126. "larastan/larastan": "^2.9.2",
  10127. "laravel/framework": "^11.0.0",
  10128. "laravel/pint": "^1.14.0",
  10129. "laravel/sail": "^1.28.2",
  10130. "laravel/sanctum": "^4.0.0",
  10131. "laravel/tinker": "^2.9.0",
  10132. "orchestra/testbench-core": "^9.0.0",
  10133. "pestphp/pest": "^2.34.1 || ^3.0.0",
  10134. "sebastian/environment": "^6.0.1 || ^7.0.0"
  10135. },
  10136. "type": "library",
  10137. "extra": {
  10138. "laravel": {
  10139. "providers": [
  10140. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10141. ]
  10142. },
  10143. "branch-alias": {
  10144. "dev-8.x": "8.x-dev"
  10145. }
  10146. },
  10147. "autoload": {
  10148. "files": [
  10149. "./src/Adapters/Phpunit/Autoload.php"
  10150. ],
  10151. "psr-4": {
  10152. "NunoMaduro\\Collision\\": "src/"
  10153. }
  10154. },
  10155. "notification-url": "https://packagist.org/downloads/",
  10156. "license": [
  10157. "MIT"
  10158. ],
  10159. "authors": [
  10160. {
  10161. "name": "Nuno Maduro",
  10162. "email": "enunomaduro@gmail.com"
  10163. }
  10164. ],
  10165. "description": "Cli error handling for console/command-line PHP applications.",
  10166. "keywords": [
  10167. "artisan",
  10168. "cli",
  10169. "command-line",
  10170. "console",
  10171. "error",
  10172. "handling",
  10173. "laravel",
  10174. "laravel-zero",
  10175. "php",
  10176. "symfony"
  10177. ],
  10178. "support": {
  10179. "issues": "https://github.com/nunomaduro/collision/issues",
  10180. "source": "https://github.com/nunomaduro/collision"
  10181. },
  10182. "funding": [
  10183. {
  10184. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10185. "type": "custom"
  10186. },
  10187. {
  10188. "url": "https://github.com/nunomaduro",
  10189. "type": "github"
  10190. },
  10191. {
  10192. "url": "https://www.patreon.com/nunomaduro",
  10193. "type": "patreon"
  10194. }
  10195. ],
  10196. "time": "2024-03-06T16:20:09+00:00"
  10197. },
  10198. {
  10199. "name": "phar-io/manifest",
  10200. "version": "2.0.4",
  10201. "source": {
  10202. "type": "git",
  10203. "url": "https://github.com/phar-io/manifest.git",
  10204. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10205. },
  10206. "dist": {
  10207. "type": "zip",
  10208. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10209. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10210. "shasum": ""
  10211. },
  10212. "require": {
  10213. "ext-dom": "*",
  10214. "ext-libxml": "*",
  10215. "ext-phar": "*",
  10216. "ext-xmlwriter": "*",
  10217. "phar-io/version": "^3.0.1",
  10218. "php": "^7.2 || ^8.0"
  10219. },
  10220. "type": "library",
  10221. "extra": {
  10222. "branch-alias": {
  10223. "dev-master": "2.0.x-dev"
  10224. }
  10225. },
  10226. "autoload": {
  10227. "classmap": [
  10228. "src/"
  10229. ]
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "BSD-3-Clause"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Arne Blankerts",
  10238. "email": "arne@blankerts.de",
  10239. "role": "Developer"
  10240. },
  10241. {
  10242. "name": "Sebastian Heuer",
  10243. "email": "sebastian@phpeople.de",
  10244. "role": "Developer"
  10245. },
  10246. {
  10247. "name": "Sebastian Bergmann",
  10248. "email": "sebastian@phpunit.de",
  10249. "role": "Developer"
  10250. }
  10251. ],
  10252. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10253. "support": {
  10254. "issues": "https://github.com/phar-io/manifest/issues",
  10255. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10256. },
  10257. "funding": [
  10258. {
  10259. "url": "https://github.com/theseer",
  10260. "type": "github"
  10261. }
  10262. ],
  10263. "time": "2024-03-03T12:33:53+00:00"
  10264. },
  10265. {
  10266. "name": "phar-io/version",
  10267. "version": "3.2.1",
  10268. "source": {
  10269. "type": "git",
  10270. "url": "https://github.com/phar-io/version.git",
  10271. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10272. },
  10273. "dist": {
  10274. "type": "zip",
  10275. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10276. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10277. "shasum": ""
  10278. },
  10279. "require": {
  10280. "php": "^7.2 || ^8.0"
  10281. },
  10282. "type": "library",
  10283. "autoload": {
  10284. "classmap": [
  10285. "src/"
  10286. ]
  10287. },
  10288. "notification-url": "https://packagist.org/downloads/",
  10289. "license": [
  10290. "BSD-3-Clause"
  10291. ],
  10292. "authors": [
  10293. {
  10294. "name": "Arne Blankerts",
  10295. "email": "arne@blankerts.de",
  10296. "role": "Developer"
  10297. },
  10298. {
  10299. "name": "Sebastian Heuer",
  10300. "email": "sebastian@phpeople.de",
  10301. "role": "Developer"
  10302. },
  10303. {
  10304. "name": "Sebastian Bergmann",
  10305. "email": "sebastian@phpunit.de",
  10306. "role": "Developer"
  10307. }
  10308. ],
  10309. "description": "Library for handling version information and constraints",
  10310. "support": {
  10311. "issues": "https://github.com/phar-io/version/issues",
  10312. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10313. },
  10314. "time": "2022-02-21T01:04:05+00:00"
  10315. },
  10316. {
  10317. "name": "phpunit/php-code-coverage",
  10318. "version": "10.1.14",
  10319. "source": {
  10320. "type": "git",
  10321. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10322. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  10323. },
  10324. "dist": {
  10325. "type": "zip",
  10326. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  10327. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  10328. "shasum": ""
  10329. },
  10330. "require": {
  10331. "ext-dom": "*",
  10332. "ext-libxml": "*",
  10333. "ext-xmlwriter": "*",
  10334. "nikic/php-parser": "^4.18 || ^5.0",
  10335. "php": ">=8.1",
  10336. "phpunit/php-file-iterator": "^4.0",
  10337. "phpunit/php-text-template": "^3.0",
  10338. "sebastian/code-unit-reverse-lookup": "^3.0",
  10339. "sebastian/complexity": "^3.0",
  10340. "sebastian/environment": "^6.0",
  10341. "sebastian/lines-of-code": "^2.0",
  10342. "sebastian/version": "^4.0",
  10343. "theseer/tokenizer": "^1.2.0"
  10344. },
  10345. "require-dev": {
  10346. "phpunit/phpunit": "^10.1"
  10347. },
  10348. "suggest": {
  10349. "ext-pcov": "PHP extension that provides line coverage",
  10350. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10351. },
  10352. "type": "library",
  10353. "extra": {
  10354. "branch-alias": {
  10355. "dev-main": "10.1-dev"
  10356. }
  10357. },
  10358. "autoload": {
  10359. "classmap": [
  10360. "src/"
  10361. ]
  10362. },
  10363. "notification-url": "https://packagist.org/downloads/",
  10364. "license": [
  10365. "BSD-3-Clause"
  10366. ],
  10367. "authors": [
  10368. {
  10369. "name": "Sebastian Bergmann",
  10370. "email": "sebastian@phpunit.de",
  10371. "role": "lead"
  10372. }
  10373. ],
  10374. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10375. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10376. "keywords": [
  10377. "coverage",
  10378. "testing",
  10379. "xunit"
  10380. ],
  10381. "support": {
  10382. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10383. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10384. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  10385. },
  10386. "funding": [
  10387. {
  10388. "url": "https://github.com/sebastianbergmann",
  10389. "type": "github"
  10390. }
  10391. ],
  10392. "time": "2024-03-12T15:33:41+00:00"
  10393. },
  10394. {
  10395. "name": "phpunit/php-file-iterator",
  10396. "version": "4.1.0",
  10397. "source": {
  10398. "type": "git",
  10399. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10400. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  10401. },
  10402. "dist": {
  10403. "type": "zip",
  10404. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10405. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10406. "shasum": ""
  10407. },
  10408. "require": {
  10409. "php": ">=8.1"
  10410. },
  10411. "require-dev": {
  10412. "phpunit/phpunit": "^10.0"
  10413. },
  10414. "type": "library",
  10415. "extra": {
  10416. "branch-alias": {
  10417. "dev-main": "4.0-dev"
  10418. }
  10419. },
  10420. "autoload": {
  10421. "classmap": [
  10422. "src/"
  10423. ]
  10424. },
  10425. "notification-url": "https://packagist.org/downloads/",
  10426. "license": [
  10427. "BSD-3-Clause"
  10428. ],
  10429. "authors": [
  10430. {
  10431. "name": "Sebastian Bergmann",
  10432. "email": "sebastian@phpunit.de",
  10433. "role": "lead"
  10434. }
  10435. ],
  10436. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10437. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10438. "keywords": [
  10439. "filesystem",
  10440. "iterator"
  10441. ],
  10442. "support": {
  10443. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10444. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10445. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  10446. },
  10447. "funding": [
  10448. {
  10449. "url": "https://github.com/sebastianbergmann",
  10450. "type": "github"
  10451. }
  10452. ],
  10453. "time": "2023-08-31T06:24:48+00:00"
  10454. },
  10455. {
  10456. "name": "phpunit/php-invoker",
  10457. "version": "4.0.0",
  10458. "source": {
  10459. "type": "git",
  10460. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10461. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  10462. },
  10463. "dist": {
  10464. "type": "zip",
  10465. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10466. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10467. "shasum": ""
  10468. },
  10469. "require": {
  10470. "php": ">=8.1"
  10471. },
  10472. "require-dev": {
  10473. "ext-pcntl": "*",
  10474. "phpunit/phpunit": "^10.0"
  10475. },
  10476. "suggest": {
  10477. "ext-pcntl": "*"
  10478. },
  10479. "type": "library",
  10480. "extra": {
  10481. "branch-alias": {
  10482. "dev-main": "4.0-dev"
  10483. }
  10484. },
  10485. "autoload": {
  10486. "classmap": [
  10487. "src/"
  10488. ]
  10489. },
  10490. "notification-url": "https://packagist.org/downloads/",
  10491. "license": [
  10492. "BSD-3-Clause"
  10493. ],
  10494. "authors": [
  10495. {
  10496. "name": "Sebastian Bergmann",
  10497. "email": "sebastian@phpunit.de",
  10498. "role": "lead"
  10499. }
  10500. ],
  10501. "description": "Invoke callables with a timeout",
  10502. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10503. "keywords": [
  10504. "process"
  10505. ],
  10506. "support": {
  10507. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10508. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  10509. },
  10510. "funding": [
  10511. {
  10512. "url": "https://github.com/sebastianbergmann",
  10513. "type": "github"
  10514. }
  10515. ],
  10516. "time": "2023-02-03T06:56:09+00:00"
  10517. },
  10518. {
  10519. "name": "phpunit/php-text-template",
  10520. "version": "3.0.1",
  10521. "source": {
  10522. "type": "git",
  10523. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10524. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  10525. },
  10526. "dist": {
  10527. "type": "zip",
  10528. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10529. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10530. "shasum": ""
  10531. },
  10532. "require": {
  10533. "php": ">=8.1"
  10534. },
  10535. "require-dev": {
  10536. "phpunit/phpunit": "^10.0"
  10537. },
  10538. "type": "library",
  10539. "extra": {
  10540. "branch-alias": {
  10541. "dev-main": "3.0-dev"
  10542. }
  10543. },
  10544. "autoload": {
  10545. "classmap": [
  10546. "src/"
  10547. ]
  10548. },
  10549. "notification-url": "https://packagist.org/downloads/",
  10550. "license": [
  10551. "BSD-3-Clause"
  10552. ],
  10553. "authors": [
  10554. {
  10555. "name": "Sebastian Bergmann",
  10556. "email": "sebastian@phpunit.de",
  10557. "role": "lead"
  10558. }
  10559. ],
  10560. "description": "Simple template engine.",
  10561. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10562. "keywords": [
  10563. "template"
  10564. ],
  10565. "support": {
  10566. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10567. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10568. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  10569. },
  10570. "funding": [
  10571. {
  10572. "url": "https://github.com/sebastianbergmann",
  10573. "type": "github"
  10574. }
  10575. ],
  10576. "time": "2023-08-31T14:07:24+00:00"
  10577. },
  10578. {
  10579. "name": "phpunit/php-timer",
  10580. "version": "6.0.0",
  10581. "source": {
  10582. "type": "git",
  10583. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10584. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  10585. },
  10586. "dist": {
  10587. "type": "zip",
  10588. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10589. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10590. "shasum": ""
  10591. },
  10592. "require": {
  10593. "php": ">=8.1"
  10594. },
  10595. "require-dev": {
  10596. "phpunit/phpunit": "^10.0"
  10597. },
  10598. "type": "library",
  10599. "extra": {
  10600. "branch-alias": {
  10601. "dev-main": "6.0-dev"
  10602. }
  10603. },
  10604. "autoload": {
  10605. "classmap": [
  10606. "src/"
  10607. ]
  10608. },
  10609. "notification-url": "https://packagist.org/downloads/",
  10610. "license": [
  10611. "BSD-3-Clause"
  10612. ],
  10613. "authors": [
  10614. {
  10615. "name": "Sebastian Bergmann",
  10616. "email": "sebastian@phpunit.de",
  10617. "role": "lead"
  10618. }
  10619. ],
  10620. "description": "Utility class for timing",
  10621. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10622. "keywords": [
  10623. "timer"
  10624. ],
  10625. "support": {
  10626. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10627. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  10628. },
  10629. "funding": [
  10630. {
  10631. "url": "https://github.com/sebastianbergmann",
  10632. "type": "github"
  10633. }
  10634. ],
  10635. "time": "2023-02-03T06:57:52+00:00"
  10636. },
  10637. {
  10638. "name": "phpunit/phpunit",
  10639. "version": "10.5.20",
  10640. "source": {
  10641. "type": "git",
  10642. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10643. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  10644. },
  10645. "dist": {
  10646. "type": "zip",
  10647. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  10648. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  10649. "shasum": ""
  10650. },
  10651. "require": {
  10652. "ext-dom": "*",
  10653. "ext-json": "*",
  10654. "ext-libxml": "*",
  10655. "ext-mbstring": "*",
  10656. "ext-xml": "*",
  10657. "ext-xmlwriter": "*",
  10658. "myclabs/deep-copy": "^1.10.1",
  10659. "phar-io/manifest": "^2.0.3",
  10660. "phar-io/version": "^3.0.2",
  10661. "php": ">=8.1",
  10662. "phpunit/php-code-coverage": "^10.1.5",
  10663. "phpunit/php-file-iterator": "^4.0",
  10664. "phpunit/php-invoker": "^4.0",
  10665. "phpunit/php-text-template": "^3.0",
  10666. "phpunit/php-timer": "^6.0",
  10667. "sebastian/cli-parser": "^2.0",
  10668. "sebastian/code-unit": "^2.0",
  10669. "sebastian/comparator": "^5.0",
  10670. "sebastian/diff": "^5.0",
  10671. "sebastian/environment": "^6.0",
  10672. "sebastian/exporter": "^5.1",
  10673. "sebastian/global-state": "^6.0.1",
  10674. "sebastian/object-enumerator": "^5.0",
  10675. "sebastian/recursion-context": "^5.0",
  10676. "sebastian/type": "^4.0",
  10677. "sebastian/version": "^4.0"
  10678. },
  10679. "suggest": {
  10680. "ext-soap": "To be able to generate mocks based on WSDL files"
  10681. },
  10682. "bin": [
  10683. "phpunit"
  10684. ],
  10685. "type": "library",
  10686. "extra": {
  10687. "branch-alias": {
  10688. "dev-main": "10.5-dev"
  10689. }
  10690. },
  10691. "autoload": {
  10692. "files": [
  10693. "src/Framework/Assert/Functions.php"
  10694. ],
  10695. "classmap": [
  10696. "src/"
  10697. ]
  10698. },
  10699. "notification-url": "https://packagist.org/downloads/",
  10700. "license": [
  10701. "BSD-3-Clause"
  10702. ],
  10703. "authors": [
  10704. {
  10705. "name": "Sebastian Bergmann",
  10706. "email": "sebastian@phpunit.de",
  10707. "role": "lead"
  10708. }
  10709. ],
  10710. "description": "The PHP Unit Testing framework.",
  10711. "homepage": "https://phpunit.de/",
  10712. "keywords": [
  10713. "phpunit",
  10714. "testing",
  10715. "xunit"
  10716. ],
  10717. "support": {
  10718. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10719. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10720. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  10721. },
  10722. "funding": [
  10723. {
  10724. "url": "https://phpunit.de/sponsors.html",
  10725. "type": "custom"
  10726. },
  10727. {
  10728. "url": "https://github.com/sebastianbergmann",
  10729. "type": "github"
  10730. },
  10731. {
  10732. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10733. "type": "tidelift"
  10734. }
  10735. ],
  10736. "time": "2024-04-24T06:32:35+00:00"
  10737. },
  10738. {
  10739. "name": "sebastian/cli-parser",
  10740. "version": "2.0.1",
  10741. "source": {
  10742. "type": "git",
  10743. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10744. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10745. },
  10746. "dist": {
  10747. "type": "zip",
  10748. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10749. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10750. "shasum": ""
  10751. },
  10752. "require": {
  10753. "php": ">=8.1"
  10754. },
  10755. "require-dev": {
  10756. "phpunit/phpunit": "^10.0"
  10757. },
  10758. "type": "library",
  10759. "extra": {
  10760. "branch-alias": {
  10761. "dev-main": "2.0-dev"
  10762. }
  10763. },
  10764. "autoload": {
  10765. "classmap": [
  10766. "src/"
  10767. ]
  10768. },
  10769. "notification-url": "https://packagist.org/downloads/",
  10770. "license": [
  10771. "BSD-3-Clause"
  10772. ],
  10773. "authors": [
  10774. {
  10775. "name": "Sebastian Bergmann",
  10776. "email": "sebastian@phpunit.de",
  10777. "role": "lead"
  10778. }
  10779. ],
  10780. "description": "Library for parsing CLI options",
  10781. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10782. "support": {
  10783. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10784. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10785. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10786. },
  10787. "funding": [
  10788. {
  10789. "url": "https://github.com/sebastianbergmann",
  10790. "type": "github"
  10791. }
  10792. ],
  10793. "time": "2024-03-02T07:12:49+00:00"
  10794. },
  10795. {
  10796. "name": "sebastian/code-unit",
  10797. "version": "2.0.0",
  10798. "source": {
  10799. "type": "git",
  10800. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10801. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10802. },
  10803. "dist": {
  10804. "type": "zip",
  10805. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10806. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10807. "shasum": ""
  10808. },
  10809. "require": {
  10810. "php": ">=8.1"
  10811. },
  10812. "require-dev": {
  10813. "phpunit/phpunit": "^10.0"
  10814. },
  10815. "type": "library",
  10816. "extra": {
  10817. "branch-alias": {
  10818. "dev-main": "2.0-dev"
  10819. }
  10820. },
  10821. "autoload": {
  10822. "classmap": [
  10823. "src/"
  10824. ]
  10825. },
  10826. "notification-url": "https://packagist.org/downloads/",
  10827. "license": [
  10828. "BSD-3-Clause"
  10829. ],
  10830. "authors": [
  10831. {
  10832. "name": "Sebastian Bergmann",
  10833. "email": "sebastian@phpunit.de",
  10834. "role": "lead"
  10835. }
  10836. ],
  10837. "description": "Collection of value objects that represent the PHP code units",
  10838. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10839. "support": {
  10840. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10841. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10842. },
  10843. "funding": [
  10844. {
  10845. "url": "https://github.com/sebastianbergmann",
  10846. "type": "github"
  10847. }
  10848. ],
  10849. "time": "2023-02-03T06:58:43+00:00"
  10850. },
  10851. {
  10852. "name": "sebastian/code-unit-reverse-lookup",
  10853. "version": "3.0.0",
  10854. "source": {
  10855. "type": "git",
  10856. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10857. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10858. },
  10859. "dist": {
  10860. "type": "zip",
  10861. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10862. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10863. "shasum": ""
  10864. },
  10865. "require": {
  10866. "php": ">=8.1"
  10867. },
  10868. "require-dev": {
  10869. "phpunit/phpunit": "^10.0"
  10870. },
  10871. "type": "library",
  10872. "extra": {
  10873. "branch-alias": {
  10874. "dev-main": "3.0-dev"
  10875. }
  10876. },
  10877. "autoload": {
  10878. "classmap": [
  10879. "src/"
  10880. ]
  10881. },
  10882. "notification-url": "https://packagist.org/downloads/",
  10883. "license": [
  10884. "BSD-3-Clause"
  10885. ],
  10886. "authors": [
  10887. {
  10888. "name": "Sebastian Bergmann",
  10889. "email": "sebastian@phpunit.de"
  10890. }
  10891. ],
  10892. "description": "Looks up which function or method a line of code belongs to",
  10893. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10894. "support": {
  10895. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10896. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10897. },
  10898. "funding": [
  10899. {
  10900. "url": "https://github.com/sebastianbergmann",
  10901. "type": "github"
  10902. }
  10903. ],
  10904. "time": "2023-02-03T06:59:15+00:00"
  10905. },
  10906. {
  10907. "name": "sebastian/comparator",
  10908. "version": "5.0.1",
  10909. "source": {
  10910. "type": "git",
  10911. "url": "https://github.com/sebastianbergmann/comparator.git",
  10912. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  10913. },
  10914. "dist": {
  10915. "type": "zip",
  10916. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  10917. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  10918. "shasum": ""
  10919. },
  10920. "require": {
  10921. "ext-dom": "*",
  10922. "ext-mbstring": "*",
  10923. "php": ">=8.1",
  10924. "sebastian/diff": "^5.0",
  10925. "sebastian/exporter": "^5.0"
  10926. },
  10927. "require-dev": {
  10928. "phpunit/phpunit": "^10.3"
  10929. },
  10930. "type": "library",
  10931. "extra": {
  10932. "branch-alias": {
  10933. "dev-main": "5.0-dev"
  10934. }
  10935. },
  10936. "autoload": {
  10937. "classmap": [
  10938. "src/"
  10939. ]
  10940. },
  10941. "notification-url": "https://packagist.org/downloads/",
  10942. "license": [
  10943. "BSD-3-Clause"
  10944. ],
  10945. "authors": [
  10946. {
  10947. "name": "Sebastian Bergmann",
  10948. "email": "sebastian@phpunit.de"
  10949. },
  10950. {
  10951. "name": "Jeff Welch",
  10952. "email": "whatthejeff@gmail.com"
  10953. },
  10954. {
  10955. "name": "Volker Dusch",
  10956. "email": "github@wallbash.com"
  10957. },
  10958. {
  10959. "name": "Bernhard Schussek",
  10960. "email": "bschussek@2bepublished.at"
  10961. }
  10962. ],
  10963. "description": "Provides the functionality to compare PHP values for equality",
  10964. "homepage": "https://github.com/sebastianbergmann/comparator",
  10965. "keywords": [
  10966. "comparator",
  10967. "compare",
  10968. "equality"
  10969. ],
  10970. "support": {
  10971. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10972. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10973. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  10974. },
  10975. "funding": [
  10976. {
  10977. "url": "https://github.com/sebastianbergmann",
  10978. "type": "github"
  10979. }
  10980. ],
  10981. "time": "2023-08-14T13:18:12+00:00"
  10982. },
  10983. {
  10984. "name": "sebastian/complexity",
  10985. "version": "3.2.0",
  10986. "source": {
  10987. "type": "git",
  10988. "url": "https://github.com/sebastianbergmann/complexity.git",
  10989. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10990. },
  10991. "dist": {
  10992. "type": "zip",
  10993. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10994. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10995. "shasum": ""
  10996. },
  10997. "require": {
  10998. "nikic/php-parser": "^4.18 || ^5.0",
  10999. "php": ">=8.1"
  11000. },
  11001. "require-dev": {
  11002. "phpunit/phpunit": "^10.0"
  11003. },
  11004. "type": "library",
  11005. "extra": {
  11006. "branch-alias": {
  11007. "dev-main": "3.2-dev"
  11008. }
  11009. },
  11010. "autoload": {
  11011. "classmap": [
  11012. "src/"
  11013. ]
  11014. },
  11015. "notification-url": "https://packagist.org/downloads/",
  11016. "license": [
  11017. "BSD-3-Clause"
  11018. ],
  11019. "authors": [
  11020. {
  11021. "name": "Sebastian Bergmann",
  11022. "email": "sebastian@phpunit.de",
  11023. "role": "lead"
  11024. }
  11025. ],
  11026. "description": "Library for calculating the complexity of PHP code units",
  11027. "homepage": "https://github.com/sebastianbergmann/complexity",
  11028. "support": {
  11029. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11030. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11031. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  11032. },
  11033. "funding": [
  11034. {
  11035. "url": "https://github.com/sebastianbergmann",
  11036. "type": "github"
  11037. }
  11038. ],
  11039. "time": "2023-12-21T08:37:17+00:00"
  11040. },
  11041. {
  11042. "name": "sebastian/diff",
  11043. "version": "5.1.1",
  11044. "source": {
  11045. "type": "git",
  11046. "url": "https://github.com/sebastianbergmann/diff.git",
  11047. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  11048. },
  11049. "dist": {
  11050. "type": "zip",
  11051. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11052. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11053. "shasum": ""
  11054. },
  11055. "require": {
  11056. "php": ">=8.1"
  11057. },
  11058. "require-dev": {
  11059. "phpunit/phpunit": "^10.0",
  11060. "symfony/process": "^6.4"
  11061. },
  11062. "type": "library",
  11063. "extra": {
  11064. "branch-alias": {
  11065. "dev-main": "5.1-dev"
  11066. }
  11067. },
  11068. "autoload": {
  11069. "classmap": [
  11070. "src/"
  11071. ]
  11072. },
  11073. "notification-url": "https://packagist.org/downloads/",
  11074. "license": [
  11075. "BSD-3-Clause"
  11076. ],
  11077. "authors": [
  11078. {
  11079. "name": "Sebastian Bergmann",
  11080. "email": "sebastian@phpunit.de"
  11081. },
  11082. {
  11083. "name": "Kore Nordmann",
  11084. "email": "mail@kore-nordmann.de"
  11085. }
  11086. ],
  11087. "description": "Diff implementation",
  11088. "homepage": "https://github.com/sebastianbergmann/diff",
  11089. "keywords": [
  11090. "diff",
  11091. "udiff",
  11092. "unidiff",
  11093. "unified diff"
  11094. ],
  11095. "support": {
  11096. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11097. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11098. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  11099. },
  11100. "funding": [
  11101. {
  11102. "url": "https://github.com/sebastianbergmann",
  11103. "type": "github"
  11104. }
  11105. ],
  11106. "time": "2024-03-02T07:15:17+00:00"
  11107. },
  11108. {
  11109. "name": "sebastian/environment",
  11110. "version": "6.1.0",
  11111. "source": {
  11112. "type": "git",
  11113. "url": "https://github.com/sebastianbergmann/environment.git",
  11114. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  11115. },
  11116. "dist": {
  11117. "type": "zip",
  11118. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  11119. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  11120. "shasum": ""
  11121. },
  11122. "require": {
  11123. "php": ">=8.1"
  11124. },
  11125. "require-dev": {
  11126. "phpunit/phpunit": "^10.0"
  11127. },
  11128. "suggest": {
  11129. "ext-posix": "*"
  11130. },
  11131. "type": "library",
  11132. "extra": {
  11133. "branch-alias": {
  11134. "dev-main": "6.1-dev"
  11135. }
  11136. },
  11137. "autoload": {
  11138. "classmap": [
  11139. "src/"
  11140. ]
  11141. },
  11142. "notification-url": "https://packagist.org/downloads/",
  11143. "license": [
  11144. "BSD-3-Clause"
  11145. ],
  11146. "authors": [
  11147. {
  11148. "name": "Sebastian Bergmann",
  11149. "email": "sebastian@phpunit.de"
  11150. }
  11151. ],
  11152. "description": "Provides functionality to handle HHVM/PHP environments",
  11153. "homepage": "https://github.com/sebastianbergmann/environment",
  11154. "keywords": [
  11155. "Xdebug",
  11156. "environment",
  11157. "hhvm"
  11158. ],
  11159. "support": {
  11160. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11161. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11162. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  11163. },
  11164. "funding": [
  11165. {
  11166. "url": "https://github.com/sebastianbergmann",
  11167. "type": "github"
  11168. }
  11169. ],
  11170. "time": "2024-03-23T08:47:14+00:00"
  11171. },
  11172. {
  11173. "name": "sebastian/exporter",
  11174. "version": "5.1.2",
  11175. "source": {
  11176. "type": "git",
  11177. "url": "https://github.com/sebastianbergmann/exporter.git",
  11178. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  11179. },
  11180. "dist": {
  11181. "type": "zip",
  11182. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  11183. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  11184. "shasum": ""
  11185. },
  11186. "require": {
  11187. "ext-mbstring": "*",
  11188. "php": ">=8.1",
  11189. "sebastian/recursion-context": "^5.0"
  11190. },
  11191. "require-dev": {
  11192. "phpunit/phpunit": "^10.0"
  11193. },
  11194. "type": "library",
  11195. "extra": {
  11196. "branch-alias": {
  11197. "dev-main": "5.1-dev"
  11198. }
  11199. },
  11200. "autoload": {
  11201. "classmap": [
  11202. "src/"
  11203. ]
  11204. },
  11205. "notification-url": "https://packagist.org/downloads/",
  11206. "license": [
  11207. "BSD-3-Clause"
  11208. ],
  11209. "authors": [
  11210. {
  11211. "name": "Sebastian Bergmann",
  11212. "email": "sebastian@phpunit.de"
  11213. },
  11214. {
  11215. "name": "Jeff Welch",
  11216. "email": "whatthejeff@gmail.com"
  11217. },
  11218. {
  11219. "name": "Volker Dusch",
  11220. "email": "github@wallbash.com"
  11221. },
  11222. {
  11223. "name": "Adam Harvey",
  11224. "email": "aharvey@php.net"
  11225. },
  11226. {
  11227. "name": "Bernhard Schussek",
  11228. "email": "bschussek@gmail.com"
  11229. }
  11230. ],
  11231. "description": "Provides the functionality to export PHP variables for visualization",
  11232. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11233. "keywords": [
  11234. "export",
  11235. "exporter"
  11236. ],
  11237. "support": {
  11238. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11239. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11240. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  11241. },
  11242. "funding": [
  11243. {
  11244. "url": "https://github.com/sebastianbergmann",
  11245. "type": "github"
  11246. }
  11247. ],
  11248. "time": "2024-03-02T07:17:12+00:00"
  11249. },
  11250. {
  11251. "name": "sebastian/global-state",
  11252. "version": "6.0.2",
  11253. "source": {
  11254. "type": "git",
  11255. "url": "https://github.com/sebastianbergmann/global-state.git",
  11256. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  11257. },
  11258. "dist": {
  11259. "type": "zip",
  11260. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11261. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11262. "shasum": ""
  11263. },
  11264. "require": {
  11265. "php": ">=8.1",
  11266. "sebastian/object-reflector": "^3.0",
  11267. "sebastian/recursion-context": "^5.0"
  11268. },
  11269. "require-dev": {
  11270. "ext-dom": "*",
  11271. "phpunit/phpunit": "^10.0"
  11272. },
  11273. "type": "library",
  11274. "extra": {
  11275. "branch-alias": {
  11276. "dev-main": "6.0-dev"
  11277. }
  11278. },
  11279. "autoload": {
  11280. "classmap": [
  11281. "src/"
  11282. ]
  11283. },
  11284. "notification-url": "https://packagist.org/downloads/",
  11285. "license": [
  11286. "BSD-3-Clause"
  11287. ],
  11288. "authors": [
  11289. {
  11290. "name": "Sebastian Bergmann",
  11291. "email": "sebastian@phpunit.de"
  11292. }
  11293. ],
  11294. "description": "Snapshotting of global state",
  11295. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11296. "keywords": [
  11297. "global state"
  11298. ],
  11299. "support": {
  11300. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11301. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11302. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  11303. },
  11304. "funding": [
  11305. {
  11306. "url": "https://github.com/sebastianbergmann",
  11307. "type": "github"
  11308. }
  11309. ],
  11310. "time": "2024-03-02T07:19:19+00:00"
  11311. },
  11312. {
  11313. "name": "sebastian/lines-of-code",
  11314. "version": "2.0.2",
  11315. "source": {
  11316. "type": "git",
  11317. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11318. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  11319. },
  11320. "dist": {
  11321. "type": "zip",
  11322. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11323. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11324. "shasum": ""
  11325. },
  11326. "require": {
  11327. "nikic/php-parser": "^4.18 || ^5.0",
  11328. "php": ">=8.1"
  11329. },
  11330. "require-dev": {
  11331. "phpunit/phpunit": "^10.0"
  11332. },
  11333. "type": "library",
  11334. "extra": {
  11335. "branch-alias": {
  11336. "dev-main": "2.0-dev"
  11337. }
  11338. },
  11339. "autoload": {
  11340. "classmap": [
  11341. "src/"
  11342. ]
  11343. },
  11344. "notification-url": "https://packagist.org/downloads/",
  11345. "license": [
  11346. "BSD-3-Clause"
  11347. ],
  11348. "authors": [
  11349. {
  11350. "name": "Sebastian Bergmann",
  11351. "email": "sebastian@phpunit.de",
  11352. "role": "lead"
  11353. }
  11354. ],
  11355. "description": "Library for counting the lines of code in PHP source code",
  11356. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11357. "support": {
  11358. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11359. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11360. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11361. },
  11362. "funding": [
  11363. {
  11364. "url": "https://github.com/sebastianbergmann",
  11365. "type": "github"
  11366. }
  11367. ],
  11368. "time": "2023-12-21T08:38:20+00:00"
  11369. },
  11370. {
  11371. "name": "sebastian/object-enumerator",
  11372. "version": "5.0.0",
  11373. "source": {
  11374. "type": "git",
  11375. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11376. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11377. },
  11378. "dist": {
  11379. "type": "zip",
  11380. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11381. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11382. "shasum": ""
  11383. },
  11384. "require": {
  11385. "php": ">=8.1",
  11386. "sebastian/object-reflector": "^3.0",
  11387. "sebastian/recursion-context": "^5.0"
  11388. },
  11389. "require-dev": {
  11390. "phpunit/phpunit": "^10.0"
  11391. },
  11392. "type": "library",
  11393. "extra": {
  11394. "branch-alias": {
  11395. "dev-main": "5.0-dev"
  11396. }
  11397. },
  11398. "autoload": {
  11399. "classmap": [
  11400. "src/"
  11401. ]
  11402. },
  11403. "notification-url": "https://packagist.org/downloads/",
  11404. "license": [
  11405. "BSD-3-Clause"
  11406. ],
  11407. "authors": [
  11408. {
  11409. "name": "Sebastian Bergmann",
  11410. "email": "sebastian@phpunit.de"
  11411. }
  11412. ],
  11413. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11414. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11415. "support": {
  11416. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11417. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11418. },
  11419. "funding": [
  11420. {
  11421. "url": "https://github.com/sebastianbergmann",
  11422. "type": "github"
  11423. }
  11424. ],
  11425. "time": "2023-02-03T07:08:32+00:00"
  11426. },
  11427. {
  11428. "name": "sebastian/object-reflector",
  11429. "version": "3.0.0",
  11430. "source": {
  11431. "type": "git",
  11432. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11433. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11434. },
  11435. "dist": {
  11436. "type": "zip",
  11437. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11438. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11439. "shasum": ""
  11440. },
  11441. "require": {
  11442. "php": ">=8.1"
  11443. },
  11444. "require-dev": {
  11445. "phpunit/phpunit": "^10.0"
  11446. },
  11447. "type": "library",
  11448. "extra": {
  11449. "branch-alias": {
  11450. "dev-main": "3.0-dev"
  11451. }
  11452. },
  11453. "autoload": {
  11454. "classmap": [
  11455. "src/"
  11456. ]
  11457. },
  11458. "notification-url": "https://packagist.org/downloads/",
  11459. "license": [
  11460. "BSD-3-Clause"
  11461. ],
  11462. "authors": [
  11463. {
  11464. "name": "Sebastian Bergmann",
  11465. "email": "sebastian@phpunit.de"
  11466. }
  11467. ],
  11468. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11469. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11470. "support": {
  11471. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11472. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11473. },
  11474. "funding": [
  11475. {
  11476. "url": "https://github.com/sebastianbergmann",
  11477. "type": "github"
  11478. }
  11479. ],
  11480. "time": "2023-02-03T07:06:18+00:00"
  11481. },
  11482. {
  11483. "name": "sebastian/recursion-context",
  11484. "version": "5.0.0",
  11485. "source": {
  11486. "type": "git",
  11487. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11488. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11489. },
  11490. "dist": {
  11491. "type": "zip",
  11492. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11493. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11494. "shasum": ""
  11495. },
  11496. "require": {
  11497. "php": ">=8.1"
  11498. },
  11499. "require-dev": {
  11500. "phpunit/phpunit": "^10.0"
  11501. },
  11502. "type": "library",
  11503. "extra": {
  11504. "branch-alias": {
  11505. "dev-main": "5.0-dev"
  11506. }
  11507. },
  11508. "autoload": {
  11509. "classmap": [
  11510. "src/"
  11511. ]
  11512. },
  11513. "notification-url": "https://packagist.org/downloads/",
  11514. "license": [
  11515. "BSD-3-Clause"
  11516. ],
  11517. "authors": [
  11518. {
  11519. "name": "Sebastian Bergmann",
  11520. "email": "sebastian@phpunit.de"
  11521. },
  11522. {
  11523. "name": "Jeff Welch",
  11524. "email": "whatthejeff@gmail.com"
  11525. },
  11526. {
  11527. "name": "Adam Harvey",
  11528. "email": "aharvey@php.net"
  11529. }
  11530. ],
  11531. "description": "Provides functionality to recursively process PHP variables",
  11532. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11533. "support": {
  11534. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11535. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11536. },
  11537. "funding": [
  11538. {
  11539. "url": "https://github.com/sebastianbergmann",
  11540. "type": "github"
  11541. }
  11542. ],
  11543. "time": "2023-02-03T07:05:40+00:00"
  11544. },
  11545. {
  11546. "name": "sebastian/type",
  11547. "version": "4.0.0",
  11548. "source": {
  11549. "type": "git",
  11550. "url": "https://github.com/sebastianbergmann/type.git",
  11551. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11552. },
  11553. "dist": {
  11554. "type": "zip",
  11555. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11556. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11557. "shasum": ""
  11558. },
  11559. "require": {
  11560. "php": ">=8.1"
  11561. },
  11562. "require-dev": {
  11563. "phpunit/phpunit": "^10.0"
  11564. },
  11565. "type": "library",
  11566. "extra": {
  11567. "branch-alias": {
  11568. "dev-main": "4.0-dev"
  11569. }
  11570. },
  11571. "autoload": {
  11572. "classmap": [
  11573. "src/"
  11574. ]
  11575. },
  11576. "notification-url": "https://packagist.org/downloads/",
  11577. "license": [
  11578. "BSD-3-Clause"
  11579. ],
  11580. "authors": [
  11581. {
  11582. "name": "Sebastian Bergmann",
  11583. "email": "sebastian@phpunit.de",
  11584. "role": "lead"
  11585. }
  11586. ],
  11587. "description": "Collection of value objects that represent the types of the PHP type system",
  11588. "homepage": "https://github.com/sebastianbergmann/type",
  11589. "support": {
  11590. "issues": "https://github.com/sebastianbergmann/type/issues",
  11591. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11592. },
  11593. "funding": [
  11594. {
  11595. "url": "https://github.com/sebastianbergmann",
  11596. "type": "github"
  11597. }
  11598. ],
  11599. "time": "2023-02-03T07:10:45+00:00"
  11600. },
  11601. {
  11602. "name": "sebastian/version",
  11603. "version": "4.0.1",
  11604. "source": {
  11605. "type": "git",
  11606. "url": "https://github.com/sebastianbergmann/version.git",
  11607. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11608. },
  11609. "dist": {
  11610. "type": "zip",
  11611. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11612. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11613. "shasum": ""
  11614. },
  11615. "require": {
  11616. "php": ">=8.1"
  11617. },
  11618. "type": "library",
  11619. "extra": {
  11620. "branch-alias": {
  11621. "dev-main": "4.0-dev"
  11622. }
  11623. },
  11624. "autoload": {
  11625. "classmap": [
  11626. "src/"
  11627. ]
  11628. },
  11629. "notification-url": "https://packagist.org/downloads/",
  11630. "license": [
  11631. "BSD-3-Clause"
  11632. ],
  11633. "authors": [
  11634. {
  11635. "name": "Sebastian Bergmann",
  11636. "email": "sebastian@phpunit.de",
  11637. "role": "lead"
  11638. }
  11639. ],
  11640. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11641. "homepage": "https://github.com/sebastianbergmann/version",
  11642. "support": {
  11643. "issues": "https://github.com/sebastianbergmann/version/issues",
  11644. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11645. },
  11646. "funding": [
  11647. {
  11648. "url": "https://github.com/sebastianbergmann",
  11649. "type": "github"
  11650. }
  11651. ],
  11652. "time": "2023-02-07T11:34:05+00:00"
  11653. },
  11654. {
  11655. "name": "spatie/backtrace",
  11656. "version": "1.6.1",
  11657. "source": {
  11658. "type": "git",
  11659. "url": "https://github.com/spatie/backtrace.git",
  11660. "reference": "8373b9d51638292e3bfd736a9c19a654111b4a23"
  11661. },
  11662. "dist": {
  11663. "type": "zip",
  11664. "url": "https://api.github.com/repos/spatie/backtrace/zipball/8373b9d51638292e3bfd736a9c19a654111b4a23",
  11665. "reference": "8373b9d51638292e3bfd736a9c19a654111b4a23",
  11666. "shasum": ""
  11667. },
  11668. "require": {
  11669. "php": "^7.3|^8.0"
  11670. },
  11671. "require-dev": {
  11672. "ext-json": "*",
  11673. "laravel/serializable-closure": "^1.3",
  11674. "phpunit/phpunit": "^9.3",
  11675. "spatie/phpunit-snapshot-assertions": "^4.2",
  11676. "symfony/var-dumper": "^5.1"
  11677. },
  11678. "type": "library",
  11679. "autoload": {
  11680. "psr-4": {
  11681. "Spatie\\Backtrace\\": "src"
  11682. }
  11683. },
  11684. "notification-url": "https://packagist.org/downloads/",
  11685. "license": [
  11686. "MIT"
  11687. ],
  11688. "authors": [
  11689. {
  11690. "name": "Freek Van de Herten",
  11691. "email": "freek@spatie.be",
  11692. "homepage": "https://spatie.be",
  11693. "role": "Developer"
  11694. }
  11695. ],
  11696. "description": "A better backtrace",
  11697. "homepage": "https://github.com/spatie/backtrace",
  11698. "keywords": [
  11699. "Backtrace",
  11700. "spatie"
  11701. ],
  11702. "support": {
  11703. "source": "https://github.com/spatie/backtrace/tree/1.6.1"
  11704. },
  11705. "funding": [
  11706. {
  11707. "url": "https://github.com/sponsors/spatie",
  11708. "type": "github"
  11709. },
  11710. {
  11711. "url": "https://spatie.be/open-source/support-us",
  11712. "type": "other"
  11713. }
  11714. ],
  11715. "time": "2024-04-24T13:22:11+00:00"
  11716. },
  11717. {
  11718. "name": "spatie/flare-client-php",
  11719. "version": "1.4.4",
  11720. "source": {
  11721. "type": "git",
  11722. "url": "https://github.com/spatie/flare-client-php.git",
  11723. "reference": "17082e780752d346c2db12ef5d6bee8e835e399c"
  11724. },
  11725. "dist": {
  11726. "type": "zip",
  11727. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/17082e780752d346c2db12ef5d6bee8e835e399c",
  11728. "reference": "17082e780752d346c2db12ef5d6bee8e835e399c",
  11729. "shasum": ""
  11730. },
  11731. "require": {
  11732. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  11733. "php": "^8.0",
  11734. "spatie/backtrace": "^1.5.2",
  11735. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  11736. "symfony/mime": "^5.2|^6.0|^7.0",
  11737. "symfony/process": "^5.2|^6.0|^7.0",
  11738. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  11739. },
  11740. "require-dev": {
  11741. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  11742. "pestphp/pest": "^1.20|^2.0",
  11743. "phpstan/extension-installer": "^1.1",
  11744. "phpstan/phpstan-deprecation-rules": "^1.0",
  11745. "phpstan/phpstan-phpunit": "^1.0",
  11746. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  11747. },
  11748. "type": "library",
  11749. "extra": {
  11750. "branch-alias": {
  11751. "dev-main": "1.3.x-dev"
  11752. }
  11753. },
  11754. "autoload": {
  11755. "files": [
  11756. "src/helpers.php"
  11757. ],
  11758. "psr-4": {
  11759. "Spatie\\FlareClient\\": "src"
  11760. }
  11761. },
  11762. "notification-url": "https://packagist.org/downloads/",
  11763. "license": [
  11764. "MIT"
  11765. ],
  11766. "description": "Send PHP errors to Flare",
  11767. "homepage": "https://github.com/spatie/flare-client-php",
  11768. "keywords": [
  11769. "exception",
  11770. "flare",
  11771. "reporting",
  11772. "spatie"
  11773. ],
  11774. "support": {
  11775. "issues": "https://github.com/spatie/flare-client-php/issues",
  11776. "source": "https://github.com/spatie/flare-client-php/tree/1.4.4"
  11777. },
  11778. "funding": [
  11779. {
  11780. "url": "https://github.com/spatie",
  11781. "type": "github"
  11782. }
  11783. ],
  11784. "time": "2024-01-31T14:18:45+00:00"
  11785. },
  11786. {
  11787. "name": "spatie/ignition",
  11788. "version": "1.14.0",
  11789. "source": {
  11790. "type": "git",
  11791. "url": "https://github.com/spatie/ignition.git",
  11792. "reference": "80385994caed328f6f9c9952926932e65b9b774c"
  11793. },
  11794. "dist": {
  11795. "type": "zip",
  11796. "url": "https://api.github.com/repos/spatie/ignition/zipball/80385994caed328f6f9c9952926932e65b9b774c",
  11797. "reference": "80385994caed328f6f9c9952926932e65b9b774c",
  11798. "shasum": ""
  11799. },
  11800. "require": {
  11801. "ext-json": "*",
  11802. "ext-mbstring": "*",
  11803. "php": "^8.0",
  11804. "spatie/backtrace": "^1.5.3",
  11805. "spatie/flare-client-php": "^1.4.0",
  11806. "symfony/console": "^5.4|^6.0|^7.0",
  11807. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11808. },
  11809. "require-dev": {
  11810. "illuminate/cache": "^9.52|^10.0|^11.0",
  11811. "mockery/mockery": "^1.4",
  11812. "pestphp/pest": "^1.20|^2.0",
  11813. "phpstan/extension-installer": "^1.1",
  11814. "phpstan/phpstan-deprecation-rules": "^1.0",
  11815. "phpstan/phpstan-phpunit": "^1.0",
  11816. "psr/simple-cache-implementation": "*",
  11817. "symfony/cache": "^5.4|^6.0|^7.0",
  11818. "symfony/process": "^5.4|^6.0|^7.0",
  11819. "vlucas/phpdotenv": "^5.5"
  11820. },
  11821. "suggest": {
  11822. "openai-php/client": "Require get solutions from OpenAI",
  11823. "simple-cache-implementation": "To cache solutions from OpenAI"
  11824. },
  11825. "type": "library",
  11826. "extra": {
  11827. "branch-alias": {
  11828. "dev-main": "1.5.x-dev"
  11829. }
  11830. },
  11831. "autoload": {
  11832. "psr-4": {
  11833. "Spatie\\Ignition\\": "src"
  11834. }
  11835. },
  11836. "notification-url": "https://packagist.org/downloads/",
  11837. "license": [
  11838. "MIT"
  11839. ],
  11840. "authors": [
  11841. {
  11842. "name": "Spatie",
  11843. "email": "info@spatie.be",
  11844. "role": "Developer"
  11845. }
  11846. ],
  11847. "description": "A beautiful error page for PHP applications.",
  11848. "homepage": "https://flareapp.io/ignition",
  11849. "keywords": [
  11850. "error",
  11851. "flare",
  11852. "laravel",
  11853. "page"
  11854. ],
  11855. "support": {
  11856. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11857. "forum": "https://twitter.com/flareappio",
  11858. "issues": "https://github.com/spatie/ignition/issues",
  11859. "source": "https://github.com/spatie/ignition"
  11860. },
  11861. "funding": [
  11862. {
  11863. "url": "https://github.com/spatie",
  11864. "type": "github"
  11865. }
  11866. ],
  11867. "time": "2024-04-26T08:45:51+00:00"
  11868. },
  11869. {
  11870. "name": "spatie/laravel-ignition",
  11871. "version": "2.5.2",
  11872. "source": {
  11873. "type": "git",
  11874. "url": "https://github.com/spatie/laravel-ignition.git",
  11875. "reference": "c93fcadcc4629775c839ac9a90916f07a660266f"
  11876. },
  11877. "dist": {
  11878. "type": "zip",
  11879. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/c93fcadcc4629775c839ac9a90916f07a660266f",
  11880. "reference": "c93fcadcc4629775c839ac9a90916f07a660266f",
  11881. "shasum": ""
  11882. },
  11883. "require": {
  11884. "ext-curl": "*",
  11885. "ext-json": "*",
  11886. "ext-mbstring": "*",
  11887. "illuminate/support": "^10.0|^11.0",
  11888. "php": "^8.1",
  11889. "spatie/flare-client-php": "^1.3.5",
  11890. "spatie/ignition": "^1.13.2",
  11891. "symfony/console": "^6.2.3|^7.0",
  11892. "symfony/var-dumper": "^6.2.3|^7.0"
  11893. },
  11894. "require-dev": {
  11895. "livewire/livewire": "^2.11|^3.3.5",
  11896. "mockery/mockery": "^1.5.1",
  11897. "openai-php/client": "^0.8.1",
  11898. "orchestra/testbench": "^8.0|^9.0",
  11899. "pestphp/pest": "^2.30",
  11900. "phpstan/extension-installer": "^1.2",
  11901. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  11902. "phpstan/phpstan-phpunit": "^1.3.3",
  11903. "vlucas/phpdotenv": "^5.5"
  11904. },
  11905. "suggest": {
  11906. "openai-php/client": "Require get solutions from OpenAI",
  11907. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  11908. },
  11909. "type": "library",
  11910. "extra": {
  11911. "laravel": {
  11912. "providers": [
  11913. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  11914. ],
  11915. "aliases": {
  11916. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  11917. }
  11918. }
  11919. },
  11920. "autoload": {
  11921. "files": [
  11922. "src/helpers.php"
  11923. ],
  11924. "psr-4": {
  11925. "Spatie\\LaravelIgnition\\": "src"
  11926. }
  11927. },
  11928. "notification-url": "https://packagist.org/downloads/",
  11929. "license": [
  11930. "MIT"
  11931. ],
  11932. "authors": [
  11933. {
  11934. "name": "Spatie",
  11935. "email": "info@spatie.be",
  11936. "role": "Developer"
  11937. }
  11938. ],
  11939. "description": "A beautiful error page for Laravel applications.",
  11940. "homepage": "https://flareapp.io/ignition",
  11941. "keywords": [
  11942. "error",
  11943. "flare",
  11944. "laravel",
  11945. "page"
  11946. ],
  11947. "support": {
  11948. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11949. "forum": "https://twitter.com/flareappio",
  11950. "issues": "https://github.com/spatie/laravel-ignition/issues",
  11951. "source": "https://github.com/spatie/laravel-ignition"
  11952. },
  11953. "funding": [
  11954. {
  11955. "url": "https://github.com/spatie",
  11956. "type": "github"
  11957. }
  11958. ],
  11959. "time": "2024-04-16T08:57:16+00:00"
  11960. },
  11961. {
  11962. "name": "symfony/yaml",
  11963. "version": "v7.0.3",
  11964. "source": {
  11965. "type": "git",
  11966. "url": "https://github.com/symfony/yaml.git",
  11967. "reference": "2d4fca631c00700597e9442a0b2451ce234513d3"
  11968. },
  11969. "dist": {
  11970. "type": "zip",
  11971. "url": "https://api.github.com/repos/symfony/yaml/zipball/2d4fca631c00700597e9442a0b2451ce234513d3",
  11972. "reference": "2d4fca631c00700597e9442a0b2451ce234513d3",
  11973. "shasum": ""
  11974. },
  11975. "require": {
  11976. "php": ">=8.2",
  11977. "symfony/polyfill-ctype": "^1.8"
  11978. },
  11979. "conflict": {
  11980. "symfony/console": "<6.4"
  11981. },
  11982. "require-dev": {
  11983. "symfony/console": "^6.4|^7.0"
  11984. },
  11985. "bin": [
  11986. "Resources/bin/yaml-lint"
  11987. ],
  11988. "type": "library",
  11989. "autoload": {
  11990. "psr-4": {
  11991. "Symfony\\Component\\Yaml\\": ""
  11992. },
  11993. "exclude-from-classmap": [
  11994. "/Tests/"
  11995. ]
  11996. },
  11997. "notification-url": "https://packagist.org/downloads/",
  11998. "license": [
  11999. "MIT"
  12000. ],
  12001. "authors": [
  12002. {
  12003. "name": "Fabien Potencier",
  12004. "email": "fabien@symfony.com"
  12005. },
  12006. {
  12007. "name": "Symfony Community",
  12008. "homepage": "https://symfony.com/contributors"
  12009. }
  12010. ],
  12011. "description": "Loads and dumps YAML files",
  12012. "homepage": "https://symfony.com",
  12013. "support": {
  12014. "source": "https://github.com/symfony/yaml/tree/v7.0.3"
  12015. },
  12016. "funding": [
  12017. {
  12018. "url": "https://symfony.com/sponsor",
  12019. "type": "custom"
  12020. },
  12021. {
  12022. "url": "https://github.com/fabpot",
  12023. "type": "github"
  12024. },
  12025. {
  12026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12027. "type": "tidelift"
  12028. }
  12029. ],
  12030. "time": "2024-01-23T15:02:46+00:00"
  12031. },
  12032. {
  12033. "name": "theseer/tokenizer",
  12034. "version": "1.2.3",
  12035. "source": {
  12036. "type": "git",
  12037. "url": "https://github.com/theseer/tokenizer.git",
  12038. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12039. },
  12040. "dist": {
  12041. "type": "zip",
  12042. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12043. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12044. "shasum": ""
  12045. },
  12046. "require": {
  12047. "ext-dom": "*",
  12048. "ext-tokenizer": "*",
  12049. "ext-xmlwriter": "*",
  12050. "php": "^7.2 || ^8.0"
  12051. },
  12052. "type": "library",
  12053. "autoload": {
  12054. "classmap": [
  12055. "src/"
  12056. ]
  12057. },
  12058. "notification-url": "https://packagist.org/downloads/",
  12059. "license": [
  12060. "BSD-3-Clause"
  12061. ],
  12062. "authors": [
  12063. {
  12064. "name": "Arne Blankerts",
  12065. "email": "arne@blankerts.de",
  12066. "role": "Developer"
  12067. }
  12068. ],
  12069. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12070. "support": {
  12071. "issues": "https://github.com/theseer/tokenizer/issues",
  12072. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12073. },
  12074. "funding": [
  12075. {
  12076. "url": "https://github.com/theseer",
  12077. "type": "github"
  12078. }
  12079. ],
  12080. "time": "2024-03-03T12:36:25+00:00"
  12081. }
  12082. ],
  12083. "aliases": [],
  12084. "minimum-stability": "stable",
  12085. "stability-flags": [],
  12086. "prefer-stable": true,
  12087. "prefer-lowest": false,
  12088. "platform": {
  12089. "php": "^8.2",
  12090. "ext-bcmath": "*",
  12091. "ext-intl": "*"
  12092. },
  12093. "platform-dev": [],
  12094. "plugin-api-version": "2.6.0"
  12095. }