composer.lock 315 KB

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