composer.lock 217 KB

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