composer.lock 308 KB

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