composer.lock 280 KB

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