composer.lock 289 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062
  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": "c9c463735f549ac24dd753c2361621a5",
  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": "phpoffice/phpspreadsheet",
  2234. "version": "1.23.0",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2238. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/21e4cf62699eebf007db28775f7d1554e612ed9e",
  2243. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "ext-ctype": "*",
  2248. "ext-dom": "*",
  2249. "ext-fileinfo": "*",
  2250. "ext-gd": "*",
  2251. "ext-iconv": "*",
  2252. "ext-libxml": "*",
  2253. "ext-mbstring": "*",
  2254. "ext-simplexml": "*",
  2255. "ext-xml": "*",
  2256. "ext-xmlreader": "*",
  2257. "ext-xmlwriter": "*",
  2258. "ext-zip": "*",
  2259. "ext-zlib": "*",
  2260. "ezyang/htmlpurifier": "^4.13",
  2261. "maennchen/zipstream-php": "^2.1",
  2262. "markbaker/complex": "^3.0",
  2263. "markbaker/matrix": "^3.0",
  2264. "php": "^7.3 || ^8.0",
  2265. "psr/http-client": "^1.0",
  2266. "psr/http-factory": "^1.0",
  2267. "psr/simple-cache": "^1.0 || ^2.0"
  2268. },
  2269. "require-dev": {
  2270. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2271. "dompdf/dompdf": "^1.0",
  2272. "friendsofphp/php-cs-fixer": "^3.2",
  2273. "jpgraph/jpgraph": "^4.0",
  2274. "mpdf/mpdf": "8.0.17",
  2275. "phpcompatibility/php-compatibility": "^9.3",
  2276. "phpstan/phpstan": "^1.1",
  2277. "phpstan/phpstan-phpunit": "^1.0",
  2278. "phpunit/phpunit": "^8.5 || ^9.0",
  2279. "squizlabs/php_codesniffer": "^3.6",
  2280. "tecnickcom/tcpdf": "^6.4"
  2281. },
  2282. "suggest": {
  2283. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2284. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2285. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2286. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2287. },
  2288. "type": "library",
  2289. "autoload": {
  2290. "psr-4": {
  2291. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2292. }
  2293. },
  2294. "notification-url": "https://packagist.org/downloads/",
  2295. "license": [
  2296. "MIT"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "Maarten Balliauw",
  2301. "homepage": "https://blog.maartenballiauw.be"
  2302. },
  2303. {
  2304. "name": "Mark Baker",
  2305. "homepage": "https://markbakeruk.net"
  2306. },
  2307. {
  2308. "name": "Franck Lefevre",
  2309. "homepage": "https://rootslabs.net"
  2310. },
  2311. {
  2312. "name": "Erik Tilt"
  2313. },
  2314. {
  2315. "name": "Adrien Crivelli"
  2316. }
  2317. ],
  2318. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2319. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2320. "keywords": [
  2321. "OpenXML",
  2322. "excel",
  2323. "gnumeric",
  2324. "ods",
  2325. "php",
  2326. "spreadsheet",
  2327. "xls",
  2328. "xlsx"
  2329. ],
  2330. "support": {
  2331. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2332. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.23.0"
  2333. },
  2334. "time": "2022-04-24T13:53:10+00:00"
  2335. },
  2336. {
  2337. "name": "phpoption/phpoption",
  2338. "version": "1.8.1",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://github.com/schmittjoh/php-option.git",
  2342. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  2343. },
  2344. "dist": {
  2345. "type": "zip",
  2346. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2347. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2348. "shasum": ""
  2349. },
  2350. "require": {
  2351. "php": "^7.0 || ^8.0"
  2352. },
  2353. "require-dev": {
  2354. "bamarni/composer-bin-plugin": "^1.4.1",
  2355. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2356. },
  2357. "type": "library",
  2358. "extra": {
  2359. "branch-alias": {
  2360. "dev-master": "1.8-dev"
  2361. }
  2362. },
  2363. "autoload": {
  2364. "psr-4": {
  2365. "PhpOption\\": "src/PhpOption/"
  2366. }
  2367. },
  2368. "notification-url": "https://packagist.org/downloads/",
  2369. "license": [
  2370. "Apache-2.0"
  2371. ],
  2372. "authors": [
  2373. {
  2374. "name": "Johannes M. Schmitt",
  2375. "email": "schmittjoh@gmail.com",
  2376. "homepage": "https://github.com/schmittjoh"
  2377. },
  2378. {
  2379. "name": "Graham Campbell",
  2380. "email": "hello@gjcampbell.co.uk",
  2381. "homepage": "https://github.com/GrahamCampbell"
  2382. }
  2383. ],
  2384. "description": "Option Type for PHP",
  2385. "keywords": [
  2386. "language",
  2387. "option",
  2388. "php",
  2389. "type"
  2390. ],
  2391. "support": {
  2392. "issues": "https://github.com/schmittjoh/php-option/issues",
  2393. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  2394. },
  2395. "funding": [
  2396. {
  2397. "url": "https://github.com/GrahamCampbell",
  2398. "type": "github"
  2399. },
  2400. {
  2401. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2402. "type": "tidelift"
  2403. }
  2404. ],
  2405. "time": "2021-12-04T23:24:31+00:00"
  2406. },
  2407. {
  2408. "name": "psr/container",
  2409. "version": "1.1.1",
  2410. "source": {
  2411. "type": "git",
  2412. "url": "https://github.com/php-fig/container.git",
  2413. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2414. },
  2415. "dist": {
  2416. "type": "zip",
  2417. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2418. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2419. "shasum": ""
  2420. },
  2421. "require": {
  2422. "php": ">=7.2.0"
  2423. },
  2424. "type": "library",
  2425. "autoload": {
  2426. "psr-4": {
  2427. "Psr\\Container\\": "src/"
  2428. }
  2429. },
  2430. "notification-url": "https://packagist.org/downloads/",
  2431. "license": [
  2432. "MIT"
  2433. ],
  2434. "authors": [
  2435. {
  2436. "name": "PHP-FIG",
  2437. "homepage": "https://www.php-fig.org/"
  2438. }
  2439. ],
  2440. "description": "Common Container Interface (PHP FIG PSR-11)",
  2441. "homepage": "https://github.com/php-fig/container",
  2442. "keywords": [
  2443. "PSR-11",
  2444. "container",
  2445. "container-interface",
  2446. "container-interop",
  2447. "psr"
  2448. ],
  2449. "support": {
  2450. "issues": "https://github.com/php-fig/container/issues",
  2451. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2452. },
  2453. "time": "2021-03-05T17:36:06+00:00"
  2454. },
  2455. {
  2456. "name": "psr/event-dispatcher",
  2457. "version": "1.0.0",
  2458. "source": {
  2459. "type": "git",
  2460. "url": "https://github.com/php-fig/event-dispatcher.git",
  2461. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2462. },
  2463. "dist": {
  2464. "type": "zip",
  2465. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2466. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2467. "shasum": ""
  2468. },
  2469. "require": {
  2470. "php": ">=7.2.0"
  2471. },
  2472. "type": "library",
  2473. "extra": {
  2474. "branch-alias": {
  2475. "dev-master": "1.0.x-dev"
  2476. }
  2477. },
  2478. "autoload": {
  2479. "psr-4": {
  2480. "Psr\\EventDispatcher\\": "src/"
  2481. }
  2482. },
  2483. "notification-url": "https://packagist.org/downloads/",
  2484. "license": [
  2485. "MIT"
  2486. ],
  2487. "authors": [
  2488. {
  2489. "name": "PHP-FIG",
  2490. "homepage": "http://www.php-fig.org/"
  2491. }
  2492. ],
  2493. "description": "Standard interfaces for event handling.",
  2494. "keywords": [
  2495. "events",
  2496. "psr",
  2497. "psr-14"
  2498. ],
  2499. "support": {
  2500. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2501. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2502. },
  2503. "time": "2019-01-08T18:20:26+00:00"
  2504. },
  2505. {
  2506. "name": "psr/http-client",
  2507. "version": "1.0.1",
  2508. "source": {
  2509. "type": "git",
  2510. "url": "https://github.com/php-fig/http-client.git",
  2511. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2512. },
  2513. "dist": {
  2514. "type": "zip",
  2515. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2516. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2517. "shasum": ""
  2518. },
  2519. "require": {
  2520. "php": "^7.0 || ^8.0",
  2521. "psr/http-message": "^1.0"
  2522. },
  2523. "type": "library",
  2524. "extra": {
  2525. "branch-alias": {
  2526. "dev-master": "1.0.x-dev"
  2527. }
  2528. },
  2529. "autoload": {
  2530. "psr-4": {
  2531. "Psr\\Http\\Client\\": "src/"
  2532. }
  2533. },
  2534. "notification-url": "https://packagist.org/downloads/",
  2535. "license": [
  2536. "MIT"
  2537. ],
  2538. "authors": [
  2539. {
  2540. "name": "PHP-FIG",
  2541. "homepage": "http://www.php-fig.org/"
  2542. }
  2543. ],
  2544. "description": "Common interface for HTTP clients",
  2545. "homepage": "https://github.com/php-fig/http-client",
  2546. "keywords": [
  2547. "http",
  2548. "http-client",
  2549. "psr",
  2550. "psr-18"
  2551. ],
  2552. "support": {
  2553. "source": "https://github.com/php-fig/http-client/tree/master"
  2554. },
  2555. "time": "2020-06-29T06:28:15+00:00"
  2556. },
  2557. {
  2558. "name": "psr/http-factory",
  2559. "version": "1.0.1",
  2560. "source": {
  2561. "type": "git",
  2562. "url": "https://github.com/php-fig/http-factory.git",
  2563. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2564. },
  2565. "dist": {
  2566. "type": "zip",
  2567. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2568. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2569. "shasum": ""
  2570. },
  2571. "require": {
  2572. "php": ">=7.0.0",
  2573. "psr/http-message": "^1.0"
  2574. },
  2575. "type": "library",
  2576. "extra": {
  2577. "branch-alias": {
  2578. "dev-master": "1.0.x-dev"
  2579. }
  2580. },
  2581. "autoload": {
  2582. "psr-4": {
  2583. "Psr\\Http\\Message\\": "src/"
  2584. }
  2585. },
  2586. "notification-url": "https://packagist.org/downloads/",
  2587. "license": [
  2588. "MIT"
  2589. ],
  2590. "authors": [
  2591. {
  2592. "name": "PHP-FIG",
  2593. "homepage": "http://www.php-fig.org/"
  2594. }
  2595. ],
  2596. "description": "Common interfaces for PSR-7 HTTP message factories",
  2597. "keywords": [
  2598. "factory",
  2599. "http",
  2600. "message",
  2601. "psr",
  2602. "psr-17",
  2603. "psr-7",
  2604. "request",
  2605. "response"
  2606. ],
  2607. "support": {
  2608. "source": "https://github.com/php-fig/http-factory/tree/master"
  2609. },
  2610. "time": "2019-04-30T12:38:16+00:00"
  2611. },
  2612. {
  2613. "name": "psr/http-message",
  2614. "version": "1.0.1",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/php-fig/http-message.git",
  2618. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2623. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2624. "shasum": ""
  2625. },
  2626. "require": {
  2627. "php": ">=5.3.0"
  2628. },
  2629. "type": "library",
  2630. "extra": {
  2631. "branch-alias": {
  2632. "dev-master": "1.0.x-dev"
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Psr\\Http\\Message\\": "src/"
  2638. }
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "MIT"
  2643. ],
  2644. "authors": [
  2645. {
  2646. "name": "PHP-FIG",
  2647. "homepage": "http://www.php-fig.org/"
  2648. }
  2649. ],
  2650. "description": "Common interface for HTTP messages",
  2651. "homepage": "https://github.com/php-fig/http-message",
  2652. "keywords": [
  2653. "http",
  2654. "http-message",
  2655. "psr",
  2656. "psr-7",
  2657. "request",
  2658. "response"
  2659. ],
  2660. "support": {
  2661. "source": "https://github.com/php-fig/http-message/tree/master"
  2662. },
  2663. "time": "2016-08-06T14:39:51+00:00"
  2664. },
  2665. {
  2666. "name": "psr/log",
  2667. "version": "1.1.4",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://github.com/php-fig/log.git",
  2671. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2676. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2677. "shasum": ""
  2678. },
  2679. "require": {
  2680. "php": ">=5.3.0"
  2681. },
  2682. "type": "library",
  2683. "extra": {
  2684. "branch-alias": {
  2685. "dev-master": "1.1.x-dev"
  2686. }
  2687. },
  2688. "autoload": {
  2689. "psr-4": {
  2690. "Psr\\Log\\": "Psr/Log/"
  2691. }
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "authors": [
  2698. {
  2699. "name": "PHP-FIG",
  2700. "homepage": "https://www.php-fig.org/"
  2701. }
  2702. ],
  2703. "description": "Common interface for logging libraries",
  2704. "homepage": "https://github.com/php-fig/log",
  2705. "keywords": [
  2706. "log",
  2707. "psr",
  2708. "psr-3"
  2709. ],
  2710. "support": {
  2711. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2712. },
  2713. "time": "2021-05-03T11:20:27+00:00"
  2714. },
  2715. {
  2716. "name": "psr/simple-cache",
  2717. "version": "1.0.1",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://github.com/php-fig/simple-cache.git",
  2721. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2726. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2727. "shasum": ""
  2728. },
  2729. "require": {
  2730. "php": ">=5.3.0"
  2731. },
  2732. "type": "library",
  2733. "extra": {
  2734. "branch-alias": {
  2735. "dev-master": "1.0.x-dev"
  2736. }
  2737. },
  2738. "autoload": {
  2739. "psr-4": {
  2740. "Psr\\SimpleCache\\": "src/"
  2741. }
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "MIT"
  2746. ],
  2747. "authors": [
  2748. {
  2749. "name": "PHP-FIG",
  2750. "homepage": "http://www.php-fig.org/"
  2751. }
  2752. ],
  2753. "description": "Common interfaces for simple caching",
  2754. "keywords": [
  2755. "cache",
  2756. "caching",
  2757. "psr",
  2758. "psr-16",
  2759. "simple-cache"
  2760. ],
  2761. "support": {
  2762. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2763. },
  2764. "time": "2017-10-23T01:57:42+00:00"
  2765. },
  2766. {
  2767. "name": "psy/psysh",
  2768. "version": "v0.11.5",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://github.com/bobthecow/psysh.git",
  2772. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/c23686f9c48ca202710dbb967df8385a952a2daf",
  2777. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf",
  2778. "shasum": ""
  2779. },
  2780. "require": {
  2781. "ext-json": "*",
  2782. "ext-tokenizer": "*",
  2783. "nikic/php-parser": "^4.0 || ^3.1",
  2784. "php": "^8.0 || ^7.0.8",
  2785. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2786. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2787. },
  2788. "conflict": {
  2789. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2790. },
  2791. "require-dev": {
  2792. "bamarni/composer-bin-plugin": "^1.2"
  2793. },
  2794. "suggest": {
  2795. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2796. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2797. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2798. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  2799. },
  2800. "bin": [
  2801. "bin/psysh"
  2802. ],
  2803. "type": "library",
  2804. "extra": {
  2805. "branch-alias": {
  2806. "dev-main": "0.11.x-dev"
  2807. }
  2808. },
  2809. "autoload": {
  2810. "files": [
  2811. "src/functions.php"
  2812. ],
  2813. "psr-4": {
  2814. "Psy\\": "src/"
  2815. }
  2816. },
  2817. "notification-url": "https://packagist.org/downloads/",
  2818. "license": [
  2819. "MIT"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "Justin Hileman",
  2824. "email": "justin@justinhileman.info",
  2825. "homepage": "http://justinhileman.com"
  2826. }
  2827. ],
  2828. "description": "An interactive shell for modern PHP.",
  2829. "homepage": "http://psysh.org",
  2830. "keywords": [
  2831. "REPL",
  2832. "console",
  2833. "interactive",
  2834. "shell"
  2835. ],
  2836. "support": {
  2837. "issues": "https://github.com/bobthecow/psysh/issues",
  2838. "source": "https://github.com/bobthecow/psysh/tree/v0.11.5"
  2839. },
  2840. "time": "2022-05-27T18:03:49+00:00"
  2841. },
  2842. {
  2843. "name": "ralouphie/getallheaders",
  2844. "version": "3.0.3",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://github.com/ralouphie/getallheaders.git",
  2848. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2853. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2854. "shasum": ""
  2855. },
  2856. "require": {
  2857. "php": ">=5.6"
  2858. },
  2859. "require-dev": {
  2860. "php-coveralls/php-coveralls": "^2.1",
  2861. "phpunit/phpunit": "^5 || ^6.5"
  2862. },
  2863. "type": "library",
  2864. "autoload": {
  2865. "files": [
  2866. "src/getallheaders.php"
  2867. ]
  2868. },
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "MIT"
  2872. ],
  2873. "authors": [
  2874. {
  2875. "name": "Ralph Khattar",
  2876. "email": "ralph.khattar@gmail.com"
  2877. }
  2878. ],
  2879. "description": "A polyfill for getallheaders.",
  2880. "support": {
  2881. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2882. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2883. },
  2884. "time": "2019-03-08T08:55:37+00:00"
  2885. },
  2886. {
  2887. "name": "ramsey/collection",
  2888. "version": "1.2.2",
  2889. "source": {
  2890. "type": "git",
  2891. "url": "https://github.com/ramsey/collection.git",
  2892. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  2893. },
  2894. "dist": {
  2895. "type": "zip",
  2896. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2897. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2898. "shasum": ""
  2899. },
  2900. "require": {
  2901. "php": "^7.3 || ^8",
  2902. "symfony/polyfill-php81": "^1.23"
  2903. },
  2904. "require-dev": {
  2905. "captainhook/captainhook": "^5.3",
  2906. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2907. "ergebnis/composer-normalize": "^2.6",
  2908. "fakerphp/faker": "^1.5",
  2909. "hamcrest/hamcrest-php": "^2",
  2910. "jangregor/phpstan-prophecy": "^0.8",
  2911. "mockery/mockery": "^1.3",
  2912. "phpspec/prophecy-phpunit": "^2.0",
  2913. "phpstan/extension-installer": "^1",
  2914. "phpstan/phpstan": "^0.12.32",
  2915. "phpstan/phpstan-mockery": "^0.12.5",
  2916. "phpstan/phpstan-phpunit": "^0.12.11",
  2917. "phpunit/phpunit": "^8.5 || ^9",
  2918. "psy/psysh": "^0.10.4",
  2919. "slevomat/coding-standard": "^6.3",
  2920. "squizlabs/php_codesniffer": "^3.5",
  2921. "vimeo/psalm": "^4.4"
  2922. },
  2923. "type": "library",
  2924. "autoload": {
  2925. "psr-4": {
  2926. "Ramsey\\Collection\\": "src/"
  2927. }
  2928. },
  2929. "notification-url": "https://packagist.org/downloads/",
  2930. "license": [
  2931. "MIT"
  2932. ],
  2933. "authors": [
  2934. {
  2935. "name": "Ben Ramsey",
  2936. "email": "ben@benramsey.com",
  2937. "homepage": "https://benramsey.com"
  2938. }
  2939. ],
  2940. "description": "A PHP library for representing and manipulating collections.",
  2941. "keywords": [
  2942. "array",
  2943. "collection",
  2944. "hash",
  2945. "map",
  2946. "queue",
  2947. "set"
  2948. ],
  2949. "support": {
  2950. "issues": "https://github.com/ramsey/collection/issues",
  2951. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  2952. },
  2953. "funding": [
  2954. {
  2955. "url": "https://github.com/ramsey",
  2956. "type": "github"
  2957. },
  2958. {
  2959. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2960. "type": "tidelift"
  2961. }
  2962. ],
  2963. "time": "2021-10-10T03:01:02+00:00"
  2964. },
  2965. {
  2966. "name": "ramsey/uuid",
  2967. "version": "4.2.3",
  2968. "source": {
  2969. "type": "git",
  2970. "url": "https://github.com/ramsey/uuid.git",
  2971. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2972. },
  2973. "dist": {
  2974. "type": "zip",
  2975. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2976. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2977. "shasum": ""
  2978. },
  2979. "require": {
  2980. "brick/math": "^0.8 || ^0.9",
  2981. "ext-json": "*",
  2982. "php": "^7.2 || ^8.0",
  2983. "ramsey/collection": "^1.0",
  2984. "symfony/polyfill-ctype": "^1.8",
  2985. "symfony/polyfill-php80": "^1.14"
  2986. },
  2987. "replace": {
  2988. "rhumsaa/uuid": "self.version"
  2989. },
  2990. "require-dev": {
  2991. "captainhook/captainhook": "^5.10",
  2992. "captainhook/plugin-composer": "^5.3",
  2993. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2994. "doctrine/annotations": "^1.8",
  2995. "ergebnis/composer-normalize": "^2.15",
  2996. "mockery/mockery": "^1.3",
  2997. "moontoast/math": "^1.1",
  2998. "paragonie/random-lib": "^2",
  2999. "php-mock/php-mock": "^2.2",
  3000. "php-mock/php-mock-mockery": "^1.3",
  3001. "php-parallel-lint/php-parallel-lint": "^1.1",
  3002. "phpbench/phpbench": "^1.0",
  3003. "phpstan/extension-installer": "^1.0",
  3004. "phpstan/phpstan": "^0.12",
  3005. "phpstan/phpstan-mockery": "^0.12",
  3006. "phpstan/phpstan-phpunit": "^0.12",
  3007. "phpunit/phpunit": "^8.5 || ^9",
  3008. "slevomat/coding-standard": "^7.0",
  3009. "squizlabs/php_codesniffer": "^3.5",
  3010. "vimeo/psalm": "^4.9"
  3011. },
  3012. "suggest": {
  3013. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3014. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3015. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3016. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3017. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3018. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3019. },
  3020. "type": "library",
  3021. "extra": {
  3022. "branch-alias": {
  3023. "dev-main": "4.x-dev"
  3024. },
  3025. "captainhook": {
  3026. "force-install": true
  3027. }
  3028. },
  3029. "autoload": {
  3030. "files": [
  3031. "src/functions.php"
  3032. ],
  3033. "psr-4": {
  3034. "Ramsey\\Uuid\\": "src/"
  3035. }
  3036. },
  3037. "notification-url": "https://packagist.org/downloads/",
  3038. "license": [
  3039. "MIT"
  3040. ],
  3041. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3042. "keywords": [
  3043. "guid",
  3044. "identifier",
  3045. "uuid"
  3046. ],
  3047. "support": {
  3048. "issues": "https://github.com/ramsey/uuid/issues",
  3049. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  3050. },
  3051. "funding": [
  3052. {
  3053. "url": "https://github.com/ramsey",
  3054. "type": "github"
  3055. },
  3056. {
  3057. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3058. "type": "tidelift"
  3059. }
  3060. ],
  3061. "time": "2021-09-25T23:10:38+00:00"
  3062. },
  3063. {
  3064. "name": "swiftmailer/swiftmailer",
  3065. "version": "v6.3.0",
  3066. "source": {
  3067. "type": "git",
  3068. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3069. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  3070. },
  3071. "dist": {
  3072. "type": "zip",
  3073. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3074. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3075. "shasum": ""
  3076. },
  3077. "require": {
  3078. "egulias/email-validator": "^2.0|^3.1",
  3079. "php": ">=7.0.0",
  3080. "symfony/polyfill-iconv": "^1.0",
  3081. "symfony/polyfill-intl-idn": "^1.10",
  3082. "symfony/polyfill-mbstring": "^1.0"
  3083. },
  3084. "require-dev": {
  3085. "mockery/mockery": "^1.0",
  3086. "symfony/phpunit-bridge": "^4.4|^5.4"
  3087. },
  3088. "suggest": {
  3089. "ext-intl": "Needed to support internationalized email addresses"
  3090. },
  3091. "type": "library",
  3092. "extra": {
  3093. "branch-alias": {
  3094. "dev-master": "6.2-dev"
  3095. }
  3096. },
  3097. "autoload": {
  3098. "files": [
  3099. "lib/swift_required.php"
  3100. ]
  3101. },
  3102. "notification-url": "https://packagist.org/downloads/",
  3103. "license": [
  3104. "MIT"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Chris Corbyn"
  3109. },
  3110. {
  3111. "name": "Fabien Potencier",
  3112. "email": "fabien@symfony.com"
  3113. }
  3114. ],
  3115. "description": "Swiftmailer, free feature-rich PHP mailer",
  3116. "homepage": "https://swiftmailer.symfony.com",
  3117. "keywords": [
  3118. "email",
  3119. "mail",
  3120. "mailer"
  3121. ],
  3122. "support": {
  3123. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  3124. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  3125. },
  3126. "funding": [
  3127. {
  3128. "url": "https://github.com/fabpot",
  3129. "type": "github"
  3130. },
  3131. {
  3132. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  3133. "type": "tidelift"
  3134. }
  3135. ],
  3136. "abandoned": "symfony/mailer",
  3137. "time": "2021-10-18T15:26:12+00:00"
  3138. },
  3139. {
  3140. "name": "symfony/console",
  3141. "version": "v5.4.9",
  3142. "source": {
  3143. "type": "git",
  3144. "url": "https://github.com/symfony/console.git",
  3145. "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb"
  3146. },
  3147. "dist": {
  3148. "type": "zip",
  3149. "url": "https://api.github.com/repos/symfony/console/zipball/829d5d1bf60b2efeb0887b7436873becc71a45eb",
  3150. "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb",
  3151. "shasum": ""
  3152. },
  3153. "require": {
  3154. "php": ">=7.2.5",
  3155. "symfony/deprecation-contracts": "^2.1|^3",
  3156. "symfony/polyfill-mbstring": "~1.0",
  3157. "symfony/polyfill-php73": "^1.9",
  3158. "symfony/polyfill-php80": "^1.16",
  3159. "symfony/service-contracts": "^1.1|^2|^3",
  3160. "symfony/string": "^5.1|^6.0"
  3161. },
  3162. "conflict": {
  3163. "psr/log": ">=3",
  3164. "symfony/dependency-injection": "<4.4",
  3165. "symfony/dotenv": "<5.1",
  3166. "symfony/event-dispatcher": "<4.4",
  3167. "symfony/lock": "<4.4",
  3168. "symfony/process": "<4.4"
  3169. },
  3170. "provide": {
  3171. "psr/log-implementation": "1.0|2.0"
  3172. },
  3173. "require-dev": {
  3174. "psr/log": "^1|^2",
  3175. "symfony/config": "^4.4|^5.0|^6.0",
  3176. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3177. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3178. "symfony/lock": "^4.4|^5.0|^6.0",
  3179. "symfony/process": "^4.4|^5.0|^6.0",
  3180. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3181. },
  3182. "suggest": {
  3183. "psr/log": "For using the console logger",
  3184. "symfony/event-dispatcher": "",
  3185. "symfony/lock": "",
  3186. "symfony/process": ""
  3187. },
  3188. "type": "library",
  3189. "autoload": {
  3190. "psr-4": {
  3191. "Symfony\\Component\\Console\\": ""
  3192. },
  3193. "exclude-from-classmap": [
  3194. "/Tests/"
  3195. ]
  3196. },
  3197. "notification-url": "https://packagist.org/downloads/",
  3198. "license": [
  3199. "MIT"
  3200. ],
  3201. "authors": [
  3202. {
  3203. "name": "Fabien Potencier",
  3204. "email": "fabien@symfony.com"
  3205. },
  3206. {
  3207. "name": "Symfony Community",
  3208. "homepage": "https://symfony.com/contributors"
  3209. }
  3210. ],
  3211. "description": "Eases the creation of beautiful and testable command line interfaces",
  3212. "homepage": "https://symfony.com",
  3213. "keywords": [
  3214. "cli",
  3215. "command line",
  3216. "console",
  3217. "terminal"
  3218. ],
  3219. "support": {
  3220. "source": "https://github.com/symfony/console/tree/v5.4.9"
  3221. },
  3222. "funding": [
  3223. {
  3224. "url": "https://symfony.com/sponsor",
  3225. "type": "custom"
  3226. },
  3227. {
  3228. "url": "https://github.com/fabpot",
  3229. "type": "github"
  3230. },
  3231. {
  3232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3233. "type": "tidelift"
  3234. }
  3235. ],
  3236. "time": "2022-05-18T06:17:34+00:00"
  3237. },
  3238. {
  3239. "name": "symfony/css-selector",
  3240. "version": "v5.4.3",
  3241. "source": {
  3242. "type": "git",
  3243. "url": "https://github.com/symfony/css-selector.git",
  3244. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  3245. },
  3246. "dist": {
  3247. "type": "zip",
  3248. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  3249. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  3250. "shasum": ""
  3251. },
  3252. "require": {
  3253. "php": ">=7.2.5",
  3254. "symfony/polyfill-php80": "^1.16"
  3255. },
  3256. "type": "library",
  3257. "autoload": {
  3258. "psr-4": {
  3259. "Symfony\\Component\\CssSelector\\": ""
  3260. },
  3261. "exclude-from-classmap": [
  3262. "/Tests/"
  3263. ]
  3264. },
  3265. "notification-url": "https://packagist.org/downloads/",
  3266. "license": [
  3267. "MIT"
  3268. ],
  3269. "authors": [
  3270. {
  3271. "name": "Fabien Potencier",
  3272. "email": "fabien@symfony.com"
  3273. },
  3274. {
  3275. "name": "Jean-François Simon",
  3276. "email": "jeanfrancois.simon@sensiolabs.com"
  3277. },
  3278. {
  3279. "name": "Symfony Community",
  3280. "homepage": "https://symfony.com/contributors"
  3281. }
  3282. ],
  3283. "description": "Converts CSS selectors to XPath expressions",
  3284. "homepage": "https://symfony.com",
  3285. "support": {
  3286. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  3287. },
  3288. "funding": [
  3289. {
  3290. "url": "https://symfony.com/sponsor",
  3291. "type": "custom"
  3292. },
  3293. {
  3294. "url": "https://github.com/fabpot",
  3295. "type": "github"
  3296. },
  3297. {
  3298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3299. "type": "tidelift"
  3300. }
  3301. ],
  3302. "time": "2022-01-02T09:53:40+00:00"
  3303. },
  3304. {
  3305. "name": "symfony/deprecation-contracts",
  3306. "version": "v2.5.1",
  3307. "source": {
  3308. "type": "git",
  3309. "url": "https://github.com/symfony/deprecation-contracts.git",
  3310. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3311. },
  3312. "dist": {
  3313. "type": "zip",
  3314. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3315. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3316. "shasum": ""
  3317. },
  3318. "require": {
  3319. "php": ">=7.1"
  3320. },
  3321. "type": "library",
  3322. "extra": {
  3323. "branch-alias": {
  3324. "dev-main": "2.5-dev"
  3325. },
  3326. "thanks": {
  3327. "name": "symfony/contracts",
  3328. "url": "https://github.com/symfony/contracts"
  3329. }
  3330. },
  3331. "autoload": {
  3332. "files": [
  3333. "function.php"
  3334. ]
  3335. },
  3336. "notification-url": "https://packagist.org/downloads/",
  3337. "license": [
  3338. "MIT"
  3339. ],
  3340. "authors": [
  3341. {
  3342. "name": "Nicolas Grekas",
  3343. "email": "p@tchwork.com"
  3344. },
  3345. {
  3346. "name": "Symfony Community",
  3347. "homepage": "https://symfony.com/contributors"
  3348. }
  3349. ],
  3350. "description": "A generic function and convention to trigger deprecation notices",
  3351. "homepage": "https://symfony.com",
  3352. "support": {
  3353. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
  3354. },
  3355. "funding": [
  3356. {
  3357. "url": "https://symfony.com/sponsor",
  3358. "type": "custom"
  3359. },
  3360. {
  3361. "url": "https://github.com/fabpot",
  3362. "type": "github"
  3363. },
  3364. {
  3365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3366. "type": "tidelift"
  3367. }
  3368. ],
  3369. "time": "2022-01-02T09:53:40+00:00"
  3370. },
  3371. {
  3372. "name": "symfony/error-handler",
  3373. "version": "v5.4.9",
  3374. "source": {
  3375. "type": "git",
  3376. "url": "https://github.com/symfony/error-handler.git",
  3377. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  3378. },
  3379. "dist": {
  3380. "type": "zip",
  3381. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  3382. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  3383. "shasum": ""
  3384. },
  3385. "require": {
  3386. "php": ">=7.2.5",
  3387. "psr/log": "^1|^2|^3",
  3388. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3389. },
  3390. "require-dev": {
  3391. "symfony/deprecation-contracts": "^2.1|^3",
  3392. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3393. "symfony/serializer": "^4.4|^5.0|^6.0"
  3394. },
  3395. "bin": [
  3396. "Resources/bin/patch-type-declarations"
  3397. ],
  3398. "type": "library",
  3399. "autoload": {
  3400. "psr-4": {
  3401. "Symfony\\Component\\ErrorHandler\\": ""
  3402. },
  3403. "exclude-from-classmap": [
  3404. "/Tests/"
  3405. ]
  3406. },
  3407. "notification-url": "https://packagist.org/downloads/",
  3408. "license": [
  3409. "MIT"
  3410. ],
  3411. "authors": [
  3412. {
  3413. "name": "Fabien Potencier",
  3414. "email": "fabien@symfony.com"
  3415. },
  3416. {
  3417. "name": "Symfony Community",
  3418. "homepage": "https://symfony.com/contributors"
  3419. }
  3420. ],
  3421. "description": "Provides tools to manage errors and ease debugging PHP code",
  3422. "homepage": "https://symfony.com",
  3423. "support": {
  3424. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  3425. },
  3426. "funding": [
  3427. {
  3428. "url": "https://symfony.com/sponsor",
  3429. "type": "custom"
  3430. },
  3431. {
  3432. "url": "https://github.com/fabpot",
  3433. "type": "github"
  3434. },
  3435. {
  3436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3437. "type": "tidelift"
  3438. }
  3439. ],
  3440. "time": "2022-05-21T13:57:48+00:00"
  3441. },
  3442. {
  3443. "name": "symfony/event-dispatcher",
  3444. "version": "v5.4.9",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://github.com/symfony/event-dispatcher.git",
  3448. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3453. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3454. "shasum": ""
  3455. },
  3456. "require": {
  3457. "php": ">=7.2.5",
  3458. "symfony/deprecation-contracts": "^2.1|^3",
  3459. "symfony/event-dispatcher-contracts": "^2|^3",
  3460. "symfony/polyfill-php80": "^1.16"
  3461. },
  3462. "conflict": {
  3463. "symfony/dependency-injection": "<4.4"
  3464. },
  3465. "provide": {
  3466. "psr/event-dispatcher-implementation": "1.0",
  3467. "symfony/event-dispatcher-implementation": "2.0"
  3468. },
  3469. "require-dev": {
  3470. "psr/log": "^1|^2|^3",
  3471. "symfony/config": "^4.4|^5.0|^6.0",
  3472. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3473. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3474. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3475. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3476. "symfony/service-contracts": "^1.1|^2|^3",
  3477. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3478. },
  3479. "suggest": {
  3480. "symfony/dependency-injection": "",
  3481. "symfony/http-kernel": ""
  3482. },
  3483. "type": "library",
  3484. "autoload": {
  3485. "psr-4": {
  3486. "Symfony\\Component\\EventDispatcher\\": ""
  3487. },
  3488. "exclude-from-classmap": [
  3489. "/Tests/"
  3490. ]
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Fabien Potencier",
  3499. "email": "fabien@symfony.com"
  3500. },
  3501. {
  3502. "name": "Symfony Community",
  3503. "homepage": "https://symfony.com/contributors"
  3504. }
  3505. ],
  3506. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3507. "homepage": "https://symfony.com",
  3508. "support": {
  3509. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3510. },
  3511. "funding": [
  3512. {
  3513. "url": "https://symfony.com/sponsor",
  3514. "type": "custom"
  3515. },
  3516. {
  3517. "url": "https://github.com/fabpot",
  3518. "type": "github"
  3519. },
  3520. {
  3521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3522. "type": "tidelift"
  3523. }
  3524. ],
  3525. "time": "2022-05-05T16:45:39+00:00"
  3526. },
  3527. {
  3528. "name": "symfony/event-dispatcher-contracts",
  3529. "version": "v2.5.1",
  3530. "source": {
  3531. "type": "git",
  3532. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3533. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3534. },
  3535. "dist": {
  3536. "type": "zip",
  3537. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3538. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3539. "shasum": ""
  3540. },
  3541. "require": {
  3542. "php": ">=7.2.5",
  3543. "psr/event-dispatcher": "^1"
  3544. },
  3545. "suggest": {
  3546. "symfony/event-dispatcher-implementation": ""
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "branch-alias": {
  3551. "dev-main": "2.5-dev"
  3552. },
  3553. "thanks": {
  3554. "name": "symfony/contracts",
  3555. "url": "https://github.com/symfony/contracts"
  3556. }
  3557. },
  3558. "autoload": {
  3559. "psr-4": {
  3560. "Symfony\\Contracts\\EventDispatcher\\": ""
  3561. }
  3562. },
  3563. "notification-url": "https://packagist.org/downloads/",
  3564. "license": [
  3565. "MIT"
  3566. ],
  3567. "authors": [
  3568. {
  3569. "name": "Nicolas Grekas",
  3570. "email": "p@tchwork.com"
  3571. },
  3572. {
  3573. "name": "Symfony Community",
  3574. "homepage": "https://symfony.com/contributors"
  3575. }
  3576. ],
  3577. "description": "Generic abstractions related to dispatching event",
  3578. "homepage": "https://symfony.com",
  3579. "keywords": [
  3580. "abstractions",
  3581. "contracts",
  3582. "decoupling",
  3583. "interfaces",
  3584. "interoperability",
  3585. "standards"
  3586. ],
  3587. "support": {
  3588. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.1"
  3589. },
  3590. "funding": [
  3591. {
  3592. "url": "https://symfony.com/sponsor",
  3593. "type": "custom"
  3594. },
  3595. {
  3596. "url": "https://github.com/fabpot",
  3597. "type": "github"
  3598. },
  3599. {
  3600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3601. "type": "tidelift"
  3602. }
  3603. ],
  3604. "time": "2022-01-02T09:53:40+00:00"
  3605. },
  3606. {
  3607. "name": "symfony/finder",
  3608. "version": "v5.4.8",
  3609. "source": {
  3610. "type": "git",
  3611. "url": "https://github.com/symfony/finder.git",
  3612. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  3613. },
  3614. "dist": {
  3615. "type": "zip",
  3616. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  3617. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  3618. "shasum": ""
  3619. },
  3620. "require": {
  3621. "php": ">=7.2.5",
  3622. "symfony/deprecation-contracts": "^2.1|^3",
  3623. "symfony/polyfill-php80": "^1.16"
  3624. },
  3625. "type": "library",
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Symfony\\Component\\Finder\\": ""
  3629. },
  3630. "exclude-from-classmap": [
  3631. "/Tests/"
  3632. ]
  3633. },
  3634. "notification-url": "https://packagist.org/downloads/",
  3635. "license": [
  3636. "MIT"
  3637. ],
  3638. "authors": [
  3639. {
  3640. "name": "Fabien Potencier",
  3641. "email": "fabien@symfony.com"
  3642. },
  3643. {
  3644. "name": "Symfony Community",
  3645. "homepage": "https://symfony.com/contributors"
  3646. }
  3647. ],
  3648. "description": "Finds files and directories via an intuitive fluent interface",
  3649. "homepage": "https://symfony.com",
  3650. "support": {
  3651. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  3652. },
  3653. "funding": [
  3654. {
  3655. "url": "https://symfony.com/sponsor",
  3656. "type": "custom"
  3657. },
  3658. {
  3659. "url": "https://github.com/fabpot",
  3660. "type": "github"
  3661. },
  3662. {
  3663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3664. "type": "tidelift"
  3665. }
  3666. ],
  3667. "time": "2022-04-15T08:07:45+00:00"
  3668. },
  3669. {
  3670. "name": "symfony/http-foundation",
  3671. "version": "v5.4.9",
  3672. "source": {
  3673. "type": "git",
  3674. "url": "https://github.com/symfony/http-foundation.git",
  3675. "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522"
  3676. },
  3677. "dist": {
  3678. "type": "zip",
  3679. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6b0d0e4aca38d57605dcd11e2416994b38774522",
  3680. "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522",
  3681. "shasum": ""
  3682. },
  3683. "require": {
  3684. "php": ">=7.2.5",
  3685. "symfony/deprecation-contracts": "^2.1|^3",
  3686. "symfony/polyfill-mbstring": "~1.1",
  3687. "symfony/polyfill-php80": "^1.16"
  3688. },
  3689. "require-dev": {
  3690. "predis/predis": "~1.0",
  3691. "symfony/cache": "^4.4|^5.0|^6.0",
  3692. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3693. "symfony/mime": "^4.4|^5.0|^6.0"
  3694. },
  3695. "suggest": {
  3696. "symfony/mime": "To use the file extension guesser"
  3697. },
  3698. "type": "library",
  3699. "autoload": {
  3700. "psr-4": {
  3701. "Symfony\\Component\\HttpFoundation\\": ""
  3702. },
  3703. "exclude-from-classmap": [
  3704. "/Tests/"
  3705. ]
  3706. },
  3707. "notification-url": "https://packagist.org/downloads/",
  3708. "license": [
  3709. "MIT"
  3710. ],
  3711. "authors": [
  3712. {
  3713. "name": "Fabien Potencier",
  3714. "email": "fabien@symfony.com"
  3715. },
  3716. {
  3717. "name": "Symfony Community",
  3718. "homepage": "https://symfony.com/contributors"
  3719. }
  3720. ],
  3721. "description": "Defines an object-oriented layer for the HTTP specification",
  3722. "homepage": "https://symfony.com",
  3723. "support": {
  3724. "source": "https://github.com/symfony/http-foundation/tree/v5.4.9"
  3725. },
  3726. "funding": [
  3727. {
  3728. "url": "https://symfony.com/sponsor",
  3729. "type": "custom"
  3730. },
  3731. {
  3732. "url": "https://github.com/fabpot",
  3733. "type": "github"
  3734. },
  3735. {
  3736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3737. "type": "tidelift"
  3738. }
  3739. ],
  3740. "time": "2022-05-17T15:07:29+00:00"
  3741. },
  3742. {
  3743. "name": "symfony/http-kernel",
  3744. "version": "v5.4.9",
  3745. "source": {
  3746. "type": "git",
  3747. "url": "https://github.com/symfony/http-kernel.git",
  3748. "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8"
  3749. },
  3750. "dist": {
  3751. "type": "zip",
  3752. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
  3753. "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
  3754. "shasum": ""
  3755. },
  3756. "require": {
  3757. "php": ">=7.2.5",
  3758. "psr/log": "^1|^2",
  3759. "symfony/deprecation-contracts": "^2.1|^3",
  3760. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3761. "symfony/event-dispatcher": "^5.0|^6.0",
  3762. "symfony/http-foundation": "^5.3.7|^6.0",
  3763. "symfony/polyfill-ctype": "^1.8",
  3764. "symfony/polyfill-php73": "^1.9",
  3765. "symfony/polyfill-php80": "^1.16"
  3766. },
  3767. "conflict": {
  3768. "symfony/browser-kit": "<5.4",
  3769. "symfony/cache": "<5.0",
  3770. "symfony/config": "<5.0",
  3771. "symfony/console": "<4.4",
  3772. "symfony/dependency-injection": "<5.3",
  3773. "symfony/doctrine-bridge": "<5.0",
  3774. "symfony/form": "<5.0",
  3775. "symfony/http-client": "<5.0",
  3776. "symfony/mailer": "<5.0",
  3777. "symfony/messenger": "<5.0",
  3778. "symfony/translation": "<5.0",
  3779. "symfony/twig-bridge": "<5.0",
  3780. "symfony/validator": "<5.0",
  3781. "twig/twig": "<2.13"
  3782. },
  3783. "provide": {
  3784. "psr/log-implementation": "1.0|2.0"
  3785. },
  3786. "require-dev": {
  3787. "psr/cache": "^1.0|^2.0|^3.0",
  3788. "symfony/browser-kit": "^5.4|^6.0",
  3789. "symfony/config": "^5.0|^6.0",
  3790. "symfony/console": "^4.4|^5.0|^6.0",
  3791. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3792. "symfony/dependency-injection": "^5.3|^6.0",
  3793. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3794. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3795. "symfony/finder": "^4.4|^5.0|^6.0",
  3796. "symfony/http-client-contracts": "^1.1|^2|^3",
  3797. "symfony/process": "^4.4|^5.0|^6.0",
  3798. "symfony/routing": "^4.4|^5.0|^6.0",
  3799. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3800. "symfony/translation": "^4.4|^5.0|^6.0",
  3801. "symfony/translation-contracts": "^1.1|^2|^3",
  3802. "twig/twig": "^2.13|^3.0.4"
  3803. },
  3804. "suggest": {
  3805. "symfony/browser-kit": "",
  3806. "symfony/config": "",
  3807. "symfony/console": "",
  3808. "symfony/dependency-injection": ""
  3809. },
  3810. "type": "library",
  3811. "autoload": {
  3812. "psr-4": {
  3813. "Symfony\\Component\\HttpKernel\\": ""
  3814. },
  3815. "exclude-from-classmap": [
  3816. "/Tests/"
  3817. ]
  3818. },
  3819. "notification-url": "https://packagist.org/downloads/",
  3820. "license": [
  3821. "MIT"
  3822. ],
  3823. "authors": [
  3824. {
  3825. "name": "Fabien Potencier",
  3826. "email": "fabien@symfony.com"
  3827. },
  3828. {
  3829. "name": "Symfony Community",
  3830. "homepage": "https://symfony.com/contributors"
  3831. }
  3832. ],
  3833. "description": "Provides a structured process for converting a Request into a Response",
  3834. "homepage": "https://symfony.com",
  3835. "support": {
  3836. "source": "https://github.com/symfony/http-kernel/tree/v5.4.9"
  3837. },
  3838. "funding": [
  3839. {
  3840. "url": "https://symfony.com/sponsor",
  3841. "type": "custom"
  3842. },
  3843. {
  3844. "url": "https://github.com/fabpot",
  3845. "type": "github"
  3846. },
  3847. {
  3848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3849. "type": "tidelift"
  3850. }
  3851. ],
  3852. "time": "2022-05-27T07:09:08+00:00"
  3853. },
  3854. {
  3855. "name": "symfony/mime",
  3856. "version": "v5.4.9",
  3857. "source": {
  3858. "type": "git",
  3859. "url": "https://github.com/symfony/mime.git",
  3860. "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e"
  3861. },
  3862. "dist": {
  3863. "type": "zip",
  3864. "url": "https://api.github.com/repos/symfony/mime/zipball/2b3802a24e48d0cfccf885173d2aac91e73df92e",
  3865. "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e",
  3866. "shasum": ""
  3867. },
  3868. "require": {
  3869. "php": ">=7.2.5",
  3870. "symfony/deprecation-contracts": "^2.1|^3",
  3871. "symfony/polyfill-intl-idn": "^1.10",
  3872. "symfony/polyfill-mbstring": "^1.0",
  3873. "symfony/polyfill-php80": "^1.16"
  3874. },
  3875. "conflict": {
  3876. "egulias/email-validator": "~3.0.0",
  3877. "phpdocumentor/reflection-docblock": "<3.2.2",
  3878. "phpdocumentor/type-resolver": "<1.4.0",
  3879. "symfony/mailer": "<4.4"
  3880. },
  3881. "require-dev": {
  3882. "egulias/email-validator": "^2.1.10|^3.1",
  3883. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3884. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3885. "symfony/property-access": "^4.4|^5.1|^6.0",
  3886. "symfony/property-info": "^4.4|^5.1|^6.0",
  3887. "symfony/serializer": "^5.2|^6.0"
  3888. },
  3889. "type": "library",
  3890. "autoload": {
  3891. "psr-4": {
  3892. "Symfony\\Component\\Mime\\": ""
  3893. },
  3894. "exclude-from-classmap": [
  3895. "/Tests/"
  3896. ]
  3897. },
  3898. "notification-url": "https://packagist.org/downloads/",
  3899. "license": [
  3900. "MIT"
  3901. ],
  3902. "authors": [
  3903. {
  3904. "name": "Fabien Potencier",
  3905. "email": "fabien@symfony.com"
  3906. },
  3907. {
  3908. "name": "Symfony Community",
  3909. "homepage": "https://symfony.com/contributors"
  3910. }
  3911. ],
  3912. "description": "Allows manipulating MIME messages",
  3913. "homepage": "https://symfony.com",
  3914. "keywords": [
  3915. "mime",
  3916. "mime-type"
  3917. ],
  3918. "support": {
  3919. "source": "https://github.com/symfony/mime/tree/v5.4.9"
  3920. },
  3921. "funding": [
  3922. {
  3923. "url": "https://symfony.com/sponsor",
  3924. "type": "custom"
  3925. },
  3926. {
  3927. "url": "https://github.com/fabpot",
  3928. "type": "github"
  3929. },
  3930. {
  3931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3932. "type": "tidelift"
  3933. }
  3934. ],
  3935. "time": "2022-05-21T10:24:18+00:00"
  3936. },
  3937. {
  3938. "name": "symfony/polyfill-ctype",
  3939. "version": "v1.26.0",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/symfony/polyfill-ctype.git",
  3943. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3948. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3949. "shasum": ""
  3950. },
  3951. "require": {
  3952. "php": ">=7.1"
  3953. },
  3954. "provide": {
  3955. "ext-ctype": "*"
  3956. },
  3957. "suggest": {
  3958. "ext-ctype": "For best performance"
  3959. },
  3960. "type": "library",
  3961. "extra": {
  3962. "branch-alias": {
  3963. "dev-main": "1.26-dev"
  3964. },
  3965. "thanks": {
  3966. "name": "symfony/polyfill",
  3967. "url": "https://github.com/symfony/polyfill"
  3968. }
  3969. },
  3970. "autoload": {
  3971. "files": [
  3972. "bootstrap.php"
  3973. ],
  3974. "psr-4": {
  3975. "Symfony\\Polyfill\\Ctype\\": ""
  3976. }
  3977. },
  3978. "notification-url": "https://packagist.org/downloads/",
  3979. "license": [
  3980. "MIT"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "Gert de Pagter",
  3985. "email": "BackEndTea@gmail.com"
  3986. },
  3987. {
  3988. "name": "Symfony Community",
  3989. "homepage": "https://symfony.com/contributors"
  3990. }
  3991. ],
  3992. "description": "Symfony polyfill for ctype functions",
  3993. "homepage": "https://symfony.com",
  3994. "keywords": [
  3995. "compatibility",
  3996. "ctype",
  3997. "polyfill",
  3998. "portable"
  3999. ],
  4000. "support": {
  4001. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  4002. },
  4003. "funding": [
  4004. {
  4005. "url": "https://symfony.com/sponsor",
  4006. "type": "custom"
  4007. },
  4008. {
  4009. "url": "https://github.com/fabpot",
  4010. "type": "github"
  4011. },
  4012. {
  4013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4014. "type": "tidelift"
  4015. }
  4016. ],
  4017. "time": "2022-05-24T11:49:31+00:00"
  4018. },
  4019. {
  4020. "name": "symfony/polyfill-iconv",
  4021. "version": "v1.26.0",
  4022. "source": {
  4023. "type": "git",
  4024. "url": "https://github.com/symfony/polyfill-iconv.git",
  4025. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  4026. },
  4027. "dist": {
  4028. "type": "zip",
  4029. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  4030. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  4031. "shasum": ""
  4032. },
  4033. "require": {
  4034. "php": ">=7.1"
  4035. },
  4036. "provide": {
  4037. "ext-iconv": "*"
  4038. },
  4039. "suggest": {
  4040. "ext-iconv": "For best performance"
  4041. },
  4042. "type": "library",
  4043. "extra": {
  4044. "branch-alias": {
  4045. "dev-main": "1.26-dev"
  4046. },
  4047. "thanks": {
  4048. "name": "symfony/polyfill",
  4049. "url": "https://github.com/symfony/polyfill"
  4050. }
  4051. },
  4052. "autoload": {
  4053. "files": [
  4054. "bootstrap.php"
  4055. ],
  4056. "psr-4": {
  4057. "Symfony\\Polyfill\\Iconv\\": ""
  4058. }
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "Nicolas Grekas",
  4067. "email": "p@tchwork.com"
  4068. },
  4069. {
  4070. "name": "Symfony Community",
  4071. "homepage": "https://symfony.com/contributors"
  4072. }
  4073. ],
  4074. "description": "Symfony polyfill for the Iconv extension",
  4075. "homepage": "https://symfony.com",
  4076. "keywords": [
  4077. "compatibility",
  4078. "iconv",
  4079. "polyfill",
  4080. "portable",
  4081. "shim"
  4082. ],
  4083. "support": {
  4084. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  4085. },
  4086. "funding": [
  4087. {
  4088. "url": "https://symfony.com/sponsor",
  4089. "type": "custom"
  4090. },
  4091. {
  4092. "url": "https://github.com/fabpot",
  4093. "type": "github"
  4094. },
  4095. {
  4096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4097. "type": "tidelift"
  4098. }
  4099. ],
  4100. "time": "2022-05-24T11:49:31+00:00"
  4101. },
  4102. {
  4103. "name": "symfony/polyfill-intl-grapheme",
  4104. "version": "v1.26.0",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4108. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  4113. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  4114. "shasum": ""
  4115. },
  4116. "require": {
  4117. "php": ">=7.1"
  4118. },
  4119. "suggest": {
  4120. "ext-intl": "For best performance"
  4121. },
  4122. "type": "library",
  4123. "extra": {
  4124. "branch-alias": {
  4125. "dev-main": "1.26-dev"
  4126. },
  4127. "thanks": {
  4128. "name": "symfony/polyfill",
  4129. "url": "https://github.com/symfony/polyfill"
  4130. }
  4131. },
  4132. "autoload": {
  4133. "files": [
  4134. "bootstrap.php"
  4135. ],
  4136. "psr-4": {
  4137. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4138. }
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Nicolas Grekas",
  4147. "email": "p@tchwork.com"
  4148. },
  4149. {
  4150. "name": "Symfony Community",
  4151. "homepage": "https://symfony.com/contributors"
  4152. }
  4153. ],
  4154. "description": "Symfony polyfill for intl's grapheme_* functions",
  4155. "homepage": "https://symfony.com",
  4156. "keywords": [
  4157. "compatibility",
  4158. "grapheme",
  4159. "intl",
  4160. "polyfill",
  4161. "portable",
  4162. "shim"
  4163. ],
  4164. "support": {
  4165. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  4166. },
  4167. "funding": [
  4168. {
  4169. "url": "https://symfony.com/sponsor",
  4170. "type": "custom"
  4171. },
  4172. {
  4173. "url": "https://github.com/fabpot",
  4174. "type": "github"
  4175. },
  4176. {
  4177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4178. "type": "tidelift"
  4179. }
  4180. ],
  4181. "time": "2022-05-24T11:49:31+00:00"
  4182. },
  4183. {
  4184. "name": "symfony/polyfill-intl-idn",
  4185. "version": "v1.26.0",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4189. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  4194. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "php": ">=7.1",
  4199. "symfony/polyfill-intl-normalizer": "^1.10",
  4200. "symfony/polyfill-php72": "^1.10"
  4201. },
  4202. "suggest": {
  4203. "ext-intl": "For best performance"
  4204. },
  4205. "type": "library",
  4206. "extra": {
  4207. "branch-alias": {
  4208. "dev-main": "1.26-dev"
  4209. },
  4210. "thanks": {
  4211. "name": "symfony/polyfill",
  4212. "url": "https://github.com/symfony/polyfill"
  4213. }
  4214. },
  4215. "autoload": {
  4216. "files": [
  4217. "bootstrap.php"
  4218. ],
  4219. "psr-4": {
  4220. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4221. }
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "MIT"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Laurent Bassin",
  4230. "email": "laurent@bassin.info"
  4231. },
  4232. {
  4233. "name": "Trevor Rowbotham",
  4234. "email": "trevor.rowbotham@pm.me"
  4235. },
  4236. {
  4237. "name": "Symfony Community",
  4238. "homepage": "https://symfony.com/contributors"
  4239. }
  4240. ],
  4241. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4242. "homepage": "https://symfony.com",
  4243. "keywords": [
  4244. "compatibility",
  4245. "idn",
  4246. "intl",
  4247. "polyfill",
  4248. "portable",
  4249. "shim"
  4250. ],
  4251. "support": {
  4252. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  4253. },
  4254. "funding": [
  4255. {
  4256. "url": "https://symfony.com/sponsor",
  4257. "type": "custom"
  4258. },
  4259. {
  4260. "url": "https://github.com/fabpot",
  4261. "type": "github"
  4262. },
  4263. {
  4264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4265. "type": "tidelift"
  4266. }
  4267. ],
  4268. "time": "2022-05-24T11:49:31+00:00"
  4269. },
  4270. {
  4271. "name": "symfony/polyfill-intl-normalizer",
  4272. "version": "v1.26.0",
  4273. "source": {
  4274. "type": "git",
  4275. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4276. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  4277. },
  4278. "dist": {
  4279. "type": "zip",
  4280. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  4281. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  4282. "shasum": ""
  4283. },
  4284. "require": {
  4285. "php": ">=7.1"
  4286. },
  4287. "suggest": {
  4288. "ext-intl": "For best performance"
  4289. },
  4290. "type": "library",
  4291. "extra": {
  4292. "branch-alias": {
  4293. "dev-main": "1.26-dev"
  4294. },
  4295. "thanks": {
  4296. "name": "symfony/polyfill",
  4297. "url": "https://github.com/symfony/polyfill"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "files": [
  4302. "bootstrap.php"
  4303. ],
  4304. "psr-4": {
  4305. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4306. },
  4307. "classmap": [
  4308. "Resources/stubs"
  4309. ]
  4310. },
  4311. "notification-url": "https://packagist.org/downloads/",
  4312. "license": [
  4313. "MIT"
  4314. ],
  4315. "authors": [
  4316. {
  4317. "name": "Nicolas Grekas",
  4318. "email": "p@tchwork.com"
  4319. },
  4320. {
  4321. "name": "Symfony Community",
  4322. "homepage": "https://symfony.com/contributors"
  4323. }
  4324. ],
  4325. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4326. "homepage": "https://symfony.com",
  4327. "keywords": [
  4328. "compatibility",
  4329. "intl",
  4330. "normalizer",
  4331. "polyfill",
  4332. "portable",
  4333. "shim"
  4334. ],
  4335. "support": {
  4336. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  4337. },
  4338. "funding": [
  4339. {
  4340. "url": "https://symfony.com/sponsor",
  4341. "type": "custom"
  4342. },
  4343. {
  4344. "url": "https://github.com/fabpot",
  4345. "type": "github"
  4346. },
  4347. {
  4348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4349. "type": "tidelift"
  4350. }
  4351. ],
  4352. "time": "2022-05-24T11:49:31+00:00"
  4353. },
  4354. {
  4355. "name": "symfony/polyfill-mbstring",
  4356. "version": "v1.26.0",
  4357. "source": {
  4358. "type": "git",
  4359. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4360. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  4361. },
  4362. "dist": {
  4363. "type": "zip",
  4364. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4365. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4366. "shasum": ""
  4367. },
  4368. "require": {
  4369. "php": ">=7.1"
  4370. },
  4371. "provide": {
  4372. "ext-mbstring": "*"
  4373. },
  4374. "suggest": {
  4375. "ext-mbstring": "For best performance"
  4376. },
  4377. "type": "library",
  4378. "extra": {
  4379. "branch-alias": {
  4380. "dev-main": "1.26-dev"
  4381. },
  4382. "thanks": {
  4383. "name": "symfony/polyfill",
  4384. "url": "https://github.com/symfony/polyfill"
  4385. }
  4386. },
  4387. "autoload": {
  4388. "files": [
  4389. "bootstrap.php"
  4390. ],
  4391. "psr-4": {
  4392. "Symfony\\Polyfill\\Mbstring\\": ""
  4393. }
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "Nicolas Grekas",
  4402. "email": "p@tchwork.com"
  4403. },
  4404. {
  4405. "name": "Symfony Community",
  4406. "homepage": "https://symfony.com/contributors"
  4407. }
  4408. ],
  4409. "description": "Symfony polyfill for the Mbstring extension",
  4410. "homepage": "https://symfony.com",
  4411. "keywords": [
  4412. "compatibility",
  4413. "mbstring",
  4414. "polyfill",
  4415. "portable",
  4416. "shim"
  4417. ],
  4418. "support": {
  4419. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  4420. },
  4421. "funding": [
  4422. {
  4423. "url": "https://symfony.com/sponsor",
  4424. "type": "custom"
  4425. },
  4426. {
  4427. "url": "https://github.com/fabpot",
  4428. "type": "github"
  4429. },
  4430. {
  4431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4432. "type": "tidelift"
  4433. }
  4434. ],
  4435. "time": "2022-05-24T11:49:31+00:00"
  4436. },
  4437. {
  4438. "name": "symfony/polyfill-php72",
  4439. "version": "v1.26.0",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://github.com/symfony/polyfill-php72.git",
  4443. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  4448. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  4449. "shasum": ""
  4450. },
  4451. "require": {
  4452. "php": ">=7.1"
  4453. },
  4454. "type": "library",
  4455. "extra": {
  4456. "branch-alias": {
  4457. "dev-main": "1.26-dev"
  4458. },
  4459. "thanks": {
  4460. "name": "symfony/polyfill",
  4461. "url": "https://github.com/symfony/polyfill"
  4462. }
  4463. },
  4464. "autoload": {
  4465. "files": [
  4466. "bootstrap.php"
  4467. ],
  4468. "psr-4": {
  4469. "Symfony\\Polyfill\\Php72\\": ""
  4470. }
  4471. },
  4472. "notification-url": "https://packagist.org/downloads/",
  4473. "license": [
  4474. "MIT"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "Nicolas Grekas",
  4479. "email": "p@tchwork.com"
  4480. },
  4481. {
  4482. "name": "Symfony Community",
  4483. "homepage": "https://symfony.com/contributors"
  4484. }
  4485. ],
  4486. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4487. "homepage": "https://symfony.com",
  4488. "keywords": [
  4489. "compatibility",
  4490. "polyfill",
  4491. "portable",
  4492. "shim"
  4493. ],
  4494. "support": {
  4495. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  4496. },
  4497. "funding": [
  4498. {
  4499. "url": "https://symfony.com/sponsor",
  4500. "type": "custom"
  4501. },
  4502. {
  4503. "url": "https://github.com/fabpot",
  4504. "type": "github"
  4505. },
  4506. {
  4507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4508. "type": "tidelift"
  4509. }
  4510. ],
  4511. "time": "2022-05-24T11:49:31+00:00"
  4512. },
  4513. {
  4514. "name": "symfony/polyfill-php73",
  4515. "version": "v1.26.0",
  4516. "source": {
  4517. "type": "git",
  4518. "url": "https://github.com/symfony/polyfill-php73.git",
  4519. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  4520. },
  4521. "dist": {
  4522. "type": "zip",
  4523. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4524. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4525. "shasum": ""
  4526. },
  4527. "require": {
  4528. "php": ">=7.1"
  4529. },
  4530. "type": "library",
  4531. "extra": {
  4532. "branch-alias": {
  4533. "dev-main": "1.26-dev"
  4534. },
  4535. "thanks": {
  4536. "name": "symfony/polyfill",
  4537. "url": "https://github.com/symfony/polyfill"
  4538. }
  4539. },
  4540. "autoload": {
  4541. "files": [
  4542. "bootstrap.php"
  4543. ],
  4544. "psr-4": {
  4545. "Symfony\\Polyfill\\Php73\\": ""
  4546. },
  4547. "classmap": [
  4548. "Resources/stubs"
  4549. ]
  4550. },
  4551. "notification-url": "https://packagist.org/downloads/",
  4552. "license": [
  4553. "MIT"
  4554. ],
  4555. "authors": [
  4556. {
  4557. "name": "Nicolas Grekas",
  4558. "email": "p@tchwork.com"
  4559. },
  4560. {
  4561. "name": "Symfony Community",
  4562. "homepage": "https://symfony.com/contributors"
  4563. }
  4564. ],
  4565. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4566. "homepage": "https://symfony.com",
  4567. "keywords": [
  4568. "compatibility",
  4569. "polyfill",
  4570. "portable",
  4571. "shim"
  4572. ],
  4573. "support": {
  4574. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  4575. },
  4576. "funding": [
  4577. {
  4578. "url": "https://symfony.com/sponsor",
  4579. "type": "custom"
  4580. },
  4581. {
  4582. "url": "https://github.com/fabpot",
  4583. "type": "github"
  4584. },
  4585. {
  4586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4587. "type": "tidelift"
  4588. }
  4589. ],
  4590. "time": "2022-05-24T11:49:31+00:00"
  4591. },
  4592. {
  4593. "name": "symfony/polyfill-php80",
  4594. "version": "v1.26.0",
  4595. "source": {
  4596. "type": "git",
  4597. "url": "https://github.com/symfony/polyfill-php80.git",
  4598. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  4599. },
  4600. "dist": {
  4601. "type": "zip",
  4602. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4603. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4604. "shasum": ""
  4605. },
  4606. "require": {
  4607. "php": ">=7.1"
  4608. },
  4609. "type": "library",
  4610. "extra": {
  4611. "branch-alias": {
  4612. "dev-main": "1.26-dev"
  4613. },
  4614. "thanks": {
  4615. "name": "symfony/polyfill",
  4616. "url": "https://github.com/symfony/polyfill"
  4617. }
  4618. },
  4619. "autoload": {
  4620. "files": [
  4621. "bootstrap.php"
  4622. ],
  4623. "psr-4": {
  4624. "Symfony\\Polyfill\\Php80\\": ""
  4625. },
  4626. "classmap": [
  4627. "Resources/stubs"
  4628. ]
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "Ion Bazan",
  4637. "email": "ion.bazan@gmail.com"
  4638. },
  4639. {
  4640. "name": "Nicolas Grekas",
  4641. "email": "p@tchwork.com"
  4642. },
  4643. {
  4644. "name": "Symfony Community",
  4645. "homepage": "https://symfony.com/contributors"
  4646. }
  4647. ],
  4648. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4649. "homepage": "https://symfony.com",
  4650. "keywords": [
  4651. "compatibility",
  4652. "polyfill",
  4653. "portable",
  4654. "shim"
  4655. ],
  4656. "support": {
  4657. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  4658. },
  4659. "funding": [
  4660. {
  4661. "url": "https://symfony.com/sponsor",
  4662. "type": "custom"
  4663. },
  4664. {
  4665. "url": "https://github.com/fabpot",
  4666. "type": "github"
  4667. },
  4668. {
  4669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4670. "type": "tidelift"
  4671. }
  4672. ],
  4673. "time": "2022-05-10T07:21:04+00:00"
  4674. },
  4675. {
  4676. "name": "symfony/polyfill-php81",
  4677. "version": "v1.26.0",
  4678. "source": {
  4679. "type": "git",
  4680. "url": "https://github.com/symfony/polyfill-php81.git",
  4681. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  4682. },
  4683. "dist": {
  4684. "type": "zip",
  4685. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  4686. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  4687. "shasum": ""
  4688. },
  4689. "require": {
  4690. "php": ">=7.1"
  4691. },
  4692. "type": "library",
  4693. "extra": {
  4694. "branch-alias": {
  4695. "dev-main": "1.26-dev"
  4696. },
  4697. "thanks": {
  4698. "name": "symfony/polyfill",
  4699. "url": "https://github.com/symfony/polyfill"
  4700. }
  4701. },
  4702. "autoload": {
  4703. "files": [
  4704. "bootstrap.php"
  4705. ],
  4706. "psr-4": {
  4707. "Symfony\\Polyfill\\Php81\\": ""
  4708. },
  4709. "classmap": [
  4710. "Resources/stubs"
  4711. ]
  4712. },
  4713. "notification-url": "https://packagist.org/downloads/",
  4714. "license": [
  4715. "MIT"
  4716. ],
  4717. "authors": [
  4718. {
  4719. "name": "Nicolas Grekas",
  4720. "email": "p@tchwork.com"
  4721. },
  4722. {
  4723. "name": "Symfony Community",
  4724. "homepage": "https://symfony.com/contributors"
  4725. }
  4726. ],
  4727. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4728. "homepage": "https://symfony.com",
  4729. "keywords": [
  4730. "compatibility",
  4731. "polyfill",
  4732. "portable",
  4733. "shim"
  4734. ],
  4735. "support": {
  4736. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  4737. },
  4738. "funding": [
  4739. {
  4740. "url": "https://symfony.com/sponsor",
  4741. "type": "custom"
  4742. },
  4743. {
  4744. "url": "https://github.com/fabpot",
  4745. "type": "github"
  4746. },
  4747. {
  4748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4749. "type": "tidelift"
  4750. }
  4751. ],
  4752. "time": "2022-05-24T11:49:31+00:00"
  4753. },
  4754. {
  4755. "name": "symfony/process",
  4756. "version": "v5.4.8",
  4757. "source": {
  4758. "type": "git",
  4759. "url": "https://github.com/symfony/process.git",
  4760. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  4761. },
  4762. "dist": {
  4763. "type": "zip",
  4764. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  4765. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  4766. "shasum": ""
  4767. },
  4768. "require": {
  4769. "php": ">=7.2.5",
  4770. "symfony/polyfill-php80": "^1.16"
  4771. },
  4772. "type": "library",
  4773. "autoload": {
  4774. "psr-4": {
  4775. "Symfony\\Component\\Process\\": ""
  4776. },
  4777. "exclude-from-classmap": [
  4778. "/Tests/"
  4779. ]
  4780. },
  4781. "notification-url": "https://packagist.org/downloads/",
  4782. "license": [
  4783. "MIT"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "Fabien Potencier",
  4788. "email": "fabien@symfony.com"
  4789. },
  4790. {
  4791. "name": "Symfony Community",
  4792. "homepage": "https://symfony.com/contributors"
  4793. }
  4794. ],
  4795. "description": "Executes commands in sub-processes",
  4796. "homepage": "https://symfony.com",
  4797. "support": {
  4798. "source": "https://github.com/symfony/process/tree/v5.4.8"
  4799. },
  4800. "funding": [
  4801. {
  4802. "url": "https://symfony.com/sponsor",
  4803. "type": "custom"
  4804. },
  4805. {
  4806. "url": "https://github.com/fabpot",
  4807. "type": "github"
  4808. },
  4809. {
  4810. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4811. "type": "tidelift"
  4812. }
  4813. ],
  4814. "time": "2022-04-08T05:07:18+00:00"
  4815. },
  4816. {
  4817. "name": "symfony/routing",
  4818. "version": "v5.4.8",
  4819. "source": {
  4820. "type": "git",
  4821. "url": "https://github.com/symfony/routing.git",
  4822. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  4823. },
  4824. "dist": {
  4825. "type": "zip",
  4826. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  4827. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  4828. "shasum": ""
  4829. },
  4830. "require": {
  4831. "php": ">=7.2.5",
  4832. "symfony/deprecation-contracts": "^2.1|^3",
  4833. "symfony/polyfill-php80": "^1.16"
  4834. },
  4835. "conflict": {
  4836. "doctrine/annotations": "<1.12",
  4837. "symfony/config": "<5.3",
  4838. "symfony/dependency-injection": "<4.4",
  4839. "symfony/yaml": "<4.4"
  4840. },
  4841. "require-dev": {
  4842. "doctrine/annotations": "^1.12",
  4843. "psr/log": "^1|^2|^3",
  4844. "symfony/config": "^5.3|^6.0",
  4845. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4846. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4847. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4848. "symfony/yaml": "^4.4|^5.0|^6.0"
  4849. },
  4850. "suggest": {
  4851. "symfony/config": "For using the all-in-one router or any loader",
  4852. "symfony/expression-language": "For using expression matching",
  4853. "symfony/http-foundation": "For using a Symfony Request object",
  4854. "symfony/yaml": "For using the YAML loader"
  4855. },
  4856. "type": "library",
  4857. "autoload": {
  4858. "psr-4": {
  4859. "Symfony\\Component\\Routing\\": ""
  4860. },
  4861. "exclude-from-classmap": [
  4862. "/Tests/"
  4863. ]
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "MIT"
  4868. ],
  4869. "authors": [
  4870. {
  4871. "name": "Fabien Potencier",
  4872. "email": "fabien@symfony.com"
  4873. },
  4874. {
  4875. "name": "Symfony Community",
  4876. "homepage": "https://symfony.com/contributors"
  4877. }
  4878. ],
  4879. "description": "Maps an HTTP request to a set of configuration variables",
  4880. "homepage": "https://symfony.com",
  4881. "keywords": [
  4882. "router",
  4883. "routing",
  4884. "uri",
  4885. "url"
  4886. ],
  4887. "support": {
  4888. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  4889. },
  4890. "funding": [
  4891. {
  4892. "url": "https://symfony.com/sponsor",
  4893. "type": "custom"
  4894. },
  4895. {
  4896. "url": "https://github.com/fabpot",
  4897. "type": "github"
  4898. },
  4899. {
  4900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4901. "type": "tidelift"
  4902. }
  4903. ],
  4904. "time": "2022-04-18T21:45:37+00:00"
  4905. },
  4906. {
  4907. "name": "symfony/service-contracts",
  4908. "version": "v2.5.1",
  4909. "source": {
  4910. "type": "git",
  4911. "url": "https://github.com/symfony/service-contracts.git",
  4912. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  4913. },
  4914. "dist": {
  4915. "type": "zip",
  4916. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  4917. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  4918. "shasum": ""
  4919. },
  4920. "require": {
  4921. "php": ">=7.2.5",
  4922. "psr/container": "^1.1",
  4923. "symfony/deprecation-contracts": "^2.1|^3"
  4924. },
  4925. "conflict": {
  4926. "ext-psr": "<1.1|>=2"
  4927. },
  4928. "suggest": {
  4929. "symfony/service-implementation": ""
  4930. },
  4931. "type": "library",
  4932. "extra": {
  4933. "branch-alias": {
  4934. "dev-main": "2.5-dev"
  4935. },
  4936. "thanks": {
  4937. "name": "symfony/contracts",
  4938. "url": "https://github.com/symfony/contracts"
  4939. }
  4940. },
  4941. "autoload": {
  4942. "psr-4": {
  4943. "Symfony\\Contracts\\Service\\": ""
  4944. }
  4945. },
  4946. "notification-url": "https://packagist.org/downloads/",
  4947. "license": [
  4948. "MIT"
  4949. ],
  4950. "authors": [
  4951. {
  4952. "name": "Nicolas Grekas",
  4953. "email": "p@tchwork.com"
  4954. },
  4955. {
  4956. "name": "Symfony Community",
  4957. "homepage": "https://symfony.com/contributors"
  4958. }
  4959. ],
  4960. "description": "Generic abstractions related to writing services",
  4961. "homepage": "https://symfony.com",
  4962. "keywords": [
  4963. "abstractions",
  4964. "contracts",
  4965. "decoupling",
  4966. "interfaces",
  4967. "interoperability",
  4968. "standards"
  4969. ],
  4970. "support": {
  4971. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  4972. },
  4973. "funding": [
  4974. {
  4975. "url": "https://symfony.com/sponsor",
  4976. "type": "custom"
  4977. },
  4978. {
  4979. "url": "https://github.com/fabpot",
  4980. "type": "github"
  4981. },
  4982. {
  4983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4984. "type": "tidelift"
  4985. }
  4986. ],
  4987. "time": "2022-03-13T20:07:29+00:00"
  4988. },
  4989. {
  4990. "name": "symfony/string",
  4991. "version": "v5.4.9",
  4992. "source": {
  4993. "type": "git",
  4994. "url": "https://github.com/symfony/string.git",
  4995. "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99"
  4996. },
  4997. "dist": {
  4998. "type": "zip",
  4999. "url": "https://api.github.com/repos/symfony/string/zipball/985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
  5000. "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
  5001. "shasum": ""
  5002. },
  5003. "require": {
  5004. "php": ">=7.2.5",
  5005. "symfony/polyfill-ctype": "~1.8",
  5006. "symfony/polyfill-intl-grapheme": "~1.0",
  5007. "symfony/polyfill-intl-normalizer": "~1.0",
  5008. "symfony/polyfill-mbstring": "~1.0",
  5009. "symfony/polyfill-php80": "~1.15"
  5010. },
  5011. "conflict": {
  5012. "symfony/translation-contracts": ">=3.0"
  5013. },
  5014. "require-dev": {
  5015. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5016. "symfony/http-client": "^4.4|^5.0|^6.0",
  5017. "symfony/translation-contracts": "^1.1|^2",
  5018. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5019. },
  5020. "type": "library",
  5021. "autoload": {
  5022. "files": [
  5023. "Resources/functions.php"
  5024. ],
  5025. "psr-4": {
  5026. "Symfony\\Component\\String\\": ""
  5027. },
  5028. "exclude-from-classmap": [
  5029. "/Tests/"
  5030. ]
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Nicolas Grekas",
  5039. "email": "p@tchwork.com"
  5040. },
  5041. {
  5042. "name": "Symfony Community",
  5043. "homepage": "https://symfony.com/contributors"
  5044. }
  5045. ],
  5046. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5047. "homepage": "https://symfony.com",
  5048. "keywords": [
  5049. "grapheme",
  5050. "i18n",
  5051. "string",
  5052. "unicode",
  5053. "utf-8",
  5054. "utf8"
  5055. ],
  5056. "support": {
  5057. "source": "https://github.com/symfony/string/tree/v5.4.9"
  5058. },
  5059. "funding": [
  5060. {
  5061. "url": "https://symfony.com/sponsor",
  5062. "type": "custom"
  5063. },
  5064. {
  5065. "url": "https://github.com/fabpot",
  5066. "type": "github"
  5067. },
  5068. {
  5069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5070. "type": "tidelift"
  5071. }
  5072. ],
  5073. "time": "2022-04-19T10:40:37+00:00"
  5074. },
  5075. {
  5076. "name": "symfony/translation",
  5077. "version": "v5.4.9",
  5078. "source": {
  5079. "type": "git",
  5080. "url": "https://github.com/symfony/translation.git",
  5081. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca"
  5082. },
  5083. "dist": {
  5084. "type": "zip",
  5085. "url": "https://api.github.com/repos/symfony/translation/zipball/1639abc1177d26bcd4320e535e664cef067ab0ca",
  5086. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca",
  5087. "shasum": ""
  5088. },
  5089. "require": {
  5090. "php": ">=7.2.5",
  5091. "symfony/deprecation-contracts": "^2.1|^3",
  5092. "symfony/polyfill-mbstring": "~1.0",
  5093. "symfony/polyfill-php80": "^1.16",
  5094. "symfony/translation-contracts": "^2.3"
  5095. },
  5096. "conflict": {
  5097. "symfony/config": "<4.4",
  5098. "symfony/console": "<5.3",
  5099. "symfony/dependency-injection": "<5.0",
  5100. "symfony/http-kernel": "<5.0",
  5101. "symfony/twig-bundle": "<5.0",
  5102. "symfony/yaml": "<4.4"
  5103. },
  5104. "provide": {
  5105. "symfony/translation-implementation": "2.3"
  5106. },
  5107. "require-dev": {
  5108. "psr/log": "^1|^2|^3",
  5109. "symfony/config": "^4.4|^5.0|^6.0",
  5110. "symfony/console": "^5.4|^6.0",
  5111. "symfony/dependency-injection": "^5.0|^6.0",
  5112. "symfony/finder": "^4.4|^5.0|^6.0",
  5113. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  5114. "symfony/http-kernel": "^5.0|^6.0",
  5115. "symfony/intl": "^4.4|^5.0|^6.0",
  5116. "symfony/polyfill-intl-icu": "^1.21",
  5117. "symfony/service-contracts": "^1.1.2|^2|^3",
  5118. "symfony/yaml": "^4.4|^5.0|^6.0"
  5119. },
  5120. "suggest": {
  5121. "psr/log-implementation": "To use logging capability in translator",
  5122. "symfony/config": "",
  5123. "symfony/yaml": ""
  5124. },
  5125. "type": "library",
  5126. "autoload": {
  5127. "files": [
  5128. "Resources/functions.php"
  5129. ],
  5130. "psr-4": {
  5131. "Symfony\\Component\\Translation\\": ""
  5132. },
  5133. "exclude-from-classmap": [
  5134. "/Tests/"
  5135. ]
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "MIT"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Fabien Potencier",
  5144. "email": "fabien@symfony.com"
  5145. },
  5146. {
  5147. "name": "Symfony Community",
  5148. "homepage": "https://symfony.com/contributors"
  5149. }
  5150. ],
  5151. "description": "Provides tools to internationalize your application",
  5152. "homepage": "https://symfony.com",
  5153. "support": {
  5154. "source": "https://github.com/symfony/translation/tree/v5.4.9"
  5155. },
  5156. "funding": [
  5157. {
  5158. "url": "https://symfony.com/sponsor",
  5159. "type": "custom"
  5160. },
  5161. {
  5162. "url": "https://github.com/fabpot",
  5163. "type": "github"
  5164. },
  5165. {
  5166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5167. "type": "tidelift"
  5168. }
  5169. ],
  5170. "time": "2022-05-06T12:33:37+00:00"
  5171. },
  5172. {
  5173. "name": "symfony/translation-contracts",
  5174. "version": "v2.5.1",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/symfony/translation-contracts.git",
  5178. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1211df0afa701e45a04253110e959d4af4ef0f07",
  5183. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "php": ">=7.2.5"
  5188. },
  5189. "suggest": {
  5190. "symfony/translation-implementation": ""
  5191. },
  5192. "type": "library",
  5193. "extra": {
  5194. "branch-alias": {
  5195. "dev-main": "2.5-dev"
  5196. },
  5197. "thanks": {
  5198. "name": "symfony/contracts",
  5199. "url": "https://github.com/symfony/contracts"
  5200. }
  5201. },
  5202. "autoload": {
  5203. "psr-4": {
  5204. "Symfony\\Contracts\\Translation\\": ""
  5205. }
  5206. },
  5207. "notification-url": "https://packagist.org/downloads/",
  5208. "license": [
  5209. "MIT"
  5210. ],
  5211. "authors": [
  5212. {
  5213. "name": "Nicolas Grekas",
  5214. "email": "p@tchwork.com"
  5215. },
  5216. {
  5217. "name": "Symfony Community",
  5218. "homepage": "https://symfony.com/contributors"
  5219. }
  5220. ],
  5221. "description": "Generic abstractions related to translation",
  5222. "homepage": "https://symfony.com",
  5223. "keywords": [
  5224. "abstractions",
  5225. "contracts",
  5226. "decoupling",
  5227. "interfaces",
  5228. "interoperability",
  5229. "standards"
  5230. ],
  5231. "support": {
  5232. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.1"
  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-01-02T09:53:40+00:00"
  5249. },
  5250. {
  5251. "name": "symfony/var-dumper",
  5252. "version": "v5.4.9",
  5253. "source": {
  5254. "type": "git",
  5255. "url": "https://github.com/symfony/var-dumper.git",
  5256. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  5257. },
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  5261. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  5262. "shasum": ""
  5263. },
  5264. "require": {
  5265. "php": ">=7.2.5",
  5266. "symfony/polyfill-mbstring": "~1.0",
  5267. "symfony/polyfill-php80": "^1.16"
  5268. },
  5269. "conflict": {
  5270. "phpunit/phpunit": "<5.4.3",
  5271. "symfony/console": "<4.4"
  5272. },
  5273. "require-dev": {
  5274. "ext-iconv": "*",
  5275. "symfony/console": "^4.4|^5.0|^6.0",
  5276. "symfony/process": "^4.4|^5.0|^6.0",
  5277. "symfony/uid": "^5.1|^6.0",
  5278. "twig/twig": "^2.13|^3.0.4"
  5279. },
  5280. "suggest": {
  5281. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5282. "ext-intl": "To show region name in time zone dump",
  5283. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5284. },
  5285. "bin": [
  5286. "Resources/bin/var-dump-server"
  5287. ],
  5288. "type": "library",
  5289. "autoload": {
  5290. "files": [
  5291. "Resources/functions/dump.php"
  5292. ],
  5293. "psr-4": {
  5294. "Symfony\\Component\\VarDumper\\": ""
  5295. },
  5296. "exclude-from-classmap": [
  5297. "/Tests/"
  5298. ]
  5299. },
  5300. "notification-url": "https://packagist.org/downloads/",
  5301. "license": [
  5302. "MIT"
  5303. ],
  5304. "authors": [
  5305. {
  5306. "name": "Nicolas Grekas",
  5307. "email": "p@tchwork.com"
  5308. },
  5309. {
  5310. "name": "Symfony Community",
  5311. "homepage": "https://symfony.com/contributors"
  5312. }
  5313. ],
  5314. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5315. "homepage": "https://symfony.com",
  5316. "keywords": [
  5317. "debug",
  5318. "dump"
  5319. ],
  5320. "support": {
  5321. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  5322. },
  5323. "funding": [
  5324. {
  5325. "url": "https://symfony.com/sponsor",
  5326. "type": "custom"
  5327. },
  5328. {
  5329. "url": "https://github.com/fabpot",
  5330. "type": "github"
  5331. },
  5332. {
  5333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5334. "type": "tidelift"
  5335. }
  5336. ],
  5337. "time": "2022-05-21T10:24:18+00:00"
  5338. },
  5339. {
  5340. "name": "tijsverkoyen/css-to-inline-styles",
  5341. "version": "2.2.4",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5345. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  5346. },
  5347. "dist": {
  5348. "type": "zip",
  5349. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5350. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5351. "shasum": ""
  5352. },
  5353. "require": {
  5354. "ext-dom": "*",
  5355. "ext-libxml": "*",
  5356. "php": "^5.5 || ^7.0 || ^8.0",
  5357. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5358. },
  5359. "require-dev": {
  5360. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5361. },
  5362. "type": "library",
  5363. "extra": {
  5364. "branch-alias": {
  5365. "dev-master": "2.2.x-dev"
  5366. }
  5367. },
  5368. "autoload": {
  5369. "psr-4": {
  5370. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5371. }
  5372. },
  5373. "notification-url": "https://packagist.org/downloads/",
  5374. "license": [
  5375. "BSD-3-Clause"
  5376. ],
  5377. "authors": [
  5378. {
  5379. "name": "Tijs Verkoyen",
  5380. "email": "css_to_inline_styles@verkoyen.eu",
  5381. "role": "Developer"
  5382. }
  5383. ],
  5384. "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.",
  5385. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5386. "support": {
  5387. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5388. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  5389. },
  5390. "time": "2021-12-08T09:12:39+00:00"
  5391. },
  5392. {
  5393. "name": "vlucas/phpdotenv",
  5394. "version": "v5.4.1",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/vlucas/phpdotenv.git",
  5398. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  5403. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "ext-pcre": "*",
  5408. "graham-campbell/result-type": "^1.0.2",
  5409. "php": "^7.1.3 || ^8.0",
  5410. "phpoption/phpoption": "^1.8",
  5411. "symfony/polyfill-ctype": "^1.23",
  5412. "symfony/polyfill-mbstring": "^1.23.1",
  5413. "symfony/polyfill-php80": "^1.23.1"
  5414. },
  5415. "require-dev": {
  5416. "bamarni/composer-bin-plugin": "^1.4.1",
  5417. "ext-filter": "*",
  5418. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  5419. },
  5420. "suggest": {
  5421. "ext-filter": "Required to use the boolean validator."
  5422. },
  5423. "type": "library",
  5424. "extra": {
  5425. "branch-alias": {
  5426. "dev-master": "5.4-dev"
  5427. }
  5428. },
  5429. "autoload": {
  5430. "psr-4": {
  5431. "Dotenv\\": "src/"
  5432. }
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "BSD-3-Clause"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Graham Campbell",
  5441. "email": "hello@gjcampbell.co.uk",
  5442. "homepage": "https://github.com/GrahamCampbell"
  5443. },
  5444. {
  5445. "name": "Vance Lucas",
  5446. "email": "vance@vancelucas.com",
  5447. "homepage": "https://github.com/vlucas"
  5448. }
  5449. ],
  5450. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5451. "keywords": [
  5452. "dotenv",
  5453. "env",
  5454. "environment"
  5455. ],
  5456. "support": {
  5457. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5458. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  5459. },
  5460. "funding": [
  5461. {
  5462. "url": "https://github.com/GrahamCampbell",
  5463. "type": "github"
  5464. },
  5465. {
  5466. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5467. "type": "tidelift"
  5468. }
  5469. ],
  5470. "time": "2021-12-12T23:22:04+00:00"
  5471. },
  5472. {
  5473. "name": "voku/portable-ascii",
  5474. "version": "1.6.1",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://github.com/voku/portable-ascii.git",
  5478. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  5479. },
  5480. "dist": {
  5481. "type": "zip",
  5482. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  5483. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  5484. "shasum": ""
  5485. },
  5486. "require": {
  5487. "php": ">=7.0.0"
  5488. },
  5489. "require-dev": {
  5490. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5491. },
  5492. "suggest": {
  5493. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5494. },
  5495. "type": "library",
  5496. "autoload": {
  5497. "psr-4": {
  5498. "voku\\": "src/voku/"
  5499. }
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "MIT"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "Lars Moelleken",
  5508. "homepage": "http://www.moelleken.org/"
  5509. }
  5510. ],
  5511. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5512. "homepage": "https://github.com/voku/portable-ascii",
  5513. "keywords": [
  5514. "ascii",
  5515. "clean",
  5516. "php"
  5517. ],
  5518. "support": {
  5519. "issues": "https://github.com/voku/portable-ascii/issues",
  5520. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  5521. },
  5522. "funding": [
  5523. {
  5524. "url": "https://www.paypal.me/moelleken",
  5525. "type": "custom"
  5526. },
  5527. {
  5528. "url": "https://github.com/voku",
  5529. "type": "github"
  5530. },
  5531. {
  5532. "url": "https://opencollective.com/portable-ascii",
  5533. "type": "open_collective"
  5534. },
  5535. {
  5536. "url": "https://www.patreon.com/voku",
  5537. "type": "patreon"
  5538. },
  5539. {
  5540. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5541. "type": "tidelift"
  5542. }
  5543. ],
  5544. "time": "2022-01-24T18:55:24+00:00"
  5545. },
  5546. {
  5547. "name": "webmozart/assert",
  5548. "version": "1.11.0",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/webmozarts/assert.git",
  5552. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5557. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5558. "shasum": ""
  5559. },
  5560. "require": {
  5561. "ext-ctype": "*",
  5562. "php": "^7.2 || ^8.0"
  5563. },
  5564. "conflict": {
  5565. "phpstan/phpstan": "<0.12.20",
  5566. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5567. },
  5568. "require-dev": {
  5569. "phpunit/phpunit": "^8.5.13"
  5570. },
  5571. "type": "library",
  5572. "extra": {
  5573. "branch-alias": {
  5574. "dev-master": "1.10-dev"
  5575. }
  5576. },
  5577. "autoload": {
  5578. "psr-4": {
  5579. "Webmozart\\Assert\\": "src/"
  5580. }
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "MIT"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Bernhard Schussek",
  5589. "email": "bschussek@gmail.com"
  5590. }
  5591. ],
  5592. "description": "Assertions to validate method input/output with nice error messages.",
  5593. "keywords": [
  5594. "assert",
  5595. "check",
  5596. "validate"
  5597. ],
  5598. "support": {
  5599. "issues": "https://github.com/webmozarts/assert/issues",
  5600. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  5601. },
  5602. "time": "2022-06-03T18:03:27+00:00"
  5603. }
  5604. ],
  5605. "packages-dev": [
  5606. {
  5607. "name": "doctrine/instantiator",
  5608. "version": "1.4.1",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://github.com/doctrine/instantiator.git",
  5612. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  5617. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  5618. "shasum": ""
  5619. },
  5620. "require": {
  5621. "php": "^7.1 || ^8.0"
  5622. },
  5623. "require-dev": {
  5624. "doctrine/coding-standard": "^9",
  5625. "ext-pdo": "*",
  5626. "ext-phar": "*",
  5627. "phpbench/phpbench": "^0.16 || ^1",
  5628. "phpstan/phpstan": "^1.4",
  5629. "phpstan/phpstan-phpunit": "^1",
  5630. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  5631. "vimeo/psalm": "^4.22"
  5632. },
  5633. "type": "library",
  5634. "autoload": {
  5635. "psr-4": {
  5636. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5637. }
  5638. },
  5639. "notification-url": "https://packagist.org/downloads/",
  5640. "license": [
  5641. "MIT"
  5642. ],
  5643. "authors": [
  5644. {
  5645. "name": "Marco Pivetta",
  5646. "email": "ocramius@gmail.com",
  5647. "homepage": "https://ocramius.github.io/"
  5648. }
  5649. ],
  5650. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5651. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5652. "keywords": [
  5653. "constructor",
  5654. "instantiate"
  5655. ],
  5656. "support": {
  5657. "issues": "https://github.com/doctrine/instantiator/issues",
  5658. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  5659. },
  5660. "funding": [
  5661. {
  5662. "url": "https://www.doctrine-project.org/sponsorship.html",
  5663. "type": "custom"
  5664. },
  5665. {
  5666. "url": "https://www.patreon.com/phpdoctrine",
  5667. "type": "patreon"
  5668. },
  5669. {
  5670. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5671. "type": "tidelift"
  5672. }
  5673. ],
  5674. "time": "2022-03-03T08:28:38+00:00"
  5675. },
  5676. {
  5677. "name": "facade/flare-client-php",
  5678. "version": "1.9.1",
  5679. "source": {
  5680. "type": "git",
  5681. "url": "https://github.com/facade/flare-client-php.git",
  5682. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  5683. },
  5684. "dist": {
  5685. "type": "zip",
  5686. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  5687. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  5688. "shasum": ""
  5689. },
  5690. "require": {
  5691. "facade/ignition-contracts": "~1.0",
  5692. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5693. "php": "^7.1|^8.0",
  5694. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5695. "symfony/mime": "^3.4|^4.0|^5.1",
  5696. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5697. },
  5698. "require-dev": {
  5699. "friendsofphp/php-cs-fixer": "^2.14",
  5700. "phpunit/phpunit": "^7.5.16",
  5701. "spatie/phpunit-snapshot-assertions": "^2.0"
  5702. },
  5703. "type": "library",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-master": "1.0-dev"
  5707. }
  5708. },
  5709. "autoload": {
  5710. "files": [
  5711. "src/helpers.php"
  5712. ],
  5713. "psr-4": {
  5714. "Facade\\FlareClient\\": "src"
  5715. }
  5716. },
  5717. "notification-url": "https://packagist.org/downloads/",
  5718. "license": [
  5719. "MIT"
  5720. ],
  5721. "description": "Send PHP errors to Flare",
  5722. "homepage": "https://github.com/facade/flare-client-php",
  5723. "keywords": [
  5724. "exception",
  5725. "facade",
  5726. "flare",
  5727. "reporting"
  5728. ],
  5729. "support": {
  5730. "issues": "https://github.com/facade/flare-client-php/issues",
  5731. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  5732. },
  5733. "funding": [
  5734. {
  5735. "url": "https://github.com/spatie",
  5736. "type": "github"
  5737. }
  5738. ],
  5739. "time": "2021-09-13T12:16:46+00:00"
  5740. },
  5741. {
  5742. "name": "facade/ignition",
  5743. "version": "2.17.5",
  5744. "source": {
  5745. "type": "git",
  5746. "url": "https://github.com/facade/ignition.git",
  5747. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c"
  5748. },
  5749. "dist": {
  5750. "type": "zip",
  5751. "url": "https://api.github.com/repos/facade/ignition/zipball/1d71996f83c9a5a7807331b8986ac890352b7a0c",
  5752. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c",
  5753. "shasum": ""
  5754. },
  5755. "require": {
  5756. "ext-curl": "*",
  5757. "ext-json": "*",
  5758. "ext-mbstring": "*",
  5759. "facade/flare-client-php": "^1.9.1",
  5760. "facade/ignition-contracts": "^1.0.2",
  5761. "illuminate/support": "^7.0|^8.0",
  5762. "monolog/monolog": "^2.0",
  5763. "php": "^7.2.5|^8.0",
  5764. "symfony/console": "^5.0",
  5765. "symfony/var-dumper": "^5.0"
  5766. },
  5767. "require-dev": {
  5768. "friendsofphp/php-cs-fixer": "^2.14",
  5769. "livewire/livewire": "^2.4",
  5770. "mockery/mockery": "^1.3",
  5771. "orchestra/testbench": "^5.0|^6.0",
  5772. "psalm/plugin-laravel": "^1.2"
  5773. },
  5774. "suggest": {
  5775. "laravel/telescope": "^3.1"
  5776. },
  5777. "type": "library",
  5778. "extra": {
  5779. "branch-alias": {
  5780. "dev-master": "2.x-dev"
  5781. },
  5782. "laravel": {
  5783. "providers": [
  5784. "Facade\\Ignition\\IgnitionServiceProvider"
  5785. ],
  5786. "aliases": {
  5787. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5788. }
  5789. }
  5790. },
  5791. "autoload": {
  5792. "files": [
  5793. "src/helpers.php"
  5794. ],
  5795. "psr-4": {
  5796. "Facade\\Ignition\\": "src"
  5797. }
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "MIT"
  5802. ],
  5803. "description": "A beautiful error page for Laravel applications.",
  5804. "homepage": "https://github.com/facade/ignition",
  5805. "keywords": [
  5806. "error",
  5807. "flare",
  5808. "laravel",
  5809. "page"
  5810. ],
  5811. "support": {
  5812. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5813. "forum": "https://twitter.com/flareappio",
  5814. "issues": "https://github.com/facade/ignition/issues",
  5815. "source": "https://github.com/facade/ignition"
  5816. },
  5817. "time": "2022-02-23T18:31:24+00:00"
  5818. },
  5819. {
  5820. "name": "facade/ignition-contracts",
  5821. "version": "1.0.2",
  5822. "source": {
  5823. "type": "git",
  5824. "url": "https://github.com/facade/ignition-contracts.git",
  5825. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5826. },
  5827. "dist": {
  5828. "type": "zip",
  5829. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5830. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5831. "shasum": ""
  5832. },
  5833. "require": {
  5834. "php": "^7.3|^8.0"
  5835. },
  5836. "require-dev": {
  5837. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5838. "phpunit/phpunit": "^9.3.11",
  5839. "vimeo/psalm": "^3.17.1"
  5840. },
  5841. "type": "library",
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Facade\\IgnitionContracts\\": "src"
  5845. }
  5846. },
  5847. "notification-url": "https://packagist.org/downloads/",
  5848. "license": [
  5849. "MIT"
  5850. ],
  5851. "authors": [
  5852. {
  5853. "name": "Freek Van der Herten",
  5854. "email": "freek@spatie.be",
  5855. "homepage": "https://flareapp.io",
  5856. "role": "Developer"
  5857. }
  5858. ],
  5859. "description": "Solution contracts for Ignition",
  5860. "homepage": "https://github.com/facade/ignition-contracts",
  5861. "keywords": [
  5862. "contracts",
  5863. "flare",
  5864. "ignition"
  5865. ],
  5866. "support": {
  5867. "issues": "https://github.com/facade/ignition-contracts/issues",
  5868. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5869. },
  5870. "time": "2020-10-16T08:27:54+00:00"
  5871. },
  5872. {
  5873. "name": "fakerphp/faker",
  5874. "version": "v1.19.0",
  5875. "source": {
  5876. "type": "git",
  5877. "url": "https://github.com/FakerPHP/Faker.git",
  5878. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  5879. },
  5880. "dist": {
  5881. "type": "zip",
  5882. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  5883. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  5884. "shasum": ""
  5885. },
  5886. "require": {
  5887. "php": "^7.1 || ^8.0",
  5888. "psr/container": "^1.0 || ^2.0",
  5889. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5890. },
  5891. "conflict": {
  5892. "fzaninotto/faker": "*"
  5893. },
  5894. "require-dev": {
  5895. "bamarni/composer-bin-plugin": "^1.4.1",
  5896. "doctrine/persistence": "^1.3 || ^2.0",
  5897. "ext-intl": "*",
  5898. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  5899. },
  5900. "suggest": {
  5901. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  5902. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  5903. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  5904. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  5905. "ext-mbstring": "Required for multibyte Unicode string functionality."
  5906. },
  5907. "type": "library",
  5908. "extra": {
  5909. "branch-alias": {
  5910. "dev-main": "v1.19-dev"
  5911. }
  5912. },
  5913. "autoload": {
  5914. "psr-4": {
  5915. "Faker\\": "src/Faker/"
  5916. }
  5917. },
  5918. "notification-url": "https://packagist.org/downloads/",
  5919. "license": [
  5920. "MIT"
  5921. ],
  5922. "authors": [
  5923. {
  5924. "name": "François Zaninotto"
  5925. }
  5926. ],
  5927. "description": "Faker is a PHP library that generates fake data for you.",
  5928. "keywords": [
  5929. "data",
  5930. "faker",
  5931. "fixtures"
  5932. ],
  5933. "support": {
  5934. "issues": "https://github.com/FakerPHP/Faker/issues",
  5935. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  5936. },
  5937. "time": "2022-02-02T17:38:57+00:00"
  5938. },
  5939. {
  5940. "name": "filp/whoops",
  5941. "version": "2.14.5",
  5942. "source": {
  5943. "type": "git",
  5944. "url": "https://github.com/filp/whoops.git",
  5945. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  5946. },
  5947. "dist": {
  5948. "type": "zip",
  5949. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  5950. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  5951. "shasum": ""
  5952. },
  5953. "require": {
  5954. "php": "^5.5.9 || ^7.0 || ^8.0",
  5955. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5956. },
  5957. "require-dev": {
  5958. "mockery/mockery": "^0.9 || ^1.0",
  5959. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5960. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5961. },
  5962. "suggest": {
  5963. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5964. "whoops/soap": "Formats errors as SOAP responses"
  5965. },
  5966. "type": "library",
  5967. "extra": {
  5968. "branch-alias": {
  5969. "dev-master": "2.7-dev"
  5970. }
  5971. },
  5972. "autoload": {
  5973. "psr-4": {
  5974. "Whoops\\": "src/Whoops/"
  5975. }
  5976. },
  5977. "notification-url": "https://packagist.org/downloads/",
  5978. "license": [
  5979. "MIT"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "Filipe Dobreira",
  5984. "homepage": "https://github.com/filp",
  5985. "role": "Developer"
  5986. }
  5987. ],
  5988. "description": "php error handling for cool kids",
  5989. "homepage": "https://filp.github.io/whoops/",
  5990. "keywords": [
  5991. "error",
  5992. "exception",
  5993. "handling",
  5994. "library",
  5995. "throwable",
  5996. "whoops"
  5997. ],
  5998. "support": {
  5999. "issues": "https://github.com/filp/whoops/issues",
  6000. "source": "https://github.com/filp/whoops/tree/2.14.5"
  6001. },
  6002. "funding": [
  6003. {
  6004. "url": "https://github.com/denis-sokolov",
  6005. "type": "github"
  6006. }
  6007. ],
  6008. "time": "2022-01-07T12:00:00+00:00"
  6009. },
  6010. {
  6011. "name": "hamcrest/hamcrest-php",
  6012. "version": "v2.0.1",
  6013. "source": {
  6014. "type": "git",
  6015. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6016. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6017. },
  6018. "dist": {
  6019. "type": "zip",
  6020. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6021. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6022. "shasum": ""
  6023. },
  6024. "require": {
  6025. "php": "^5.3|^7.0|^8.0"
  6026. },
  6027. "replace": {
  6028. "cordoval/hamcrest-php": "*",
  6029. "davedevelopment/hamcrest-php": "*",
  6030. "kodova/hamcrest-php": "*"
  6031. },
  6032. "require-dev": {
  6033. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6034. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6035. },
  6036. "type": "library",
  6037. "extra": {
  6038. "branch-alias": {
  6039. "dev-master": "2.1-dev"
  6040. }
  6041. },
  6042. "autoload": {
  6043. "classmap": [
  6044. "hamcrest"
  6045. ]
  6046. },
  6047. "notification-url": "https://packagist.org/downloads/",
  6048. "license": [
  6049. "BSD-3-Clause"
  6050. ],
  6051. "description": "This is the PHP port of Hamcrest Matchers",
  6052. "keywords": [
  6053. "test"
  6054. ],
  6055. "support": {
  6056. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6057. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6058. },
  6059. "time": "2020-07-09T08:09:16+00:00"
  6060. },
  6061. {
  6062. "name": "mockery/mockery",
  6063. "version": "1.5.0",
  6064. "source": {
  6065. "type": "git",
  6066. "url": "https://github.com/mockery/mockery.git",
  6067. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  6068. },
  6069. "dist": {
  6070. "type": "zip",
  6071. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  6072. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  6073. "shasum": ""
  6074. },
  6075. "require": {
  6076. "hamcrest/hamcrest-php": "^2.0.1",
  6077. "lib-pcre": ">=7.0",
  6078. "php": "^7.3 || ^8.0"
  6079. },
  6080. "conflict": {
  6081. "phpunit/phpunit": "<8.0"
  6082. },
  6083. "require-dev": {
  6084. "phpunit/phpunit": "^8.5 || ^9.3"
  6085. },
  6086. "type": "library",
  6087. "extra": {
  6088. "branch-alias": {
  6089. "dev-master": "1.4.x-dev"
  6090. }
  6091. },
  6092. "autoload": {
  6093. "psr-0": {
  6094. "Mockery": "library/"
  6095. }
  6096. },
  6097. "notification-url": "https://packagist.org/downloads/",
  6098. "license": [
  6099. "BSD-3-Clause"
  6100. ],
  6101. "authors": [
  6102. {
  6103. "name": "Pádraic Brady",
  6104. "email": "padraic.brady@gmail.com",
  6105. "homepage": "http://blog.astrumfutura.com"
  6106. },
  6107. {
  6108. "name": "Dave Marshall",
  6109. "email": "dave.marshall@atstsolutions.co.uk",
  6110. "homepage": "http://davedevelopment.co.uk"
  6111. }
  6112. ],
  6113. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6114. "homepage": "https://github.com/mockery/mockery",
  6115. "keywords": [
  6116. "BDD",
  6117. "TDD",
  6118. "library",
  6119. "mock",
  6120. "mock objects",
  6121. "mockery",
  6122. "stub",
  6123. "test",
  6124. "test double",
  6125. "testing"
  6126. ],
  6127. "support": {
  6128. "issues": "https://github.com/mockery/mockery/issues",
  6129. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  6130. },
  6131. "time": "2022-01-20T13:18:17+00:00"
  6132. },
  6133. {
  6134. "name": "myclabs/deep-copy",
  6135. "version": "1.11.0",
  6136. "source": {
  6137. "type": "git",
  6138. "url": "https://github.com/myclabs/DeepCopy.git",
  6139. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  6140. },
  6141. "dist": {
  6142. "type": "zip",
  6143. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  6144. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  6145. "shasum": ""
  6146. },
  6147. "require": {
  6148. "php": "^7.1 || ^8.0"
  6149. },
  6150. "conflict": {
  6151. "doctrine/collections": "<1.6.8",
  6152. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  6153. },
  6154. "require-dev": {
  6155. "doctrine/collections": "^1.6.8",
  6156. "doctrine/common": "^2.13.3 || ^3.2.2",
  6157. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  6158. },
  6159. "type": "library",
  6160. "autoload": {
  6161. "files": [
  6162. "src/DeepCopy/deep_copy.php"
  6163. ],
  6164. "psr-4": {
  6165. "DeepCopy\\": "src/DeepCopy/"
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "MIT"
  6171. ],
  6172. "description": "Create deep copies (clones) of your objects",
  6173. "keywords": [
  6174. "clone",
  6175. "copy",
  6176. "duplicate",
  6177. "object",
  6178. "object graph"
  6179. ],
  6180. "support": {
  6181. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6182. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  6183. },
  6184. "funding": [
  6185. {
  6186. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6187. "type": "tidelift"
  6188. }
  6189. ],
  6190. "time": "2022-03-03T13:19:32+00:00"
  6191. },
  6192. {
  6193. "name": "nunomaduro/collision",
  6194. "version": "v5.11.0",
  6195. "source": {
  6196. "type": "git",
  6197. "url": "https://github.com/nunomaduro/collision.git",
  6198. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  6199. },
  6200. "dist": {
  6201. "type": "zip",
  6202. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  6203. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  6204. "shasum": ""
  6205. },
  6206. "require": {
  6207. "facade/ignition-contracts": "^1.0",
  6208. "filp/whoops": "^2.14.3",
  6209. "php": "^7.3 || ^8.0",
  6210. "symfony/console": "^5.0"
  6211. },
  6212. "require-dev": {
  6213. "brianium/paratest": "^6.1",
  6214. "fideloper/proxy": "^4.4.1",
  6215. "fruitcake/laravel-cors": "^2.0.3",
  6216. "laravel/framework": "8.x-dev",
  6217. "nunomaduro/larastan": "^0.6.2",
  6218. "nunomaduro/mock-final-classes": "^1.0",
  6219. "orchestra/testbench": "^6.0",
  6220. "phpstan/phpstan": "^0.12.64",
  6221. "phpunit/phpunit": "^9.5.0"
  6222. },
  6223. "type": "library",
  6224. "extra": {
  6225. "laravel": {
  6226. "providers": [
  6227. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6228. ]
  6229. }
  6230. },
  6231. "autoload": {
  6232. "psr-4": {
  6233. "NunoMaduro\\Collision\\": "src/"
  6234. }
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Nuno Maduro",
  6243. "email": "enunomaduro@gmail.com"
  6244. }
  6245. ],
  6246. "description": "Cli error handling for console/command-line PHP applications.",
  6247. "keywords": [
  6248. "artisan",
  6249. "cli",
  6250. "command-line",
  6251. "console",
  6252. "error",
  6253. "handling",
  6254. "laravel",
  6255. "laravel-zero",
  6256. "php",
  6257. "symfony"
  6258. ],
  6259. "support": {
  6260. "issues": "https://github.com/nunomaduro/collision/issues",
  6261. "source": "https://github.com/nunomaduro/collision"
  6262. },
  6263. "funding": [
  6264. {
  6265. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6266. "type": "custom"
  6267. },
  6268. {
  6269. "url": "https://github.com/nunomaduro",
  6270. "type": "github"
  6271. },
  6272. {
  6273. "url": "https://www.patreon.com/nunomaduro",
  6274. "type": "patreon"
  6275. }
  6276. ],
  6277. "time": "2022-01-10T16:22:52+00:00"
  6278. },
  6279. {
  6280. "name": "phar-io/manifest",
  6281. "version": "2.0.3",
  6282. "source": {
  6283. "type": "git",
  6284. "url": "https://github.com/phar-io/manifest.git",
  6285. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  6286. },
  6287. "dist": {
  6288. "type": "zip",
  6289. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  6290. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  6291. "shasum": ""
  6292. },
  6293. "require": {
  6294. "ext-dom": "*",
  6295. "ext-phar": "*",
  6296. "ext-xmlwriter": "*",
  6297. "phar-io/version": "^3.0.1",
  6298. "php": "^7.2 || ^8.0"
  6299. },
  6300. "type": "library",
  6301. "extra": {
  6302. "branch-alias": {
  6303. "dev-master": "2.0.x-dev"
  6304. }
  6305. },
  6306. "autoload": {
  6307. "classmap": [
  6308. "src/"
  6309. ]
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "BSD-3-Clause"
  6314. ],
  6315. "authors": [
  6316. {
  6317. "name": "Arne Blankerts",
  6318. "email": "arne@blankerts.de",
  6319. "role": "Developer"
  6320. },
  6321. {
  6322. "name": "Sebastian Heuer",
  6323. "email": "sebastian@phpeople.de",
  6324. "role": "Developer"
  6325. },
  6326. {
  6327. "name": "Sebastian Bergmann",
  6328. "email": "sebastian@phpunit.de",
  6329. "role": "Developer"
  6330. }
  6331. ],
  6332. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6333. "support": {
  6334. "issues": "https://github.com/phar-io/manifest/issues",
  6335. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  6336. },
  6337. "time": "2021-07-20T11:28:43+00:00"
  6338. },
  6339. {
  6340. "name": "phar-io/version",
  6341. "version": "3.2.1",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://github.com/phar-io/version.git",
  6345. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6350. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6351. "shasum": ""
  6352. },
  6353. "require": {
  6354. "php": "^7.2 || ^8.0"
  6355. },
  6356. "type": "library",
  6357. "autoload": {
  6358. "classmap": [
  6359. "src/"
  6360. ]
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "BSD-3-Clause"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "Arne Blankerts",
  6369. "email": "arne@blankerts.de",
  6370. "role": "Developer"
  6371. },
  6372. {
  6373. "name": "Sebastian Heuer",
  6374. "email": "sebastian@phpeople.de",
  6375. "role": "Developer"
  6376. },
  6377. {
  6378. "name": "Sebastian Bergmann",
  6379. "email": "sebastian@phpunit.de",
  6380. "role": "Developer"
  6381. }
  6382. ],
  6383. "description": "Library for handling version information and constraints",
  6384. "support": {
  6385. "issues": "https://github.com/phar-io/version/issues",
  6386. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6387. },
  6388. "time": "2022-02-21T01:04:05+00:00"
  6389. },
  6390. {
  6391. "name": "phpdocumentor/reflection-common",
  6392. "version": "2.2.0",
  6393. "source": {
  6394. "type": "git",
  6395. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6396. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  6397. },
  6398. "dist": {
  6399. "type": "zip",
  6400. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6401. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6402. "shasum": ""
  6403. },
  6404. "require": {
  6405. "php": "^7.2 || ^8.0"
  6406. },
  6407. "type": "library",
  6408. "extra": {
  6409. "branch-alias": {
  6410. "dev-2.x": "2.x-dev"
  6411. }
  6412. },
  6413. "autoload": {
  6414. "psr-4": {
  6415. "phpDocumentor\\Reflection\\": "src/"
  6416. }
  6417. },
  6418. "notification-url": "https://packagist.org/downloads/",
  6419. "license": [
  6420. "MIT"
  6421. ],
  6422. "authors": [
  6423. {
  6424. "name": "Jaap van Otterdijk",
  6425. "email": "opensource@ijaap.nl"
  6426. }
  6427. ],
  6428. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6429. "homepage": "http://www.phpdoc.org",
  6430. "keywords": [
  6431. "FQSEN",
  6432. "phpDocumentor",
  6433. "phpdoc",
  6434. "reflection",
  6435. "static analysis"
  6436. ],
  6437. "support": {
  6438. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  6439. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  6440. },
  6441. "time": "2020-06-27T09:03:43+00:00"
  6442. },
  6443. {
  6444. "name": "phpdocumentor/reflection-docblock",
  6445. "version": "5.3.0",
  6446. "source": {
  6447. "type": "git",
  6448. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6449. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  6450. },
  6451. "dist": {
  6452. "type": "zip",
  6453. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  6454. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  6455. "shasum": ""
  6456. },
  6457. "require": {
  6458. "ext-filter": "*",
  6459. "php": "^7.2 || ^8.0",
  6460. "phpdocumentor/reflection-common": "^2.2",
  6461. "phpdocumentor/type-resolver": "^1.3",
  6462. "webmozart/assert": "^1.9.1"
  6463. },
  6464. "require-dev": {
  6465. "mockery/mockery": "~1.3.2",
  6466. "psalm/phar": "^4.8"
  6467. },
  6468. "type": "library",
  6469. "extra": {
  6470. "branch-alias": {
  6471. "dev-master": "5.x-dev"
  6472. }
  6473. },
  6474. "autoload": {
  6475. "psr-4": {
  6476. "phpDocumentor\\Reflection\\": "src"
  6477. }
  6478. },
  6479. "notification-url": "https://packagist.org/downloads/",
  6480. "license": [
  6481. "MIT"
  6482. ],
  6483. "authors": [
  6484. {
  6485. "name": "Mike van Riel",
  6486. "email": "me@mikevanriel.com"
  6487. },
  6488. {
  6489. "name": "Jaap van Otterdijk",
  6490. "email": "account@ijaap.nl"
  6491. }
  6492. ],
  6493. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6494. "support": {
  6495. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  6496. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  6497. },
  6498. "time": "2021-10-19T17:43:47+00:00"
  6499. },
  6500. {
  6501. "name": "phpdocumentor/type-resolver",
  6502. "version": "1.6.1",
  6503. "source": {
  6504. "type": "git",
  6505. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6506. "reference": "77a32518733312af16a44300404e945338981de3"
  6507. },
  6508. "dist": {
  6509. "type": "zip",
  6510. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  6511. "reference": "77a32518733312af16a44300404e945338981de3",
  6512. "shasum": ""
  6513. },
  6514. "require": {
  6515. "php": "^7.2 || ^8.0",
  6516. "phpdocumentor/reflection-common": "^2.0"
  6517. },
  6518. "require-dev": {
  6519. "ext-tokenizer": "*",
  6520. "psalm/phar": "^4.8"
  6521. },
  6522. "type": "library",
  6523. "extra": {
  6524. "branch-alias": {
  6525. "dev-1.x": "1.x-dev"
  6526. }
  6527. },
  6528. "autoload": {
  6529. "psr-4": {
  6530. "phpDocumentor\\Reflection\\": "src"
  6531. }
  6532. },
  6533. "notification-url": "https://packagist.org/downloads/",
  6534. "license": [
  6535. "MIT"
  6536. ],
  6537. "authors": [
  6538. {
  6539. "name": "Mike van Riel",
  6540. "email": "me@mikevanriel.com"
  6541. }
  6542. ],
  6543. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6544. "support": {
  6545. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  6546. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  6547. },
  6548. "time": "2022-03-15T21:29:03+00:00"
  6549. },
  6550. {
  6551. "name": "phpspec/prophecy",
  6552. "version": "v1.15.0",
  6553. "source": {
  6554. "type": "git",
  6555. "url": "https://github.com/phpspec/prophecy.git",
  6556. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  6557. },
  6558. "dist": {
  6559. "type": "zip",
  6560. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  6561. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  6562. "shasum": ""
  6563. },
  6564. "require": {
  6565. "doctrine/instantiator": "^1.2",
  6566. "php": "^7.2 || ~8.0, <8.2",
  6567. "phpdocumentor/reflection-docblock": "^5.2",
  6568. "sebastian/comparator": "^3.0 || ^4.0",
  6569. "sebastian/recursion-context": "^3.0 || ^4.0"
  6570. },
  6571. "require-dev": {
  6572. "phpspec/phpspec": "^6.0 || ^7.0",
  6573. "phpunit/phpunit": "^8.0 || ^9.0"
  6574. },
  6575. "type": "library",
  6576. "extra": {
  6577. "branch-alias": {
  6578. "dev-master": "1.x-dev"
  6579. }
  6580. },
  6581. "autoload": {
  6582. "psr-4": {
  6583. "Prophecy\\": "src/Prophecy"
  6584. }
  6585. },
  6586. "notification-url": "https://packagist.org/downloads/",
  6587. "license": [
  6588. "MIT"
  6589. ],
  6590. "authors": [
  6591. {
  6592. "name": "Konstantin Kudryashov",
  6593. "email": "ever.zet@gmail.com",
  6594. "homepage": "http://everzet.com"
  6595. },
  6596. {
  6597. "name": "Marcello Duarte",
  6598. "email": "marcello.duarte@gmail.com"
  6599. }
  6600. ],
  6601. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6602. "homepage": "https://github.com/phpspec/prophecy",
  6603. "keywords": [
  6604. "Double",
  6605. "Dummy",
  6606. "fake",
  6607. "mock",
  6608. "spy",
  6609. "stub"
  6610. ],
  6611. "support": {
  6612. "issues": "https://github.com/phpspec/prophecy/issues",
  6613. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  6614. },
  6615. "time": "2021-12-08T12:19:24+00:00"
  6616. },
  6617. {
  6618. "name": "phpunit/php-code-coverage",
  6619. "version": "9.2.15",
  6620. "source": {
  6621. "type": "git",
  6622. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6623. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  6624. },
  6625. "dist": {
  6626. "type": "zip",
  6627. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  6628. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  6629. "shasum": ""
  6630. },
  6631. "require": {
  6632. "ext-dom": "*",
  6633. "ext-libxml": "*",
  6634. "ext-xmlwriter": "*",
  6635. "nikic/php-parser": "^4.13.0",
  6636. "php": ">=7.3",
  6637. "phpunit/php-file-iterator": "^3.0.3",
  6638. "phpunit/php-text-template": "^2.0.2",
  6639. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6640. "sebastian/complexity": "^2.0",
  6641. "sebastian/environment": "^5.1.2",
  6642. "sebastian/lines-of-code": "^1.0.3",
  6643. "sebastian/version": "^3.0.1",
  6644. "theseer/tokenizer": "^1.2.0"
  6645. },
  6646. "require-dev": {
  6647. "phpunit/phpunit": "^9.3"
  6648. },
  6649. "suggest": {
  6650. "ext-pcov": "*",
  6651. "ext-xdebug": "*"
  6652. },
  6653. "type": "library",
  6654. "extra": {
  6655. "branch-alias": {
  6656. "dev-master": "9.2-dev"
  6657. }
  6658. },
  6659. "autoload": {
  6660. "classmap": [
  6661. "src/"
  6662. ]
  6663. },
  6664. "notification-url": "https://packagist.org/downloads/",
  6665. "license": [
  6666. "BSD-3-Clause"
  6667. ],
  6668. "authors": [
  6669. {
  6670. "name": "Sebastian Bergmann",
  6671. "email": "sebastian@phpunit.de",
  6672. "role": "lead"
  6673. }
  6674. ],
  6675. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6676. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6677. "keywords": [
  6678. "coverage",
  6679. "testing",
  6680. "xunit"
  6681. ],
  6682. "support": {
  6683. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6684. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  6685. },
  6686. "funding": [
  6687. {
  6688. "url": "https://github.com/sebastianbergmann",
  6689. "type": "github"
  6690. }
  6691. ],
  6692. "time": "2022-03-07T09:28:20+00:00"
  6693. },
  6694. {
  6695. "name": "phpunit/php-file-iterator",
  6696. "version": "3.0.6",
  6697. "source": {
  6698. "type": "git",
  6699. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6700. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  6701. },
  6702. "dist": {
  6703. "type": "zip",
  6704. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6705. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6706. "shasum": ""
  6707. },
  6708. "require": {
  6709. "php": ">=7.3"
  6710. },
  6711. "require-dev": {
  6712. "phpunit/phpunit": "^9.3"
  6713. },
  6714. "type": "library",
  6715. "extra": {
  6716. "branch-alias": {
  6717. "dev-master": "3.0-dev"
  6718. }
  6719. },
  6720. "autoload": {
  6721. "classmap": [
  6722. "src/"
  6723. ]
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "BSD-3-Clause"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Sebastian Bergmann",
  6732. "email": "sebastian@phpunit.de",
  6733. "role": "lead"
  6734. }
  6735. ],
  6736. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6737. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6738. "keywords": [
  6739. "filesystem",
  6740. "iterator"
  6741. ],
  6742. "support": {
  6743. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6744. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  6745. },
  6746. "funding": [
  6747. {
  6748. "url": "https://github.com/sebastianbergmann",
  6749. "type": "github"
  6750. }
  6751. ],
  6752. "time": "2021-12-02T12:48:52+00:00"
  6753. },
  6754. {
  6755. "name": "phpunit/php-invoker",
  6756. "version": "3.1.1",
  6757. "source": {
  6758. "type": "git",
  6759. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6760. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6761. },
  6762. "dist": {
  6763. "type": "zip",
  6764. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6765. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6766. "shasum": ""
  6767. },
  6768. "require": {
  6769. "php": ">=7.3"
  6770. },
  6771. "require-dev": {
  6772. "ext-pcntl": "*",
  6773. "phpunit/phpunit": "^9.3"
  6774. },
  6775. "suggest": {
  6776. "ext-pcntl": "*"
  6777. },
  6778. "type": "library",
  6779. "extra": {
  6780. "branch-alias": {
  6781. "dev-master": "3.1-dev"
  6782. }
  6783. },
  6784. "autoload": {
  6785. "classmap": [
  6786. "src/"
  6787. ]
  6788. },
  6789. "notification-url": "https://packagist.org/downloads/",
  6790. "license": [
  6791. "BSD-3-Clause"
  6792. ],
  6793. "authors": [
  6794. {
  6795. "name": "Sebastian Bergmann",
  6796. "email": "sebastian@phpunit.de",
  6797. "role": "lead"
  6798. }
  6799. ],
  6800. "description": "Invoke callables with a timeout",
  6801. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6802. "keywords": [
  6803. "process"
  6804. ],
  6805. "support": {
  6806. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6807. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6808. },
  6809. "funding": [
  6810. {
  6811. "url": "https://github.com/sebastianbergmann",
  6812. "type": "github"
  6813. }
  6814. ],
  6815. "time": "2020-09-28T05:58:55+00:00"
  6816. },
  6817. {
  6818. "name": "phpunit/php-text-template",
  6819. "version": "2.0.4",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6823. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6824. },
  6825. "dist": {
  6826. "type": "zip",
  6827. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6828. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6829. "shasum": ""
  6830. },
  6831. "require": {
  6832. "php": ">=7.3"
  6833. },
  6834. "require-dev": {
  6835. "phpunit/phpunit": "^9.3"
  6836. },
  6837. "type": "library",
  6838. "extra": {
  6839. "branch-alias": {
  6840. "dev-master": "2.0-dev"
  6841. }
  6842. },
  6843. "autoload": {
  6844. "classmap": [
  6845. "src/"
  6846. ]
  6847. },
  6848. "notification-url": "https://packagist.org/downloads/",
  6849. "license": [
  6850. "BSD-3-Clause"
  6851. ],
  6852. "authors": [
  6853. {
  6854. "name": "Sebastian Bergmann",
  6855. "email": "sebastian@phpunit.de",
  6856. "role": "lead"
  6857. }
  6858. ],
  6859. "description": "Simple template engine.",
  6860. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6861. "keywords": [
  6862. "template"
  6863. ],
  6864. "support": {
  6865. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6866. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6867. },
  6868. "funding": [
  6869. {
  6870. "url": "https://github.com/sebastianbergmann",
  6871. "type": "github"
  6872. }
  6873. ],
  6874. "time": "2020-10-26T05:33:50+00:00"
  6875. },
  6876. {
  6877. "name": "phpunit/php-timer",
  6878. "version": "5.0.3",
  6879. "source": {
  6880. "type": "git",
  6881. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6882. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6883. },
  6884. "dist": {
  6885. "type": "zip",
  6886. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6887. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6888. "shasum": ""
  6889. },
  6890. "require": {
  6891. "php": ">=7.3"
  6892. },
  6893. "require-dev": {
  6894. "phpunit/phpunit": "^9.3"
  6895. },
  6896. "type": "library",
  6897. "extra": {
  6898. "branch-alias": {
  6899. "dev-master": "5.0-dev"
  6900. }
  6901. },
  6902. "autoload": {
  6903. "classmap": [
  6904. "src/"
  6905. ]
  6906. },
  6907. "notification-url": "https://packagist.org/downloads/",
  6908. "license": [
  6909. "BSD-3-Clause"
  6910. ],
  6911. "authors": [
  6912. {
  6913. "name": "Sebastian Bergmann",
  6914. "email": "sebastian@phpunit.de",
  6915. "role": "lead"
  6916. }
  6917. ],
  6918. "description": "Utility class for timing",
  6919. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6920. "keywords": [
  6921. "timer"
  6922. ],
  6923. "support": {
  6924. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6925. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6926. },
  6927. "funding": [
  6928. {
  6929. "url": "https://github.com/sebastianbergmann",
  6930. "type": "github"
  6931. }
  6932. ],
  6933. "time": "2020-10-26T13:16:10+00:00"
  6934. },
  6935. {
  6936. "name": "phpunit/phpunit",
  6937. "version": "9.5.21",
  6938. "source": {
  6939. "type": "git",
  6940. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6941. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  6942. },
  6943. "dist": {
  6944. "type": "zip",
  6945. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  6946. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  6947. "shasum": ""
  6948. },
  6949. "require": {
  6950. "doctrine/instantiator": "^1.3.1",
  6951. "ext-dom": "*",
  6952. "ext-json": "*",
  6953. "ext-libxml": "*",
  6954. "ext-mbstring": "*",
  6955. "ext-xml": "*",
  6956. "ext-xmlwriter": "*",
  6957. "myclabs/deep-copy": "^1.10.1",
  6958. "phar-io/manifest": "^2.0.3",
  6959. "phar-io/version": "^3.0.2",
  6960. "php": ">=7.3",
  6961. "phpspec/prophecy": "^1.12.1",
  6962. "phpunit/php-code-coverage": "^9.2.13",
  6963. "phpunit/php-file-iterator": "^3.0.5",
  6964. "phpunit/php-invoker": "^3.1.1",
  6965. "phpunit/php-text-template": "^2.0.3",
  6966. "phpunit/php-timer": "^5.0.2",
  6967. "sebastian/cli-parser": "^1.0.1",
  6968. "sebastian/code-unit": "^1.0.6",
  6969. "sebastian/comparator": "^4.0.5",
  6970. "sebastian/diff": "^4.0.3",
  6971. "sebastian/environment": "^5.1.3",
  6972. "sebastian/exporter": "^4.0.3",
  6973. "sebastian/global-state": "^5.0.1",
  6974. "sebastian/object-enumerator": "^4.0.3",
  6975. "sebastian/resource-operations": "^3.0.3",
  6976. "sebastian/type": "^3.0",
  6977. "sebastian/version": "^3.0.2"
  6978. },
  6979. "require-dev": {
  6980. "phpspec/prophecy-phpunit": "^2.0.1"
  6981. },
  6982. "suggest": {
  6983. "ext-soap": "*",
  6984. "ext-xdebug": "*"
  6985. },
  6986. "bin": [
  6987. "phpunit"
  6988. ],
  6989. "type": "library",
  6990. "extra": {
  6991. "branch-alias": {
  6992. "dev-master": "9.5-dev"
  6993. }
  6994. },
  6995. "autoload": {
  6996. "files": [
  6997. "src/Framework/Assert/Functions.php"
  6998. ],
  6999. "classmap": [
  7000. "src/"
  7001. ]
  7002. },
  7003. "notification-url": "https://packagist.org/downloads/",
  7004. "license": [
  7005. "BSD-3-Clause"
  7006. ],
  7007. "authors": [
  7008. {
  7009. "name": "Sebastian Bergmann",
  7010. "email": "sebastian@phpunit.de",
  7011. "role": "lead"
  7012. }
  7013. ],
  7014. "description": "The PHP Unit Testing framework.",
  7015. "homepage": "https://phpunit.de/",
  7016. "keywords": [
  7017. "phpunit",
  7018. "testing",
  7019. "xunit"
  7020. ],
  7021. "support": {
  7022. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7023. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  7024. },
  7025. "funding": [
  7026. {
  7027. "url": "https://phpunit.de/sponsors.html",
  7028. "type": "custom"
  7029. },
  7030. {
  7031. "url": "https://github.com/sebastianbergmann",
  7032. "type": "github"
  7033. }
  7034. ],
  7035. "time": "2022-06-19T12:14:25+00:00"
  7036. },
  7037. {
  7038. "name": "sebastian/cli-parser",
  7039. "version": "1.0.1",
  7040. "source": {
  7041. "type": "git",
  7042. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7043. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  7044. },
  7045. "dist": {
  7046. "type": "zip",
  7047. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  7048. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  7049. "shasum": ""
  7050. },
  7051. "require": {
  7052. "php": ">=7.3"
  7053. },
  7054. "require-dev": {
  7055. "phpunit/phpunit": "^9.3"
  7056. },
  7057. "type": "library",
  7058. "extra": {
  7059. "branch-alias": {
  7060. "dev-master": "1.0-dev"
  7061. }
  7062. },
  7063. "autoload": {
  7064. "classmap": [
  7065. "src/"
  7066. ]
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "BSD-3-Clause"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Sebastian Bergmann",
  7075. "email": "sebastian@phpunit.de",
  7076. "role": "lead"
  7077. }
  7078. ],
  7079. "description": "Library for parsing CLI options",
  7080. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7081. "support": {
  7082. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7083. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  7084. },
  7085. "funding": [
  7086. {
  7087. "url": "https://github.com/sebastianbergmann",
  7088. "type": "github"
  7089. }
  7090. ],
  7091. "time": "2020-09-28T06:08:49+00:00"
  7092. },
  7093. {
  7094. "name": "sebastian/code-unit",
  7095. "version": "1.0.8",
  7096. "source": {
  7097. "type": "git",
  7098. "url": "https://github.com/sebastianbergmann/code-unit.git",
  7099. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  7100. },
  7101. "dist": {
  7102. "type": "zip",
  7103. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  7104. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  7105. "shasum": ""
  7106. },
  7107. "require": {
  7108. "php": ">=7.3"
  7109. },
  7110. "require-dev": {
  7111. "phpunit/phpunit": "^9.3"
  7112. },
  7113. "type": "library",
  7114. "extra": {
  7115. "branch-alias": {
  7116. "dev-master": "1.0-dev"
  7117. }
  7118. },
  7119. "autoload": {
  7120. "classmap": [
  7121. "src/"
  7122. ]
  7123. },
  7124. "notification-url": "https://packagist.org/downloads/",
  7125. "license": [
  7126. "BSD-3-Clause"
  7127. ],
  7128. "authors": [
  7129. {
  7130. "name": "Sebastian Bergmann",
  7131. "email": "sebastian@phpunit.de",
  7132. "role": "lead"
  7133. }
  7134. ],
  7135. "description": "Collection of value objects that represent the PHP code units",
  7136. "homepage": "https://github.com/sebastianbergmann/code-unit",
  7137. "support": {
  7138. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  7139. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  7140. },
  7141. "funding": [
  7142. {
  7143. "url": "https://github.com/sebastianbergmann",
  7144. "type": "github"
  7145. }
  7146. ],
  7147. "time": "2020-10-26T13:08:54+00:00"
  7148. },
  7149. {
  7150. "name": "sebastian/code-unit-reverse-lookup",
  7151. "version": "2.0.3",
  7152. "source": {
  7153. "type": "git",
  7154. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7155. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  7156. },
  7157. "dist": {
  7158. "type": "zip",
  7159. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7160. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7161. "shasum": ""
  7162. },
  7163. "require": {
  7164. "php": ">=7.3"
  7165. },
  7166. "require-dev": {
  7167. "phpunit/phpunit": "^9.3"
  7168. },
  7169. "type": "library",
  7170. "extra": {
  7171. "branch-alias": {
  7172. "dev-master": "2.0-dev"
  7173. }
  7174. },
  7175. "autoload": {
  7176. "classmap": [
  7177. "src/"
  7178. ]
  7179. },
  7180. "notification-url": "https://packagist.org/downloads/",
  7181. "license": [
  7182. "BSD-3-Clause"
  7183. ],
  7184. "authors": [
  7185. {
  7186. "name": "Sebastian Bergmann",
  7187. "email": "sebastian@phpunit.de"
  7188. }
  7189. ],
  7190. "description": "Looks up which function or method a line of code belongs to",
  7191. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7192. "support": {
  7193. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7194. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  7195. },
  7196. "funding": [
  7197. {
  7198. "url": "https://github.com/sebastianbergmann",
  7199. "type": "github"
  7200. }
  7201. ],
  7202. "time": "2020-09-28T05:30:19+00:00"
  7203. },
  7204. {
  7205. "name": "sebastian/comparator",
  7206. "version": "4.0.6",
  7207. "source": {
  7208. "type": "git",
  7209. "url": "https://github.com/sebastianbergmann/comparator.git",
  7210. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  7211. },
  7212. "dist": {
  7213. "type": "zip",
  7214. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  7215. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  7216. "shasum": ""
  7217. },
  7218. "require": {
  7219. "php": ">=7.3",
  7220. "sebastian/diff": "^4.0",
  7221. "sebastian/exporter": "^4.0"
  7222. },
  7223. "require-dev": {
  7224. "phpunit/phpunit": "^9.3"
  7225. },
  7226. "type": "library",
  7227. "extra": {
  7228. "branch-alias": {
  7229. "dev-master": "4.0-dev"
  7230. }
  7231. },
  7232. "autoload": {
  7233. "classmap": [
  7234. "src/"
  7235. ]
  7236. },
  7237. "notification-url": "https://packagist.org/downloads/",
  7238. "license": [
  7239. "BSD-3-Clause"
  7240. ],
  7241. "authors": [
  7242. {
  7243. "name": "Sebastian Bergmann",
  7244. "email": "sebastian@phpunit.de"
  7245. },
  7246. {
  7247. "name": "Jeff Welch",
  7248. "email": "whatthejeff@gmail.com"
  7249. },
  7250. {
  7251. "name": "Volker Dusch",
  7252. "email": "github@wallbash.com"
  7253. },
  7254. {
  7255. "name": "Bernhard Schussek",
  7256. "email": "bschussek@2bepublished.at"
  7257. }
  7258. ],
  7259. "description": "Provides the functionality to compare PHP values for equality",
  7260. "homepage": "https://github.com/sebastianbergmann/comparator",
  7261. "keywords": [
  7262. "comparator",
  7263. "compare",
  7264. "equality"
  7265. ],
  7266. "support": {
  7267. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7268. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  7269. },
  7270. "funding": [
  7271. {
  7272. "url": "https://github.com/sebastianbergmann",
  7273. "type": "github"
  7274. }
  7275. ],
  7276. "time": "2020-10-26T15:49:45+00:00"
  7277. },
  7278. {
  7279. "name": "sebastian/complexity",
  7280. "version": "2.0.2",
  7281. "source": {
  7282. "type": "git",
  7283. "url": "https://github.com/sebastianbergmann/complexity.git",
  7284. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  7285. },
  7286. "dist": {
  7287. "type": "zip",
  7288. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  7289. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  7290. "shasum": ""
  7291. },
  7292. "require": {
  7293. "nikic/php-parser": "^4.7",
  7294. "php": ">=7.3"
  7295. },
  7296. "require-dev": {
  7297. "phpunit/phpunit": "^9.3"
  7298. },
  7299. "type": "library",
  7300. "extra": {
  7301. "branch-alias": {
  7302. "dev-master": "2.0-dev"
  7303. }
  7304. },
  7305. "autoload": {
  7306. "classmap": [
  7307. "src/"
  7308. ]
  7309. },
  7310. "notification-url": "https://packagist.org/downloads/",
  7311. "license": [
  7312. "BSD-3-Clause"
  7313. ],
  7314. "authors": [
  7315. {
  7316. "name": "Sebastian Bergmann",
  7317. "email": "sebastian@phpunit.de",
  7318. "role": "lead"
  7319. }
  7320. ],
  7321. "description": "Library for calculating the complexity of PHP code units",
  7322. "homepage": "https://github.com/sebastianbergmann/complexity",
  7323. "support": {
  7324. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7325. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  7326. },
  7327. "funding": [
  7328. {
  7329. "url": "https://github.com/sebastianbergmann",
  7330. "type": "github"
  7331. }
  7332. ],
  7333. "time": "2020-10-26T15:52:27+00:00"
  7334. },
  7335. {
  7336. "name": "sebastian/diff",
  7337. "version": "4.0.4",
  7338. "source": {
  7339. "type": "git",
  7340. "url": "https://github.com/sebastianbergmann/diff.git",
  7341. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  7342. },
  7343. "dist": {
  7344. "type": "zip",
  7345. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  7346. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  7347. "shasum": ""
  7348. },
  7349. "require": {
  7350. "php": ">=7.3"
  7351. },
  7352. "require-dev": {
  7353. "phpunit/phpunit": "^9.3",
  7354. "symfony/process": "^4.2 || ^5"
  7355. },
  7356. "type": "library",
  7357. "extra": {
  7358. "branch-alias": {
  7359. "dev-master": "4.0-dev"
  7360. }
  7361. },
  7362. "autoload": {
  7363. "classmap": [
  7364. "src/"
  7365. ]
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "BSD-3-Clause"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "Sebastian Bergmann",
  7374. "email": "sebastian@phpunit.de"
  7375. },
  7376. {
  7377. "name": "Kore Nordmann",
  7378. "email": "mail@kore-nordmann.de"
  7379. }
  7380. ],
  7381. "description": "Diff implementation",
  7382. "homepage": "https://github.com/sebastianbergmann/diff",
  7383. "keywords": [
  7384. "diff",
  7385. "udiff",
  7386. "unidiff",
  7387. "unified diff"
  7388. ],
  7389. "support": {
  7390. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7391. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  7392. },
  7393. "funding": [
  7394. {
  7395. "url": "https://github.com/sebastianbergmann",
  7396. "type": "github"
  7397. }
  7398. ],
  7399. "time": "2020-10-26T13:10:38+00:00"
  7400. },
  7401. {
  7402. "name": "sebastian/environment",
  7403. "version": "5.1.4",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/sebastianbergmann/environment.git",
  7407. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  7412. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  7413. "shasum": ""
  7414. },
  7415. "require": {
  7416. "php": ">=7.3"
  7417. },
  7418. "require-dev": {
  7419. "phpunit/phpunit": "^9.3"
  7420. },
  7421. "suggest": {
  7422. "ext-posix": "*"
  7423. },
  7424. "type": "library",
  7425. "extra": {
  7426. "branch-alias": {
  7427. "dev-master": "5.1-dev"
  7428. }
  7429. },
  7430. "autoload": {
  7431. "classmap": [
  7432. "src/"
  7433. ]
  7434. },
  7435. "notification-url": "https://packagist.org/downloads/",
  7436. "license": [
  7437. "BSD-3-Clause"
  7438. ],
  7439. "authors": [
  7440. {
  7441. "name": "Sebastian Bergmann",
  7442. "email": "sebastian@phpunit.de"
  7443. }
  7444. ],
  7445. "description": "Provides functionality to handle HHVM/PHP environments",
  7446. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7447. "keywords": [
  7448. "Xdebug",
  7449. "environment",
  7450. "hhvm"
  7451. ],
  7452. "support": {
  7453. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7454. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  7455. },
  7456. "funding": [
  7457. {
  7458. "url": "https://github.com/sebastianbergmann",
  7459. "type": "github"
  7460. }
  7461. ],
  7462. "time": "2022-04-03T09:37:03+00:00"
  7463. },
  7464. {
  7465. "name": "sebastian/exporter",
  7466. "version": "4.0.4",
  7467. "source": {
  7468. "type": "git",
  7469. "url": "https://github.com/sebastianbergmann/exporter.git",
  7470. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  7471. },
  7472. "dist": {
  7473. "type": "zip",
  7474. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  7475. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  7476. "shasum": ""
  7477. },
  7478. "require": {
  7479. "php": ">=7.3",
  7480. "sebastian/recursion-context": "^4.0"
  7481. },
  7482. "require-dev": {
  7483. "ext-mbstring": "*",
  7484. "phpunit/phpunit": "^9.3"
  7485. },
  7486. "type": "library",
  7487. "extra": {
  7488. "branch-alias": {
  7489. "dev-master": "4.0-dev"
  7490. }
  7491. },
  7492. "autoload": {
  7493. "classmap": [
  7494. "src/"
  7495. ]
  7496. },
  7497. "notification-url": "https://packagist.org/downloads/",
  7498. "license": [
  7499. "BSD-3-Clause"
  7500. ],
  7501. "authors": [
  7502. {
  7503. "name": "Sebastian Bergmann",
  7504. "email": "sebastian@phpunit.de"
  7505. },
  7506. {
  7507. "name": "Jeff Welch",
  7508. "email": "whatthejeff@gmail.com"
  7509. },
  7510. {
  7511. "name": "Volker Dusch",
  7512. "email": "github@wallbash.com"
  7513. },
  7514. {
  7515. "name": "Adam Harvey",
  7516. "email": "aharvey@php.net"
  7517. },
  7518. {
  7519. "name": "Bernhard Schussek",
  7520. "email": "bschussek@gmail.com"
  7521. }
  7522. ],
  7523. "description": "Provides the functionality to export PHP variables for visualization",
  7524. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7525. "keywords": [
  7526. "export",
  7527. "exporter"
  7528. ],
  7529. "support": {
  7530. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7531. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  7532. },
  7533. "funding": [
  7534. {
  7535. "url": "https://github.com/sebastianbergmann",
  7536. "type": "github"
  7537. }
  7538. ],
  7539. "time": "2021-11-11T14:18:36+00:00"
  7540. },
  7541. {
  7542. "name": "sebastian/global-state",
  7543. "version": "5.0.5",
  7544. "source": {
  7545. "type": "git",
  7546. "url": "https://github.com/sebastianbergmann/global-state.git",
  7547. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  7548. },
  7549. "dist": {
  7550. "type": "zip",
  7551. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7552. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7553. "shasum": ""
  7554. },
  7555. "require": {
  7556. "php": ">=7.3",
  7557. "sebastian/object-reflector": "^2.0",
  7558. "sebastian/recursion-context": "^4.0"
  7559. },
  7560. "require-dev": {
  7561. "ext-dom": "*",
  7562. "phpunit/phpunit": "^9.3"
  7563. },
  7564. "suggest": {
  7565. "ext-uopz": "*"
  7566. },
  7567. "type": "library",
  7568. "extra": {
  7569. "branch-alias": {
  7570. "dev-master": "5.0-dev"
  7571. }
  7572. },
  7573. "autoload": {
  7574. "classmap": [
  7575. "src/"
  7576. ]
  7577. },
  7578. "notification-url": "https://packagist.org/downloads/",
  7579. "license": [
  7580. "BSD-3-Clause"
  7581. ],
  7582. "authors": [
  7583. {
  7584. "name": "Sebastian Bergmann",
  7585. "email": "sebastian@phpunit.de"
  7586. }
  7587. ],
  7588. "description": "Snapshotting of global state",
  7589. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7590. "keywords": [
  7591. "global state"
  7592. ],
  7593. "support": {
  7594. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7595. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  7596. },
  7597. "funding": [
  7598. {
  7599. "url": "https://github.com/sebastianbergmann",
  7600. "type": "github"
  7601. }
  7602. ],
  7603. "time": "2022-02-14T08:28:10+00:00"
  7604. },
  7605. {
  7606. "name": "sebastian/lines-of-code",
  7607. "version": "1.0.3",
  7608. "source": {
  7609. "type": "git",
  7610. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7611. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  7612. },
  7613. "dist": {
  7614. "type": "zip",
  7615. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7616. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7617. "shasum": ""
  7618. },
  7619. "require": {
  7620. "nikic/php-parser": "^4.6",
  7621. "php": ">=7.3"
  7622. },
  7623. "require-dev": {
  7624. "phpunit/phpunit": "^9.3"
  7625. },
  7626. "type": "library",
  7627. "extra": {
  7628. "branch-alias": {
  7629. "dev-master": "1.0-dev"
  7630. }
  7631. },
  7632. "autoload": {
  7633. "classmap": [
  7634. "src/"
  7635. ]
  7636. },
  7637. "notification-url": "https://packagist.org/downloads/",
  7638. "license": [
  7639. "BSD-3-Clause"
  7640. ],
  7641. "authors": [
  7642. {
  7643. "name": "Sebastian Bergmann",
  7644. "email": "sebastian@phpunit.de",
  7645. "role": "lead"
  7646. }
  7647. ],
  7648. "description": "Library for counting the lines of code in PHP source code",
  7649. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7650. "support": {
  7651. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7652. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7653. },
  7654. "funding": [
  7655. {
  7656. "url": "https://github.com/sebastianbergmann",
  7657. "type": "github"
  7658. }
  7659. ],
  7660. "time": "2020-11-28T06:42:11+00:00"
  7661. },
  7662. {
  7663. "name": "sebastian/object-enumerator",
  7664. "version": "4.0.4",
  7665. "source": {
  7666. "type": "git",
  7667. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7668. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7669. },
  7670. "dist": {
  7671. "type": "zip",
  7672. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7673. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7674. "shasum": ""
  7675. },
  7676. "require": {
  7677. "php": ">=7.3",
  7678. "sebastian/object-reflector": "^2.0",
  7679. "sebastian/recursion-context": "^4.0"
  7680. },
  7681. "require-dev": {
  7682. "phpunit/phpunit": "^9.3"
  7683. },
  7684. "type": "library",
  7685. "extra": {
  7686. "branch-alias": {
  7687. "dev-master": "4.0-dev"
  7688. }
  7689. },
  7690. "autoload": {
  7691. "classmap": [
  7692. "src/"
  7693. ]
  7694. },
  7695. "notification-url": "https://packagist.org/downloads/",
  7696. "license": [
  7697. "BSD-3-Clause"
  7698. ],
  7699. "authors": [
  7700. {
  7701. "name": "Sebastian Bergmann",
  7702. "email": "sebastian@phpunit.de"
  7703. }
  7704. ],
  7705. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7706. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7707. "support": {
  7708. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7709. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7710. },
  7711. "funding": [
  7712. {
  7713. "url": "https://github.com/sebastianbergmann",
  7714. "type": "github"
  7715. }
  7716. ],
  7717. "time": "2020-10-26T13:12:34+00:00"
  7718. },
  7719. {
  7720. "name": "sebastian/object-reflector",
  7721. "version": "2.0.4",
  7722. "source": {
  7723. "type": "git",
  7724. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7725. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7726. },
  7727. "dist": {
  7728. "type": "zip",
  7729. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7730. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7731. "shasum": ""
  7732. },
  7733. "require": {
  7734. "php": ">=7.3"
  7735. },
  7736. "require-dev": {
  7737. "phpunit/phpunit": "^9.3"
  7738. },
  7739. "type": "library",
  7740. "extra": {
  7741. "branch-alias": {
  7742. "dev-master": "2.0-dev"
  7743. }
  7744. },
  7745. "autoload": {
  7746. "classmap": [
  7747. "src/"
  7748. ]
  7749. },
  7750. "notification-url": "https://packagist.org/downloads/",
  7751. "license": [
  7752. "BSD-3-Clause"
  7753. ],
  7754. "authors": [
  7755. {
  7756. "name": "Sebastian Bergmann",
  7757. "email": "sebastian@phpunit.de"
  7758. }
  7759. ],
  7760. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7761. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7762. "support": {
  7763. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7764. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7765. },
  7766. "funding": [
  7767. {
  7768. "url": "https://github.com/sebastianbergmann",
  7769. "type": "github"
  7770. }
  7771. ],
  7772. "time": "2020-10-26T13:14:26+00:00"
  7773. },
  7774. {
  7775. "name": "sebastian/recursion-context",
  7776. "version": "4.0.4",
  7777. "source": {
  7778. "type": "git",
  7779. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7780. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  7781. },
  7782. "dist": {
  7783. "type": "zip",
  7784. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  7785. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  7786. "shasum": ""
  7787. },
  7788. "require": {
  7789. "php": ">=7.3"
  7790. },
  7791. "require-dev": {
  7792. "phpunit/phpunit": "^9.3"
  7793. },
  7794. "type": "library",
  7795. "extra": {
  7796. "branch-alias": {
  7797. "dev-master": "4.0-dev"
  7798. }
  7799. },
  7800. "autoload": {
  7801. "classmap": [
  7802. "src/"
  7803. ]
  7804. },
  7805. "notification-url": "https://packagist.org/downloads/",
  7806. "license": [
  7807. "BSD-3-Clause"
  7808. ],
  7809. "authors": [
  7810. {
  7811. "name": "Sebastian Bergmann",
  7812. "email": "sebastian@phpunit.de"
  7813. },
  7814. {
  7815. "name": "Jeff Welch",
  7816. "email": "whatthejeff@gmail.com"
  7817. },
  7818. {
  7819. "name": "Adam Harvey",
  7820. "email": "aharvey@php.net"
  7821. }
  7822. ],
  7823. "description": "Provides functionality to recursively process PHP variables",
  7824. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7825. "support": {
  7826. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7827. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  7828. },
  7829. "funding": [
  7830. {
  7831. "url": "https://github.com/sebastianbergmann",
  7832. "type": "github"
  7833. }
  7834. ],
  7835. "time": "2020-10-26T13:17:30+00:00"
  7836. },
  7837. {
  7838. "name": "sebastian/resource-operations",
  7839. "version": "3.0.3",
  7840. "source": {
  7841. "type": "git",
  7842. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7843. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7844. },
  7845. "dist": {
  7846. "type": "zip",
  7847. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7848. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7849. "shasum": ""
  7850. },
  7851. "require": {
  7852. "php": ">=7.3"
  7853. },
  7854. "require-dev": {
  7855. "phpunit/phpunit": "^9.0"
  7856. },
  7857. "type": "library",
  7858. "extra": {
  7859. "branch-alias": {
  7860. "dev-master": "3.0-dev"
  7861. }
  7862. },
  7863. "autoload": {
  7864. "classmap": [
  7865. "src/"
  7866. ]
  7867. },
  7868. "notification-url": "https://packagist.org/downloads/",
  7869. "license": [
  7870. "BSD-3-Clause"
  7871. ],
  7872. "authors": [
  7873. {
  7874. "name": "Sebastian Bergmann",
  7875. "email": "sebastian@phpunit.de"
  7876. }
  7877. ],
  7878. "description": "Provides a list of PHP built-in functions that operate on resources",
  7879. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7880. "support": {
  7881. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7882. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7883. },
  7884. "funding": [
  7885. {
  7886. "url": "https://github.com/sebastianbergmann",
  7887. "type": "github"
  7888. }
  7889. ],
  7890. "time": "2020-09-28T06:45:17+00:00"
  7891. },
  7892. {
  7893. "name": "sebastian/type",
  7894. "version": "3.0.0",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/sebastianbergmann/type.git",
  7898. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  7903. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  7904. "shasum": ""
  7905. },
  7906. "require": {
  7907. "php": ">=7.3"
  7908. },
  7909. "require-dev": {
  7910. "phpunit/phpunit": "^9.5"
  7911. },
  7912. "type": "library",
  7913. "extra": {
  7914. "branch-alias": {
  7915. "dev-master": "3.0-dev"
  7916. }
  7917. },
  7918. "autoload": {
  7919. "classmap": [
  7920. "src/"
  7921. ]
  7922. },
  7923. "notification-url": "https://packagist.org/downloads/",
  7924. "license": [
  7925. "BSD-3-Clause"
  7926. ],
  7927. "authors": [
  7928. {
  7929. "name": "Sebastian Bergmann",
  7930. "email": "sebastian@phpunit.de",
  7931. "role": "lead"
  7932. }
  7933. ],
  7934. "description": "Collection of value objects that represent the types of the PHP type system",
  7935. "homepage": "https://github.com/sebastianbergmann/type",
  7936. "support": {
  7937. "issues": "https://github.com/sebastianbergmann/type/issues",
  7938. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  7939. },
  7940. "funding": [
  7941. {
  7942. "url": "https://github.com/sebastianbergmann",
  7943. "type": "github"
  7944. }
  7945. ],
  7946. "time": "2022-03-15T09:54:48+00:00"
  7947. },
  7948. {
  7949. "name": "sebastian/version",
  7950. "version": "3.0.2",
  7951. "source": {
  7952. "type": "git",
  7953. "url": "https://github.com/sebastianbergmann/version.git",
  7954. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7955. },
  7956. "dist": {
  7957. "type": "zip",
  7958. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7959. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7960. "shasum": ""
  7961. },
  7962. "require": {
  7963. "php": ">=7.3"
  7964. },
  7965. "type": "library",
  7966. "extra": {
  7967. "branch-alias": {
  7968. "dev-master": "3.0-dev"
  7969. }
  7970. },
  7971. "autoload": {
  7972. "classmap": [
  7973. "src/"
  7974. ]
  7975. },
  7976. "notification-url": "https://packagist.org/downloads/",
  7977. "license": [
  7978. "BSD-3-Clause"
  7979. ],
  7980. "authors": [
  7981. {
  7982. "name": "Sebastian Bergmann",
  7983. "email": "sebastian@phpunit.de",
  7984. "role": "lead"
  7985. }
  7986. ],
  7987. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7988. "homepage": "https://github.com/sebastianbergmann/version",
  7989. "support": {
  7990. "issues": "https://github.com/sebastianbergmann/version/issues",
  7991. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7992. },
  7993. "funding": [
  7994. {
  7995. "url": "https://github.com/sebastianbergmann",
  7996. "type": "github"
  7997. }
  7998. ],
  7999. "time": "2020-09-28T06:39:44+00:00"
  8000. },
  8001. {
  8002. "name": "theseer/tokenizer",
  8003. "version": "1.2.1",
  8004. "source": {
  8005. "type": "git",
  8006. "url": "https://github.com/theseer/tokenizer.git",
  8007. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  8008. },
  8009. "dist": {
  8010. "type": "zip",
  8011. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  8012. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  8013. "shasum": ""
  8014. },
  8015. "require": {
  8016. "ext-dom": "*",
  8017. "ext-tokenizer": "*",
  8018. "ext-xmlwriter": "*",
  8019. "php": "^7.2 || ^8.0"
  8020. },
  8021. "type": "library",
  8022. "autoload": {
  8023. "classmap": [
  8024. "src/"
  8025. ]
  8026. },
  8027. "notification-url": "https://packagist.org/downloads/",
  8028. "license": [
  8029. "BSD-3-Clause"
  8030. ],
  8031. "authors": [
  8032. {
  8033. "name": "Arne Blankerts",
  8034. "email": "arne@blankerts.de",
  8035. "role": "Developer"
  8036. }
  8037. ],
  8038. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8039. "support": {
  8040. "issues": "https://github.com/theseer/tokenizer/issues",
  8041. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  8042. },
  8043. "funding": [
  8044. {
  8045. "url": "https://github.com/theseer",
  8046. "type": "github"
  8047. }
  8048. ],
  8049. "time": "2021-07-28T10:34:58+00:00"
  8050. }
  8051. ],
  8052. "aliases": [],
  8053. "minimum-stability": "dev",
  8054. "stability-flags": [],
  8055. "prefer-stable": true,
  8056. "prefer-lowest": false,
  8057. "platform": {
  8058. "php": "^7.3|^8.0"
  8059. },
  8060. "platform-dev": [],
  8061. "plugin-api-version": "2.0.0"
  8062. }