composer.lock 300 KB

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