composer.lock 354 KB

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