composer.lock 228 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499
  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": "4ae6fc7274c018b1bb34bb1b80bd62c5",
  8. "packages": [
  9. {
  10. "name": "antoligy/dom-string-iterators",
  11. "version": "v1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/antoligy/dom-string-iterators.git",
  15. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/antoligy/dom-string-iterators/zipball/fae88f66e1970d68c5585fc42db44f1217bf74e6",
  20. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "": "src/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "CC0-1.0"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Alex Wilson",
  39. "email": "a@ax.gy"
  40. },
  41. {
  42. "name": "Kornel Lesinski",
  43. "email": "pornel@pornel.net"
  44. },
  45. {
  46. "name": "Patrick Galbraith",
  47. "email": "patrick.j.galbraith@gmail.com"
  48. }
  49. ],
  50. "description": "Composer package for DOMWordsIterator and DOMLettersIterator",
  51. "support": {
  52. "issues": "https://github.com/antoligy/dom-string-iterators/issues",
  53. "source": "https://github.com/antoligy/dom-string-iterators/tree/v1.0.1"
  54. },
  55. "time": "2018-02-03T16:01:11+00:00"
  56. },
  57. {
  58. "name": "composer/ca-bundle",
  59. "version": "1.2.9",
  60. "source": {
  61. "type": "git",
  62. "url": "https://github.com/composer/ca-bundle.git",
  63. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
  64. },
  65. "dist": {
  66. "type": "zip",
  67. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  68. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  69. "shasum": ""
  70. },
  71. "require": {
  72. "ext-openssl": "*",
  73. "ext-pcre": "*",
  74. "php": "^5.3.2 || ^7.0 || ^8.0"
  75. },
  76. "require-dev": {
  77. "phpstan/phpstan": "^0.12.55",
  78. "psr/log": "^1.0",
  79. "symfony/phpunit-bridge": "^4.2 || ^5",
  80. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  81. },
  82. "type": "library",
  83. "extra": {
  84. "branch-alias": {
  85. "dev-main": "1.x-dev"
  86. }
  87. },
  88. "autoload": {
  89. "psr-4": {
  90. "Composer\\CaBundle\\": "src"
  91. }
  92. },
  93. "notification-url": "https://packagist.org/downloads/",
  94. "license": [
  95. "MIT"
  96. ],
  97. "authors": [
  98. {
  99. "name": "Jordi Boggiano",
  100. "email": "j.boggiano@seld.be",
  101. "homepage": "http://seld.be"
  102. }
  103. ],
  104. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  105. "keywords": [
  106. "cabundle",
  107. "cacert",
  108. "certificate",
  109. "ssl",
  110. "tls"
  111. ],
  112. "support": {
  113. "irc": "irc://irc.freenode.org/composer",
  114. "issues": "https://github.com/composer/ca-bundle/issues",
  115. "source": "https://github.com/composer/ca-bundle/tree/1.2.9"
  116. },
  117. "funding": [
  118. {
  119. "url": "https://packagist.com",
  120. "type": "custom"
  121. },
  122. {
  123. "url": "https://github.com/composer",
  124. "type": "github"
  125. },
  126. {
  127. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  128. "type": "tidelift"
  129. }
  130. ],
  131. "time": "2021-01-12T12:10:35+00:00"
  132. },
  133. {
  134. "name": "composer/semver",
  135. "version": "1.7.2",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/composer/semver.git",
  139. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  144. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "php": "^5.3.2 || ^7.0 || ^8.0"
  149. },
  150. "require-dev": {
  151. "phpunit/phpunit": "^4.5 || ^5.0.5"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "1.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "Composer\\Semver\\": "src"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Nils Adermann",
  171. "email": "naderman@naderman.de",
  172. "homepage": "http://www.naderman.de"
  173. },
  174. {
  175. "name": "Jordi Boggiano",
  176. "email": "j.boggiano@seld.be",
  177. "homepage": "http://seld.be"
  178. },
  179. {
  180. "name": "Rob Bast",
  181. "email": "rob.bast@gmail.com",
  182. "homepage": "http://robbast.nl"
  183. }
  184. ],
  185. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  186. "keywords": [
  187. "semantic",
  188. "semver",
  189. "validation",
  190. "versioning"
  191. ],
  192. "support": {
  193. "irc": "irc://irc.freenode.org/composer",
  194. "issues": "https://github.com/composer/semver/issues",
  195. "source": "https://github.com/composer/semver/tree/1.7.2"
  196. },
  197. "funding": [
  198. {
  199. "url": "https://packagist.com",
  200. "type": "custom"
  201. },
  202. {
  203. "url": "https://github.com/composer",
  204. "type": "github"
  205. },
  206. {
  207. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  208. "type": "tidelift"
  209. }
  210. ],
  211. "time": "2020-12-03T15:47:16+00:00"
  212. },
  213. {
  214. "name": "doctrine/cache",
  215. "version": "1.10.2",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/cache.git",
  219. "reference": "13e3381b25847283a91948d04640543941309727"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  224. "reference": "13e3381b25847283a91948d04640543941309727",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "~7.1 || ^8.0"
  229. },
  230. "conflict": {
  231. "doctrine/common": ">2.2,<2.4"
  232. },
  233. "require-dev": {
  234. "alcaeus/mongo-php-adapter": "^1.1",
  235. "doctrine/coding-standard": "^6.0",
  236. "mongodb/mongodb": "^1.1",
  237. "phpunit/phpunit": "^7.0",
  238. "predis/predis": "~1.0"
  239. },
  240. "suggest": {
  241. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  242. },
  243. "type": "library",
  244. "extra": {
  245. "branch-alias": {
  246. "dev-master": "1.9.x-dev"
  247. }
  248. },
  249. "autoload": {
  250. "psr-4": {
  251. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "MIT"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Guilherme Blanco",
  261. "email": "guilhermeblanco@gmail.com"
  262. },
  263. {
  264. "name": "Roman Borschel",
  265. "email": "roman@code-factory.org"
  266. },
  267. {
  268. "name": "Benjamin Eberlei",
  269. "email": "kontakt@beberlei.de"
  270. },
  271. {
  272. "name": "Jonathan Wage",
  273. "email": "jonwage@gmail.com"
  274. },
  275. {
  276. "name": "Johannes Schmitt",
  277. "email": "schmittjoh@gmail.com"
  278. }
  279. ],
  280. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  281. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  282. "keywords": [
  283. "abstraction",
  284. "apcu",
  285. "cache",
  286. "caching",
  287. "couchdb",
  288. "memcached",
  289. "php",
  290. "redis",
  291. "xcache"
  292. ],
  293. "support": {
  294. "issues": "https://github.com/doctrine/cache/issues",
  295. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  296. },
  297. "funding": [
  298. {
  299. "url": "https://www.doctrine-project.org/sponsorship.html",
  300. "type": "custom"
  301. },
  302. {
  303. "url": "https://www.patreon.com/phpdoctrine",
  304. "type": "patreon"
  305. },
  306. {
  307. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  308. "type": "tidelift"
  309. }
  310. ],
  311. "time": "2020-07-07T18:54:01+00:00"
  312. },
  313. {
  314. "name": "doctrine/collections",
  315. "version": "1.6.7",
  316. "source": {
  317. "type": "git",
  318. "url": "https://github.com/doctrine/collections.git",
  319. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  320. },
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  324. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  325. "shasum": ""
  326. },
  327. "require": {
  328. "php": "^7.1.3 || ^8.0"
  329. },
  330. "require-dev": {
  331. "doctrine/coding-standard": "^6.0",
  332. "phpstan/phpstan-shim": "^0.9.2",
  333. "phpunit/phpunit": "^7.0",
  334. "vimeo/psalm": "^3.8.1"
  335. },
  336. "type": "library",
  337. "autoload": {
  338. "psr-4": {
  339. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  340. }
  341. },
  342. "notification-url": "https://packagist.org/downloads/",
  343. "license": [
  344. "MIT"
  345. ],
  346. "authors": [
  347. {
  348. "name": "Guilherme Blanco",
  349. "email": "guilhermeblanco@gmail.com"
  350. },
  351. {
  352. "name": "Roman Borschel",
  353. "email": "roman@code-factory.org"
  354. },
  355. {
  356. "name": "Benjamin Eberlei",
  357. "email": "kontakt@beberlei.de"
  358. },
  359. {
  360. "name": "Jonathan Wage",
  361. "email": "jonwage@gmail.com"
  362. },
  363. {
  364. "name": "Johannes Schmitt",
  365. "email": "schmittjoh@gmail.com"
  366. }
  367. ],
  368. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  369. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  370. "keywords": [
  371. "array",
  372. "collections",
  373. "iterators",
  374. "php"
  375. ],
  376. "support": {
  377. "issues": "https://github.com/doctrine/collections/issues",
  378. "source": "https://github.com/doctrine/collections/tree/1.6.7"
  379. },
  380. "time": "2020-07-27T17:53:49+00:00"
  381. },
  382. {
  383. "name": "donatj/phpuseragentparser",
  384. "version": "v1.3.0",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/donatj/PhpUserAgent.git",
  388. "reference": "f9a521726b2ce4c5173281ceaab5a02c05b691ef"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/f9a521726b2ce4c5173281ceaab5a02c05b691ef",
  393. "reference": "f9a521726b2ce4c5173281ceaab5a02c05b691ef",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": ">=5.3.0"
  398. },
  399. "require-dev": {
  400. "camspiers/json-pretty": "~1.0",
  401. "donatj/drop": "*",
  402. "phpunit/phpunit": "~4.8|~9"
  403. },
  404. "type": "library",
  405. "autoload": {
  406. "files": [
  407. "src/UserAgentParser.php"
  408. ],
  409. "psr-4": {
  410. "donatj\\UserAgent\\": "src/UserAgent"
  411. }
  412. },
  413. "notification-url": "https://packagist.org/downloads/",
  414. "license": [
  415. "MIT"
  416. ],
  417. "authors": [
  418. {
  419. "name": "Jesse G. Donat",
  420. "email": "donatj@gmail.com",
  421. "homepage": "https://donatstudios.com",
  422. "role": "Developer"
  423. }
  424. ],
  425. "description": "Lightning fast, minimalist PHP UserAgent string parser.",
  426. "homepage": "https://donatstudios.com/PHP-Parser-HTTP_USER_AGENT",
  427. "keywords": [
  428. "browser",
  429. "browser detection",
  430. "parser",
  431. "user agent",
  432. "useragent"
  433. ],
  434. "support": {
  435. "issues": "https://github.com/donatj/PhpUserAgent/issues",
  436. "source": "https://github.com/donatj/PhpUserAgent/tree/v1.3.0"
  437. },
  438. "funding": [
  439. {
  440. "url": "https://www.paypal.me/donatj/5",
  441. "type": "custom"
  442. },
  443. {
  444. "url": "https://github.com/donatj",
  445. "type": "github"
  446. }
  447. ],
  448. "time": "2021-02-18T04:30:49+00:00"
  449. },
  450. {
  451. "name": "dragonmantank/cron-expression",
  452. "version": "v1.2.1",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/dragonmantank/cron-expression.git",
  456. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  461. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  462. "shasum": ""
  463. },
  464. "require": {
  465. "php": ">=5.3.2"
  466. },
  467. "require-dev": {
  468. "phpunit/phpunit": "~4.0|~5.0"
  469. },
  470. "type": "library",
  471. "autoload": {
  472. "psr-4": {
  473. "Cron\\": "src/Cron/"
  474. }
  475. },
  476. "notification-url": "https://packagist.org/downloads/",
  477. "license": [
  478. "MIT"
  479. ],
  480. "authors": [
  481. {
  482. "name": "Michael Dowling",
  483. "email": "mtdowling@gmail.com",
  484. "homepage": "https://github.com/mtdowling"
  485. }
  486. ],
  487. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  488. "keywords": [
  489. "cron",
  490. "schedule"
  491. ],
  492. "support": {
  493. "source": "https://github.com/dragonmantank/cron-expression/tree/v1.2.0"
  494. },
  495. "time": "2017-01-23T04:29:33+00:00"
  496. },
  497. {
  498. "name": "enshrined/svg-sanitize",
  499. "version": "0.14.0",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/darylldoyle/svg-sanitizer.git",
  503. "reference": "beff89576a72540ee99476aeb9cfe98222e76fb8"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/beff89576a72540ee99476aeb9cfe98222e76fb8",
  508. "reference": "beff89576a72540ee99476aeb9cfe98222e76fb8",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "ext-dom": "*",
  513. "ext-libxml": "*"
  514. },
  515. "require-dev": {
  516. "codeclimate/php-test-reporter": "^0.1.2",
  517. "phpunit/phpunit": "^6"
  518. },
  519. "type": "library",
  520. "autoload": {
  521. "psr-4": {
  522. "enshrined\\svgSanitize\\": "src"
  523. }
  524. },
  525. "notification-url": "https://packagist.org/downloads/",
  526. "license": [
  527. "GPL-2.0-or-later"
  528. ],
  529. "authors": [
  530. {
  531. "name": "Daryll Doyle",
  532. "email": "daryll@enshrined.co.uk"
  533. }
  534. ],
  535. "description": "An SVG sanitizer for PHP",
  536. "support": {
  537. "issues": "https://github.com/darylldoyle/svg-sanitizer/issues",
  538. "source": "https://github.com/darylldoyle/svg-sanitizer/tree/0.14.0"
  539. },
  540. "time": "2021-01-21T10:13:20+00:00"
  541. },
  542. {
  543. "name": "erusev/parsedown",
  544. "version": "1.7.4",
  545. "source": {
  546. "type": "git",
  547. "url": "https://github.com/erusev/parsedown.git",
  548. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  549. },
  550. "dist": {
  551. "type": "zip",
  552. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  553. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  554. "shasum": ""
  555. },
  556. "require": {
  557. "ext-mbstring": "*",
  558. "php": ">=5.3.0"
  559. },
  560. "require-dev": {
  561. "phpunit/phpunit": "^4.8.35"
  562. },
  563. "type": "library",
  564. "autoload": {
  565. "psr-0": {
  566. "Parsedown": ""
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "MIT"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Emanuil Rusev",
  576. "email": "hello@erusev.com",
  577. "homepage": "http://erusev.com"
  578. }
  579. ],
  580. "description": "Parser for Markdown.",
  581. "homepage": "http://parsedown.org",
  582. "keywords": [
  583. "markdown",
  584. "parser"
  585. ],
  586. "support": {
  587. "issues": "https://github.com/erusev/parsedown/issues",
  588. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  589. },
  590. "time": "2019-12-30T22:54:17+00:00"
  591. },
  592. {
  593. "name": "erusev/parsedown-extra",
  594. "version": "0.8.1",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/erusev/parsedown-extra.git",
  598. "reference": "91ac3ff98f0cea243bdccc688df43810f044dcef"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/91ac3ff98f0cea243bdccc688df43810f044dcef",
  603. "reference": "91ac3ff98f0cea243bdccc688df43810f044dcef",
  604. "shasum": ""
  605. },
  606. "require": {
  607. "erusev/parsedown": "^1.7.4"
  608. },
  609. "require-dev": {
  610. "phpunit/phpunit": "^4.8.35"
  611. },
  612. "type": "library",
  613. "autoload": {
  614. "psr-0": {
  615. "ParsedownExtra": ""
  616. }
  617. },
  618. "notification-url": "https://packagist.org/downloads/",
  619. "license": [
  620. "MIT"
  621. ],
  622. "authors": [
  623. {
  624. "name": "Emanuil Rusev",
  625. "email": "hello@erusev.com",
  626. "homepage": "http://erusev.com"
  627. }
  628. ],
  629. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  630. "homepage": "https://github.com/erusev/parsedown-extra",
  631. "keywords": [
  632. "markdown",
  633. "markdown extra",
  634. "parsedown",
  635. "parser"
  636. ],
  637. "support": {
  638. "issues": "https://github.com/erusev/parsedown-extra/issues",
  639. "source": "https://github.com/erusev/parsedown-extra/tree/0.8.x"
  640. },
  641. "time": "2019-12-30T23:20:37+00:00"
  642. },
  643. {
  644. "name": "filp/whoops",
  645. "version": "2.9.2",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/filp/whoops.git",
  649. "reference": "df7933820090489623ce0be5e85c7e693638e536"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536",
  654. "reference": "df7933820090489623ce0be5e85c7e693638e536",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "php": "^5.5.9 || ^7.0 || ^8.0",
  659. "psr/log": "^1.0.1"
  660. },
  661. "require-dev": {
  662. "mockery/mockery": "^0.9 || ^1.0",
  663. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  664. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  665. },
  666. "suggest": {
  667. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  668. "whoops/soap": "Formats errors as SOAP responses"
  669. },
  670. "type": "library",
  671. "extra": {
  672. "branch-alias": {
  673. "dev-master": "2.7-dev"
  674. }
  675. },
  676. "autoload": {
  677. "psr-4": {
  678. "Whoops\\": "src/Whoops/"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Filipe Dobreira",
  688. "homepage": "https://github.com/filp",
  689. "role": "Developer"
  690. }
  691. ],
  692. "description": "php error handling for cool kids",
  693. "homepage": "https://filp.github.io/whoops/",
  694. "keywords": [
  695. "error",
  696. "exception",
  697. "handling",
  698. "library",
  699. "throwable",
  700. "whoops"
  701. ],
  702. "support": {
  703. "issues": "https://github.com/filp/whoops/issues",
  704. "source": "https://github.com/filp/whoops/tree/2.9.2"
  705. },
  706. "funding": [
  707. {
  708. "url": "https://github.com/denis-sokolov",
  709. "type": "github"
  710. }
  711. ],
  712. "time": "2021-01-24T12:00:00+00:00"
  713. },
  714. {
  715. "name": "gregwar/cache",
  716. "version": "dev-php8",
  717. "target-dir": "Gregwar/Cache",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/getgrav/Cache.git",
  721. "reference": "49ccdf9ae760b009a192bc3c7b417980c8a8cc2e"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/getgrav/Cache/zipball/49ccdf9ae760b009a192bc3c7b417980c8a8cc2e",
  726. "reference": "49ccdf9ae760b009a192bc3c7b417980c8a8cc2e",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": ">=5.3"
  731. },
  732. "type": "library",
  733. "autoload": {
  734. "psr-0": {
  735. "Gregwar\\Cache": ""
  736. }
  737. },
  738. "license": [
  739. "MIT"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Gregwar",
  744. "email": "g.passault@gmail.com"
  745. }
  746. ],
  747. "description": "A lightweight file-system cache system",
  748. "keywords": [
  749. "cache",
  750. "caching",
  751. "file-system",
  752. "system"
  753. ],
  754. "support": {
  755. "source": "https://github.com/getgrav/Cache/tree/php8"
  756. },
  757. "time": "2020-12-02T10:54:35+00:00"
  758. },
  759. {
  760. "name": "gregwar/image",
  761. "version": "dev-php8",
  762. "target-dir": "Gregwar/Image",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/getgrav/Image.git",
  766. "reference": "ea23859700f32447a85e79d96f331e3d6c8897a8"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/getgrav/Image/zipball/ea23859700f32447a85e79d96f331e3d6c8897a8",
  771. "reference": "ea23859700f32447a85e79d96f331e3d6c8897a8",
  772. "shasum": ""
  773. },
  774. "require": {
  775. "ext-gd": "*",
  776. "gregwar/cache": "dev-php8",
  777. "php": "^5.6 || ^7.0 || ^8.0"
  778. },
  779. "require-dev": {
  780. "sllh/php-cs-fixer-styleci-bridge": "~1.0",
  781. "symfony/phpunit-bridge": "^2.7.4 || ^3.0"
  782. },
  783. "suggest": {
  784. "behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
  785. },
  786. "type": "library",
  787. "autoload": {
  788. "psr-0": {
  789. "Gregwar\\Image": ""
  790. }
  791. },
  792. "license": [
  793. "MIT"
  794. ],
  795. "authors": [
  796. {
  797. "name": "Grégoire Passault",
  798. "email": "g.passault@gmail.com",
  799. "homepage": "http://www.gregwar.com/"
  800. }
  801. ],
  802. "description": "Image handling",
  803. "homepage": "https://github.com/Gregwar/Image",
  804. "keywords": [
  805. "gd",
  806. "image"
  807. ],
  808. "support": {
  809. "source": "https://github.com/getgrav/Image/tree/php8"
  810. },
  811. "time": "2021-03-15T17:03:52+00:00"
  812. },
  813. {
  814. "name": "guzzlehttp/psr7",
  815. "version": "1.7.0",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/guzzle/psr7.git",
  819. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  824. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "php": ">=5.4.0",
  829. "psr/http-message": "~1.0",
  830. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  831. },
  832. "provide": {
  833. "psr/http-message-implementation": "1.0"
  834. },
  835. "require-dev": {
  836. "ext-zlib": "*",
  837. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  838. },
  839. "suggest": {
  840. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  841. },
  842. "type": "library",
  843. "extra": {
  844. "branch-alias": {
  845. "dev-master": "1.7-dev"
  846. }
  847. },
  848. "autoload": {
  849. "psr-4": {
  850. "GuzzleHttp\\Psr7\\": "src/"
  851. },
  852. "files": [
  853. "src/functions_include.php"
  854. ]
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "MIT"
  859. ],
  860. "authors": [
  861. {
  862. "name": "Michael Dowling",
  863. "email": "mtdowling@gmail.com",
  864. "homepage": "https://github.com/mtdowling"
  865. },
  866. {
  867. "name": "Tobias Schultze",
  868. "homepage": "https://github.com/Tobion"
  869. }
  870. ],
  871. "description": "PSR-7 message implementation that also provides common utility methods",
  872. "keywords": [
  873. "http",
  874. "message",
  875. "psr-7",
  876. "request",
  877. "response",
  878. "stream",
  879. "uri",
  880. "url"
  881. ],
  882. "support": {
  883. "issues": "https://github.com/guzzle/psr7/issues",
  884. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  885. },
  886. "time": "2020-09-30T07:37:11+00:00"
  887. },
  888. {
  889. "name": "itsgoingd/clockwork",
  890. "version": "v5.0.7",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/itsgoingd/clockwork.git",
  894. "reference": "e41ee368ff4dcc30d3f4563fe8bd80ed72b293b4"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/itsgoingd/clockwork/zipball/e41ee368ff4dcc30d3f4563fe8bd80ed72b293b4",
  899. "reference": "e41ee368ff4dcc30d3f4563fe8bd80ed72b293b4",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "ext-json": "*",
  904. "php": ">=5.6",
  905. "psr/log": "1.*"
  906. },
  907. "type": "library",
  908. "extra": {
  909. "laravel": {
  910. "providers": [
  911. "Clockwork\\Support\\Laravel\\ClockworkServiceProvider"
  912. ],
  913. "aliases": {
  914. "Clockwork": "Clockwork\\Support\\Laravel\\Facade"
  915. }
  916. }
  917. },
  918. "autoload": {
  919. "psr-4": {
  920. "Clockwork\\": "Clockwork/"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "itsgoingd",
  930. "email": "itsgoingd@luzer.sk",
  931. "homepage": "https://twitter.com/itsgoingd"
  932. }
  933. ],
  934. "description": "php dev tools in your browser",
  935. "homepage": "https://underground.works/clockwork",
  936. "keywords": [
  937. "Devtools",
  938. "debugging",
  939. "laravel",
  940. "logging",
  941. "lumen",
  942. "profiling",
  943. "slim"
  944. ],
  945. "support": {
  946. "issues": "https://github.com/itsgoingd/clockwork/issues",
  947. "source": "https://github.com/itsgoingd/clockwork/tree/v5.0.7"
  948. },
  949. "funding": [
  950. {
  951. "url": "https://github.com/itsgoingd",
  952. "type": "github"
  953. }
  954. ],
  955. "time": "2021-03-14T16:29:40+00:00"
  956. },
  957. {
  958. "name": "league/climate",
  959. "version": "3.7.0",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/thephpleague/climate.git",
  963. "reference": "5c717c3032c5118be7ad2395dbe0813d9894e8c7"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/thephpleague/climate/zipball/5c717c3032c5118be7ad2395dbe0813d9894e8c7",
  968. "reference": "5c717c3032c5118be7ad2395dbe0813d9894e8c7",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "php": "^7.3 || ^8.0",
  973. "psr/log": "^1.0",
  974. "seld/cli-prompt": "^1.0"
  975. },
  976. "require-dev": {
  977. "mikey179/vfsstream": "^1.4",
  978. "mockery/mockery": "^1.4.2",
  979. "phpunit/phpunit": "^9.5.0"
  980. },
  981. "suggest": {
  982. "ext-mbstring": "If ext-mbstring is not available you MUST install symfony/polyfill-mbstring"
  983. },
  984. "type": "library",
  985. "autoload": {
  986. "psr-4": {
  987. "League\\CLImate\\": "src/"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "MIT"
  993. ],
  994. "authors": [
  995. {
  996. "name": "Joe Tannenbaum",
  997. "email": "hey@joe.codes",
  998. "homepage": "http://joe.codes/",
  999. "role": "Developer"
  1000. },
  1001. {
  1002. "name": "Craig Duncan",
  1003. "email": "git@duncanc.co.uk",
  1004. "homepage": "https://github.com/duncan3dc",
  1005. "role": "Developer"
  1006. }
  1007. ],
  1008. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  1009. "keywords": [
  1010. "cli",
  1011. "colors",
  1012. "command",
  1013. "php",
  1014. "terminal"
  1015. ],
  1016. "support": {
  1017. "issues": "https://github.com/thephpleague/climate/issues",
  1018. "source": "https://github.com/thephpleague/climate/tree/3.7.0"
  1019. },
  1020. "time": "2021-01-10T20:18:52+00:00"
  1021. },
  1022. {
  1023. "name": "matthiasmullie/minify",
  1024. "version": "1.3.66",
  1025. "source": {
  1026. "type": "git",
  1027. "url": "https://github.com/matthiasmullie/minify.git",
  1028. "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6"
  1029. },
  1030. "dist": {
  1031. "type": "zip",
  1032. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/45fd3b0f1dfa2c965857c6d4a470bea52adc31a6",
  1033. "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6",
  1034. "shasum": ""
  1035. },
  1036. "require": {
  1037. "ext-pcre": "*",
  1038. "matthiasmullie/path-converter": "~1.1",
  1039. "php": ">=5.3.0"
  1040. },
  1041. "require-dev": {
  1042. "friendsofphp/php-cs-fixer": "~2.0",
  1043. "matthiasmullie/scrapbook": "dev-master",
  1044. "phpunit/phpunit": ">=4.8"
  1045. },
  1046. "suggest": {
  1047. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  1048. },
  1049. "bin": [
  1050. "bin/minifycss",
  1051. "bin/minifyjs"
  1052. ],
  1053. "type": "library",
  1054. "autoload": {
  1055. "psr-4": {
  1056. "MatthiasMullie\\Minify\\": "src/"
  1057. }
  1058. },
  1059. "notification-url": "https://packagist.org/downloads/",
  1060. "license": [
  1061. "MIT"
  1062. ],
  1063. "authors": [
  1064. {
  1065. "name": "Matthias Mullie",
  1066. "email": "minify@mullie.eu",
  1067. "homepage": "http://www.mullie.eu",
  1068. "role": "Developer"
  1069. }
  1070. ],
  1071. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  1072. "homepage": "http://www.minifier.org",
  1073. "keywords": [
  1074. "JS",
  1075. "css",
  1076. "javascript",
  1077. "minifier",
  1078. "minify"
  1079. ],
  1080. "support": {
  1081. "issues": "https://github.com/matthiasmullie/minify/issues",
  1082. "source": "https://github.com/matthiasmullie/minify/tree/1.3.66"
  1083. },
  1084. "funding": [
  1085. {
  1086. "url": "https://github.com/[user1",
  1087. "type": "github"
  1088. },
  1089. {
  1090. "url": "https://github.com/matthiasmullie] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g.",
  1091. "type": "github"
  1092. },
  1093. {
  1094. "url": "https://github.com/user2",
  1095. "type": "github"
  1096. }
  1097. ],
  1098. "time": "2021-01-06T15:18:10+00:00"
  1099. },
  1100. {
  1101. "name": "matthiasmullie/path-converter",
  1102. "version": "1.1.3",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/matthiasmullie/path-converter.git",
  1106. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  1111. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "ext-pcre": "*",
  1116. "php": ">=5.3.0"
  1117. },
  1118. "require-dev": {
  1119. "phpunit/phpunit": "~4.8"
  1120. },
  1121. "type": "library",
  1122. "autoload": {
  1123. "psr-4": {
  1124. "MatthiasMullie\\PathConverter\\": "src/"
  1125. }
  1126. },
  1127. "notification-url": "https://packagist.org/downloads/",
  1128. "license": [
  1129. "MIT"
  1130. ],
  1131. "authors": [
  1132. {
  1133. "name": "Matthias Mullie",
  1134. "email": "pathconverter@mullie.eu",
  1135. "homepage": "http://www.mullie.eu",
  1136. "role": "Developer"
  1137. }
  1138. ],
  1139. "description": "Relative path converter",
  1140. "homepage": "http://github.com/matthiasmullie/path-converter",
  1141. "keywords": [
  1142. "converter",
  1143. "path",
  1144. "paths",
  1145. "relative"
  1146. ],
  1147. "support": {
  1148. "issues": "https://github.com/matthiasmullie/path-converter/issues",
  1149. "source": "https://github.com/matthiasmullie/path-converter/tree/1.1.3"
  1150. },
  1151. "time": "2019-02-05T23:41:09+00:00"
  1152. },
  1153. {
  1154. "name": "maximebf/debugbar",
  1155. "version": "v1.16.5",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/maximebf/php-debugbar.git",
  1159. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  1164. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "php": "^7.1|^8",
  1169. "psr/log": "^1.0",
  1170. "symfony/var-dumper": "^2.6|^3|^4|^5"
  1171. },
  1172. "require-dev": {
  1173. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  1174. },
  1175. "suggest": {
  1176. "kriswallsmith/assetic": "The best way to manage assets",
  1177. "monolog/monolog": "Log using Monolog",
  1178. "predis/predis": "Redis storage"
  1179. },
  1180. "type": "library",
  1181. "extra": {
  1182. "branch-alias": {
  1183. "dev-master": "1.16-dev"
  1184. }
  1185. },
  1186. "autoload": {
  1187. "psr-4": {
  1188. "DebugBar\\": "src/DebugBar/"
  1189. }
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "Maxime Bouroumeau-Fuseau",
  1198. "email": "maxime.bouroumeau@gmail.com",
  1199. "homepage": "http://maximebf.com"
  1200. },
  1201. {
  1202. "name": "Barry vd. Heuvel",
  1203. "email": "barryvdh@gmail.com"
  1204. }
  1205. ],
  1206. "description": "Debug bar in the browser for php application",
  1207. "homepage": "https://github.com/maximebf/php-debugbar",
  1208. "keywords": [
  1209. "debug",
  1210. "debugbar"
  1211. ],
  1212. "support": {
  1213. "issues": "https://github.com/maximebf/php-debugbar/issues",
  1214. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  1215. },
  1216. "time": "2020-12-07T11:07:24+00:00"
  1217. },
  1218. {
  1219. "name": "miljar/php-exif",
  1220. "version": "v0.6.5",
  1221. "source": {
  1222. "type": "git",
  1223. "url": "https://github.com/PHPExif/php-exif.git",
  1224. "reference": "41f23db39d7b48e4af0e134c2e80e577c1782ac9"
  1225. },
  1226. "dist": {
  1227. "type": "zip",
  1228. "url": "https://api.github.com/repos/PHPExif/php-exif/zipball/41f23db39d7b48e4af0e134c2e80e577c1782ac9",
  1229. "reference": "41f23db39d7b48e4af0e134c2e80e577c1782ac9",
  1230. "shasum": ""
  1231. },
  1232. "require": {
  1233. "php": ">=5.4"
  1234. },
  1235. "require-dev": {
  1236. "jakub-onderka/php-parallel-lint": "^1.0",
  1237. "phpmd/phpmd": "~2.2",
  1238. "phpunit/phpunit": ">=4.0 <6.0",
  1239. "satooshi/php-coveralls": "~0.6",
  1240. "sebastian/phpcpd": "1.4.*@stable",
  1241. "squizlabs/php_codesniffer": "1.4.*@stable"
  1242. },
  1243. "suggest": {
  1244. "ext-exif": "Use exif PHP extension as adapter",
  1245. "lib-exiftool": "Use perl lib exiftool as adapter"
  1246. },
  1247. "type": "library",
  1248. "autoload": {
  1249. "psr-0": {
  1250. "PHPExif": "lib/"
  1251. }
  1252. },
  1253. "notification-url": "https://packagist.org/downloads/",
  1254. "license": [
  1255. "MIT"
  1256. ],
  1257. "authors": [
  1258. {
  1259. "name": "Tom Van Herreweghe",
  1260. "homepage": "http://theanalogguy.be",
  1261. "role": "Developer"
  1262. }
  1263. ],
  1264. "description": "Object-Oriented EXIF parsing",
  1265. "keywords": [
  1266. "IPTC",
  1267. "exif",
  1268. "exiftool",
  1269. "jpeg",
  1270. "tiff"
  1271. ],
  1272. "support": {
  1273. "issues": "https://github.com/PHPExif/php-exif/issues",
  1274. "source": "https://github.com/PHPExif/php-exif/tree/v0.6.5"
  1275. },
  1276. "time": "2019-02-11T13:47:52+00:00"
  1277. },
  1278. {
  1279. "name": "monolog/monolog",
  1280. "version": "1.26.0",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/Seldaek/monolog.git",
  1284. "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
  1289. "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
  1290. "shasum": ""
  1291. },
  1292. "require": {
  1293. "php": ">=5.3.0",
  1294. "psr/log": "~1.0"
  1295. },
  1296. "provide": {
  1297. "psr/log-implementation": "1.0.0"
  1298. },
  1299. "require-dev": {
  1300. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1301. "doctrine/couchdb": "~1.0@dev",
  1302. "graylog2/gelf-php": "~1.0",
  1303. "php-amqplib/php-amqplib": "~2.4",
  1304. "php-console/php-console": "^3.1.3",
  1305. "phpstan/phpstan": "^0.12.59",
  1306. "phpunit/phpunit": "~4.5",
  1307. "ruflin/elastica": ">=0.90 <3.0",
  1308. "sentry/sentry": "^0.13",
  1309. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1310. },
  1311. "suggest": {
  1312. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1313. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1314. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1315. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1316. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1317. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1318. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1319. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1320. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1321. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1322. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1323. },
  1324. "type": "library",
  1325. "autoload": {
  1326. "psr-4": {
  1327. "Monolog\\": "src/Monolog"
  1328. }
  1329. },
  1330. "notification-url": "https://packagist.org/downloads/",
  1331. "license": [
  1332. "MIT"
  1333. ],
  1334. "authors": [
  1335. {
  1336. "name": "Jordi Boggiano",
  1337. "email": "j.boggiano@seld.be",
  1338. "homepage": "http://seld.be"
  1339. }
  1340. ],
  1341. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1342. "homepage": "http://github.com/Seldaek/monolog",
  1343. "keywords": [
  1344. "log",
  1345. "logging",
  1346. "psr-3"
  1347. ],
  1348. "support": {
  1349. "issues": "https://github.com/Seldaek/monolog/issues",
  1350. "source": "https://github.com/Seldaek/monolog/tree/1.26.0"
  1351. },
  1352. "funding": [
  1353. {
  1354. "url": "https://github.com/Seldaek",
  1355. "type": "github"
  1356. },
  1357. {
  1358. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1359. "type": "tidelift"
  1360. }
  1361. ],
  1362. "time": "2020-12-14T12:56:38+00:00"
  1363. },
  1364. {
  1365. "name": "nyholm/psr7",
  1366. "version": "1.4.0",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/Nyholm/psr7.git",
  1370. "reference": "23ae1f00fbc6a886cbe3062ca682391b9cc7c37b"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/23ae1f00fbc6a886cbe3062ca682391b9cc7c37b",
  1375. "reference": "23ae1f00fbc6a886cbe3062ca682391b9cc7c37b",
  1376. "shasum": ""
  1377. },
  1378. "require": {
  1379. "php": ">=7.1",
  1380. "php-http/message-factory": "^1.0",
  1381. "psr/http-factory": "^1.0",
  1382. "psr/http-message": "^1.0"
  1383. },
  1384. "provide": {
  1385. "psr/http-factory-implementation": "1.0",
  1386. "psr/http-message-implementation": "1.0"
  1387. },
  1388. "require-dev": {
  1389. "http-interop/http-factory-tests": "^0.8",
  1390. "php-http/psr7-integration-tests": "^1.0",
  1391. "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
  1392. "symfony/error-handler": "^4.4"
  1393. },
  1394. "type": "library",
  1395. "extra": {
  1396. "branch-alias": {
  1397. "dev-master": "1.4-dev"
  1398. }
  1399. },
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Nyholm\\Psr7\\": "src/"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Tobias Nyholm",
  1412. "email": "tobias.nyholm@gmail.com"
  1413. },
  1414. {
  1415. "name": "Martijn van der Ven",
  1416. "email": "martijn@vanderven.se"
  1417. }
  1418. ],
  1419. "description": "A fast PHP7 implementation of PSR-7",
  1420. "homepage": "https://tnyholm.se",
  1421. "keywords": [
  1422. "psr-17",
  1423. "psr-7"
  1424. ],
  1425. "support": {
  1426. "issues": "https://github.com/Nyholm/psr7/issues",
  1427. "source": "https://github.com/Nyholm/psr7/tree/1.4.0"
  1428. },
  1429. "funding": [
  1430. {
  1431. "url": "https://github.com/Zegnat",
  1432. "type": "github"
  1433. },
  1434. {
  1435. "url": "https://github.com/nyholm",
  1436. "type": "github"
  1437. }
  1438. ],
  1439. "time": "2021-02-18T15:41:32+00:00"
  1440. },
  1441. {
  1442. "name": "nyholm/psr7-server",
  1443. "version": "1.0.1",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/Nyholm/psr7-server.git",
  1447. "reference": "5c134aeb5dd6521c7978798663470dabf0528c96"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/5c134aeb5dd6521c7978798663470dabf0528c96",
  1452. "reference": "5c134aeb5dd6521c7978798663470dabf0528c96",
  1453. "shasum": ""
  1454. },
  1455. "require": {
  1456. "php": "^7.1 || ^8.0",
  1457. "psr/http-factory": "^1.0",
  1458. "psr/http-message": "^1.0"
  1459. },
  1460. "require-dev": {
  1461. "nyholm/nsa": "^1.1",
  1462. "nyholm/psr7": "^1.3",
  1463. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  1464. },
  1465. "type": "library",
  1466. "autoload": {
  1467. "psr-4": {
  1468. "Nyholm\\Psr7Server\\": "src/"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "MIT"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Tobias Nyholm",
  1478. "email": "tobias.nyholm@gmail.com"
  1479. },
  1480. {
  1481. "name": "Martijn van der Ven",
  1482. "email": "martijn@vanderven.se"
  1483. }
  1484. ],
  1485. "description": "Helper classes to handle PSR-7 server requests",
  1486. "homepage": "http://tnyholm.se",
  1487. "keywords": [
  1488. "psr-17",
  1489. "psr-7"
  1490. ],
  1491. "support": {
  1492. "issues": "https://github.com/Nyholm/psr7-server/issues",
  1493. "source": "https://github.com/Nyholm/psr7-server/tree/1.0.1"
  1494. },
  1495. "funding": [
  1496. {
  1497. "url": "https://github.com/Zegnat",
  1498. "type": "github"
  1499. },
  1500. {
  1501. "url": "https://github.com/nyholm",
  1502. "type": "github"
  1503. }
  1504. ],
  1505. "time": "2020-11-15T15:26:20+00:00"
  1506. },
  1507. {
  1508. "name": "phive/twig-extensions-deferred",
  1509. "version": "v1.0.2",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/rybakit/twig-extensions-deferred-legacy.git",
  1513. "reference": "5a2426d622afa74034e754ca5ea1d1ff7887627f"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/rybakit/twig-extensions-deferred-legacy/zipball/5a2426d622afa74034e754ca5ea1d1ff7887627f",
  1518. "reference": "5a2426d622afa74034e754ca5ea1d1ff7887627f",
  1519. "shasum": ""
  1520. },
  1521. "require": {
  1522. "twig/twig": "~1.18"
  1523. },
  1524. "type": "library",
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Phive\\Twig\\Extensions\\Deferred\\": "src/"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "Eugene Leonovich",
  1537. "email": "gen.work@gmail.com"
  1538. }
  1539. ],
  1540. "description": "An extension for Twig that allows to defer block rendering",
  1541. "homepage": "https://github.com/rybakit/twig-extensions-deferred",
  1542. "keywords": [
  1543. "defer",
  1544. "extension",
  1545. "lazy",
  1546. "twig"
  1547. ],
  1548. "support": {
  1549. "issues": "https://github.com/rybakit/twig-extensions-deferred-legacy/issues",
  1550. "source": "https://github.com/rybakit/twig-extensions-deferred-legacy/tree/v1.0.2"
  1551. },
  1552. "funding": [
  1553. {
  1554. "url": "https://github.com/rybakit",
  1555. "type": "github"
  1556. }
  1557. ],
  1558. "time": "2017-03-17T21:39:21+00:00"
  1559. },
  1560. {
  1561. "name": "php-http/message-factory",
  1562. "version": "v1.0.2",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/php-http/message-factory.git",
  1566. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1571. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "php": ">=5.4",
  1576. "psr/http-message": "^1.0"
  1577. },
  1578. "type": "library",
  1579. "extra": {
  1580. "branch-alias": {
  1581. "dev-master": "1.0-dev"
  1582. }
  1583. },
  1584. "autoload": {
  1585. "psr-4": {
  1586. "Http\\Message\\": "src/"
  1587. }
  1588. },
  1589. "notification-url": "https://packagist.org/downloads/",
  1590. "license": [
  1591. "MIT"
  1592. ],
  1593. "authors": [
  1594. {
  1595. "name": "Márk Sági-Kazár",
  1596. "email": "mark.sagikazar@gmail.com"
  1597. }
  1598. ],
  1599. "description": "Factory interfaces for PSR-7 HTTP Message",
  1600. "homepage": "http://php-http.org",
  1601. "keywords": [
  1602. "factory",
  1603. "http",
  1604. "message",
  1605. "stream",
  1606. "uri"
  1607. ],
  1608. "support": {
  1609. "issues": "https://github.com/php-http/message-factory/issues",
  1610. "source": "https://github.com/php-http/message-factory/tree/master"
  1611. },
  1612. "time": "2015-12-19T14:08:53+00:00"
  1613. },
  1614. {
  1615. "name": "pimple/pimple",
  1616. "version": "v3.3.1",
  1617. "source": {
  1618. "type": "git",
  1619. "url": "https://github.com/silexphp/Pimple.git",
  1620. "reference": "21e45061c3429b1e06233475cc0e1f6fc774d5b0"
  1621. },
  1622. "dist": {
  1623. "type": "zip",
  1624. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/21e45061c3429b1e06233475cc0e1f6fc774d5b0",
  1625. "reference": "21e45061c3429b1e06233475cc0e1f6fc774d5b0",
  1626. "shasum": ""
  1627. },
  1628. "require": {
  1629. "php": ">=7.2.5",
  1630. "psr/container": "^1.0"
  1631. },
  1632. "require-dev": {
  1633. "symfony/phpunit-bridge": "^5.0"
  1634. },
  1635. "type": "library",
  1636. "extra": {
  1637. "branch-alias": {
  1638. "dev-master": "3.3.x-dev"
  1639. }
  1640. },
  1641. "autoload": {
  1642. "psr-0": {
  1643. "Pimple": "src/"
  1644. }
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "MIT"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "Fabien Potencier",
  1653. "email": "fabien@symfony.com"
  1654. }
  1655. ],
  1656. "description": "Pimple, a simple Dependency Injection Container",
  1657. "homepage": "https://pimple.symfony.com",
  1658. "keywords": [
  1659. "container",
  1660. "dependency injection"
  1661. ],
  1662. "support": {
  1663. "source": "https://github.com/silexphp/Pimple/tree/v3.3.1"
  1664. },
  1665. "time": "2020-11-24T20:35:42+00:00"
  1666. },
  1667. {
  1668. "name": "psr/cache",
  1669. "version": "1.0.1",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/php-fig/cache.git",
  1673. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1678. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "php": ">=5.3.0"
  1683. },
  1684. "type": "library",
  1685. "extra": {
  1686. "branch-alias": {
  1687. "dev-master": "1.0.x-dev"
  1688. }
  1689. },
  1690. "autoload": {
  1691. "psr-4": {
  1692. "Psr\\Cache\\": "src/"
  1693. }
  1694. },
  1695. "notification-url": "https://packagist.org/downloads/",
  1696. "license": [
  1697. "MIT"
  1698. ],
  1699. "authors": [
  1700. {
  1701. "name": "PHP-FIG",
  1702. "homepage": "http://www.php-fig.org/"
  1703. }
  1704. ],
  1705. "description": "Common interface for caching libraries",
  1706. "keywords": [
  1707. "cache",
  1708. "psr",
  1709. "psr-6"
  1710. ],
  1711. "support": {
  1712. "source": "https://github.com/php-fig/cache/tree/master"
  1713. },
  1714. "time": "2016-08-06T20:24:11+00:00"
  1715. },
  1716. {
  1717. "name": "psr/container",
  1718. "version": "1.0.0",
  1719. "source": {
  1720. "type": "git",
  1721. "url": "https://github.com/php-fig/container.git",
  1722. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1723. },
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1727. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1728. "shasum": ""
  1729. },
  1730. "require": {
  1731. "php": ">=5.3.0"
  1732. },
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-master": "1.0.x-dev"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Psr\\Container\\": "src/"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "PHP-FIG",
  1751. "homepage": "http://www.php-fig.org/"
  1752. }
  1753. ],
  1754. "description": "Common Container Interface (PHP FIG PSR-11)",
  1755. "homepage": "https://github.com/php-fig/container",
  1756. "keywords": [
  1757. "PSR-11",
  1758. "container",
  1759. "container-interface",
  1760. "container-interop",
  1761. "psr"
  1762. ],
  1763. "support": {
  1764. "issues": "https://github.com/php-fig/container/issues",
  1765. "source": "https://github.com/php-fig/container/tree/master"
  1766. },
  1767. "time": "2017-02-14T16:28:37+00:00"
  1768. },
  1769. {
  1770. "name": "psr/http-factory",
  1771. "version": "1.0.1",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/php-fig/http-factory.git",
  1775. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1780. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1781. "shasum": ""
  1782. },
  1783. "require": {
  1784. "php": ">=7.0.0",
  1785. "psr/http-message": "^1.0"
  1786. },
  1787. "type": "library",
  1788. "extra": {
  1789. "branch-alias": {
  1790. "dev-master": "1.0.x-dev"
  1791. }
  1792. },
  1793. "autoload": {
  1794. "psr-4": {
  1795. "Psr\\Http\\Message\\": "src/"
  1796. }
  1797. },
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "MIT"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "PHP-FIG",
  1805. "homepage": "http://www.php-fig.org/"
  1806. }
  1807. ],
  1808. "description": "Common interfaces for PSR-7 HTTP message factories",
  1809. "keywords": [
  1810. "factory",
  1811. "http",
  1812. "message",
  1813. "psr",
  1814. "psr-17",
  1815. "psr-7",
  1816. "request",
  1817. "response"
  1818. ],
  1819. "support": {
  1820. "source": "https://github.com/php-fig/http-factory/tree/master"
  1821. },
  1822. "time": "2019-04-30T12:38:16+00:00"
  1823. },
  1824. {
  1825. "name": "psr/http-message",
  1826. "version": "1.0.1",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://github.com/php-fig/http-message.git",
  1830. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1835. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1836. "shasum": ""
  1837. },
  1838. "require": {
  1839. "php": ">=5.3.0"
  1840. },
  1841. "type": "library",
  1842. "extra": {
  1843. "branch-alias": {
  1844. "dev-master": "1.0.x-dev"
  1845. }
  1846. },
  1847. "autoload": {
  1848. "psr-4": {
  1849. "Psr\\Http\\Message\\": "src/"
  1850. }
  1851. },
  1852. "notification-url": "https://packagist.org/downloads/",
  1853. "license": [
  1854. "MIT"
  1855. ],
  1856. "authors": [
  1857. {
  1858. "name": "PHP-FIG",
  1859. "homepage": "http://www.php-fig.org/"
  1860. }
  1861. ],
  1862. "description": "Common interface for HTTP messages",
  1863. "homepage": "https://github.com/php-fig/http-message",
  1864. "keywords": [
  1865. "http",
  1866. "http-message",
  1867. "psr",
  1868. "psr-7",
  1869. "request",
  1870. "response"
  1871. ],
  1872. "support": {
  1873. "source": "https://github.com/php-fig/http-message/tree/master"
  1874. },
  1875. "time": "2016-08-06T14:39:51+00:00"
  1876. },
  1877. {
  1878. "name": "psr/http-server-handler",
  1879. "version": "1.0.1",
  1880. "source": {
  1881. "type": "git",
  1882. "url": "https://github.com/php-fig/http-server-handler.git",
  1883. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  1884. },
  1885. "dist": {
  1886. "type": "zip",
  1887. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1888. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1889. "shasum": ""
  1890. },
  1891. "require": {
  1892. "php": ">=7.0",
  1893. "psr/http-message": "^1.0"
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "1.0.x-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "Psr\\Http\\Server\\": "src/"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "PHP-FIG",
  1913. "homepage": "http://www.php-fig.org/"
  1914. }
  1915. ],
  1916. "description": "Common interface for HTTP server-side request handler",
  1917. "keywords": [
  1918. "handler",
  1919. "http",
  1920. "http-interop",
  1921. "psr",
  1922. "psr-15",
  1923. "psr-7",
  1924. "request",
  1925. "response",
  1926. "server"
  1927. ],
  1928. "support": {
  1929. "issues": "https://github.com/php-fig/http-server-handler/issues",
  1930. "source": "https://github.com/php-fig/http-server-handler/tree/master"
  1931. },
  1932. "time": "2018-10-30T16:46:14+00:00"
  1933. },
  1934. {
  1935. "name": "psr/http-server-middleware",
  1936. "version": "1.0.1",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/php-fig/http-server-middleware.git",
  1940. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1945. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "php": ">=7.0",
  1950. "psr/http-message": "^1.0",
  1951. "psr/http-server-handler": "^1.0"
  1952. },
  1953. "type": "library",
  1954. "extra": {
  1955. "branch-alias": {
  1956. "dev-master": "1.0.x-dev"
  1957. }
  1958. },
  1959. "autoload": {
  1960. "psr-4": {
  1961. "Psr\\Http\\Server\\": "src/"
  1962. }
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "PHP-FIG",
  1971. "homepage": "http://www.php-fig.org/"
  1972. }
  1973. ],
  1974. "description": "Common interface for HTTP server-side middleware",
  1975. "keywords": [
  1976. "http",
  1977. "http-interop",
  1978. "middleware",
  1979. "psr",
  1980. "psr-15",
  1981. "psr-7",
  1982. "request",
  1983. "response"
  1984. ],
  1985. "support": {
  1986. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  1987. "source": "https://github.com/php-fig/http-server-middleware/tree/master"
  1988. },
  1989. "time": "2018-10-30T17:12:04+00:00"
  1990. },
  1991. {
  1992. "name": "psr/log",
  1993. "version": "1.1.3",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/php-fig/log.git",
  1997. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2002. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "php": ">=5.3.0"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "1.1.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Psr\\Log\\": "Psr/Log/"
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "PHP-FIG",
  2026. "homepage": "http://www.php-fig.org/"
  2027. }
  2028. ],
  2029. "description": "Common interface for logging libraries",
  2030. "homepage": "https://github.com/php-fig/log",
  2031. "keywords": [
  2032. "log",
  2033. "psr",
  2034. "psr-3"
  2035. ],
  2036. "support": {
  2037. "source": "https://github.com/php-fig/log/tree/1.1.3"
  2038. },
  2039. "time": "2020-03-23T09:12:05+00:00"
  2040. },
  2041. {
  2042. "name": "psr/simple-cache",
  2043. "version": "1.0.1",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://github.com/php-fig/simple-cache.git",
  2047. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2052. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2053. "shasum": ""
  2054. },
  2055. "require": {
  2056. "php": ">=5.3.0"
  2057. },
  2058. "type": "library",
  2059. "extra": {
  2060. "branch-alias": {
  2061. "dev-master": "1.0.x-dev"
  2062. }
  2063. },
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Psr\\SimpleCache\\": "src/"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "PHP-FIG",
  2076. "homepage": "http://www.php-fig.org/"
  2077. }
  2078. ],
  2079. "description": "Common interfaces for simple caching",
  2080. "keywords": [
  2081. "cache",
  2082. "caching",
  2083. "psr",
  2084. "psr-16",
  2085. "simple-cache"
  2086. ],
  2087. "support": {
  2088. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2089. },
  2090. "time": "2017-10-23T01:57:42+00:00"
  2091. },
  2092. {
  2093. "name": "ralouphie/getallheaders",
  2094. "version": "3.0.3",
  2095. "source": {
  2096. "type": "git",
  2097. "url": "https://github.com/ralouphie/getallheaders.git",
  2098. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2099. },
  2100. "dist": {
  2101. "type": "zip",
  2102. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2103. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2104. "shasum": ""
  2105. },
  2106. "require": {
  2107. "php": ">=5.6"
  2108. },
  2109. "require-dev": {
  2110. "php-coveralls/php-coveralls": "^2.1",
  2111. "phpunit/phpunit": "^5 || ^6.5"
  2112. },
  2113. "type": "library",
  2114. "autoload": {
  2115. "files": [
  2116. "src/getallheaders.php"
  2117. ]
  2118. },
  2119. "notification-url": "https://packagist.org/downloads/",
  2120. "license": [
  2121. "MIT"
  2122. ],
  2123. "authors": [
  2124. {
  2125. "name": "Ralph Khattar",
  2126. "email": "ralph.khattar@gmail.com"
  2127. }
  2128. ],
  2129. "description": "A polyfill for getallheaders.",
  2130. "support": {
  2131. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2132. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2133. },
  2134. "time": "2019-03-08T08:55:37+00:00"
  2135. },
  2136. {
  2137. "name": "rockettheme/toolbox",
  2138. "version": "1.5.7",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/rockettheme/toolbox.git",
  2142. "reference": "8d3ebc4d982595d6eac90e851f2b4d5c0cec0399"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/rockettheme/toolbox/zipball/8d3ebc4d982595d6eac90e851f2b4d5c0cec0399",
  2147. "reference": "8d3ebc4d982595d6eac90e851f2b4d5c0cec0399",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "ext-json": "*",
  2152. "php": ">=5.6.0",
  2153. "pimple/pimple": "~3.0",
  2154. "symfony/event-dispatcher": "^3.4|^4.0",
  2155. "symfony/yaml": "^3.4|^4.0"
  2156. },
  2157. "require-dev": {
  2158. "phpstan/phpstan": "^0.12",
  2159. "phpstan/phpstan-deprecation-rules": "^0.12",
  2160. "phpunit/phpunit": "~7.0"
  2161. },
  2162. "type": "library",
  2163. "autoload": {
  2164. "psr-4": {
  2165. "RocketTheme\\Toolbox\\ArrayTraits\\": "ArrayTraits/src",
  2166. "RocketTheme\\Toolbox\\Blueprints\\": "Blueprints/src",
  2167. "RocketTheme\\Toolbox\\Compat\\": "Compat/src",
  2168. "RocketTheme\\Toolbox\\DI\\": "DI/src",
  2169. "RocketTheme\\Toolbox\\Event\\": "Event/src",
  2170. "RocketTheme\\Toolbox\\File\\": "File/src",
  2171. "RocketTheme\\Toolbox\\ResourceLocator\\": "ResourceLocator/src",
  2172. "RocketTheme\\Toolbox\\Session\\": "Session/src",
  2173. "RocketTheme\\Toolbox\\StreamWrapper\\": "StreamWrapper/src"
  2174. }
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "MIT"
  2179. ],
  2180. "description": "RocketTheme Toolbox Library",
  2181. "homepage": "http://www.rockettheme.com",
  2182. "keywords": [
  2183. "php",
  2184. "rockettheme"
  2185. ],
  2186. "support": {
  2187. "issues": "https://github.com/rockettheme/toolbox/issues",
  2188. "source": "https://github.com/rockettheme/toolbox/tree/1.5.7"
  2189. },
  2190. "time": "2021-02-17T17:58:36+00:00"
  2191. },
  2192. {
  2193. "name": "seld/cli-prompt",
  2194. "version": "1.0.4",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/Seldaek/cli-prompt.git",
  2198. "reference": "b8dfcf02094b8c03b40322c229493bb2884423c5"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/b8dfcf02094b8c03b40322c229493bb2884423c5",
  2203. "reference": "b8dfcf02094b8c03b40322c229493bb2884423c5",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "php": ">=5.3"
  2208. },
  2209. "require-dev": {
  2210. "phpstan/phpstan": "^0.12.63"
  2211. },
  2212. "type": "library",
  2213. "extra": {
  2214. "branch-alias": {
  2215. "dev-master": "1.x-dev"
  2216. }
  2217. },
  2218. "autoload": {
  2219. "psr-4": {
  2220. "Seld\\CliPrompt\\": "src/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Jordi Boggiano",
  2230. "email": "j.boggiano@seld.be"
  2231. }
  2232. ],
  2233. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2234. "keywords": [
  2235. "cli",
  2236. "console",
  2237. "hidden",
  2238. "input",
  2239. "prompt"
  2240. ],
  2241. "support": {
  2242. "issues": "https://github.com/Seldaek/cli-prompt/issues",
  2243. "source": "https://github.com/Seldaek/cli-prompt/tree/1.0.4"
  2244. },
  2245. "time": "2020-12-15T21:32:01+00:00"
  2246. },
  2247. {
  2248. "name": "symfony/console",
  2249. "version": "v4.4.20",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/symfony/console.git",
  2253. "reference": "c98349bda966c70d6c08b4cd8658377c94166492"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/symfony/console/zipball/c98349bda966c70d6c08b4cd8658377c94166492",
  2258. "reference": "c98349bda966c70d6c08b4cd8658377c94166492",
  2259. "shasum": ""
  2260. },
  2261. "require": {
  2262. "php": ">=7.1.3",
  2263. "symfony/polyfill-mbstring": "~1.0",
  2264. "symfony/polyfill-php73": "^1.8",
  2265. "symfony/polyfill-php80": "^1.15",
  2266. "symfony/service-contracts": "^1.1|^2"
  2267. },
  2268. "conflict": {
  2269. "symfony/dependency-injection": "<3.4",
  2270. "symfony/event-dispatcher": "<4.3|>=5",
  2271. "symfony/lock": "<4.4",
  2272. "symfony/process": "<3.3"
  2273. },
  2274. "provide": {
  2275. "psr/log-implementation": "1.0"
  2276. },
  2277. "require-dev": {
  2278. "psr/log": "~1.0",
  2279. "symfony/config": "^3.4|^4.0|^5.0",
  2280. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2281. "symfony/event-dispatcher": "^4.3",
  2282. "symfony/lock": "^4.4|^5.0",
  2283. "symfony/process": "^3.4|^4.0|^5.0",
  2284. "symfony/var-dumper": "^4.3|^5.0"
  2285. },
  2286. "suggest": {
  2287. "psr/log": "For using the console logger",
  2288. "symfony/event-dispatcher": "",
  2289. "symfony/lock": "",
  2290. "symfony/process": ""
  2291. },
  2292. "type": "library",
  2293. "autoload": {
  2294. "psr-4": {
  2295. "Symfony\\Component\\Console\\": ""
  2296. },
  2297. "exclude-from-classmap": [
  2298. "/Tests/"
  2299. ]
  2300. },
  2301. "notification-url": "https://packagist.org/downloads/",
  2302. "license": [
  2303. "MIT"
  2304. ],
  2305. "authors": [
  2306. {
  2307. "name": "Fabien Potencier",
  2308. "email": "fabien@symfony.com"
  2309. },
  2310. {
  2311. "name": "Symfony Community",
  2312. "homepage": "https://symfony.com/contributors"
  2313. }
  2314. ],
  2315. "description": "Eases the creation of beautiful and testable command line interfaces",
  2316. "homepage": "https://symfony.com",
  2317. "support": {
  2318. "source": "https://github.com/symfony/console/tree/v4.4.20"
  2319. },
  2320. "funding": [
  2321. {
  2322. "url": "https://symfony.com/sponsor",
  2323. "type": "custom"
  2324. },
  2325. {
  2326. "url": "https://github.com/fabpot",
  2327. "type": "github"
  2328. },
  2329. {
  2330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2331. "type": "tidelift"
  2332. }
  2333. ],
  2334. "time": "2021-02-22T18:44:15+00:00"
  2335. },
  2336. {
  2337. "name": "symfony/contracts",
  2338. "version": "v1.1.10",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://github.com/symfony/contracts.git",
  2342. "reference": "011c20407c4b99d454f44021d023fb39ce23b73d"
  2343. },
  2344. "dist": {
  2345. "type": "zip",
  2346. "url": "https://api.github.com/repos/symfony/contracts/zipball/011c20407c4b99d454f44021d023fb39ce23b73d",
  2347. "reference": "011c20407c4b99d454f44021d023fb39ce23b73d",
  2348. "shasum": ""
  2349. },
  2350. "require": {
  2351. "php": ">=7.1.3",
  2352. "psr/cache": "^1.0",
  2353. "psr/container": "^1.0"
  2354. },
  2355. "replace": {
  2356. "symfony/cache-contracts": "self.version",
  2357. "symfony/event-dispatcher-contracts": "self.version",
  2358. "symfony/http-client-contracts": "self.version",
  2359. "symfony/service-contracts": "self.version",
  2360. "symfony/translation-contracts": "self.version"
  2361. },
  2362. "require-dev": {
  2363. "symfony/polyfill-intl-idn": "^1.10"
  2364. },
  2365. "suggest": {
  2366. "psr/event-dispatcher": "When using the EventDispatcher contracts",
  2367. "symfony/cache-implementation": "",
  2368. "symfony/event-dispatcher-implementation": "",
  2369. "symfony/http-client-implementation": "",
  2370. "symfony/service-implementation": "",
  2371. "symfony/translation-implementation": ""
  2372. },
  2373. "type": "library",
  2374. "extra": {
  2375. "branch-alias": {
  2376. "dev-master": "1.1-dev"
  2377. }
  2378. },
  2379. "autoload": {
  2380. "psr-4": {
  2381. "Symfony\\Contracts\\": ""
  2382. },
  2383. "exclude-from-classmap": [
  2384. "**/Tests/"
  2385. ]
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Nicolas Grekas",
  2394. "email": "p@tchwork.com"
  2395. },
  2396. {
  2397. "name": "Symfony Community",
  2398. "homepage": "https://symfony.com/contributors"
  2399. }
  2400. ],
  2401. "description": "A set of abstractions extracted out of the Symfony components",
  2402. "homepage": "https://symfony.com",
  2403. "keywords": [
  2404. "abstractions",
  2405. "contracts",
  2406. "decoupling",
  2407. "interfaces",
  2408. "interoperability",
  2409. "standards"
  2410. ],
  2411. "support": {
  2412. "source": "https://github.com/symfony/contracts/tree/v1.1.10"
  2413. },
  2414. "funding": [
  2415. {
  2416. "url": "https://symfony.com/sponsor",
  2417. "type": "custom"
  2418. },
  2419. {
  2420. "url": "https://github.com/fabpot",
  2421. "type": "github"
  2422. },
  2423. {
  2424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2425. "type": "tidelift"
  2426. }
  2427. ],
  2428. "time": "2020-09-02T16:08:58+00:00"
  2429. },
  2430. {
  2431. "name": "symfony/event-dispatcher",
  2432. "version": "v4.4.20",
  2433. "source": {
  2434. "type": "git",
  2435. "url": "https://github.com/symfony/event-dispatcher.git",
  2436. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c"
  2437. },
  2438. "dist": {
  2439. "type": "zip",
  2440. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c",
  2441. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c",
  2442. "shasum": ""
  2443. },
  2444. "require": {
  2445. "php": ">=7.1.3",
  2446. "symfony/event-dispatcher-contracts": "^1.1"
  2447. },
  2448. "conflict": {
  2449. "symfony/dependency-injection": "<3.4"
  2450. },
  2451. "provide": {
  2452. "psr/event-dispatcher-implementation": "1.0",
  2453. "symfony/event-dispatcher-implementation": "1.1"
  2454. },
  2455. "require-dev": {
  2456. "psr/log": "~1.0",
  2457. "symfony/config": "^3.4|^4.0|^5.0",
  2458. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2459. "symfony/error-handler": "~3.4|~4.4",
  2460. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2461. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2462. "symfony/service-contracts": "^1.1|^2",
  2463. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2464. },
  2465. "suggest": {
  2466. "symfony/dependency-injection": "",
  2467. "symfony/http-kernel": ""
  2468. },
  2469. "type": "library",
  2470. "autoload": {
  2471. "psr-4": {
  2472. "Symfony\\Component\\EventDispatcher\\": ""
  2473. },
  2474. "exclude-from-classmap": [
  2475. "/Tests/"
  2476. ]
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Fabien Potencier",
  2485. "email": "fabien@symfony.com"
  2486. },
  2487. {
  2488. "name": "Symfony Community",
  2489. "homepage": "https://symfony.com/contributors"
  2490. }
  2491. ],
  2492. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2493. "homepage": "https://symfony.com",
  2494. "support": {
  2495. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.20"
  2496. },
  2497. "funding": [
  2498. {
  2499. "url": "https://symfony.com/sponsor",
  2500. "type": "custom"
  2501. },
  2502. {
  2503. "url": "https://github.com/fabpot",
  2504. "type": "github"
  2505. },
  2506. {
  2507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2508. "type": "tidelift"
  2509. }
  2510. ],
  2511. "time": "2021-01-27T09:09:26+00:00"
  2512. },
  2513. {
  2514. "name": "symfony/http-client",
  2515. "version": "v4.4.20",
  2516. "source": {
  2517. "type": "git",
  2518. "url": "https://github.com/symfony/http-client.git",
  2519. "reference": "67c5af7489b3c2eea771abd973243f5c58f5fb40"
  2520. },
  2521. "dist": {
  2522. "type": "zip",
  2523. "url": "https://api.github.com/repos/symfony/http-client/zipball/67c5af7489b3c2eea771abd973243f5c58f5fb40",
  2524. "reference": "67c5af7489b3c2eea771abd973243f5c58f5fb40",
  2525. "shasum": ""
  2526. },
  2527. "require": {
  2528. "php": ">=7.1.3",
  2529. "psr/log": "^1.0",
  2530. "symfony/http-client-contracts": "^1.1.10|^2",
  2531. "symfony/polyfill-php73": "^1.11",
  2532. "symfony/service-contracts": "^1.0|^2"
  2533. },
  2534. "provide": {
  2535. "php-http/async-client-implementation": "*",
  2536. "php-http/client-implementation": "*",
  2537. "psr/http-client-implementation": "1.0",
  2538. "symfony/http-client-implementation": "1.1|2.0"
  2539. },
  2540. "require-dev": {
  2541. "guzzlehttp/promises": "^1.4",
  2542. "nyholm/psr7": "^1.0",
  2543. "php-http/httplug": "^1.0|^2.0",
  2544. "psr/http-client": "^1.0",
  2545. "symfony/dependency-injection": "^4.3|^5.0",
  2546. "symfony/http-kernel": "^4.4.13",
  2547. "symfony/process": "^4.2|^5.0"
  2548. },
  2549. "type": "library",
  2550. "autoload": {
  2551. "psr-4": {
  2552. "Symfony\\Component\\HttpClient\\": ""
  2553. },
  2554. "exclude-from-classmap": [
  2555. "/Tests/"
  2556. ]
  2557. },
  2558. "notification-url": "https://packagist.org/downloads/",
  2559. "license": [
  2560. "MIT"
  2561. ],
  2562. "authors": [
  2563. {
  2564. "name": "Nicolas Grekas",
  2565. "email": "p@tchwork.com"
  2566. },
  2567. {
  2568. "name": "Symfony Community",
  2569. "homepage": "https://symfony.com/contributors"
  2570. }
  2571. ],
  2572. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  2573. "homepage": "https://symfony.com",
  2574. "support": {
  2575. "source": "https://github.com/symfony/http-client/tree/v4.4.20"
  2576. },
  2577. "funding": [
  2578. {
  2579. "url": "https://symfony.com/sponsor",
  2580. "type": "custom"
  2581. },
  2582. {
  2583. "url": "https://github.com/fabpot",
  2584. "type": "github"
  2585. },
  2586. {
  2587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2588. "type": "tidelift"
  2589. }
  2590. ],
  2591. "time": "2021-02-25T18:06:45+00:00"
  2592. },
  2593. {
  2594. "name": "symfony/polyfill-ctype",
  2595. "version": "v1.22.1",
  2596. "source": {
  2597. "type": "git",
  2598. "url": "https://github.com/symfony/polyfill-ctype.git",
  2599. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  2600. },
  2601. "dist": {
  2602. "type": "zip",
  2603. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  2604. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  2605. "shasum": ""
  2606. },
  2607. "require": {
  2608. "php": ">=7.1"
  2609. },
  2610. "suggest": {
  2611. "ext-ctype": "For best performance"
  2612. },
  2613. "type": "library",
  2614. "extra": {
  2615. "branch-alias": {
  2616. "dev-main": "1.22-dev"
  2617. },
  2618. "thanks": {
  2619. "name": "symfony/polyfill",
  2620. "url": "https://github.com/symfony/polyfill"
  2621. }
  2622. },
  2623. "autoload": {
  2624. "psr-4": {
  2625. "Symfony\\Polyfill\\Ctype\\": ""
  2626. },
  2627. "files": [
  2628. "bootstrap.php"
  2629. ]
  2630. },
  2631. "notification-url": "https://packagist.org/downloads/",
  2632. "license": [
  2633. "MIT"
  2634. ],
  2635. "authors": [
  2636. {
  2637. "name": "Gert de Pagter",
  2638. "email": "BackEndTea@gmail.com"
  2639. },
  2640. {
  2641. "name": "Symfony Community",
  2642. "homepage": "https://symfony.com/contributors"
  2643. }
  2644. ],
  2645. "description": "Symfony polyfill for ctype functions",
  2646. "homepage": "https://symfony.com",
  2647. "keywords": [
  2648. "compatibility",
  2649. "ctype",
  2650. "polyfill",
  2651. "portable"
  2652. ],
  2653. "support": {
  2654. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  2655. },
  2656. "funding": [
  2657. {
  2658. "url": "https://symfony.com/sponsor",
  2659. "type": "custom"
  2660. },
  2661. {
  2662. "url": "https://github.com/fabpot",
  2663. "type": "github"
  2664. },
  2665. {
  2666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2667. "type": "tidelift"
  2668. }
  2669. ],
  2670. "time": "2021-01-07T16:49:33+00:00"
  2671. },
  2672. {
  2673. "name": "symfony/polyfill-iconv",
  2674. "version": "v1.22.1",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://github.com/symfony/polyfill-iconv.git",
  2678. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  2683. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  2684. "shasum": ""
  2685. },
  2686. "require": {
  2687. "php": ">=7.1"
  2688. },
  2689. "suggest": {
  2690. "ext-iconv": "For best performance"
  2691. },
  2692. "type": "library",
  2693. "extra": {
  2694. "branch-alias": {
  2695. "dev-main": "1.22-dev"
  2696. },
  2697. "thanks": {
  2698. "name": "symfony/polyfill",
  2699. "url": "https://github.com/symfony/polyfill"
  2700. }
  2701. },
  2702. "autoload": {
  2703. "psr-4": {
  2704. "Symfony\\Polyfill\\Iconv\\": ""
  2705. },
  2706. "files": [
  2707. "bootstrap.php"
  2708. ]
  2709. },
  2710. "notification-url": "https://packagist.org/downloads/",
  2711. "license": [
  2712. "MIT"
  2713. ],
  2714. "authors": [
  2715. {
  2716. "name": "Nicolas Grekas",
  2717. "email": "p@tchwork.com"
  2718. },
  2719. {
  2720. "name": "Symfony Community",
  2721. "homepage": "https://symfony.com/contributors"
  2722. }
  2723. ],
  2724. "description": "Symfony polyfill for the Iconv extension",
  2725. "homepage": "https://symfony.com",
  2726. "keywords": [
  2727. "compatibility",
  2728. "iconv",
  2729. "polyfill",
  2730. "portable",
  2731. "shim"
  2732. ],
  2733. "support": {
  2734. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.1"
  2735. },
  2736. "funding": [
  2737. {
  2738. "url": "https://symfony.com/sponsor",
  2739. "type": "custom"
  2740. },
  2741. {
  2742. "url": "https://github.com/fabpot",
  2743. "type": "github"
  2744. },
  2745. {
  2746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2747. "type": "tidelift"
  2748. }
  2749. ],
  2750. "time": "2021-01-22T09:19:47+00:00"
  2751. },
  2752. {
  2753. "name": "symfony/polyfill-mbstring",
  2754. "version": "v1.22.1",
  2755. "source": {
  2756. "type": "git",
  2757. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2758. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  2759. },
  2760. "dist": {
  2761. "type": "zip",
  2762. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  2763. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  2764. "shasum": ""
  2765. },
  2766. "require": {
  2767. "php": ">=7.1"
  2768. },
  2769. "suggest": {
  2770. "ext-mbstring": "For best performance"
  2771. },
  2772. "type": "library",
  2773. "extra": {
  2774. "branch-alias": {
  2775. "dev-main": "1.22-dev"
  2776. },
  2777. "thanks": {
  2778. "name": "symfony/polyfill",
  2779. "url": "https://github.com/symfony/polyfill"
  2780. }
  2781. },
  2782. "autoload": {
  2783. "psr-4": {
  2784. "Symfony\\Polyfill\\Mbstring\\": ""
  2785. },
  2786. "files": [
  2787. "bootstrap.php"
  2788. ]
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Nicolas Grekas",
  2797. "email": "p@tchwork.com"
  2798. },
  2799. {
  2800. "name": "Symfony Community",
  2801. "homepage": "https://symfony.com/contributors"
  2802. }
  2803. ],
  2804. "description": "Symfony polyfill for the Mbstring extension",
  2805. "homepage": "https://symfony.com",
  2806. "keywords": [
  2807. "compatibility",
  2808. "mbstring",
  2809. "polyfill",
  2810. "portable",
  2811. "shim"
  2812. ],
  2813. "support": {
  2814. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  2815. },
  2816. "funding": [
  2817. {
  2818. "url": "https://symfony.com/sponsor",
  2819. "type": "custom"
  2820. },
  2821. {
  2822. "url": "https://github.com/fabpot",
  2823. "type": "github"
  2824. },
  2825. {
  2826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2827. "type": "tidelift"
  2828. }
  2829. ],
  2830. "time": "2021-01-22T09:19:47+00:00"
  2831. },
  2832. {
  2833. "name": "symfony/polyfill-php74",
  2834. "version": "v1.22.1",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/symfony/polyfill-php74.git",
  2838. "reference": "577e147350331efeb816897e004d85e6e765daaf"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/symfony/polyfill-php74/zipball/577e147350331efeb816897e004d85e6e765daaf",
  2843. "reference": "577e147350331efeb816897e004d85e6e765daaf",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "php": ">=7.1"
  2848. },
  2849. "type": "library",
  2850. "extra": {
  2851. "branch-alias": {
  2852. "dev-main": "1.22-dev"
  2853. },
  2854. "thanks": {
  2855. "name": "symfony/polyfill",
  2856. "url": "https://github.com/symfony/polyfill"
  2857. }
  2858. },
  2859. "autoload": {
  2860. "psr-4": {
  2861. "Symfony\\Polyfill\\Php74\\": ""
  2862. },
  2863. "files": [
  2864. "bootstrap.php"
  2865. ]
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "Ion Bazan",
  2874. "email": "ion.bazan@gmail.com"
  2875. },
  2876. {
  2877. "name": "Nicolas Grekas",
  2878. "email": "p@tchwork.com"
  2879. },
  2880. {
  2881. "name": "Symfony Community",
  2882. "homepage": "https://symfony.com/contributors"
  2883. }
  2884. ],
  2885. "description": "Symfony polyfill backporting some PHP 7.4+ features to lower PHP versions",
  2886. "homepage": "https://symfony.com",
  2887. "keywords": [
  2888. "compatibility",
  2889. "polyfill",
  2890. "portable",
  2891. "shim"
  2892. ],
  2893. "support": {
  2894. "source": "https://github.com/symfony/polyfill-php74/tree/v1.22.1"
  2895. },
  2896. "funding": [
  2897. {
  2898. "url": "https://symfony.com/sponsor",
  2899. "type": "custom"
  2900. },
  2901. {
  2902. "url": "https://github.com/fabpot",
  2903. "type": "github"
  2904. },
  2905. {
  2906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2907. "type": "tidelift"
  2908. }
  2909. ],
  2910. "time": "2021-01-07T16:49:33+00:00"
  2911. },
  2912. {
  2913. "name": "symfony/polyfill-php80",
  2914. "version": "v1.22.1",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/symfony/polyfill-php80.git",
  2918. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  2923. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  2924. "shasum": ""
  2925. },
  2926. "require": {
  2927. "php": ">=7.1"
  2928. },
  2929. "type": "library",
  2930. "extra": {
  2931. "branch-alias": {
  2932. "dev-main": "1.22-dev"
  2933. },
  2934. "thanks": {
  2935. "name": "symfony/polyfill",
  2936. "url": "https://github.com/symfony/polyfill"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Symfony\\Polyfill\\Php80\\": ""
  2942. },
  2943. "files": [
  2944. "bootstrap.php"
  2945. ],
  2946. "classmap": [
  2947. "Resources/stubs"
  2948. ]
  2949. },
  2950. "notification-url": "https://packagist.org/downloads/",
  2951. "license": [
  2952. "MIT"
  2953. ],
  2954. "authors": [
  2955. {
  2956. "name": "Ion Bazan",
  2957. "email": "ion.bazan@gmail.com"
  2958. },
  2959. {
  2960. "name": "Nicolas Grekas",
  2961. "email": "p@tchwork.com"
  2962. },
  2963. {
  2964. "name": "Symfony Community",
  2965. "homepage": "https://symfony.com/contributors"
  2966. }
  2967. ],
  2968. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2969. "homepage": "https://symfony.com",
  2970. "keywords": [
  2971. "compatibility",
  2972. "polyfill",
  2973. "portable",
  2974. "shim"
  2975. ],
  2976. "support": {
  2977. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  2978. },
  2979. "funding": [
  2980. {
  2981. "url": "https://symfony.com/sponsor",
  2982. "type": "custom"
  2983. },
  2984. {
  2985. "url": "https://github.com/fabpot",
  2986. "type": "github"
  2987. },
  2988. {
  2989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2990. "type": "tidelift"
  2991. }
  2992. ],
  2993. "time": "2021-01-07T16:49:33+00:00"
  2994. },
  2995. {
  2996. "name": "symfony/process",
  2997. "version": "v4.4.20",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/symfony/process.git",
  3001. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a",
  3006. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a",
  3007. "shasum": ""
  3008. },
  3009. "require": {
  3010. "php": ">=7.1.3"
  3011. },
  3012. "type": "library",
  3013. "autoload": {
  3014. "psr-4": {
  3015. "Symfony\\Component\\Process\\": ""
  3016. },
  3017. "exclude-from-classmap": [
  3018. "/Tests/"
  3019. ]
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "MIT"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "Fabien Potencier",
  3028. "email": "fabien@symfony.com"
  3029. },
  3030. {
  3031. "name": "Symfony Community",
  3032. "homepage": "https://symfony.com/contributors"
  3033. }
  3034. ],
  3035. "description": "Executes commands in sub-processes",
  3036. "homepage": "https://symfony.com",
  3037. "support": {
  3038. "source": "https://github.com/symfony/process/tree/v4.4.20"
  3039. },
  3040. "funding": [
  3041. {
  3042. "url": "https://symfony.com/sponsor",
  3043. "type": "custom"
  3044. },
  3045. {
  3046. "url": "https://github.com/fabpot",
  3047. "type": "github"
  3048. },
  3049. {
  3050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3051. "type": "tidelift"
  3052. }
  3053. ],
  3054. "time": "2021-01-27T09:09:26+00:00"
  3055. },
  3056. {
  3057. "name": "symfony/var-dumper",
  3058. "version": "v4.4.20",
  3059. "source": {
  3060. "type": "git",
  3061. "url": "https://github.com/symfony/var-dumper.git",
  3062. "reference": "a1eab2f69906dc83c5ddba4632180260d0ab4f7f"
  3063. },
  3064. "dist": {
  3065. "type": "zip",
  3066. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a1eab2f69906dc83c5ddba4632180260d0ab4f7f",
  3067. "reference": "a1eab2f69906dc83c5ddba4632180260d0ab4f7f",
  3068. "shasum": ""
  3069. },
  3070. "require": {
  3071. "php": ">=7.1.3",
  3072. "symfony/polyfill-mbstring": "~1.0",
  3073. "symfony/polyfill-php72": "~1.5",
  3074. "symfony/polyfill-php80": "^1.15"
  3075. },
  3076. "conflict": {
  3077. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3078. "symfony/console": "<3.4"
  3079. },
  3080. "require-dev": {
  3081. "ext-iconv": "*",
  3082. "symfony/console": "^3.4|^4.0|^5.0",
  3083. "symfony/process": "^4.4|^5.0",
  3084. "twig/twig": "^1.43|^2.13|^3.0.4"
  3085. },
  3086. "suggest": {
  3087. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3088. "ext-intl": "To show region name in time zone dump",
  3089. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3090. },
  3091. "bin": [
  3092. "Resources/bin/var-dump-server"
  3093. ],
  3094. "type": "library",
  3095. "autoload": {
  3096. "files": [
  3097. "Resources/functions/dump.php"
  3098. ],
  3099. "psr-4": {
  3100. "Symfony\\Component\\VarDumper\\": ""
  3101. },
  3102. "exclude-from-classmap": [
  3103. "/Tests/"
  3104. ]
  3105. },
  3106. "notification-url": "https://packagist.org/downloads/",
  3107. "license": [
  3108. "MIT"
  3109. ],
  3110. "authors": [
  3111. {
  3112. "name": "Nicolas Grekas",
  3113. "email": "p@tchwork.com"
  3114. },
  3115. {
  3116. "name": "Symfony Community",
  3117. "homepage": "https://symfony.com/contributors"
  3118. }
  3119. ],
  3120. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  3121. "homepage": "https://symfony.com",
  3122. "keywords": [
  3123. "debug",
  3124. "dump"
  3125. ],
  3126. "support": {
  3127. "source": "https://github.com/symfony/var-dumper/tree/v4.4.20"
  3128. },
  3129. "funding": [
  3130. {
  3131. "url": "https://symfony.com/sponsor",
  3132. "type": "custom"
  3133. },
  3134. {
  3135. "url": "https://github.com/fabpot",
  3136. "type": "github"
  3137. },
  3138. {
  3139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3140. "type": "tidelift"
  3141. }
  3142. ],
  3143. "time": "2021-01-27T09:09:26+00:00"
  3144. },
  3145. {
  3146. "name": "symfony/yaml",
  3147. "version": "v4.4.20",
  3148. "source": {
  3149. "type": "git",
  3150. "url": "https://github.com/symfony/yaml.git",
  3151. "reference": "29e61305e1c79d25f71060903982ead8f533e267"
  3152. },
  3153. "dist": {
  3154. "type": "zip",
  3155. "url": "https://api.github.com/repos/symfony/yaml/zipball/29e61305e1c79d25f71060903982ead8f533e267",
  3156. "reference": "29e61305e1c79d25f71060903982ead8f533e267",
  3157. "shasum": ""
  3158. },
  3159. "require": {
  3160. "php": ">=7.1.3",
  3161. "symfony/polyfill-ctype": "~1.8"
  3162. },
  3163. "conflict": {
  3164. "symfony/console": "<3.4"
  3165. },
  3166. "require-dev": {
  3167. "symfony/console": "^3.4|^4.0|^5.0"
  3168. },
  3169. "suggest": {
  3170. "symfony/console": "For validating YAML files using the lint command"
  3171. },
  3172. "type": "library",
  3173. "autoload": {
  3174. "psr-4": {
  3175. "Symfony\\Component\\Yaml\\": ""
  3176. },
  3177. "exclude-from-classmap": [
  3178. "/Tests/"
  3179. ]
  3180. },
  3181. "notification-url": "https://packagist.org/downloads/",
  3182. "license": [
  3183. "MIT"
  3184. ],
  3185. "authors": [
  3186. {
  3187. "name": "Fabien Potencier",
  3188. "email": "fabien@symfony.com"
  3189. },
  3190. {
  3191. "name": "Symfony Community",
  3192. "homepage": "https://symfony.com/contributors"
  3193. }
  3194. ],
  3195. "description": "Loads and dumps YAML files",
  3196. "homepage": "https://symfony.com",
  3197. "support": {
  3198. "source": "https://github.com/symfony/yaml/tree/v4.4.20"
  3199. },
  3200. "funding": [
  3201. {
  3202. "url": "https://symfony.com/sponsor",
  3203. "type": "custom"
  3204. },
  3205. {
  3206. "url": "https://github.com/fabpot",
  3207. "type": "github"
  3208. },
  3209. {
  3210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3211. "type": "tidelift"
  3212. }
  3213. ],
  3214. "time": "2021-02-22T15:36:50+00:00"
  3215. },
  3216. {
  3217. "name": "twig/twig",
  3218. "version": "v1.44.2",
  3219. "source": {
  3220. "type": "git",
  3221. "url": "https://github.com/twigphp/Twig.git",
  3222. "reference": "138c493c5b8ee7cff3821f80b8896d371366b5fe"
  3223. },
  3224. "dist": {
  3225. "type": "zip",
  3226. "url": "https://api.github.com/repos/twigphp/Twig/zipball/138c493c5b8ee7cff3821f80b8896d371366b5fe",
  3227. "reference": "138c493c5b8ee7cff3821f80b8896d371366b5fe",
  3228. "shasum": ""
  3229. },
  3230. "require": {
  3231. "php": ">=7.2.5",
  3232. "symfony/polyfill-ctype": "^1.8"
  3233. },
  3234. "require-dev": {
  3235. "psr/container": "^1.0",
  3236. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  3237. },
  3238. "type": "library",
  3239. "extra": {
  3240. "branch-alias": {
  3241. "dev-master": "1.44-dev"
  3242. }
  3243. },
  3244. "autoload": {
  3245. "psr-0": {
  3246. "Twig_": "lib/"
  3247. },
  3248. "psr-4": {
  3249. "Twig\\": "src/"
  3250. }
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "BSD-3-Clause"
  3255. ],
  3256. "authors": [
  3257. {
  3258. "name": "Fabien Potencier",
  3259. "email": "fabien@symfony.com",
  3260. "homepage": "http://fabien.potencier.org",
  3261. "role": "Lead Developer"
  3262. },
  3263. {
  3264. "name": "Twig Team",
  3265. "role": "Contributors"
  3266. },
  3267. {
  3268. "name": "Armin Ronacher",
  3269. "email": "armin.ronacher@active-4.com",
  3270. "role": "Project Founder"
  3271. }
  3272. ],
  3273. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3274. "homepage": "https://twig.symfony.com",
  3275. "keywords": [
  3276. "templating"
  3277. ],
  3278. "support": {
  3279. "issues": "https://github.com/twigphp/Twig/issues",
  3280. "source": "https://github.com/twigphp/Twig/tree/v1.44.2"
  3281. },
  3282. "funding": [
  3283. {
  3284. "url": "https://github.com/fabpot",
  3285. "type": "github"
  3286. },
  3287. {
  3288. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  3289. "type": "tidelift"
  3290. }
  3291. ],
  3292. "time": "2021-01-05T10:10:05+00:00"
  3293. },
  3294. {
  3295. "name": "willdurand/negotiation",
  3296. "version": "3.0.0",
  3297. "source": {
  3298. "type": "git",
  3299. "url": "https://github.com/willdurand/Negotiation.git",
  3300. "reference": "04e14f38d4edfcc974114a07d2777d90c98f3d9c"
  3301. },
  3302. "dist": {
  3303. "type": "zip",
  3304. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/04e14f38d4edfcc974114a07d2777d90c98f3d9c",
  3305. "reference": "04e14f38d4edfcc974114a07d2777d90c98f3d9c",
  3306. "shasum": ""
  3307. },
  3308. "require": {
  3309. "php": ">=7.1.0"
  3310. },
  3311. "require-dev": {
  3312. "symfony/phpunit-bridge": "^5.0"
  3313. },
  3314. "type": "library",
  3315. "extra": {
  3316. "branch-alias": {
  3317. "dev-master": "3.0-dev"
  3318. }
  3319. },
  3320. "autoload": {
  3321. "psr-4": {
  3322. "Negotiation\\": "src/Negotiation"
  3323. }
  3324. },
  3325. "notification-url": "https://packagist.org/downloads/",
  3326. "license": [
  3327. "MIT"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "William Durand",
  3332. "email": "will+git@drnd.me"
  3333. }
  3334. ],
  3335. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  3336. "homepage": "http://williamdurand.fr/Negotiation/",
  3337. "keywords": [
  3338. "accept",
  3339. "content",
  3340. "format",
  3341. "header",
  3342. "negotiation"
  3343. ],
  3344. "support": {
  3345. "issues": "https://github.com/willdurand/Negotiation/issues",
  3346. "source": "https://github.com/willdurand/Negotiation/tree/3.0.0"
  3347. },
  3348. "time": "2020-09-25T08:01:41+00:00"
  3349. }
  3350. ],
  3351. "packages-dev": [
  3352. {
  3353. "name": "behat/gherkin",
  3354. "version": "v4.8.0",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/Behat/Gherkin.git",
  3358. "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/2391482cd003dfdc36b679b27e9f5326bd656acd",
  3363. "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd",
  3364. "shasum": ""
  3365. },
  3366. "require": {
  3367. "php": "~7.2|~8.0"
  3368. },
  3369. "require-dev": {
  3370. "cucumber/cucumber": "dev-gherkin-16.0.0",
  3371. "phpunit/phpunit": "~8|~9",
  3372. "symfony/phpunit-bridge": "~3|~4|~5",
  3373. "symfony/yaml": "~3|~4|~5"
  3374. },
  3375. "suggest": {
  3376. "symfony/yaml": "If you want to parse features, represented in YAML files"
  3377. },
  3378. "type": "library",
  3379. "extra": {
  3380. "branch-alias": {
  3381. "dev-master": "4.4-dev"
  3382. }
  3383. },
  3384. "autoload": {
  3385. "psr-0": {
  3386. "Behat\\Gherkin": "src/"
  3387. }
  3388. },
  3389. "notification-url": "https://packagist.org/downloads/",
  3390. "license": [
  3391. "MIT"
  3392. ],
  3393. "authors": [
  3394. {
  3395. "name": "Konstantin Kudryashov",
  3396. "email": "ever.zet@gmail.com",
  3397. "homepage": "http://everzet.com"
  3398. }
  3399. ],
  3400. "description": "Gherkin DSL parser for PHP",
  3401. "homepage": "http://behat.org/",
  3402. "keywords": [
  3403. "BDD",
  3404. "Behat",
  3405. "Cucumber",
  3406. "DSL",
  3407. "gherkin",
  3408. "parser"
  3409. ],
  3410. "support": {
  3411. "issues": "https://github.com/Behat/Gherkin/issues",
  3412. "source": "https://github.com/Behat/Gherkin/tree/v4.8.0"
  3413. },
  3414. "time": "2021-02-04T12:44:21+00:00"
  3415. },
  3416. {
  3417. "name": "codeception/codeception",
  3418. "version": "4.1.18",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/Codeception/Codeception.git",
  3422. "reference": "f47547bac347dfb5ea5351ff91148cbcc08e6818"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/f47547bac347dfb5ea5351ff91148cbcc08e6818",
  3427. "reference": "f47547bac347dfb5ea5351ff91148cbcc08e6818",
  3428. "shasum": ""
  3429. },
  3430. "require": {
  3431. "behat/gherkin": "^4.4.0",
  3432. "codeception/lib-asserts": "^1.0",
  3433. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
  3434. "codeception/stub": "^2.0 | ^3.0",
  3435. "ext-curl": "*",
  3436. "ext-json": "*",
  3437. "ext-mbstring": "*",
  3438. "guzzlehttp/psr7": "~1.4",
  3439. "php": ">=5.6.0 <9.0",
  3440. "symfony/console": ">=2.7 <6.0",
  3441. "symfony/css-selector": ">=2.7 <6.0",
  3442. "symfony/event-dispatcher": ">=2.7 <6.0",
  3443. "symfony/finder": ">=2.7 <6.0",
  3444. "symfony/yaml": ">=2.7 <6.0"
  3445. },
  3446. "require-dev": {
  3447. "codeception/module-asserts": "*@dev",
  3448. "codeception/module-cli": "*@dev",
  3449. "codeception/module-db": "*@dev",
  3450. "codeception/module-filesystem": "*@dev",
  3451. "codeception/module-phpbrowser": "*@dev",
  3452. "codeception/specify": "~0.3",
  3453. "codeception/util-universalframework": "*@dev",
  3454. "monolog/monolog": "~1.8",
  3455. "squizlabs/php_codesniffer": "~2.0",
  3456. "symfony/process": ">=2.7 <6.0",
  3457. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0"
  3458. },
  3459. "suggest": {
  3460. "codeception/specify": "BDD-style code blocks",
  3461. "codeception/verify": "BDD-style assertions",
  3462. "hoa/console": "For interactive console functionality",
  3463. "stecman/symfony-console-completion": "For BASH autocompletion",
  3464. "symfony/phpunit-bridge": "For phpunit-bridge support"
  3465. },
  3466. "bin": [
  3467. "codecept"
  3468. ],
  3469. "type": "library",
  3470. "extra": {
  3471. "branch-alias": []
  3472. },
  3473. "autoload": {
  3474. "psr-4": {
  3475. "Codeception\\": "src/Codeception",
  3476. "Codeception\\Extension\\": "ext"
  3477. }
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "MIT"
  3482. ],
  3483. "authors": [
  3484. {
  3485. "name": "Michael Bodnarchuk",
  3486. "email": "davert@mail.ua",
  3487. "homepage": "http://codegyre.com"
  3488. }
  3489. ],
  3490. "description": "BDD-style testing framework",
  3491. "homepage": "http://codeception.com/",
  3492. "keywords": [
  3493. "BDD",
  3494. "TDD",
  3495. "acceptance testing",
  3496. "functional testing",
  3497. "unit testing"
  3498. ],
  3499. "support": {
  3500. "issues": "https://github.com/Codeception/Codeception/issues",
  3501. "source": "https://github.com/Codeception/Codeception/tree/4.1.18"
  3502. },
  3503. "funding": [
  3504. {
  3505. "url": "https://opencollective.com/codeception",
  3506. "type": "open_collective"
  3507. }
  3508. ],
  3509. "time": "2021-02-23T17:11:42+00:00"
  3510. },
  3511. {
  3512. "name": "codeception/lib-asserts",
  3513. "version": "1.13.2",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/Codeception/lib-asserts.git",
  3517. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6",
  3522. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
  3527. "ext-dom": "*",
  3528. "php": ">=5.6.0 <9.0"
  3529. },
  3530. "type": "library",
  3531. "autoload": {
  3532. "classmap": [
  3533. "src/"
  3534. ]
  3535. },
  3536. "notification-url": "https://packagist.org/downloads/",
  3537. "license": [
  3538. "MIT"
  3539. ],
  3540. "authors": [
  3541. {
  3542. "name": "Michael Bodnarchuk",
  3543. "email": "davert@mail.ua",
  3544. "homepage": "http://codegyre.com"
  3545. },
  3546. {
  3547. "name": "Gintautas Miselis"
  3548. },
  3549. {
  3550. "name": "Gustavo Nieves",
  3551. "homepage": "https://medium.com/@ganieves"
  3552. }
  3553. ],
  3554. "description": "Assertion methods used by Codeception core and Asserts module",
  3555. "homepage": "https://codeception.com/",
  3556. "keywords": [
  3557. "codeception"
  3558. ],
  3559. "support": {
  3560. "issues": "https://github.com/Codeception/lib-asserts/issues",
  3561. "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2"
  3562. },
  3563. "time": "2020-10-21T16:26:20+00:00"
  3564. },
  3565. {
  3566. "name": "codeception/lib-innerbrowser",
  3567. "version": "1.4.1",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  3571. "reference": "693e116f81ef98eae98c43ef785a726faf87394e"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/693e116f81ef98eae98c43ef785a726faf87394e",
  3576. "reference": "693e116f81ef98eae98c43ef785a726faf87394e",
  3577. "shasum": ""
  3578. },
  3579. "require": {
  3580. "codeception/codeception": "*@dev",
  3581. "ext-dom": "*",
  3582. "ext-json": "*",
  3583. "ext-mbstring": "*",
  3584. "php": ">=5.6.0 <9.0",
  3585. "symfony/browser-kit": ">=2.7 <6.0",
  3586. "symfony/dom-crawler": ">=2.7 <6.0"
  3587. },
  3588. "conflict": {
  3589. "codeception/codeception": "<4.0"
  3590. },
  3591. "require-dev": {
  3592. "codeception/util-universalframework": "dev-master"
  3593. },
  3594. "type": "library",
  3595. "autoload": {
  3596. "classmap": [
  3597. "src/"
  3598. ]
  3599. },
  3600. "notification-url": "https://packagist.org/downloads/",
  3601. "license": [
  3602. "MIT"
  3603. ],
  3604. "authors": [
  3605. {
  3606. "name": "Michael Bodnarchuk",
  3607. "email": "davert@mail.ua",
  3608. "homepage": "http://codegyre.com"
  3609. },
  3610. {
  3611. "name": "Gintautas Miselis"
  3612. }
  3613. ],
  3614. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  3615. "homepage": "https://codeception.com/",
  3616. "keywords": [
  3617. "codeception"
  3618. ],
  3619. "support": {
  3620. "issues": "https://github.com/Codeception/lib-innerbrowser/issues",
  3621. "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.4.1"
  3622. },
  3623. "time": "2021-03-02T08:01:54+00:00"
  3624. },
  3625. {
  3626. "name": "codeception/module-asserts",
  3627. "version": "1.3.1",
  3628. "source": {
  3629. "type": "git",
  3630. "url": "https://github.com/Codeception/module-asserts.git",
  3631. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de"
  3632. },
  3633. "dist": {
  3634. "type": "zip",
  3635. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de",
  3636. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de",
  3637. "shasum": ""
  3638. },
  3639. "require": {
  3640. "codeception/codeception": "*@dev",
  3641. "codeception/lib-asserts": "^1.13.1",
  3642. "php": ">=5.6.0 <9.0"
  3643. },
  3644. "conflict": {
  3645. "codeception/codeception": "<4.0"
  3646. },
  3647. "type": "library",
  3648. "autoload": {
  3649. "classmap": [
  3650. "src/"
  3651. ]
  3652. },
  3653. "notification-url": "https://packagist.org/downloads/",
  3654. "license": [
  3655. "MIT"
  3656. ],
  3657. "authors": [
  3658. {
  3659. "name": "Michael Bodnarchuk"
  3660. },
  3661. {
  3662. "name": "Gintautas Miselis"
  3663. },
  3664. {
  3665. "name": "Gustavo Nieves",
  3666. "homepage": "https://medium.com/@ganieves"
  3667. }
  3668. ],
  3669. "description": "Codeception module containing various assertions",
  3670. "homepage": "https://codeception.com/",
  3671. "keywords": [
  3672. "assertions",
  3673. "asserts",
  3674. "codeception"
  3675. ],
  3676. "support": {
  3677. "issues": "https://github.com/Codeception/module-asserts/issues",
  3678. "source": "https://github.com/Codeception/module-asserts/tree/1.3.1"
  3679. },
  3680. "time": "2020-10-21T16:48:15+00:00"
  3681. },
  3682. {
  3683. "name": "codeception/module-phpbrowser",
  3684. "version": "1.0.2",
  3685. "source": {
  3686. "type": "git",
  3687. "url": "https://github.com/Codeception/module-phpbrowser.git",
  3688. "reference": "770a6be4160a5c0c08d100dd51bff35f6056bbf1"
  3689. },
  3690. "dist": {
  3691. "type": "zip",
  3692. "url": "https://api.github.com/repos/Codeception/module-phpbrowser/zipball/770a6be4160a5c0c08d100dd51bff35f6056bbf1",
  3693. "reference": "770a6be4160a5c0c08d100dd51bff35f6056bbf1",
  3694. "shasum": ""
  3695. },
  3696. "require": {
  3697. "codeception/codeception": "^4.0",
  3698. "codeception/lib-innerbrowser": "^1.3",
  3699. "guzzlehttp/guzzle": "^6.3|^7.0",
  3700. "php": ">=5.6.0 <9.0"
  3701. },
  3702. "conflict": {
  3703. "codeception/codeception": "<4.0"
  3704. },
  3705. "require-dev": {
  3706. "codeception/module-rest": "^1.0"
  3707. },
  3708. "suggest": {
  3709. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
  3710. },
  3711. "type": "library",
  3712. "autoload": {
  3713. "classmap": [
  3714. "src/"
  3715. ]
  3716. },
  3717. "notification-url": "https://packagist.org/downloads/",
  3718. "license": [
  3719. "MIT"
  3720. ],
  3721. "authors": [
  3722. {
  3723. "name": "Michael Bodnarchuk"
  3724. },
  3725. {
  3726. "name": "Gintautas Miselis"
  3727. }
  3728. ],
  3729. "description": "Codeception module for testing web application over HTTP",
  3730. "homepage": "http://codeception.com/",
  3731. "keywords": [
  3732. "codeception",
  3733. "functional-testing",
  3734. "http"
  3735. ],
  3736. "support": {
  3737. "issues": "https://github.com/Codeception/module-phpbrowser/issues",
  3738. "source": "https://github.com/Codeception/module-phpbrowser/tree/1.0.2"
  3739. },
  3740. "time": "2020-10-24T15:29:28+00:00"
  3741. },
  3742. {
  3743. "name": "codeception/phpunit-wrapper",
  3744. "version": "9.0.6",
  3745. "source": {
  3746. "type": "git",
  3747. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  3748. "reference": "b0c06abb3181eedca690170f7ed0fd26a70bfacc"
  3749. },
  3750. "dist": {
  3751. "type": "zip",
  3752. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/b0c06abb3181eedca690170f7ed0fd26a70bfacc",
  3753. "reference": "b0c06abb3181eedca690170f7ed0fd26a70bfacc",
  3754. "shasum": ""
  3755. },
  3756. "require": {
  3757. "php": ">=7.2",
  3758. "phpunit/phpunit": "^9.0"
  3759. },
  3760. "require-dev": {
  3761. "codeception/specify": "*",
  3762. "consolidation/robo": "^3.0.0-alpha3",
  3763. "vlucas/phpdotenv": "^3.0"
  3764. },
  3765. "type": "library",
  3766. "autoload": {
  3767. "psr-4": {
  3768. "Codeception\\PHPUnit\\": "src/"
  3769. }
  3770. },
  3771. "notification-url": "https://packagist.org/downloads/",
  3772. "license": [
  3773. "MIT"
  3774. ],
  3775. "authors": [
  3776. {
  3777. "name": "Davert",
  3778. "email": "davert.php@resend.cc"
  3779. },
  3780. {
  3781. "name": "Naktibalda"
  3782. }
  3783. ],
  3784. "description": "PHPUnit classes used by Codeception",
  3785. "support": {
  3786. "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
  3787. "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.6"
  3788. },
  3789. "time": "2020-12-28T13:59:47+00:00"
  3790. },
  3791. {
  3792. "name": "codeception/stub",
  3793. "version": "3.7.0",
  3794. "source": {
  3795. "type": "git",
  3796. "url": "https://github.com/Codeception/Stub.git",
  3797. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304"
  3798. },
  3799. "dist": {
  3800. "type": "zip",
  3801. "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304",
  3802. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304",
  3803. "shasum": ""
  3804. },
  3805. "require": {
  3806. "phpunit/phpunit": "^8.4 | ^9.0"
  3807. },
  3808. "type": "library",
  3809. "autoload": {
  3810. "psr-4": {
  3811. "Codeception\\": "src/"
  3812. }
  3813. },
  3814. "notification-url": "https://packagist.org/downloads/",
  3815. "license": [
  3816. "MIT"
  3817. ],
  3818. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  3819. "support": {
  3820. "issues": "https://github.com/Codeception/Stub/issues",
  3821. "source": "https://github.com/Codeception/Stub/tree/3.7.0"
  3822. },
  3823. "time": "2020-07-03T15:54:43+00:00"
  3824. },
  3825. {
  3826. "name": "doctrine/instantiator",
  3827. "version": "1.4.0",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/doctrine/instantiator.git",
  3831. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  3836. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "php": "^7.1 || ^8.0"
  3841. },
  3842. "require-dev": {
  3843. "doctrine/coding-standard": "^8.0",
  3844. "ext-pdo": "*",
  3845. "ext-phar": "*",
  3846. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  3847. "phpstan/phpstan": "^0.12",
  3848. "phpstan/phpstan-phpunit": "^0.12",
  3849. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3850. },
  3851. "type": "library",
  3852. "autoload": {
  3853. "psr-4": {
  3854. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3855. }
  3856. },
  3857. "notification-url": "https://packagist.org/downloads/",
  3858. "license": [
  3859. "MIT"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "Marco Pivetta",
  3864. "email": "ocramius@gmail.com",
  3865. "homepage": "https://ocramius.github.io/"
  3866. }
  3867. ],
  3868. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3869. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3870. "keywords": [
  3871. "constructor",
  3872. "instantiate"
  3873. ],
  3874. "support": {
  3875. "issues": "https://github.com/doctrine/instantiator/issues",
  3876. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  3877. },
  3878. "funding": [
  3879. {
  3880. "url": "https://www.doctrine-project.org/sponsorship.html",
  3881. "type": "custom"
  3882. },
  3883. {
  3884. "url": "https://www.patreon.com/phpdoctrine",
  3885. "type": "patreon"
  3886. },
  3887. {
  3888. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  3889. "type": "tidelift"
  3890. }
  3891. ],
  3892. "time": "2020-11-10T18:47:58+00:00"
  3893. },
  3894. {
  3895. "name": "guzzlehttp/guzzle",
  3896. "version": "7.2.0",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://github.com/guzzle/guzzle.git",
  3900. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
  3901. },
  3902. "dist": {
  3903. "type": "zip",
  3904. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
  3905. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
  3906. "shasum": ""
  3907. },
  3908. "require": {
  3909. "ext-json": "*",
  3910. "guzzlehttp/promises": "^1.4",
  3911. "guzzlehttp/psr7": "^1.7",
  3912. "php": "^7.2.5 || ^8.0",
  3913. "psr/http-client": "^1.0"
  3914. },
  3915. "provide": {
  3916. "psr/http-client-implementation": "1.0"
  3917. },
  3918. "require-dev": {
  3919. "ext-curl": "*",
  3920. "php-http/client-integration-tests": "^3.0",
  3921. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  3922. "psr/log": "^1.1"
  3923. },
  3924. "suggest": {
  3925. "ext-curl": "Required for CURL handler support",
  3926. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  3927. "psr/log": "Required for using the Log middleware"
  3928. },
  3929. "type": "library",
  3930. "extra": {
  3931. "branch-alias": {
  3932. "dev-master": "7.1-dev"
  3933. }
  3934. },
  3935. "autoload": {
  3936. "psr-4": {
  3937. "GuzzleHttp\\": "src/"
  3938. },
  3939. "files": [
  3940. "src/functions_include.php"
  3941. ]
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "Michael Dowling",
  3950. "email": "mtdowling@gmail.com",
  3951. "homepage": "https://github.com/mtdowling"
  3952. },
  3953. {
  3954. "name": "Márk Sági-Kazár",
  3955. "email": "mark.sagikazar@gmail.com",
  3956. "homepage": "https://sagikazarmark.hu"
  3957. }
  3958. ],
  3959. "description": "Guzzle is a PHP HTTP client library",
  3960. "homepage": "http://guzzlephp.org/",
  3961. "keywords": [
  3962. "client",
  3963. "curl",
  3964. "framework",
  3965. "http",
  3966. "http client",
  3967. "psr-18",
  3968. "psr-7",
  3969. "rest",
  3970. "web service"
  3971. ],
  3972. "support": {
  3973. "issues": "https://github.com/guzzle/guzzle/issues",
  3974. "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
  3975. },
  3976. "funding": [
  3977. {
  3978. "url": "https://github.com/GrahamCampbell",
  3979. "type": "github"
  3980. },
  3981. {
  3982. "url": "https://github.com/Nyholm",
  3983. "type": "github"
  3984. },
  3985. {
  3986. "url": "https://github.com/alexeyshockov",
  3987. "type": "github"
  3988. },
  3989. {
  3990. "url": "https://github.com/gmponos",
  3991. "type": "github"
  3992. }
  3993. ],
  3994. "time": "2020-10-10T11:47:56+00:00"
  3995. },
  3996. {
  3997. "name": "guzzlehttp/promises",
  3998. "version": "1.4.1",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/guzzle/promises.git",
  4002. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  4007. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  4008. "shasum": ""
  4009. },
  4010. "require": {
  4011. "php": ">=5.5"
  4012. },
  4013. "require-dev": {
  4014. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  4015. },
  4016. "type": "library",
  4017. "extra": {
  4018. "branch-alias": {
  4019. "dev-master": "1.4-dev"
  4020. }
  4021. },
  4022. "autoload": {
  4023. "psr-4": {
  4024. "GuzzleHttp\\Promise\\": "src/"
  4025. },
  4026. "files": [
  4027. "src/functions_include.php"
  4028. ]
  4029. },
  4030. "notification-url": "https://packagist.org/downloads/",
  4031. "license": [
  4032. "MIT"
  4033. ],
  4034. "authors": [
  4035. {
  4036. "name": "Michael Dowling",
  4037. "email": "mtdowling@gmail.com",
  4038. "homepage": "https://github.com/mtdowling"
  4039. }
  4040. ],
  4041. "description": "Guzzle promises library",
  4042. "keywords": [
  4043. "promise"
  4044. ],
  4045. "support": {
  4046. "issues": "https://github.com/guzzle/promises/issues",
  4047. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  4048. },
  4049. "time": "2021-03-07T09:25:29+00:00"
  4050. },
  4051. {
  4052. "name": "myclabs/deep-copy",
  4053. "version": "1.10.2",
  4054. "source": {
  4055. "type": "git",
  4056. "url": "https://github.com/myclabs/DeepCopy.git",
  4057. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  4058. },
  4059. "dist": {
  4060. "type": "zip",
  4061. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  4062. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  4063. "shasum": ""
  4064. },
  4065. "require": {
  4066. "php": "^7.1 || ^8.0"
  4067. },
  4068. "replace": {
  4069. "myclabs/deep-copy": "self.version"
  4070. },
  4071. "require-dev": {
  4072. "doctrine/collections": "^1.0",
  4073. "doctrine/common": "^2.6",
  4074. "phpunit/phpunit": "^7.1"
  4075. },
  4076. "type": "library",
  4077. "autoload": {
  4078. "psr-4": {
  4079. "DeepCopy\\": "src/DeepCopy/"
  4080. },
  4081. "files": [
  4082. "src/DeepCopy/deep_copy.php"
  4083. ]
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "description": "Create deep copies (clones) of your objects",
  4090. "keywords": [
  4091. "clone",
  4092. "copy",
  4093. "duplicate",
  4094. "object",
  4095. "object graph"
  4096. ],
  4097. "support": {
  4098. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4099. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  4100. },
  4101. "funding": [
  4102. {
  4103. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4104. "type": "tidelift"
  4105. }
  4106. ],
  4107. "time": "2020-11-13T09:40:50+00:00"
  4108. },
  4109. {
  4110. "name": "nikic/php-parser",
  4111. "version": "v4.10.4",
  4112. "source": {
  4113. "type": "git",
  4114. "url": "https://github.com/nikic/PHP-Parser.git",
  4115. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  4116. },
  4117. "dist": {
  4118. "type": "zip",
  4119. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  4120. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  4121. "shasum": ""
  4122. },
  4123. "require": {
  4124. "ext-tokenizer": "*",
  4125. "php": ">=7.0"
  4126. },
  4127. "require-dev": {
  4128. "ircmaxell/php-yacc": "^0.0.7",
  4129. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4130. },
  4131. "bin": [
  4132. "bin/php-parse"
  4133. ],
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-master": "4.9-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "psr-4": {
  4142. "PhpParser\\": "lib/PhpParser"
  4143. }
  4144. },
  4145. "notification-url": "https://packagist.org/downloads/",
  4146. "license": [
  4147. "BSD-3-Clause"
  4148. ],
  4149. "authors": [
  4150. {
  4151. "name": "Nikita Popov"
  4152. }
  4153. ],
  4154. "description": "A PHP parser written in PHP",
  4155. "keywords": [
  4156. "parser",
  4157. "php"
  4158. ],
  4159. "support": {
  4160. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4161. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  4162. },
  4163. "time": "2020-12-20T10:01:03+00:00"
  4164. },
  4165. {
  4166. "name": "phar-io/manifest",
  4167. "version": "2.0.1",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://github.com/phar-io/manifest.git",
  4171. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  4172. },
  4173. "dist": {
  4174. "type": "zip",
  4175. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  4176. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  4177. "shasum": ""
  4178. },
  4179. "require": {
  4180. "ext-dom": "*",
  4181. "ext-phar": "*",
  4182. "ext-xmlwriter": "*",
  4183. "phar-io/version": "^3.0.1",
  4184. "php": "^7.2 || ^8.0"
  4185. },
  4186. "type": "library",
  4187. "extra": {
  4188. "branch-alias": {
  4189. "dev-master": "2.0.x-dev"
  4190. }
  4191. },
  4192. "autoload": {
  4193. "classmap": [
  4194. "src/"
  4195. ]
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "BSD-3-Clause"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "Arne Blankerts",
  4204. "email": "arne@blankerts.de",
  4205. "role": "Developer"
  4206. },
  4207. {
  4208. "name": "Sebastian Heuer",
  4209. "email": "sebastian@phpeople.de",
  4210. "role": "Developer"
  4211. },
  4212. {
  4213. "name": "Sebastian Bergmann",
  4214. "email": "sebastian@phpunit.de",
  4215. "role": "Developer"
  4216. }
  4217. ],
  4218. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4219. "support": {
  4220. "issues": "https://github.com/phar-io/manifest/issues",
  4221. "source": "https://github.com/phar-io/manifest/tree/master"
  4222. },
  4223. "time": "2020-06-27T14:33:11+00:00"
  4224. },
  4225. {
  4226. "name": "phar-io/version",
  4227. "version": "3.1.0",
  4228. "source": {
  4229. "type": "git",
  4230. "url": "https://github.com/phar-io/version.git",
  4231. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  4232. },
  4233. "dist": {
  4234. "type": "zip",
  4235. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  4236. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  4237. "shasum": ""
  4238. },
  4239. "require": {
  4240. "php": "^7.2 || ^8.0"
  4241. },
  4242. "type": "library",
  4243. "autoload": {
  4244. "classmap": [
  4245. "src/"
  4246. ]
  4247. },
  4248. "notification-url": "https://packagist.org/downloads/",
  4249. "license": [
  4250. "BSD-3-Clause"
  4251. ],
  4252. "authors": [
  4253. {
  4254. "name": "Arne Blankerts",
  4255. "email": "arne@blankerts.de",
  4256. "role": "Developer"
  4257. },
  4258. {
  4259. "name": "Sebastian Heuer",
  4260. "email": "sebastian@phpeople.de",
  4261. "role": "Developer"
  4262. },
  4263. {
  4264. "name": "Sebastian Bergmann",
  4265. "email": "sebastian@phpunit.de",
  4266. "role": "Developer"
  4267. }
  4268. ],
  4269. "description": "Library for handling version information and constraints",
  4270. "support": {
  4271. "issues": "https://github.com/phar-io/version/issues",
  4272. "source": "https://github.com/phar-io/version/tree/3.1.0"
  4273. },
  4274. "time": "2021-02-23T14:00:09+00:00"
  4275. },
  4276. {
  4277. "name": "phpdocumentor/reflection-common",
  4278. "version": "2.2.0",
  4279. "source": {
  4280. "type": "git",
  4281. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4282. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  4283. },
  4284. "dist": {
  4285. "type": "zip",
  4286. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4287. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4288. "shasum": ""
  4289. },
  4290. "require": {
  4291. "php": "^7.2 || ^8.0"
  4292. },
  4293. "type": "library",
  4294. "extra": {
  4295. "branch-alias": {
  4296. "dev-2.x": "2.x-dev"
  4297. }
  4298. },
  4299. "autoload": {
  4300. "psr-4": {
  4301. "phpDocumentor\\Reflection\\": "src/"
  4302. }
  4303. },
  4304. "notification-url": "https://packagist.org/downloads/",
  4305. "license": [
  4306. "MIT"
  4307. ],
  4308. "authors": [
  4309. {
  4310. "name": "Jaap van Otterdijk",
  4311. "email": "opensource@ijaap.nl"
  4312. }
  4313. ],
  4314. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4315. "homepage": "http://www.phpdoc.org",
  4316. "keywords": [
  4317. "FQSEN",
  4318. "phpDocumentor",
  4319. "phpdoc",
  4320. "reflection",
  4321. "static analysis"
  4322. ],
  4323. "support": {
  4324. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  4325. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  4326. },
  4327. "time": "2020-06-27T09:03:43+00:00"
  4328. },
  4329. {
  4330. "name": "phpdocumentor/reflection-docblock",
  4331. "version": "5.2.2",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4335. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  4340. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  4341. "shasum": ""
  4342. },
  4343. "require": {
  4344. "ext-filter": "*",
  4345. "php": "^7.2 || ^8.0",
  4346. "phpdocumentor/reflection-common": "^2.2",
  4347. "phpdocumentor/type-resolver": "^1.3",
  4348. "webmozart/assert": "^1.9.1"
  4349. },
  4350. "require-dev": {
  4351. "mockery/mockery": "~1.3.2"
  4352. },
  4353. "type": "library",
  4354. "extra": {
  4355. "branch-alias": {
  4356. "dev-master": "5.x-dev"
  4357. }
  4358. },
  4359. "autoload": {
  4360. "psr-4": {
  4361. "phpDocumentor\\Reflection\\": "src"
  4362. }
  4363. },
  4364. "notification-url": "https://packagist.org/downloads/",
  4365. "license": [
  4366. "MIT"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "Mike van Riel",
  4371. "email": "me@mikevanriel.com"
  4372. },
  4373. {
  4374. "name": "Jaap van Otterdijk",
  4375. "email": "account@ijaap.nl"
  4376. }
  4377. ],
  4378. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4379. "support": {
  4380. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  4381. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  4382. },
  4383. "time": "2020-09-03T19:13:55+00:00"
  4384. },
  4385. {
  4386. "name": "phpdocumentor/type-resolver",
  4387. "version": "1.4.0",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4391. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4396. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4397. "shasum": ""
  4398. },
  4399. "require": {
  4400. "php": "^7.2 || ^8.0",
  4401. "phpdocumentor/reflection-common": "^2.0"
  4402. },
  4403. "require-dev": {
  4404. "ext-tokenizer": "*"
  4405. },
  4406. "type": "library",
  4407. "extra": {
  4408. "branch-alias": {
  4409. "dev-1.x": "1.x-dev"
  4410. }
  4411. },
  4412. "autoload": {
  4413. "psr-4": {
  4414. "phpDocumentor\\Reflection\\": "src"
  4415. }
  4416. },
  4417. "notification-url": "https://packagist.org/downloads/",
  4418. "license": [
  4419. "MIT"
  4420. ],
  4421. "authors": [
  4422. {
  4423. "name": "Mike van Riel",
  4424. "email": "me@mikevanriel.com"
  4425. }
  4426. ],
  4427. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4428. "support": {
  4429. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4430. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  4431. },
  4432. "time": "2020-09-17T18:55:26+00:00"
  4433. },
  4434. {
  4435. "name": "phpspec/prophecy",
  4436. "version": "1.12.2",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://github.com/phpspec/prophecy.git",
  4440. "reference": "245710e971a030f42e08f4912863805570f23d39"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  4445. "reference": "245710e971a030f42e08f4912863805570f23d39",
  4446. "shasum": ""
  4447. },
  4448. "require": {
  4449. "doctrine/instantiator": "^1.2",
  4450. "php": "^7.2 || ~8.0, <8.1",
  4451. "phpdocumentor/reflection-docblock": "^5.2",
  4452. "sebastian/comparator": "^3.0 || ^4.0",
  4453. "sebastian/recursion-context": "^3.0 || ^4.0"
  4454. },
  4455. "require-dev": {
  4456. "phpspec/phpspec": "^6.0",
  4457. "phpunit/phpunit": "^8.0 || ^9.0"
  4458. },
  4459. "type": "library",
  4460. "extra": {
  4461. "branch-alias": {
  4462. "dev-master": "1.11.x-dev"
  4463. }
  4464. },
  4465. "autoload": {
  4466. "psr-4": {
  4467. "Prophecy\\": "src/Prophecy"
  4468. }
  4469. },
  4470. "notification-url": "https://packagist.org/downloads/",
  4471. "license": [
  4472. "MIT"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Konstantin Kudryashov",
  4477. "email": "ever.zet@gmail.com",
  4478. "homepage": "http://everzet.com"
  4479. },
  4480. {
  4481. "name": "Marcello Duarte",
  4482. "email": "marcello.duarte@gmail.com"
  4483. }
  4484. ],
  4485. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4486. "homepage": "https://github.com/phpspec/prophecy",
  4487. "keywords": [
  4488. "Double",
  4489. "Dummy",
  4490. "fake",
  4491. "mock",
  4492. "spy",
  4493. "stub"
  4494. ],
  4495. "support": {
  4496. "issues": "https://github.com/phpspec/prophecy/issues",
  4497. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  4498. },
  4499. "time": "2020-12-19T10:15:11+00:00"
  4500. },
  4501. {
  4502. "name": "phpstan/phpstan",
  4503. "version": "0.12.81",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://github.com/phpstan/phpstan.git",
  4507. "reference": "0dd5b0ebeff568f7000022ea5f04aa86ad3124b8"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0dd5b0ebeff568f7000022ea5f04aa86ad3124b8",
  4512. "reference": "0dd5b0ebeff568f7000022ea5f04aa86ad3124b8",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "php": "^7.1|^8.0"
  4517. },
  4518. "conflict": {
  4519. "phpstan/phpstan-shim": "*"
  4520. },
  4521. "bin": [
  4522. "phpstan",
  4523. "phpstan.phar"
  4524. ],
  4525. "type": "library",
  4526. "extra": {
  4527. "branch-alias": {
  4528. "dev-master": "0.12-dev"
  4529. }
  4530. },
  4531. "autoload": {
  4532. "files": [
  4533. "bootstrap.php"
  4534. ]
  4535. },
  4536. "notification-url": "https://packagist.org/downloads/",
  4537. "license": [
  4538. "MIT"
  4539. ],
  4540. "description": "PHPStan - PHP Static Analysis Tool",
  4541. "support": {
  4542. "issues": "https://github.com/phpstan/phpstan/issues",
  4543. "source": "https://github.com/phpstan/phpstan/tree/0.12.81"
  4544. },
  4545. "funding": [
  4546. {
  4547. "url": "https://github.com/ondrejmirtes",
  4548. "type": "github"
  4549. },
  4550. {
  4551. "url": "https://www.patreon.com/phpstan",
  4552. "type": "patreon"
  4553. },
  4554. {
  4555. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  4556. "type": "tidelift"
  4557. }
  4558. ],
  4559. "time": "2021-03-08T22:03:02+00:00"
  4560. },
  4561. {
  4562. "name": "phpstan/phpstan-deprecation-rules",
  4563. "version": "0.12.6",
  4564. "source": {
  4565. "type": "git",
  4566. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  4567. "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb"
  4568. },
  4569. "dist": {
  4570. "type": "zip",
  4571. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/46dbd43c2db973d2876d6653e53f5c2cc3a01fbb",
  4572. "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb",
  4573. "shasum": ""
  4574. },
  4575. "require": {
  4576. "php": "^7.1 || ^8.0",
  4577. "phpstan/phpstan": "^0.12.60"
  4578. },
  4579. "require-dev": {
  4580. "phing/phing": "^2.16.3",
  4581. "php-parallel-lint/php-parallel-lint": "^1.2",
  4582. "phpstan/phpstan-phpunit": "^0.12",
  4583. "phpunit/phpunit": "^7.5.20"
  4584. },
  4585. "type": "phpstan-extension",
  4586. "extra": {
  4587. "branch-alias": {
  4588. "dev-master": "0.12-dev"
  4589. },
  4590. "phpstan": {
  4591. "includes": [
  4592. "rules.neon"
  4593. ]
  4594. }
  4595. },
  4596. "autoload": {
  4597. "psr-4": {
  4598. "PHPStan\\": "src/"
  4599. }
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "MIT"
  4604. ],
  4605. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  4606. "support": {
  4607. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  4608. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/0.12.6"
  4609. },
  4610. "time": "2020-12-13T10:20:54+00:00"
  4611. },
  4612. {
  4613. "name": "phpunit/php-code-coverage",
  4614. "version": "9.2.5",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4618. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  4623. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  4624. "shasum": ""
  4625. },
  4626. "require": {
  4627. "ext-dom": "*",
  4628. "ext-libxml": "*",
  4629. "ext-xmlwriter": "*",
  4630. "nikic/php-parser": "^4.10.2",
  4631. "php": ">=7.3",
  4632. "phpunit/php-file-iterator": "^3.0.3",
  4633. "phpunit/php-text-template": "^2.0.2",
  4634. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  4635. "sebastian/complexity": "^2.0",
  4636. "sebastian/environment": "^5.1.2",
  4637. "sebastian/lines-of-code": "^1.0.3",
  4638. "sebastian/version": "^3.0.1",
  4639. "theseer/tokenizer": "^1.2.0"
  4640. },
  4641. "require-dev": {
  4642. "phpunit/phpunit": "^9.3"
  4643. },
  4644. "suggest": {
  4645. "ext-pcov": "*",
  4646. "ext-xdebug": "*"
  4647. },
  4648. "type": "library",
  4649. "extra": {
  4650. "branch-alias": {
  4651. "dev-master": "9.2-dev"
  4652. }
  4653. },
  4654. "autoload": {
  4655. "classmap": [
  4656. "src/"
  4657. ]
  4658. },
  4659. "notification-url": "https://packagist.org/downloads/",
  4660. "license": [
  4661. "BSD-3-Clause"
  4662. ],
  4663. "authors": [
  4664. {
  4665. "name": "Sebastian Bergmann",
  4666. "email": "sebastian@phpunit.de",
  4667. "role": "lead"
  4668. }
  4669. ],
  4670. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4671. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4672. "keywords": [
  4673. "coverage",
  4674. "testing",
  4675. "xunit"
  4676. ],
  4677. "support": {
  4678. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  4679. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  4680. },
  4681. "funding": [
  4682. {
  4683. "url": "https://github.com/sebastianbergmann",
  4684. "type": "github"
  4685. }
  4686. ],
  4687. "time": "2020-11-28T06:44:49+00:00"
  4688. },
  4689. {
  4690. "name": "phpunit/php-file-iterator",
  4691. "version": "3.0.5",
  4692. "source": {
  4693. "type": "git",
  4694. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4695. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  4696. },
  4697. "dist": {
  4698. "type": "zip",
  4699. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  4700. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  4701. "shasum": ""
  4702. },
  4703. "require": {
  4704. "php": ">=7.3"
  4705. },
  4706. "require-dev": {
  4707. "phpunit/phpunit": "^9.3"
  4708. },
  4709. "type": "library",
  4710. "extra": {
  4711. "branch-alias": {
  4712. "dev-master": "3.0-dev"
  4713. }
  4714. },
  4715. "autoload": {
  4716. "classmap": [
  4717. "src/"
  4718. ]
  4719. },
  4720. "notification-url": "https://packagist.org/downloads/",
  4721. "license": [
  4722. "BSD-3-Clause"
  4723. ],
  4724. "authors": [
  4725. {
  4726. "name": "Sebastian Bergmann",
  4727. "email": "sebastian@phpunit.de",
  4728. "role": "lead"
  4729. }
  4730. ],
  4731. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4732. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4733. "keywords": [
  4734. "filesystem",
  4735. "iterator"
  4736. ],
  4737. "support": {
  4738. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  4739. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  4740. },
  4741. "funding": [
  4742. {
  4743. "url": "https://github.com/sebastianbergmann",
  4744. "type": "github"
  4745. }
  4746. ],
  4747. "time": "2020-09-28T05:57:25+00:00"
  4748. },
  4749. {
  4750. "name": "phpunit/php-invoker",
  4751. "version": "3.1.1",
  4752. "source": {
  4753. "type": "git",
  4754. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  4755. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  4756. },
  4757. "dist": {
  4758. "type": "zip",
  4759. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4760. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4761. "shasum": ""
  4762. },
  4763. "require": {
  4764. "php": ">=7.3"
  4765. },
  4766. "require-dev": {
  4767. "ext-pcntl": "*",
  4768. "phpunit/phpunit": "^9.3"
  4769. },
  4770. "suggest": {
  4771. "ext-pcntl": "*"
  4772. },
  4773. "type": "library",
  4774. "extra": {
  4775. "branch-alias": {
  4776. "dev-master": "3.1-dev"
  4777. }
  4778. },
  4779. "autoload": {
  4780. "classmap": [
  4781. "src/"
  4782. ]
  4783. },
  4784. "notification-url": "https://packagist.org/downloads/",
  4785. "license": [
  4786. "BSD-3-Clause"
  4787. ],
  4788. "authors": [
  4789. {
  4790. "name": "Sebastian Bergmann",
  4791. "email": "sebastian@phpunit.de",
  4792. "role": "lead"
  4793. }
  4794. ],
  4795. "description": "Invoke callables with a timeout",
  4796. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  4797. "keywords": [
  4798. "process"
  4799. ],
  4800. "support": {
  4801. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  4802. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  4803. },
  4804. "funding": [
  4805. {
  4806. "url": "https://github.com/sebastianbergmann",
  4807. "type": "github"
  4808. }
  4809. ],
  4810. "time": "2020-09-28T05:58:55+00:00"
  4811. },
  4812. {
  4813. "name": "phpunit/php-text-template",
  4814. "version": "2.0.4",
  4815. "source": {
  4816. "type": "git",
  4817. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4818. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  4819. },
  4820. "dist": {
  4821. "type": "zip",
  4822. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4823. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4824. "shasum": ""
  4825. },
  4826. "require": {
  4827. "php": ">=7.3"
  4828. },
  4829. "require-dev": {
  4830. "phpunit/phpunit": "^9.3"
  4831. },
  4832. "type": "library",
  4833. "extra": {
  4834. "branch-alias": {
  4835. "dev-master": "2.0-dev"
  4836. }
  4837. },
  4838. "autoload": {
  4839. "classmap": [
  4840. "src/"
  4841. ]
  4842. },
  4843. "notification-url": "https://packagist.org/downloads/",
  4844. "license": [
  4845. "BSD-3-Clause"
  4846. ],
  4847. "authors": [
  4848. {
  4849. "name": "Sebastian Bergmann",
  4850. "email": "sebastian@phpunit.de",
  4851. "role": "lead"
  4852. }
  4853. ],
  4854. "description": "Simple template engine.",
  4855. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4856. "keywords": [
  4857. "template"
  4858. ],
  4859. "support": {
  4860. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4861. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  4862. },
  4863. "funding": [
  4864. {
  4865. "url": "https://github.com/sebastianbergmann",
  4866. "type": "github"
  4867. }
  4868. ],
  4869. "time": "2020-10-26T05:33:50+00:00"
  4870. },
  4871. {
  4872. "name": "phpunit/php-timer",
  4873. "version": "5.0.3",
  4874. "source": {
  4875. "type": "git",
  4876. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4877. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  4878. },
  4879. "dist": {
  4880. "type": "zip",
  4881. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4882. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4883. "shasum": ""
  4884. },
  4885. "require": {
  4886. "php": ">=7.3"
  4887. },
  4888. "require-dev": {
  4889. "phpunit/phpunit": "^9.3"
  4890. },
  4891. "type": "library",
  4892. "extra": {
  4893. "branch-alias": {
  4894. "dev-master": "5.0-dev"
  4895. }
  4896. },
  4897. "autoload": {
  4898. "classmap": [
  4899. "src/"
  4900. ]
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "BSD-3-Clause"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Sebastian Bergmann",
  4909. "email": "sebastian@phpunit.de",
  4910. "role": "lead"
  4911. }
  4912. ],
  4913. "description": "Utility class for timing",
  4914. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4915. "keywords": [
  4916. "timer"
  4917. ],
  4918. "support": {
  4919. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4920. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  4921. },
  4922. "funding": [
  4923. {
  4924. "url": "https://github.com/sebastianbergmann",
  4925. "type": "github"
  4926. }
  4927. ],
  4928. "time": "2020-10-26T13:16:10+00:00"
  4929. },
  4930. {
  4931. "name": "phpunit/phpunit",
  4932. "version": "9.5.2",
  4933. "source": {
  4934. "type": "git",
  4935. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4936. "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4"
  4937. },
  4938. "dist": {
  4939. "type": "zip",
  4940. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f661659747f2f87f9e72095bb207bceb0f151cb4",
  4941. "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4",
  4942. "shasum": ""
  4943. },
  4944. "require": {
  4945. "doctrine/instantiator": "^1.3.1",
  4946. "ext-dom": "*",
  4947. "ext-json": "*",
  4948. "ext-libxml": "*",
  4949. "ext-mbstring": "*",
  4950. "ext-xml": "*",
  4951. "ext-xmlwriter": "*",
  4952. "myclabs/deep-copy": "^1.10.1",
  4953. "phar-io/manifest": "^2.0.1",
  4954. "phar-io/version": "^3.0.2",
  4955. "php": ">=7.3",
  4956. "phpspec/prophecy": "^1.12.1",
  4957. "phpunit/php-code-coverage": "^9.2.3",
  4958. "phpunit/php-file-iterator": "^3.0.5",
  4959. "phpunit/php-invoker": "^3.1.1",
  4960. "phpunit/php-text-template": "^2.0.3",
  4961. "phpunit/php-timer": "^5.0.2",
  4962. "sebastian/cli-parser": "^1.0.1",
  4963. "sebastian/code-unit": "^1.0.6",
  4964. "sebastian/comparator": "^4.0.5",
  4965. "sebastian/diff": "^4.0.3",
  4966. "sebastian/environment": "^5.1.3",
  4967. "sebastian/exporter": "^4.0.3",
  4968. "sebastian/global-state": "^5.0.1",
  4969. "sebastian/object-enumerator": "^4.0.3",
  4970. "sebastian/resource-operations": "^3.0.3",
  4971. "sebastian/type": "^2.3",
  4972. "sebastian/version": "^3.0.2"
  4973. },
  4974. "require-dev": {
  4975. "ext-pdo": "*",
  4976. "phpspec/prophecy-phpunit": "^2.0.1"
  4977. },
  4978. "suggest": {
  4979. "ext-soap": "*",
  4980. "ext-xdebug": "*"
  4981. },
  4982. "bin": [
  4983. "phpunit"
  4984. ],
  4985. "type": "library",
  4986. "extra": {
  4987. "branch-alias": {
  4988. "dev-master": "9.5-dev"
  4989. }
  4990. },
  4991. "autoload": {
  4992. "classmap": [
  4993. "src/"
  4994. ],
  4995. "files": [
  4996. "src/Framework/Assert/Functions.php"
  4997. ]
  4998. },
  4999. "notification-url": "https://packagist.org/downloads/",
  5000. "license": [
  5001. "BSD-3-Clause"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "Sebastian Bergmann",
  5006. "email": "sebastian@phpunit.de",
  5007. "role": "lead"
  5008. }
  5009. ],
  5010. "description": "The PHP Unit Testing framework.",
  5011. "homepage": "https://phpunit.de/",
  5012. "keywords": [
  5013. "phpunit",
  5014. "testing",
  5015. "xunit"
  5016. ],
  5017. "support": {
  5018. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  5019. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.2"
  5020. },
  5021. "funding": [
  5022. {
  5023. "url": "https://phpunit.de/donate.html",
  5024. "type": "custom"
  5025. },
  5026. {
  5027. "url": "https://github.com/sebastianbergmann",
  5028. "type": "github"
  5029. }
  5030. ],
  5031. "time": "2021-02-02T14:45:58+00:00"
  5032. },
  5033. {
  5034. "name": "psr/http-client",
  5035. "version": "1.0.1",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://github.com/php-fig/http-client.git",
  5039. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5044. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5045. "shasum": ""
  5046. },
  5047. "require": {
  5048. "php": "^7.0 || ^8.0",
  5049. "psr/http-message": "^1.0"
  5050. },
  5051. "type": "library",
  5052. "extra": {
  5053. "branch-alias": {
  5054. "dev-master": "1.0.x-dev"
  5055. }
  5056. },
  5057. "autoload": {
  5058. "psr-4": {
  5059. "Psr\\Http\\Client\\": "src/"
  5060. }
  5061. },
  5062. "notification-url": "https://packagist.org/downloads/",
  5063. "license": [
  5064. "MIT"
  5065. ],
  5066. "authors": [
  5067. {
  5068. "name": "PHP-FIG",
  5069. "homepage": "http://www.php-fig.org/"
  5070. }
  5071. ],
  5072. "description": "Common interface for HTTP clients",
  5073. "homepage": "https://github.com/php-fig/http-client",
  5074. "keywords": [
  5075. "http",
  5076. "http-client",
  5077. "psr",
  5078. "psr-18"
  5079. ],
  5080. "support": {
  5081. "source": "https://github.com/php-fig/http-client/tree/master"
  5082. },
  5083. "time": "2020-06-29T06:28:15+00:00"
  5084. },
  5085. {
  5086. "name": "sebastian/cli-parser",
  5087. "version": "1.0.1",
  5088. "source": {
  5089. "type": "git",
  5090. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  5091. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  5092. },
  5093. "dist": {
  5094. "type": "zip",
  5095. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  5096. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  5097. "shasum": ""
  5098. },
  5099. "require": {
  5100. "php": ">=7.3"
  5101. },
  5102. "require-dev": {
  5103. "phpunit/phpunit": "^9.3"
  5104. },
  5105. "type": "library",
  5106. "extra": {
  5107. "branch-alias": {
  5108. "dev-master": "1.0-dev"
  5109. }
  5110. },
  5111. "autoload": {
  5112. "classmap": [
  5113. "src/"
  5114. ]
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "BSD-3-Clause"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Sebastian Bergmann",
  5123. "email": "sebastian@phpunit.de",
  5124. "role": "lead"
  5125. }
  5126. ],
  5127. "description": "Library for parsing CLI options",
  5128. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  5129. "support": {
  5130. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  5131. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  5132. },
  5133. "funding": [
  5134. {
  5135. "url": "https://github.com/sebastianbergmann",
  5136. "type": "github"
  5137. }
  5138. ],
  5139. "time": "2020-09-28T06:08:49+00:00"
  5140. },
  5141. {
  5142. "name": "sebastian/code-unit",
  5143. "version": "1.0.8",
  5144. "source": {
  5145. "type": "git",
  5146. "url": "https://github.com/sebastianbergmann/code-unit.git",
  5147. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  5148. },
  5149. "dist": {
  5150. "type": "zip",
  5151. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5152. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5153. "shasum": ""
  5154. },
  5155. "require": {
  5156. "php": ">=7.3"
  5157. },
  5158. "require-dev": {
  5159. "phpunit/phpunit": "^9.3"
  5160. },
  5161. "type": "library",
  5162. "extra": {
  5163. "branch-alias": {
  5164. "dev-master": "1.0-dev"
  5165. }
  5166. },
  5167. "autoload": {
  5168. "classmap": [
  5169. "src/"
  5170. ]
  5171. },
  5172. "notification-url": "https://packagist.org/downloads/",
  5173. "license": [
  5174. "BSD-3-Clause"
  5175. ],
  5176. "authors": [
  5177. {
  5178. "name": "Sebastian Bergmann",
  5179. "email": "sebastian@phpunit.de",
  5180. "role": "lead"
  5181. }
  5182. ],
  5183. "description": "Collection of value objects that represent the PHP code units",
  5184. "homepage": "https://github.com/sebastianbergmann/code-unit",
  5185. "support": {
  5186. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  5187. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  5188. },
  5189. "funding": [
  5190. {
  5191. "url": "https://github.com/sebastianbergmann",
  5192. "type": "github"
  5193. }
  5194. ],
  5195. "time": "2020-10-26T13:08:54+00:00"
  5196. },
  5197. {
  5198. "name": "sebastian/code-unit-reverse-lookup",
  5199. "version": "2.0.3",
  5200. "source": {
  5201. "type": "git",
  5202. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5203. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  5204. },
  5205. "dist": {
  5206. "type": "zip",
  5207. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5208. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5209. "shasum": ""
  5210. },
  5211. "require": {
  5212. "php": ">=7.3"
  5213. },
  5214. "require-dev": {
  5215. "phpunit/phpunit": "^9.3"
  5216. },
  5217. "type": "library",
  5218. "extra": {
  5219. "branch-alias": {
  5220. "dev-master": "2.0-dev"
  5221. }
  5222. },
  5223. "autoload": {
  5224. "classmap": [
  5225. "src/"
  5226. ]
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "BSD-3-Clause"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Sebastian Bergmann",
  5235. "email": "sebastian@phpunit.de"
  5236. }
  5237. ],
  5238. "description": "Looks up which function or method a line of code belongs to",
  5239. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5240. "support": {
  5241. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5242. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  5243. },
  5244. "funding": [
  5245. {
  5246. "url": "https://github.com/sebastianbergmann",
  5247. "type": "github"
  5248. }
  5249. ],
  5250. "time": "2020-09-28T05:30:19+00:00"
  5251. },
  5252. {
  5253. "name": "sebastian/comparator",
  5254. "version": "4.0.6",
  5255. "source": {
  5256. "type": "git",
  5257. "url": "https://github.com/sebastianbergmann/comparator.git",
  5258. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  5259. },
  5260. "dist": {
  5261. "type": "zip",
  5262. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  5263. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  5264. "shasum": ""
  5265. },
  5266. "require": {
  5267. "php": ">=7.3",
  5268. "sebastian/diff": "^4.0",
  5269. "sebastian/exporter": "^4.0"
  5270. },
  5271. "require-dev": {
  5272. "phpunit/phpunit": "^9.3"
  5273. },
  5274. "type": "library",
  5275. "extra": {
  5276. "branch-alias": {
  5277. "dev-master": "4.0-dev"
  5278. }
  5279. },
  5280. "autoload": {
  5281. "classmap": [
  5282. "src/"
  5283. ]
  5284. },
  5285. "notification-url": "https://packagist.org/downloads/",
  5286. "license": [
  5287. "BSD-3-Clause"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Sebastian Bergmann",
  5292. "email": "sebastian@phpunit.de"
  5293. },
  5294. {
  5295. "name": "Jeff Welch",
  5296. "email": "whatthejeff@gmail.com"
  5297. },
  5298. {
  5299. "name": "Volker Dusch",
  5300. "email": "github@wallbash.com"
  5301. },
  5302. {
  5303. "name": "Bernhard Schussek",
  5304. "email": "bschussek@2bepublished.at"
  5305. }
  5306. ],
  5307. "description": "Provides the functionality to compare PHP values for equality",
  5308. "homepage": "https://github.com/sebastianbergmann/comparator",
  5309. "keywords": [
  5310. "comparator",
  5311. "compare",
  5312. "equality"
  5313. ],
  5314. "support": {
  5315. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5316. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  5317. },
  5318. "funding": [
  5319. {
  5320. "url": "https://github.com/sebastianbergmann",
  5321. "type": "github"
  5322. }
  5323. ],
  5324. "time": "2020-10-26T15:49:45+00:00"
  5325. },
  5326. {
  5327. "name": "sebastian/complexity",
  5328. "version": "2.0.2",
  5329. "source": {
  5330. "type": "git",
  5331. "url": "https://github.com/sebastianbergmann/complexity.git",
  5332. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  5333. },
  5334. "dist": {
  5335. "type": "zip",
  5336. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  5337. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  5338. "shasum": ""
  5339. },
  5340. "require": {
  5341. "nikic/php-parser": "^4.7",
  5342. "php": ">=7.3"
  5343. },
  5344. "require-dev": {
  5345. "phpunit/phpunit": "^9.3"
  5346. },
  5347. "type": "library",
  5348. "extra": {
  5349. "branch-alias": {
  5350. "dev-master": "2.0-dev"
  5351. }
  5352. },
  5353. "autoload": {
  5354. "classmap": [
  5355. "src/"
  5356. ]
  5357. },
  5358. "notification-url": "https://packagist.org/downloads/",
  5359. "license": [
  5360. "BSD-3-Clause"
  5361. ],
  5362. "authors": [
  5363. {
  5364. "name": "Sebastian Bergmann",
  5365. "email": "sebastian@phpunit.de",
  5366. "role": "lead"
  5367. }
  5368. ],
  5369. "description": "Library for calculating the complexity of PHP code units",
  5370. "homepage": "https://github.com/sebastianbergmann/complexity",
  5371. "support": {
  5372. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  5373. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  5374. },
  5375. "funding": [
  5376. {
  5377. "url": "https://github.com/sebastianbergmann",
  5378. "type": "github"
  5379. }
  5380. ],
  5381. "time": "2020-10-26T15:52:27+00:00"
  5382. },
  5383. {
  5384. "name": "sebastian/diff",
  5385. "version": "4.0.4",
  5386. "source": {
  5387. "type": "git",
  5388. "url": "https://github.com/sebastianbergmann/diff.git",
  5389. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  5390. },
  5391. "dist": {
  5392. "type": "zip",
  5393. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  5394. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  5395. "shasum": ""
  5396. },
  5397. "require": {
  5398. "php": ">=7.3"
  5399. },
  5400. "require-dev": {
  5401. "phpunit/phpunit": "^9.3",
  5402. "symfony/process": "^4.2 || ^5"
  5403. },
  5404. "type": "library",
  5405. "extra": {
  5406. "branch-alias": {
  5407. "dev-master": "4.0-dev"
  5408. }
  5409. },
  5410. "autoload": {
  5411. "classmap": [
  5412. "src/"
  5413. ]
  5414. },
  5415. "notification-url": "https://packagist.org/downloads/",
  5416. "license": [
  5417. "BSD-3-Clause"
  5418. ],
  5419. "authors": [
  5420. {
  5421. "name": "Sebastian Bergmann",
  5422. "email": "sebastian@phpunit.de"
  5423. },
  5424. {
  5425. "name": "Kore Nordmann",
  5426. "email": "mail@kore-nordmann.de"
  5427. }
  5428. ],
  5429. "description": "Diff implementation",
  5430. "homepage": "https://github.com/sebastianbergmann/diff",
  5431. "keywords": [
  5432. "diff",
  5433. "udiff",
  5434. "unidiff",
  5435. "unified diff"
  5436. ],
  5437. "support": {
  5438. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5439. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  5440. },
  5441. "funding": [
  5442. {
  5443. "url": "https://github.com/sebastianbergmann",
  5444. "type": "github"
  5445. }
  5446. ],
  5447. "time": "2020-10-26T13:10:38+00:00"
  5448. },
  5449. {
  5450. "name": "sebastian/environment",
  5451. "version": "5.1.3",
  5452. "source": {
  5453. "type": "git",
  5454. "url": "https://github.com/sebastianbergmann/environment.git",
  5455. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  5456. },
  5457. "dist": {
  5458. "type": "zip",
  5459. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  5460. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  5461. "shasum": ""
  5462. },
  5463. "require": {
  5464. "php": ">=7.3"
  5465. },
  5466. "require-dev": {
  5467. "phpunit/phpunit": "^9.3"
  5468. },
  5469. "suggest": {
  5470. "ext-posix": "*"
  5471. },
  5472. "type": "library",
  5473. "extra": {
  5474. "branch-alias": {
  5475. "dev-master": "5.1-dev"
  5476. }
  5477. },
  5478. "autoload": {
  5479. "classmap": [
  5480. "src/"
  5481. ]
  5482. },
  5483. "notification-url": "https://packagist.org/downloads/",
  5484. "license": [
  5485. "BSD-3-Clause"
  5486. ],
  5487. "authors": [
  5488. {
  5489. "name": "Sebastian Bergmann",
  5490. "email": "sebastian@phpunit.de"
  5491. }
  5492. ],
  5493. "description": "Provides functionality to handle HHVM/PHP environments",
  5494. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5495. "keywords": [
  5496. "Xdebug",
  5497. "environment",
  5498. "hhvm"
  5499. ],
  5500. "support": {
  5501. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5502. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  5503. },
  5504. "funding": [
  5505. {
  5506. "url": "https://github.com/sebastianbergmann",
  5507. "type": "github"
  5508. }
  5509. ],
  5510. "time": "2020-09-28T05:52:38+00:00"
  5511. },
  5512. {
  5513. "name": "sebastian/exporter",
  5514. "version": "4.0.3",
  5515. "source": {
  5516. "type": "git",
  5517. "url": "https://github.com/sebastianbergmann/exporter.git",
  5518. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  5519. },
  5520. "dist": {
  5521. "type": "zip",
  5522. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  5523. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  5524. "shasum": ""
  5525. },
  5526. "require": {
  5527. "php": ">=7.3",
  5528. "sebastian/recursion-context": "^4.0"
  5529. },
  5530. "require-dev": {
  5531. "ext-mbstring": "*",
  5532. "phpunit/phpunit": "^9.3"
  5533. },
  5534. "type": "library",
  5535. "extra": {
  5536. "branch-alias": {
  5537. "dev-master": "4.0-dev"
  5538. }
  5539. },
  5540. "autoload": {
  5541. "classmap": [
  5542. "src/"
  5543. ]
  5544. },
  5545. "notification-url": "https://packagist.org/downloads/",
  5546. "license": [
  5547. "BSD-3-Clause"
  5548. ],
  5549. "authors": [
  5550. {
  5551. "name": "Sebastian Bergmann",
  5552. "email": "sebastian@phpunit.de"
  5553. },
  5554. {
  5555. "name": "Jeff Welch",
  5556. "email": "whatthejeff@gmail.com"
  5557. },
  5558. {
  5559. "name": "Volker Dusch",
  5560. "email": "github@wallbash.com"
  5561. },
  5562. {
  5563. "name": "Adam Harvey",
  5564. "email": "aharvey@php.net"
  5565. },
  5566. {
  5567. "name": "Bernhard Schussek",
  5568. "email": "bschussek@gmail.com"
  5569. }
  5570. ],
  5571. "description": "Provides the functionality to export PHP variables for visualization",
  5572. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5573. "keywords": [
  5574. "export",
  5575. "exporter"
  5576. ],
  5577. "support": {
  5578. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5579. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  5580. },
  5581. "funding": [
  5582. {
  5583. "url": "https://github.com/sebastianbergmann",
  5584. "type": "github"
  5585. }
  5586. ],
  5587. "time": "2020-09-28T05:24:23+00:00"
  5588. },
  5589. {
  5590. "name": "sebastian/global-state",
  5591. "version": "5.0.2",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/sebastianbergmann/global-state.git",
  5595. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  5600. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "php": ">=7.3",
  5605. "sebastian/object-reflector": "^2.0",
  5606. "sebastian/recursion-context": "^4.0"
  5607. },
  5608. "require-dev": {
  5609. "ext-dom": "*",
  5610. "phpunit/phpunit": "^9.3"
  5611. },
  5612. "suggest": {
  5613. "ext-uopz": "*"
  5614. },
  5615. "type": "library",
  5616. "extra": {
  5617. "branch-alias": {
  5618. "dev-master": "5.0-dev"
  5619. }
  5620. },
  5621. "autoload": {
  5622. "classmap": [
  5623. "src/"
  5624. ]
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "BSD-3-Clause"
  5629. ],
  5630. "authors": [
  5631. {
  5632. "name": "Sebastian Bergmann",
  5633. "email": "sebastian@phpunit.de"
  5634. }
  5635. ],
  5636. "description": "Snapshotting of global state",
  5637. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5638. "keywords": [
  5639. "global state"
  5640. ],
  5641. "support": {
  5642. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5643. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  5644. },
  5645. "funding": [
  5646. {
  5647. "url": "https://github.com/sebastianbergmann",
  5648. "type": "github"
  5649. }
  5650. ],
  5651. "time": "2020-10-26T15:55:19+00:00"
  5652. },
  5653. {
  5654. "name": "sebastian/lines-of-code",
  5655. "version": "1.0.3",
  5656. "source": {
  5657. "type": "git",
  5658. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  5659. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  5660. },
  5661. "dist": {
  5662. "type": "zip",
  5663. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  5664. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  5665. "shasum": ""
  5666. },
  5667. "require": {
  5668. "nikic/php-parser": "^4.6",
  5669. "php": ">=7.3"
  5670. },
  5671. "require-dev": {
  5672. "phpunit/phpunit": "^9.3"
  5673. },
  5674. "type": "library",
  5675. "extra": {
  5676. "branch-alias": {
  5677. "dev-master": "1.0-dev"
  5678. }
  5679. },
  5680. "autoload": {
  5681. "classmap": [
  5682. "src/"
  5683. ]
  5684. },
  5685. "notification-url": "https://packagist.org/downloads/",
  5686. "license": [
  5687. "BSD-3-Clause"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Sebastian Bergmann",
  5692. "email": "sebastian@phpunit.de",
  5693. "role": "lead"
  5694. }
  5695. ],
  5696. "description": "Library for counting the lines of code in PHP source code",
  5697. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  5698. "support": {
  5699. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  5700. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  5701. },
  5702. "funding": [
  5703. {
  5704. "url": "https://github.com/sebastianbergmann",
  5705. "type": "github"
  5706. }
  5707. ],
  5708. "time": "2020-11-28T06:42:11+00:00"
  5709. },
  5710. {
  5711. "name": "sebastian/object-enumerator",
  5712. "version": "4.0.4",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5716. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  5721. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  5722. "shasum": ""
  5723. },
  5724. "require": {
  5725. "php": ">=7.3",
  5726. "sebastian/object-reflector": "^2.0",
  5727. "sebastian/recursion-context": "^4.0"
  5728. },
  5729. "require-dev": {
  5730. "phpunit/phpunit": "^9.3"
  5731. },
  5732. "type": "library",
  5733. "extra": {
  5734. "branch-alias": {
  5735. "dev-master": "4.0-dev"
  5736. }
  5737. },
  5738. "autoload": {
  5739. "classmap": [
  5740. "src/"
  5741. ]
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "BSD-3-Clause"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Sebastian Bergmann",
  5750. "email": "sebastian@phpunit.de"
  5751. }
  5752. ],
  5753. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5754. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5755. "support": {
  5756. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5757. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  5758. },
  5759. "funding": [
  5760. {
  5761. "url": "https://github.com/sebastianbergmann",
  5762. "type": "github"
  5763. }
  5764. ],
  5765. "time": "2020-10-26T13:12:34+00:00"
  5766. },
  5767. {
  5768. "name": "sebastian/object-reflector",
  5769. "version": "2.0.4",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5773. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5778. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5779. "shasum": ""
  5780. },
  5781. "require": {
  5782. "php": ">=7.3"
  5783. },
  5784. "require-dev": {
  5785. "phpunit/phpunit": "^9.3"
  5786. },
  5787. "type": "library",
  5788. "extra": {
  5789. "branch-alias": {
  5790. "dev-master": "2.0-dev"
  5791. }
  5792. },
  5793. "autoload": {
  5794. "classmap": [
  5795. "src/"
  5796. ]
  5797. },
  5798. "notification-url": "https://packagist.org/downloads/",
  5799. "license": [
  5800. "BSD-3-Clause"
  5801. ],
  5802. "authors": [
  5803. {
  5804. "name": "Sebastian Bergmann",
  5805. "email": "sebastian@phpunit.de"
  5806. }
  5807. ],
  5808. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5809. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5810. "support": {
  5811. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  5812. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  5813. },
  5814. "funding": [
  5815. {
  5816. "url": "https://github.com/sebastianbergmann",
  5817. "type": "github"
  5818. }
  5819. ],
  5820. "time": "2020-10-26T13:14:26+00:00"
  5821. },
  5822. {
  5823. "name": "sebastian/recursion-context",
  5824. "version": "4.0.4",
  5825. "source": {
  5826. "type": "git",
  5827. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5828. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  5829. },
  5830. "dist": {
  5831. "type": "zip",
  5832. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  5833. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  5834. "shasum": ""
  5835. },
  5836. "require": {
  5837. "php": ">=7.3"
  5838. },
  5839. "require-dev": {
  5840. "phpunit/phpunit": "^9.3"
  5841. },
  5842. "type": "library",
  5843. "extra": {
  5844. "branch-alias": {
  5845. "dev-master": "4.0-dev"
  5846. }
  5847. },
  5848. "autoload": {
  5849. "classmap": [
  5850. "src/"
  5851. ]
  5852. },
  5853. "notification-url": "https://packagist.org/downloads/",
  5854. "license": [
  5855. "BSD-3-Clause"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "Sebastian Bergmann",
  5860. "email": "sebastian@phpunit.de"
  5861. },
  5862. {
  5863. "name": "Jeff Welch",
  5864. "email": "whatthejeff@gmail.com"
  5865. },
  5866. {
  5867. "name": "Adam Harvey",
  5868. "email": "aharvey@php.net"
  5869. }
  5870. ],
  5871. "description": "Provides functionality to recursively process PHP variables",
  5872. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5873. "support": {
  5874. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5875. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  5876. },
  5877. "funding": [
  5878. {
  5879. "url": "https://github.com/sebastianbergmann",
  5880. "type": "github"
  5881. }
  5882. ],
  5883. "time": "2020-10-26T13:17:30+00:00"
  5884. },
  5885. {
  5886. "name": "sebastian/resource-operations",
  5887. "version": "3.0.3",
  5888. "source": {
  5889. "type": "git",
  5890. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5891. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  5892. },
  5893. "dist": {
  5894. "type": "zip",
  5895. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5896. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5897. "shasum": ""
  5898. },
  5899. "require": {
  5900. "php": ">=7.3"
  5901. },
  5902. "require-dev": {
  5903. "phpunit/phpunit": "^9.0"
  5904. },
  5905. "type": "library",
  5906. "extra": {
  5907. "branch-alias": {
  5908. "dev-master": "3.0-dev"
  5909. }
  5910. },
  5911. "autoload": {
  5912. "classmap": [
  5913. "src/"
  5914. ]
  5915. },
  5916. "notification-url": "https://packagist.org/downloads/",
  5917. "license": [
  5918. "BSD-3-Clause"
  5919. ],
  5920. "authors": [
  5921. {
  5922. "name": "Sebastian Bergmann",
  5923. "email": "sebastian@phpunit.de"
  5924. }
  5925. ],
  5926. "description": "Provides a list of PHP built-in functions that operate on resources",
  5927. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5928. "support": {
  5929. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  5930. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  5931. },
  5932. "funding": [
  5933. {
  5934. "url": "https://github.com/sebastianbergmann",
  5935. "type": "github"
  5936. }
  5937. ],
  5938. "time": "2020-09-28T06:45:17+00:00"
  5939. },
  5940. {
  5941. "name": "sebastian/type",
  5942. "version": "2.3.1",
  5943. "source": {
  5944. "type": "git",
  5945. "url": "https://github.com/sebastianbergmann/type.git",
  5946. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  5947. },
  5948. "dist": {
  5949. "type": "zip",
  5950. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  5951. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  5952. "shasum": ""
  5953. },
  5954. "require": {
  5955. "php": ">=7.3"
  5956. },
  5957. "require-dev": {
  5958. "phpunit/phpunit": "^9.3"
  5959. },
  5960. "type": "library",
  5961. "extra": {
  5962. "branch-alias": {
  5963. "dev-master": "2.3-dev"
  5964. }
  5965. },
  5966. "autoload": {
  5967. "classmap": [
  5968. "src/"
  5969. ]
  5970. },
  5971. "notification-url": "https://packagist.org/downloads/",
  5972. "license": [
  5973. "BSD-3-Clause"
  5974. ],
  5975. "authors": [
  5976. {
  5977. "name": "Sebastian Bergmann",
  5978. "email": "sebastian@phpunit.de",
  5979. "role": "lead"
  5980. }
  5981. ],
  5982. "description": "Collection of value objects that represent the types of the PHP type system",
  5983. "homepage": "https://github.com/sebastianbergmann/type",
  5984. "support": {
  5985. "issues": "https://github.com/sebastianbergmann/type/issues",
  5986. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  5987. },
  5988. "funding": [
  5989. {
  5990. "url": "https://github.com/sebastianbergmann",
  5991. "type": "github"
  5992. }
  5993. ],
  5994. "time": "2020-10-26T13:18:59+00:00"
  5995. },
  5996. {
  5997. "name": "sebastian/version",
  5998. "version": "3.0.2",
  5999. "source": {
  6000. "type": "git",
  6001. "url": "https://github.com/sebastianbergmann/version.git",
  6002. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  6003. },
  6004. "dist": {
  6005. "type": "zip",
  6006. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  6007. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  6008. "shasum": ""
  6009. },
  6010. "require": {
  6011. "php": ">=7.3"
  6012. },
  6013. "type": "library",
  6014. "extra": {
  6015. "branch-alias": {
  6016. "dev-master": "3.0-dev"
  6017. }
  6018. },
  6019. "autoload": {
  6020. "classmap": [
  6021. "src/"
  6022. ]
  6023. },
  6024. "notification-url": "https://packagist.org/downloads/",
  6025. "license": [
  6026. "BSD-3-Clause"
  6027. ],
  6028. "authors": [
  6029. {
  6030. "name": "Sebastian Bergmann",
  6031. "email": "sebastian@phpunit.de",
  6032. "role": "lead"
  6033. }
  6034. ],
  6035. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6036. "homepage": "https://github.com/sebastianbergmann/version",
  6037. "support": {
  6038. "issues": "https://github.com/sebastianbergmann/version/issues",
  6039. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  6040. },
  6041. "funding": [
  6042. {
  6043. "url": "https://github.com/sebastianbergmann",
  6044. "type": "github"
  6045. }
  6046. ],
  6047. "time": "2020-09-28T06:39:44+00:00"
  6048. },
  6049. {
  6050. "name": "symfony/browser-kit",
  6051. "version": "v5.2.4",
  6052. "source": {
  6053. "type": "git",
  6054. "url": "https://github.com/symfony/browser-kit.git",
  6055. "reference": "3ca3a57ce9860318b20a924fec5daf5c6db44d93"
  6056. },
  6057. "dist": {
  6058. "type": "zip",
  6059. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/3ca3a57ce9860318b20a924fec5daf5c6db44d93",
  6060. "reference": "3ca3a57ce9860318b20a924fec5daf5c6db44d93",
  6061. "shasum": ""
  6062. },
  6063. "require": {
  6064. "php": ">=7.2.5",
  6065. "symfony/dom-crawler": "^4.4|^5.0"
  6066. },
  6067. "require-dev": {
  6068. "symfony/css-selector": "^4.4|^5.0",
  6069. "symfony/http-client": "^4.4|^5.0",
  6070. "symfony/mime": "^4.4|^5.0",
  6071. "symfony/process": "^4.4|^5.0"
  6072. },
  6073. "suggest": {
  6074. "symfony/process": ""
  6075. },
  6076. "type": "library",
  6077. "autoload": {
  6078. "psr-4": {
  6079. "Symfony\\Component\\BrowserKit\\": ""
  6080. },
  6081. "exclude-from-classmap": [
  6082. "/Tests/"
  6083. ]
  6084. },
  6085. "notification-url": "https://packagist.org/downloads/",
  6086. "license": [
  6087. "MIT"
  6088. ],
  6089. "authors": [
  6090. {
  6091. "name": "Fabien Potencier",
  6092. "email": "fabien@symfony.com"
  6093. },
  6094. {
  6095. "name": "Symfony Community",
  6096. "homepage": "https://symfony.com/contributors"
  6097. }
  6098. ],
  6099. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  6100. "homepage": "https://symfony.com",
  6101. "support": {
  6102. "source": "https://github.com/symfony/browser-kit/tree/v5.2.4"
  6103. },
  6104. "funding": [
  6105. {
  6106. "url": "https://symfony.com/sponsor",
  6107. "type": "custom"
  6108. },
  6109. {
  6110. "url": "https://github.com/fabpot",
  6111. "type": "github"
  6112. },
  6113. {
  6114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6115. "type": "tidelift"
  6116. }
  6117. ],
  6118. "time": "2021-02-22T06:48:33+00:00"
  6119. },
  6120. {
  6121. "name": "symfony/css-selector",
  6122. "version": "v5.2.4",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://github.com/symfony/css-selector.git",
  6126. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  6131. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  6132. "shasum": ""
  6133. },
  6134. "require": {
  6135. "php": ">=7.2.5"
  6136. },
  6137. "type": "library",
  6138. "autoload": {
  6139. "psr-4": {
  6140. "Symfony\\Component\\CssSelector\\": ""
  6141. },
  6142. "exclude-from-classmap": [
  6143. "/Tests/"
  6144. ]
  6145. },
  6146. "notification-url": "https://packagist.org/downloads/",
  6147. "license": [
  6148. "MIT"
  6149. ],
  6150. "authors": [
  6151. {
  6152. "name": "Fabien Potencier",
  6153. "email": "fabien@symfony.com"
  6154. },
  6155. {
  6156. "name": "Jean-François Simon",
  6157. "email": "jeanfrancois.simon@sensiolabs.com"
  6158. },
  6159. {
  6160. "name": "Symfony Community",
  6161. "homepage": "https://symfony.com/contributors"
  6162. }
  6163. ],
  6164. "description": "Converts CSS selectors to XPath expressions",
  6165. "homepage": "https://symfony.com",
  6166. "support": {
  6167. "source": "https://github.com/symfony/css-selector/tree/v5.2.4"
  6168. },
  6169. "funding": [
  6170. {
  6171. "url": "https://symfony.com/sponsor",
  6172. "type": "custom"
  6173. },
  6174. {
  6175. "url": "https://github.com/fabpot",
  6176. "type": "github"
  6177. },
  6178. {
  6179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6180. "type": "tidelift"
  6181. }
  6182. ],
  6183. "time": "2021-01-27T10:01:46+00:00"
  6184. },
  6185. {
  6186. "name": "symfony/dom-crawler",
  6187. "version": "v5.2.4",
  6188. "source": {
  6189. "type": "git",
  6190. "url": "https://github.com/symfony/dom-crawler.git",
  6191. "reference": "400e265163f65aceee7e904ef532e15228de674b"
  6192. },
  6193. "dist": {
  6194. "type": "zip",
  6195. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/400e265163f65aceee7e904ef532e15228de674b",
  6196. "reference": "400e265163f65aceee7e904ef532e15228de674b",
  6197. "shasum": ""
  6198. },
  6199. "require": {
  6200. "php": ">=7.2.5",
  6201. "symfony/polyfill-ctype": "~1.8",
  6202. "symfony/polyfill-mbstring": "~1.0",
  6203. "symfony/polyfill-php80": "^1.15"
  6204. },
  6205. "conflict": {
  6206. "masterminds/html5": "<2.6"
  6207. },
  6208. "require-dev": {
  6209. "masterminds/html5": "^2.6",
  6210. "symfony/css-selector": "^4.4|^5.0"
  6211. },
  6212. "suggest": {
  6213. "symfony/css-selector": ""
  6214. },
  6215. "type": "library",
  6216. "autoload": {
  6217. "psr-4": {
  6218. "Symfony\\Component\\DomCrawler\\": ""
  6219. },
  6220. "exclude-from-classmap": [
  6221. "/Tests/"
  6222. ]
  6223. },
  6224. "notification-url": "https://packagist.org/downloads/",
  6225. "license": [
  6226. "MIT"
  6227. ],
  6228. "authors": [
  6229. {
  6230. "name": "Fabien Potencier",
  6231. "email": "fabien@symfony.com"
  6232. },
  6233. {
  6234. "name": "Symfony Community",
  6235. "homepage": "https://symfony.com/contributors"
  6236. }
  6237. ],
  6238. "description": "Eases DOM navigation for HTML and XML documents",
  6239. "homepage": "https://symfony.com",
  6240. "support": {
  6241. "source": "https://github.com/symfony/dom-crawler/tree/v5.2.4"
  6242. },
  6243. "funding": [
  6244. {
  6245. "url": "https://symfony.com/sponsor",
  6246. "type": "custom"
  6247. },
  6248. {
  6249. "url": "https://github.com/fabpot",
  6250. "type": "github"
  6251. },
  6252. {
  6253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6254. "type": "tidelift"
  6255. }
  6256. ],
  6257. "time": "2021-02-15T18:55:04+00:00"
  6258. },
  6259. {
  6260. "name": "symfony/finder",
  6261. "version": "v5.2.4",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/symfony/finder.git",
  6265. "reference": "0d639a0943822626290d169965804f79400e6a04"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04",
  6270. "reference": "0d639a0943822626290d169965804f79400e6a04",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": ">=7.2.5"
  6275. },
  6276. "type": "library",
  6277. "autoload": {
  6278. "psr-4": {
  6279. "Symfony\\Component\\Finder\\": ""
  6280. },
  6281. "exclude-from-classmap": [
  6282. "/Tests/"
  6283. ]
  6284. },
  6285. "notification-url": "https://packagist.org/downloads/",
  6286. "license": [
  6287. "MIT"
  6288. ],
  6289. "authors": [
  6290. {
  6291. "name": "Fabien Potencier",
  6292. "email": "fabien@symfony.com"
  6293. },
  6294. {
  6295. "name": "Symfony Community",
  6296. "homepage": "https://symfony.com/contributors"
  6297. }
  6298. ],
  6299. "description": "Finds files and directories via an intuitive fluent interface",
  6300. "homepage": "https://symfony.com",
  6301. "support": {
  6302. "source": "https://github.com/symfony/finder/tree/v5.2.4"
  6303. },
  6304. "funding": [
  6305. {
  6306. "url": "https://symfony.com/sponsor",
  6307. "type": "custom"
  6308. },
  6309. {
  6310. "url": "https://github.com/fabpot",
  6311. "type": "github"
  6312. },
  6313. {
  6314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6315. "type": "tidelift"
  6316. }
  6317. ],
  6318. "time": "2021-02-15T18:55:04+00:00"
  6319. },
  6320. {
  6321. "name": "theseer/tokenizer",
  6322. "version": "1.2.0",
  6323. "source": {
  6324. "type": "git",
  6325. "url": "https://github.com/theseer/tokenizer.git",
  6326. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  6327. },
  6328. "dist": {
  6329. "type": "zip",
  6330. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  6331. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  6332. "shasum": ""
  6333. },
  6334. "require": {
  6335. "ext-dom": "*",
  6336. "ext-tokenizer": "*",
  6337. "ext-xmlwriter": "*",
  6338. "php": "^7.2 || ^8.0"
  6339. },
  6340. "type": "library",
  6341. "autoload": {
  6342. "classmap": [
  6343. "src/"
  6344. ]
  6345. },
  6346. "notification-url": "https://packagist.org/downloads/",
  6347. "license": [
  6348. "BSD-3-Clause"
  6349. ],
  6350. "authors": [
  6351. {
  6352. "name": "Arne Blankerts",
  6353. "email": "arne@blankerts.de",
  6354. "role": "Developer"
  6355. }
  6356. ],
  6357. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6358. "support": {
  6359. "issues": "https://github.com/theseer/tokenizer/issues",
  6360. "source": "https://github.com/theseer/tokenizer/tree/master"
  6361. },
  6362. "funding": [
  6363. {
  6364. "url": "https://github.com/theseer",
  6365. "type": "github"
  6366. }
  6367. ],
  6368. "time": "2020-07-12T23:59:07+00:00"
  6369. },
  6370. {
  6371. "name": "victorjonsson/markdowndocs",
  6372. "version": "dev-master",
  6373. "source": {
  6374. "type": "git",
  6375. "url": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator.git",
  6376. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed"
  6377. },
  6378. "dist": {
  6379. "type": "zip",
  6380. "url": "https://api.github.com/repos/trilbymedia/PHP-Markdown-Documentation-Generator/zipball/c9fa153b28a79f5da89ec32aa501be92db212aed",
  6381. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed",
  6382. "shasum": ""
  6383. },
  6384. "require": {
  6385. "php": ">=5.5.0",
  6386. "symfony/console": ">=2.6"
  6387. },
  6388. "require-dev": {
  6389. "phpunit/phpunit": "3.7.23"
  6390. },
  6391. "default-branch": true,
  6392. "bin": [
  6393. "bin/phpdoc-md"
  6394. ],
  6395. "type": "library",
  6396. "autoload": {
  6397. "psr-0": {
  6398. "PHPDocsMD": "src/"
  6399. }
  6400. },
  6401. "license": [
  6402. "MIT"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Victor Jonsson",
  6407. "email": "kontakt@victorjonsson.se"
  6408. }
  6409. ],
  6410. "description": "Command line tool for generating markdown-formatted class documentation",
  6411. "homepage": "https://github.com/victorjonsson/PHP-Markdown-Documentation-Generator",
  6412. "support": {
  6413. "source": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator/tree/master"
  6414. },
  6415. "time": "2017-09-20T13:29:22+00:00"
  6416. },
  6417. {
  6418. "name": "webmozart/assert",
  6419. "version": "1.10.0",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/webmozarts/assert.git",
  6423. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  6428. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  6429. "shasum": ""
  6430. },
  6431. "require": {
  6432. "php": "^7.2 || ^8.0",
  6433. "symfony/polyfill-ctype": "^1.8"
  6434. },
  6435. "conflict": {
  6436. "phpstan/phpstan": "<0.12.20",
  6437. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6438. },
  6439. "require-dev": {
  6440. "phpunit/phpunit": "^8.5.13"
  6441. },
  6442. "type": "library",
  6443. "extra": {
  6444. "branch-alias": {
  6445. "dev-master": "1.10-dev"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "psr-4": {
  6450. "Webmozart\\Assert\\": "src/"
  6451. }
  6452. },
  6453. "notification-url": "https://packagist.org/downloads/",
  6454. "license": [
  6455. "MIT"
  6456. ],
  6457. "authors": [
  6458. {
  6459. "name": "Bernhard Schussek",
  6460. "email": "bschussek@gmail.com"
  6461. }
  6462. ],
  6463. "description": "Assertions to validate method input/output with nice error messages.",
  6464. "keywords": [
  6465. "assert",
  6466. "check",
  6467. "validate"
  6468. ],
  6469. "support": {
  6470. "issues": "https://github.com/webmozarts/assert/issues",
  6471. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  6472. },
  6473. "time": "2021-03-09T10:59:23+00:00"
  6474. }
  6475. ],
  6476. "aliases": [],
  6477. "minimum-stability": "stable",
  6478. "stability-flags": {
  6479. "gregwar/image": 20,
  6480. "gregwar/cache": 20,
  6481. "victorjonsson/markdowndocs": 20
  6482. },
  6483. "prefer-stable": false,
  6484. "prefer-lowest": false,
  6485. "platform": {
  6486. "php": "^7.3.6 || ^8.0",
  6487. "ext-json": "*",
  6488. "ext-openssl": "*",
  6489. "ext-curl": "*",
  6490. "ext-zip": "*",
  6491. "ext-dom": "*",
  6492. "ext-libxml": "*"
  6493. },
  6494. "platform-dev": [],
  6495. "platform-overrides": {
  6496. "php": "7.3.6"
  6497. },
  6498. "plugin-api-version": "2.0.0"
  6499. }