composer.lock 326 KB

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