composer.lock 290 KB

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