composer.lock 281 KB

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