composer.lock 296 KB

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