composer.lock 281 KB

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