composer.lock 292 KB

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