composer.lock 280 KB

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