composer.lock 424 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822
  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": "0c50f7ad4faa8ccaeb6e11550b6250c1",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.3.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  84. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2019-12-24T22:41:47+00:00"
  124. },
  125. {
  126. "name": "behat/mink",
  127. "version": "1.7.x-dev",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/minkphp/Mink.git",
  131. "reference": "b2e031b747be637236c55f3158e4da280427bfa3"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/minkphp/Mink/zipball/b2e031b747be637236c55f3158e4da280427bfa3",
  136. "reference": "b2e031b747be637236c55f3158e4da280427bfa3",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3.1",
  141. "symfony/css-selector": "^2.7|^3.0|^4.0"
  142. },
  143. "require-dev": {
  144. "symfony/phpunit-bridge": "^4.2"
  145. },
  146. "suggest": {
  147. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  148. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  149. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  150. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  151. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "1.7.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "Behat\\Mink\\": "src/"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Konstantin Kudryashov",
  171. "email": "ever.zet@gmail.com",
  172. "homepage": "http://everzet.com"
  173. }
  174. ],
  175. "description": "Browser controller/emulator abstraction for PHP",
  176. "homepage": "http://mink.behat.org/",
  177. "keywords": [
  178. "browser",
  179. "testing",
  180. "web"
  181. ],
  182. "time": "2020-03-06T06:18:25+00:00"
  183. },
  184. {
  185. "name": "behat/mink-browserkit-driver",
  186. "version": "v1.3.4",
  187. "source": {
  188. "type": "git",
  189. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  190. "reference": "e3b90840022ebcd544c7b394a3c9597ae242cbee"
  191. },
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/e3b90840022ebcd544c7b394a3c9597ae242cbee",
  195. "reference": "e3b90840022ebcd544c7b394a3c9597ae242cbee",
  196. "shasum": ""
  197. },
  198. "require": {
  199. "behat/mink": "^1.7.1@dev",
  200. "php": ">=5.3.6",
  201. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  202. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  203. },
  204. "require-dev": {
  205. "mink/driver-testsuite": "dev-master",
  206. "symfony/debug": "^2.7|^3.0|^4.0",
  207. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  208. },
  209. "type": "mink-driver",
  210. "extra": {
  211. "branch-alias": {
  212. "dev-master": "1.3.x-dev"
  213. }
  214. },
  215. "autoload": {
  216. "psr-4": {
  217. "Behat\\Mink\\Driver\\": "src/"
  218. }
  219. },
  220. "notification-url": "https://packagist.org/downloads/",
  221. "license": [
  222. "MIT"
  223. ],
  224. "authors": [
  225. {
  226. "name": "Konstantin Kudryashov",
  227. "email": "ever.zet@gmail.com",
  228. "homepage": "http://everzet.com"
  229. }
  230. ],
  231. "description": "Symfony2 BrowserKit driver for Mink framework",
  232. "homepage": "http://mink.behat.org/",
  233. "keywords": [
  234. "Mink",
  235. "Symfony2",
  236. "browser",
  237. "testing"
  238. ],
  239. "time": "2020-03-11T09:49:45+00:00"
  240. },
  241. {
  242. "name": "behat/mink-goutte-driver",
  243. "version": "v1.2.1",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  247. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  252. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "behat/mink": "~1.6@dev",
  257. "behat/mink-browserkit-driver": "~1.2@dev",
  258. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  259. "php": ">=5.3.1"
  260. },
  261. "require-dev": {
  262. "symfony/phpunit-bridge": "~2.7|~3.0"
  263. },
  264. "type": "mink-driver",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.2.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Behat\\Mink\\Driver\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Konstantin Kudryashov",
  282. "email": "ever.zet@gmail.com",
  283. "homepage": "http://everzet.com"
  284. }
  285. ],
  286. "description": "Goutte driver for Mink framework",
  287. "homepage": "http://mink.behat.org/",
  288. "keywords": [
  289. "browser",
  290. "goutte",
  291. "headless",
  292. "testing"
  293. ],
  294. "time": "2016-03-05T09:04:22+00:00"
  295. },
  296. {
  297. "name": "behat/mink-selenium2-driver",
  298. "version": "dev-master",
  299. "source": {
  300. "type": "git",
  301. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  302. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  303. },
  304. "dist": {
  305. "type": "zip",
  306. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  307. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  308. "shasum": ""
  309. },
  310. "require": {
  311. "behat/mink": "~1.7@dev",
  312. "instaclick/php-webdriver": "~1.1",
  313. "php": ">=5.4"
  314. },
  315. "require-dev": {
  316. "mink/driver-testsuite": "dev-master"
  317. },
  318. "type": "mink-driver",
  319. "extra": {
  320. "branch-alias": {
  321. "dev-master": "1.3.x-dev"
  322. }
  323. },
  324. "autoload": {
  325. "psr-4": {
  326. "Behat\\Mink\\Driver\\": "src/"
  327. }
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "MIT"
  332. ],
  333. "authors": [
  334. {
  335. "name": "Konstantin Kudryashov",
  336. "email": "ever.zet@gmail.com",
  337. "homepage": "http://everzet.com"
  338. },
  339. {
  340. "name": "Pete Otaqui",
  341. "email": "pete@otaqui.com",
  342. "homepage": "https://github.com/pete-otaqui"
  343. }
  344. ],
  345. "description": "Selenium2 (WebDriver) driver for Mink framework",
  346. "homepage": "http://mink.behat.org/",
  347. "keywords": [
  348. "ajax",
  349. "browser",
  350. "javascript",
  351. "selenium",
  352. "testing",
  353. "webdriver"
  354. ],
  355. "time": "2018-10-10T12:39:06+00:00"
  356. },
  357. {
  358. "name": "brumann/polyfill-unserialize",
  359. "version": "v1.0.4",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  363. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  368. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "php": "^5.3|^7.0"
  373. },
  374. "type": "library",
  375. "autoload": {
  376. "psr-4": {
  377. "Brumann\\Polyfill\\": "src/"
  378. }
  379. },
  380. "notification-url": "https://packagist.org/downloads/",
  381. "license": [
  382. "MIT"
  383. ],
  384. "authors": [
  385. {
  386. "name": "Denis Brumann",
  387. "email": "denis.brumann@sensiolabs.de"
  388. }
  389. ],
  390. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  391. "time": "2019-07-14T23:16:24+00:00"
  392. },
  393. {
  394. "name": "chi-teck/drupal-code-generator",
  395. "version": "1.30.5",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  399. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  404. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  405. "shasum": ""
  406. },
  407. "require": {
  408. "ext-json": "*",
  409. "php": ">=5.5.9",
  410. "symfony/console": "^3.4 || ^4.0",
  411. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  412. "twig/twig": "^1.38.2 || ^2.10"
  413. },
  414. "bin": [
  415. "bin/dcg"
  416. ],
  417. "type": "library",
  418. "extra": {
  419. "branch-alias": {
  420. "dev-master": "1.x-dev"
  421. }
  422. },
  423. "autoload": {
  424. "files": [
  425. "src/bootstrap.php"
  426. ],
  427. "psr-4": {
  428. "DrupalCodeGenerator\\": "src"
  429. }
  430. },
  431. "notification-url": "https://packagist.org/downloads/",
  432. "license": [
  433. "GPL-2.0-or-later"
  434. ],
  435. "description": "Drupal code generator",
  436. "time": "2019-10-27T14:27:26+00:00"
  437. },
  438. {
  439. "name": "composer/installers",
  440. "version": "v1.7.0",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/composer/installers.git",
  444. "reference": "141b272484481432cda342727a427dc1e206bfa0"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
  449. "reference": "141b272484481432cda342727a427dc1e206bfa0",
  450. "shasum": ""
  451. },
  452. "require": {
  453. "composer-plugin-api": "^1.0"
  454. },
  455. "replace": {
  456. "roundcube/plugin-installer": "*",
  457. "shama/baton": "*"
  458. },
  459. "require-dev": {
  460. "composer/composer": "1.0.*@dev",
  461. "phpunit/phpunit": "^4.8.36"
  462. },
  463. "type": "composer-plugin",
  464. "extra": {
  465. "class": "Composer\\Installers\\Plugin",
  466. "branch-alias": {
  467. "dev-master": "1.0-dev"
  468. }
  469. },
  470. "autoload": {
  471. "psr-4": {
  472. "Composer\\Installers\\": "src/Composer/Installers"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Kyle Robinson Young",
  482. "email": "kyle@dontkry.com",
  483. "homepage": "https://github.com/shama"
  484. }
  485. ],
  486. "description": "A multi-framework Composer library installer",
  487. "homepage": "https://composer.github.io/installers/",
  488. "keywords": [
  489. "Craft",
  490. "Dolibarr",
  491. "Eliasis",
  492. "Hurad",
  493. "ImageCMS",
  494. "Kanboard",
  495. "Lan Management System",
  496. "MODX Evo",
  497. "Mautic",
  498. "Maya",
  499. "OXID",
  500. "Plentymarkets",
  501. "Porto",
  502. "RadPHP",
  503. "SMF",
  504. "Thelia",
  505. "Whmcs",
  506. "WolfCMS",
  507. "agl",
  508. "aimeos",
  509. "annotatecms",
  510. "attogram",
  511. "bitrix",
  512. "cakephp",
  513. "chef",
  514. "cockpit",
  515. "codeigniter",
  516. "concrete5",
  517. "croogo",
  518. "dokuwiki",
  519. "drupal",
  520. "eZ Platform",
  521. "elgg",
  522. "expressionengine",
  523. "fuelphp",
  524. "grav",
  525. "installer",
  526. "itop",
  527. "joomla",
  528. "known",
  529. "kohana",
  530. "laravel",
  531. "lavalite",
  532. "lithium",
  533. "magento",
  534. "majima",
  535. "mako",
  536. "mediawiki",
  537. "modulework",
  538. "modx",
  539. "moodle",
  540. "osclass",
  541. "phpbb",
  542. "piwik",
  543. "ppi",
  544. "puppet",
  545. "pxcms",
  546. "reindex",
  547. "roundcube",
  548. "shopware",
  549. "silverstripe",
  550. "sydes",
  551. "symfony",
  552. "typo3",
  553. "wordpress",
  554. "yawik",
  555. "zend",
  556. "zikula"
  557. ],
  558. "time": "2019-08-12T15:00:31+00:00"
  559. },
  560. {
  561. "name": "composer/semver",
  562. "version": "1.5.1",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/composer/semver.git",
  566. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  571. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "php": "^5.3.2 || ^7.0"
  576. },
  577. "require-dev": {
  578. "phpunit/phpunit": "^4.5 || ^5.0.5"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "1.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Composer\\Semver\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Nils Adermann",
  598. "email": "naderman@naderman.de",
  599. "homepage": "http://www.naderman.de"
  600. },
  601. {
  602. "name": "Jordi Boggiano",
  603. "email": "j.boggiano@seld.be",
  604. "homepage": "http://seld.be"
  605. },
  606. {
  607. "name": "Rob Bast",
  608. "email": "rob.bast@gmail.com",
  609. "homepage": "http://robbast.nl"
  610. }
  611. ],
  612. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  613. "keywords": [
  614. "semantic",
  615. "semver",
  616. "validation",
  617. "versioning"
  618. ],
  619. "time": "2020-01-13T12:06:48+00:00"
  620. },
  621. {
  622. "name": "consolidation/annotated-command",
  623. "version": "2.12.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/consolidation/annotated-command.git",
  627. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  632. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "consolidation/output-formatters": "^3.4",
  637. "php": ">=5.4.5",
  638. "psr/log": "^1",
  639. "symfony/console": "^2.8|^3|^4",
  640. "symfony/event-dispatcher": "^2.5|^3|^4",
  641. "symfony/finder": "^2.5|^3|^4"
  642. },
  643. "require-dev": {
  644. "g1a/composer-test-scenarios": "^3",
  645. "php-coveralls/php-coveralls": "^1",
  646. "phpunit/phpunit": "^6",
  647. "squizlabs/php_codesniffer": "^2.7"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "scenarios": {
  652. "symfony4": {
  653. "require": {
  654. "symfony/console": "^4.0"
  655. },
  656. "config": {
  657. "platform": {
  658. "php": "7.1.3"
  659. }
  660. }
  661. },
  662. "symfony2": {
  663. "require": {
  664. "symfony/console": "^2.8"
  665. },
  666. "require-dev": {
  667. "phpunit/phpunit": "^4.8.36"
  668. },
  669. "remove": [
  670. "php-coveralls/php-coveralls"
  671. ],
  672. "config": {
  673. "platform": {
  674. "php": "5.4.8"
  675. }
  676. },
  677. "scenario-options": {
  678. "create-lockfile": "false"
  679. }
  680. },
  681. "phpunit4": {
  682. "require-dev": {
  683. "phpunit/phpunit": "^4.8.36"
  684. },
  685. "remove": [
  686. "php-coveralls/php-coveralls"
  687. ],
  688. "config": {
  689. "platform": {
  690. "php": "5.4.8"
  691. }
  692. }
  693. }
  694. },
  695. "branch-alias": {
  696. "dev-master": "2.x-dev"
  697. }
  698. },
  699. "autoload": {
  700. "psr-4": {
  701. "Consolidation\\AnnotatedCommand\\": "src"
  702. }
  703. },
  704. "notification-url": "https://packagist.org/downloads/",
  705. "license": [
  706. "MIT"
  707. ],
  708. "authors": [
  709. {
  710. "name": "Greg Anderson",
  711. "email": "greg.1.anderson@greenknowe.org"
  712. }
  713. ],
  714. "description": "Initialize Symfony Console commands from annotated command class methods.",
  715. "time": "2019-03-08T16:55:03+00:00"
  716. },
  717. {
  718. "name": "consolidation/config",
  719. "version": "1.2.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/consolidation/config.git",
  723. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  728. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  729. "shasum": ""
  730. },
  731. "require": {
  732. "dflydev/dot-access-data": "^1.1.0",
  733. "grasmash/expander": "^1",
  734. "php": ">=5.4.0"
  735. },
  736. "require-dev": {
  737. "g1a/composer-test-scenarios": "^3",
  738. "php-coveralls/php-coveralls": "^1",
  739. "phpunit/phpunit": "^5",
  740. "squizlabs/php_codesniffer": "2.*",
  741. "symfony/console": "^2.5|^3|^4",
  742. "symfony/yaml": "^2.8.11|^3|^4"
  743. },
  744. "suggest": {
  745. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "scenarios": {
  750. "symfony4": {
  751. "require-dev": {
  752. "symfony/console": "^4.0"
  753. },
  754. "config": {
  755. "platform": {
  756. "php": "7.1.3"
  757. }
  758. }
  759. },
  760. "symfony2": {
  761. "require-dev": {
  762. "symfony/console": "^2.8",
  763. "symfony/event-dispatcher": "^2.8",
  764. "phpunit/phpunit": "^4.8.36"
  765. },
  766. "remove": [
  767. "php-coveralls/php-coveralls"
  768. ],
  769. "config": {
  770. "platform": {
  771. "php": "5.4.8"
  772. }
  773. }
  774. }
  775. },
  776. "branch-alias": {
  777. "dev-master": "1.x-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "Consolidation\\Config\\": "src"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Greg Anderson",
  792. "email": "greg.1.anderson@greenknowe.org"
  793. }
  794. ],
  795. "description": "Provide configuration services for a commandline tool.",
  796. "time": "2019-03-03T19:37:04+00:00"
  797. },
  798. {
  799. "name": "consolidation/filter-via-dot-access-data",
  800. "version": "1.0.0",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  804. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  809. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "dflydev/dot-access-data": "^1.1.0",
  814. "php": ">=5.5.0"
  815. },
  816. "require-dev": {
  817. "consolidation/robo": "^1.2.3",
  818. "g1a/composer-test-scenarios": "^3",
  819. "knplabs/github-api": "^2.7",
  820. "php-coveralls/php-coveralls": "^1",
  821. "php-http/guzzle6-adapter": "^1.1",
  822. "phpunit/phpunit": "^5",
  823. "squizlabs/php_codesniffer": "^2.8",
  824. "symfony/console": "^2.8|^3|^4"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "scenarios": {
  829. "phpunit5": {
  830. "require-dev": {
  831. "phpunit/phpunit": "^5.7.27"
  832. },
  833. "remove": [
  834. "php-coveralls/php-coveralls"
  835. ],
  836. "config": {
  837. "platform": {
  838. "php": "5.6.33"
  839. }
  840. }
  841. }
  842. },
  843. "branch-alias": {
  844. "dev-master": "1.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Consolidation\\Filter\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Greg Anderson",
  859. "email": "greg.1.anderson@greenknowe.org"
  860. }
  861. ],
  862. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  863. "time": "2019-01-18T06:05:07+00:00"
  864. },
  865. {
  866. "name": "consolidation/log",
  867. "version": "1.1.1",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/consolidation/log.git",
  871. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  876. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": ">=5.4.5",
  881. "psr/log": "^1.0",
  882. "symfony/console": "^2.8|^3|^4"
  883. },
  884. "require-dev": {
  885. "g1a/composer-test-scenarios": "^3",
  886. "php-coveralls/php-coveralls": "^1",
  887. "phpunit/phpunit": "^6",
  888. "squizlabs/php_codesniffer": "^2"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "scenarios": {
  893. "symfony4": {
  894. "require": {
  895. "symfony/console": "^4.0"
  896. },
  897. "config": {
  898. "platform": {
  899. "php": "7.1.3"
  900. }
  901. }
  902. },
  903. "symfony2": {
  904. "require": {
  905. "symfony/console": "^2.8"
  906. },
  907. "require-dev": {
  908. "phpunit/phpunit": "^4.8.36"
  909. },
  910. "remove": [
  911. "php-coveralls/php-coveralls"
  912. ],
  913. "config": {
  914. "platform": {
  915. "php": "5.4.8"
  916. }
  917. }
  918. },
  919. "phpunit4": {
  920. "require-dev": {
  921. "phpunit/phpunit": "^4.8.36"
  922. },
  923. "remove": [
  924. "php-coveralls/php-coveralls"
  925. ],
  926. "config": {
  927. "platform": {
  928. "php": "5.4.8"
  929. }
  930. }
  931. }
  932. },
  933. "branch-alias": {
  934. "dev-master": "1.x-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "Consolidation\\Log\\": "src"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Greg Anderson",
  949. "email": "greg.1.anderson@greenknowe.org"
  950. }
  951. ],
  952. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  953. "time": "2019-01-01T17:30:51+00:00"
  954. },
  955. {
  956. "name": "consolidation/output-formatters",
  957. "version": "3.5.0",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/consolidation/output-formatters.git",
  961. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  966. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "dflydev/dot-access-data": "^1.1.0",
  971. "php": ">=5.4.0",
  972. "symfony/console": "^2.8|^3|^4",
  973. "symfony/finder": "^2.5|^3|^4"
  974. },
  975. "require-dev": {
  976. "g1a/composer-test-scenarios": "^3",
  977. "php-coveralls/php-coveralls": "^1",
  978. "phpunit/phpunit": "^5.7.27",
  979. "squizlabs/php_codesniffer": "^2.7",
  980. "symfony/var-dumper": "^2.8|^3|^4",
  981. "victorjonsson/markdowndocs": "^1.3"
  982. },
  983. "suggest": {
  984. "symfony/var-dumper": "For using the var_dump formatter"
  985. },
  986. "type": "library",
  987. "extra": {
  988. "scenarios": {
  989. "symfony4": {
  990. "require": {
  991. "symfony/console": "^4.0"
  992. },
  993. "require-dev": {
  994. "phpunit/phpunit": "^6"
  995. },
  996. "config": {
  997. "platform": {
  998. "php": "7.1.3"
  999. }
  1000. }
  1001. },
  1002. "symfony3": {
  1003. "require": {
  1004. "symfony/console": "^3.4",
  1005. "symfony/finder": "^3.4",
  1006. "symfony/var-dumper": "^3.4"
  1007. },
  1008. "config": {
  1009. "platform": {
  1010. "php": "5.6.32"
  1011. }
  1012. }
  1013. },
  1014. "symfony2": {
  1015. "require": {
  1016. "symfony/console": "^2.8"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "^4.8.36"
  1020. },
  1021. "remove": [
  1022. "php-coveralls/php-coveralls"
  1023. ],
  1024. "config": {
  1025. "platform": {
  1026. "php": "5.4.8"
  1027. }
  1028. },
  1029. "scenario-options": {
  1030. "create-lockfile": "false"
  1031. }
  1032. }
  1033. },
  1034. "branch-alias": {
  1035. "dev-master": "3.x-dev"
  1036. }
  1037. },
  1038. "autoload": {
  1039. "psr-4": {
  1040. "Consolidation\\OutputFormatters\\": "src"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Greg Anderson",
  1050. "email": "greg.1.anderson@greenknowe.org"
  1051. }
  1052. ],
  1053. "description": "Format text by applying transformations provided by plug-in formatters.",
  1054. "time": "2019-05-30T23:16:01+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/robo",
  1058. "version": "1.4.11",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/Robo.git",
  1062. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5fa1d901776a628167a325baa9db95d8edf13a80",
  1067. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/annotated-command": "^2.11.0",
  1072. "consolidation/config": "^1.2",
  1073. "consolidation/log": "~1",
  1074. "consolidation/output-formatters": "^3.1.13",
  1075. "consolidation/self-update": "^1",
  1076. "grasmash/yaml-expander": "^1.3",
  1077. "league/container": "^2.2",
  1078. "php": ">=5.5.0",
  1079. "symfony/console": "^2.8|^3|^4",
  1080. "symfony/event-dispatcher": "^2.5|^3|^4",
  1081. "symfony/filesystem": "^2.5|^3|^4",
  1082. "symfony/finder": "^2.5|^3|^4",
  1083. "symfony/process": "^2.5|^3|^4"
  1084. },
  1085. "replace": {
  1086. "codegyre/robo": "< 1.0"
  1087. },
  1088. "require-dev": {
  1089. "codeception/aspect-mock": "^1|^2.1.1",
  1090. "codeception/base": "^2.3.7",
  1091. "codeception/verify": "^0.3.2",
  1092. "g1a/composer-test-scenarios": "^3",
  1093. "goaop/framework": "~2.1.2",
  1094. "goaop/parser-reflection": "^1.1.0",
  1095. "natxet/cssmin": "3.0.4",
  1096. "nikic/php-parser": "^3.1.5",
  1097. "patchwork/jsqueeze": "~2",
  1098. "pear/archive_tar": "^1.4.4",
  1099. "php-coveralls/php-coveralls": "^1",
  1100. "phpunit/php-code-coverage": "~2|~4",
  1101. "sebastian/comparator": "^1.2.4",
  1102. "squizlabs/php_codesniffer": "^2.8"
  1103. },
  1104. "suggest": {
  1105. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  1106. "natxet/CssMin": "For minifying CSS files in taskMinify",
  1107. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  1108. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  1109. },
  1110. "bin": [
  1111. "robo"
  1112. ],
  1113. "type": "library",
  1114. "extra": {
  1115. "scenarios": {
  1116. "symfony4": {
  1117. "require": {
  1118. "symfony/console": "^4"
  1119. },
  1120. "config": {
  1121. "platform": {
  1122. "php": "7.1.3"
  1123. }
  1124. }
  1125. },
  1126. "symfony2": {
  1127. "require": {
  1128. "symfony/console": "^2.8"
  1129. },
  1130. "remove": [
  1131. "goaop/framework"
  1132. ],
  1133. "config": {
  1134. "platform": {
  1135. "php": "5.5.9"
  1136. }
  1137. },
  1138. "scenario-options": {
  1139. "create-lockfile": "false"
  1140. }
  1141. }
  1142. },
  1143. "branch-alias": {
  1144. "dev-master": "2.x-dev"
  1145. }
  1146. },
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Robo\\": "src"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Davert",
  1159. "email": "davert.php@resend.cc"
  1160. }
  1161. ],
  1162. "description": "Modern task runner",
  1163. "time": "2019-10-29T15:50:02+00:00"
  1164. },
  1165. {
  1166. "name": "consolidation/self-update",
  1167. "version": "1.1.5",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/consolidation/self-update.git",
  1171. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1176. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1177. "shasum": ""
  1178. },
  1179. "require": {
  1180. "php": ">=5.5.0",
  1181. "symfony/console": "^2.8|^3|^4",
  1182. "symfony/filesystem": "^2.5|^3|^4"
  1183. },
  1184. "bin": [
  1185. "scripts/release"
  1186. ],
  1187. "type": "library",
  1188. "extra": {
  1189. "branch-alias": {
  1190. "dev-master": "1.x-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "psr-4": {
  1195. "SelfUpdate\\": "src"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "MIT"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Greg Anderson",
  1205. "email": "greg.1.anderson@greenknowe.org"
  1206. },
  1207. {
  1208. "name": "Alexander Menk",
  1209. "email": "menk@mestrona.net"
  1210. }
  1211. ],
  1212. "description": "Provides a self:update command for Symfony Console applications.",
  1213. "time": "2018-10-28T01:52:03+00:00"
  1214. },
  1215. {
  1216. "name": "consolidation/site-alias",
  1217. "version": "3.0.0",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/consolidation/site-alias.git",
  1221. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1226. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "consolidation/config": "^1.2.1",
  1231. "php": ">=5.5.0"
  1232. },
  1233. "require-dev": {
  1234. "consolidation/robo": "^1.2.3",
  1235. "g1a/composer-test-scenarios": "^3",
  1236. "knplabs/github-api": "^2.7",
  1237. "php-coveralls/php-coveralls": "^1",
  1238. "php-http/guzzle6-adapter": "^1.1",
  1239. "phpunit/phpunit": "^6",
  1240. "squizlabs/php_codesniffer": "^2.8",
  1241. "symfony/console": "^2.8|^3|^4",
  1242. "symfony/yaml": "~2.3|^3"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "scenarios": {
  1247. "phpunit5": {
  1248. "require-dev": {
  1249. "phpunit/phpunit": "^5.7.27"
  1250. },
  1251. "remove": [
  1252. "php-coveralls/php-coveralls"
  1253. ],
  1254. "config": {
  1255. "platform": {
  1256. "php": "5.6.33"
  1257. }
  1258. }
  1259. }
  1260. },
  1261. "branch-alias": {
  1262. "dev-master": "3.x-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Consolidation\\SiteAlias\\": "src"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Moshe Weitzman",
  1277. "email": "weitzman@tejasa.com"
  1278. },
  1279. {
  1280. "name": "Greg Anderson",
  1281. "email": "greg.1.anderson@greenknowe.org"
  1282. }
  1283. ],
  1284. "description": "Manage alias records for local and remote sites.",
  1285. "time": "2019-03-12T17:31:48+00:00"
  1286. },
  1287. {
  1288. "name": "consolidation/site-process",
  1289. "version": "2.1.0",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/consolidation/site-process.git",
  1293. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1298. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "consolidation/config": "^1.2.1",
  1303. "consolidation/site-alias": "^3",
  1304. "php": ">=5.6.0",
  1305. "symfony/process": "^3.4"
  1306. },
  1307. "require-dev": {
  1308. "consolidation/robo": "^1.3",
  1309. "g1a/composer-test-scenarios": "^3",
  1310. "knplabs/github-api": "^2.7",
  1311. "php-coveralls/php-coveralls": "^1",
  1312. "php-http/guzzle6-adapter": "^1.1",
  1313. "phpunit/phpunit": "^6",
  1314. "squizlabs/php_codesniffer": "^2.8"
  1315. },
  1316. "type": "library",
  1317. "extra": {
  1318. "scenarios": {
  1319. "phpunit5": {
  1320. "require-dev": {
  1321. "phpunit/phpunit": "^5.7.27"
  1322. },
  1323. "remove": [
  1324. "php-coveralls/php-coveralls"
  1325. ],
  1326. "config": {
  1327. "platform": {
  1328. "php": "5.6.33"
  1329. }
  1330. }
  1331. }
  1332. },
  1333. "branch-alias": {
  1334. "dev-master": "0.x-dev"
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Consolidation\\SiteProcess\\": "src"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Greg Anderson",
  1349. "email": "greg.1.anderson@greenknowe.org"
  1350. },
  1351. {
  1352. "name": "Moshe Weitzman",
  1353. "email": "weitzman@tejasa.com"
  1354. }
  1355. ],
  1356. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1357. "time": "2019-09-10T17:56:24+00:00"
  1358. },
  1359. {
  1360. "name": "container-interop/container-interop",
  1361. "version": "1.2.0",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/container-interop/container-interop.git",
  1365. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1370. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "psr/container": "^1.0"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Interop\\Container\\": "src/Interop/Container/"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1387. "homepage": "https://github.com/container-interop/container-interop",
  1388. "abandoned": "psr/container",
  1389. "time": "2017-02-14T19:40:03+00:00"
  1390. },
  1391. {
  1392. "name": "cweagans/composer-patches",
  1393. "version": "1.6.7",
  1394. "source": {
  1395. "type": "git",
  1396. "url": "https://github.com/cweagans/composer-patches.git",
  1397. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1398. },
  1399. "dist": {
  1400. "type": "zip",
  1401. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1402. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1403. "shasum": ""
  1404. },
  1405. "require": {
  1406. "composer-plugin-api": "^1.0",
  1407. "php": ">=5.3.0"
  1408. },
  1409. "require-dev": {
  1410. "composer/composer": "~1.0",
  1411. "phpunit/phpunit": "~4.6"
  1412. },
  1413. "type": "composer-plugin",
  1414. "extra": {
  1415. "class": "cweagans\\Composer\\Patches"
  1416. },
  1417. "autoload": {
  1418. "psr-4": {
  1419. "cweagans\\Composer\\": "src"
  1420. }
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "BSD-3-Clause"
  1425. ],
  1426. "authors": [
  1427. {
  1428. "name": "Cameron Eagans",
  1429. "email": "me@cweagans.net"
  1430. }
  1431. ],
  1432. "description": "Provides a way to patch Composer packages.",
  1433. "time": "2019-08-29T20:11:49+00:00"
  1434. },
  1435. {
  1436. "name": "dflydev/dot-access-configuration",
  1437. "version": "v1.0.3",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1441. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1446. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1447. "shasum": ""
  1448. },
  1449. "require": {
  1450. "dflydev/dot-access-data": "1.*",
  1451. "dflydev/placeholder-resolver": "1.*",
  1452. "php": ">=5.3.2"
  1453. },
  1454. "require-dev": {
  1455. "symfony/yaml": "~2.1"
  1456. },
  1457. "suggest": {
  1458. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1459. },
  1460. "type": "library",
  1461. "extra": {
  1462. "branch-alias": {
  1463. "dev-master": "1.0-dev"
  1464. }
  1465. },
  1466. "autoload": {
  1467. "psr-0": {
  1468. "Dflydev\\DotAccessConfiguration": "src"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "MIT"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Dragonfly Development Inc.",
  1478. "email": "info@dflydev.com",
  1479. "homepage": "http://dflydev.com"
  1480. },
  1481. {
  1482. "name": "Beau Simensen",
  1483. "email": "beau@dflydev.com",
  1484. "homepage": "http://beausimensen.com"
  1485. }
  1486. ],
  1487. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1488. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1489. "keywords": [
  1490. "config",
  1491. "configuration"
  1492. ],
  1493. "time": "2018-09-08T23:00:17+00:00"
  1494. },
  1495. {
  1496. "name": "dflydev/dot-access-data",
  1497. "version": "v1.1.0",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1501. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1506. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1507. "shasum": ""
  1508. },
  1509. "require": {
  1510. "php": ">=5.3.2"
  1511. },
  1512. "type": "library",
  1513. "extra": {
  1514. "branch-alias": {
  1515. "dev-master": "1.0-dev"
  1516. }
  1517. },
  1518. "autoload": {
  1519. "psr-0": {
  1520. "Dflydev\\DotAccessData": "src"
  1521. }
  1522. },
  1523. "notification-url": "https://packagist.org/downloads/",
  1524. "license": [
  1525. "MIT"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "Dragonfly Development Inc.",
  1530. "email": "info@dflydev.com",
  1531. "homepage": "http://dflydev.com"
  1532. },
  1533. {
  1534. "name": "Beau Simensen",
  1535. "email": "beau@dflydev.com",
  1536. "homepage": "http://beausimensen.com"
  1537. },
  1538. {
  1539. "name": "Carlos Frutos",
  1540. "email": "carlos@kiwing.it",
  1541. "homepage": "https://github.com/cfrutos"
  1542. }
  1543. ],
  1544. "description": "Given a deep data structure, access data by dot notation.",
  1545. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1546. "keywords": [
  1547. "access",
  1548. "data",
  1549. "dot",
  1550. "notation"
  1551. ],
  1552. "time": "2017-01-20T21:14:22+00:00"
  1553. },
  1554. {
  1555. "name": "dflydev/placeholder-resolver",
  1556. "version": "v1.0.2",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1560. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1565. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1566. "shasum": ""
  1567. },
  1568. "require": {
  1569. "php": ">=5.3.2"
  1570. },
  1571. "type": "library",
  1572. "extra": {
  1573. "branch-alias": {
  1574. "dev-master": "1.0-dev"
  1575. }
  1576. },
  1577. "autoload": {
  1578. "psr-0": {
  1579. "Dflydev\\PlaceholderResolver": "src"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Dragonfly Development Inc.",
  1589. "email": "info@dflydev.com",
  1590. "homepage": "http://dflydev.com"
  1591. },
  1592. {
  1593. "name": "Beau Simensen",
  1594. "email": "beau@dflydev.com",
  1595. "homepage": "http://beausimensen.com"
  1596. }
  1597. ],
  1598. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1599. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1600. "keywords": [
  1601. "placeholder",
  1602. "resolver"
  1603. ],
  1604. "time": "2012-10-28T21:08:28+00:00"
  1605. },
  1606. {
  1607. "name": "dnoegel/php-xdg-base-dir",
  1608. "version": "0.1",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1612. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1617. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "php": ">=5.3.2"
  1622. },
  1623. "require-dev": {
  1624. "phpunit/phpunit": "@stable"
  1625. },
  1626. "type": "project",
  1627. "autoload": {
  1628. "psr-4": {
  1629. "XdgBaseDir\\": "src/"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "description": "implementation of xdg base directory specification for php",
  1637. "time": "2014-10-24T07:27:01+00:00"
  1638. },
  1639. {
  1640. "name": "doctrine/annotations",
  1641. "version": "v1.4.0",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/doctrine/annotations.git",
  1645. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1650. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "doctrine/lexer": "1.*",
  1655. "php": "^5.6 || ^7.0"
  1656. },
  1657. "require-dev": {
  1658. "doctrine/cache": "1.*",
  1659. "phpunit/phpunit": "^5.7"
  1660. },
  1661. "type": "library",
  1662. "extra": {
  1663. "branch-alias": {
  1664. "dev-master": "1.4.x-dev"
  1665. }
  1666. },
  1667. "autoload": {
  1668. "psr-4": {
  1669. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1670. }
  1671. },
  1672. "notification-url": "https://packagist.org/downloads/",
  1673. "license": [
  1674. "MIT"
  1675. ],
  1676. "authors": [
  1677. {
  1678. "name": "Roman Borschel",
  1679. "email": "roman@code-factory.org"
  1680. },
  1681. {
  1682. "name": "Benjamin Eberlei",
  1683. "email": "kontakt@beberlei.de"
  1684. },
  1685. {
  1686. "name": "Guilherme Blanco",
  1687. "email": "guilhermeblanco@gmail.com"
  1688. },
  1689. {
  1690. "name": "Jonathan Wage",
  1691. "email": "jonwage@gmail.com"
  1692. },
  1693. {
  1694. "name": "Johannes Schmitt",
  1695. "email": "schmittjoh@gmail.com"
  1696. }
  1697. ],
  1698. "description": "Docblock Annotations Parser",
  1699. "homepage": "http://www.doctrine-project.org",
  1700. "keywords": [
  1701. "annotations",
  1702. "docblock",
  1703. "parser"
  1704. ],
  1705. "time": "2017-02-24T16:22:25+00:00"
  1706. },
  1707. {
  1708. "name": "doctrine/cache",
  1709. "version": "v1.6.2",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/doctrine/cache.git",
  1713. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1718. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": "~5.5|~7.0"
  1723. },
  1724. "conflict": {
  1725. "doctrine/common": ">2.2,<2.4"
  1726. },
  1727. "require-dev": {
  1728. "phpunit/phpunit": "~4.8|~5.0",
  1729. "predis/predis": "~1.0",
  1730. "satooshi/php-coveralls": "~0.6"
  1731. },
  1732. "type": "library",
  1733. "extra": {
  1734. "branch-alias": {
  1735. "dev-master": "1.6.x-dev"
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Roman Borschel",
  1750. "email": "roman@code-factory.org"
  1751. },
  1752. {
  1753. "name": "Benjamin Eberlei",
  1754. "email": "kontakt@beberlei.de"
  1755. },
  1756. {
  1757. "name": "Guilherme Blanco",
  1758. "email": "guilhermeblanco@gmail.com"
  1759. },
  1760. {
  1761. "name": "Jonathan Wage",
  1762. "email": "jonwage@gmail.com"
  1763. },
  1764. {
  1765. "name": "Johannes Schmitt",
  1766. "email": "schmittjoh@gmail.com"
  1767. }
  1768. ],
  1769. "description": "Caching library offering an object-oriented API for many cache backends",
  1770. "homepage": "http://www.doctrine-project.org",
  1771. "keywords": [
  1772. "cache",
  1773. "caching"
  1774. ],
  1775. "time": "2017-07-22T12:49:21+00:00"
  1776. },
  1777. {
  1778. "name": "doctrine/collections",
  1779. "version": "v1.4.0",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://github.com/doctrine/collections.git",
  1783. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1788. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1789. "shasum": ""
  1790. },
  1791. "require": {
  1792. "php": "^5.6 || ^7.0"
  1793. },
  1794. "require-dev": {
  1795. "doctrine/coding-standard": "~0.1@dev",
  1796. "phpunit/phpunit": "^5.7"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-master": "1.3.x-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "psr-0": {
  1806. "Doctrine\\Common\\Collections\\": "lib/"
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Roman Borschel",
  1816. "email": "roman@code-factory.org"
  1817. },
  1818. {
  1819. "name": "Benjamin Eberlei",
  1820. "email": "kontakt@beberlei.de"
  1821. },
  1822. {
  1823. "name": "Guilherme Blanco",
  1824. "email": "guilhermeblanco@gmail.com"
  1825. },
  1826. {
  1827. "name": "Jonathan Wage",
  1828. "email": "jonwage@gmail.com"
  1829. },
  1830. {
  1831. "name": "Johannes Schmitt",
  1832. "email": "schmittjoh@gmail.com"
  1833. }
  1834. ],
  1835. "description": "Collections Abstraction library",
  1836. "homepage": "http://www.doctrine-project.org",
  1837. "keywords": [
  1838. "array",
  1839. "collections",
  1840. "iterator"
  1841. ],
  1842. "time": "2017-01-03T10:49:41+00:00"
  1843. },
  1844. {
  1845. "name": "doctrine/common",
  1846. "version": "v2.7.3",
  1847. "source": {
  1848. "type": "git",
  1849. "url": "https://github.com/doctrine/common.git",
  1850. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1851. },
  1852. "dist": {
  1853. "type": "zip",
  1854. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1855. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1856. "shasum": ""
  1857. },
  1858. "require": {
  1859. "doctrine/annotations": "1.*",
  1860. "doctrine/cache": "1.*",
  1861. "doctrine/collections": "1.*",
  1862. "doctrine/inflector": "1.*",
  1863. "doctrine/lexer": "1.*",
  1864. "php": "~5.6|~7.0"
  1865. },
  1866. "require-dev": {
  1867. "phpunit/phpunit": "^5.4.6"
  1868. },
  1869. "type": "library",
  1870. "extra": {
  1871. "branch-alias": {
  1872. "dev-master": "2.7.x-dev"
  1873. }
  1874. },
  1875. "autoload": {
  1876. "psr-4": {
  1877. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1878. }
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Roman Borschel",
  1887. "email": "roman@code-factory.org"
  1888. },
  1889. {
  1890. "name": "Benjamin Eberlei",
  1891. "email": "kontakt@beberlei.de"
  1892. },
  1893. {
  1894. "name": "Guilherme Blanco",
  1895. "email": "guilhermeblanco@gmail.com"
  1896. },
  1897. {
  1898. "name": "Jonathan Wage",
  1899. "email": "jonwage@gmail.com"
  1900. },
  1901. {
  1902. "name": "Johannes Schmitt",
  1903. "email": "schmittjoh@gmail.com"
  1904. }
  1905. ],
  1906. "description": "Common Library for Doctrine projects",
  1907. "homepage": "http://www.doctrine-project.org",
  1908. "keywords": [
  1909. "annotations",
  1910. "collections",
  1911. "eventmanager",
  1912. "persistence",
  1913. "spl"
  1914. ],
  1915. "time": "2017-07-22T08:35:12+00:00"
  1916. },
  1917. {
  1918. "name": "doctrine/inflector",
  1919. "version": "v1.2.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/doctrine/inflector.git",
  1923. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1928. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": "^7.0"
  1933. },
  1934. "require-dev": {
  1935. "phpunit/phpunit": "^6.2"
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-master": "1.2.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "psr-4": {
  1945. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Roman Borschel",
  1955. "email": "roman@code-factory.org"
  1956. },
  1957. {
  1958. "name": "Benjamin Eberlei",
  1959. "email": "kontakt@beberlei.de"
  1960. },
  1961. {
  1962. "name": "Guilherme Blanco",
  1963. "email": "guilhermeblanco@gmail.com"
  1964. },
  1965. {
  1966. "name": "Jonathan Wage",
  1967. "email": "jonwage@gmail.com"
  1968. },
  1969. {
  1970. "name": "Johannes Schmitt",
  1971. "email": "schmittjoh@gmail.com"
  1972. }
  1973. ],
  1974. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1975. "homepage": "http://www.doctrine-project.org",
  1976. "keywords": [
  1977. "inflection",
  1978. "pluralize",
  1979. "singularize",
  1980. "string"
  1981. ],
  1982. "time": "2017-07-22T12:18:28+00:00"
  1983. },
  1984. {
  1985. "name": "doctrine/instantiator",
  1986. "version": "1.0.5",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/doctrine/instantiator.git",
  1990. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1995. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "php": ">=5.3,<8.0-DEV"
  2000. },
  2001. "require-dev": {
  2002. "athletic/athletic": "~0.1.8",
  2003. "ext-pdo": "*",
  2004. "ext-phar": "*",
  2005. "phpunit/phpunit": "~4.0",
  2006. "squizlabs/php_codesniffer": "~2.0"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "1.0.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Marco Pivetta",
  2026. "email": "ocramius@gmail.com",
  2027. "homepage": "http://ocramius.github.com/"
  2028. }
  2029. ],
  2030. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2031. "homepage": "https://github.com/doctrine/instantiator",
  2032. "keywords": [
  2033. "constructor",
  2034. "instantiate"
  2035. ],
  2036. "time": "2015-06-14T21:17:01+00:00"
  2037. },
  2038. {
  2039. "name": "doctrine/lexer",
  2040. "version": "1.0.2",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/doctrine/lexer.git",
  2044. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2049. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "php": ">=5.3.2"
  2054. },
  2055. "require-dev": {
  2056. "phpunit/phpunit": "^4.5"
  2057. },
  2058. "type": "library",
  2059. "extra": {
  2060. "branch-alias": {
  2061. "dev-master": "1.0.x-dev"
  2062. }
  2063. },
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "Roman Borschel",
  2076. "email": "roman@code-factory.org"
  2077. },
  2078. {
  2079. "name": "Guilherme Blanco",
  2080. "email": "guilhermeblanco@gmail.com"
  2081. },
  2082. {
  2083. "name": "Johannes Schmitt",
  2084. "email": "schmittjoh@gmail.com"
  2085. }
  2086. ],
  2087. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  2088. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  2089. "keywords": [
  2090. "annotations",
  2091. "docblock",
  2092. "lexer",
  2093. "parser",
  2094. "php"
  2095. ],
  2096. "time": "2019-06-08T11:03:04+00:00"
  2097. },
  2098. {
  2099. "name": "drupal-composer/drupal-scaffold",
  2100. "version": "2.6.1",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2104. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2109. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2110. "shasum": ""
  2111. },
  2112. "require": {
  2113. "composer-plugin-api": "^1.0.0",
  2114. "composer/semver": "^1.4",
  2115. "php": "^5.5.9|>=7.0.8"
  2116. },
  2117. "require-dev": {
  2118. "composer/composer": "dev-master",
  2119. "g1a/composer-test-scenarios": "^2.1.0",
  2120. "phpunit/phpunit": "^6",
  2121. "squizlabs/php_codesniffer": "^2.8"
  2122. },
  2123. "type": "composer-plugin",
  2124. "extra": {
  2125. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2126. "branch-alias": {
  2127. "dev-master": "2.0.x-dev"
  2128. }
  2129. },
  2130. "autoload": {
  2131. "psr-4": {
  2132. "DrupalComposer\\DrupalScaffold\\": "src/"
  2133. }
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "GPL-2.0-or-later"
  2138. ],
  2139. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  2140. "time": "2019-03-30T10:41:38+00:00"
  2141. },
  2142. {
  2143. "name": "drupal/addtoany",
  2144. "version": "1.12.0",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://git.drupalcode.org/project/addtoany.git",
  2148. "reference": "8.x-1.12"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  2153. "reference": "8.x-1.12",
  2154. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  2155. },
  2156. "require": {
  2157. "drupal/core": "*"
  2158. },
  2159. "type": "drupal-module",
  2160. "extra": {
  2161. "branch-alias": {
  2162. "dev-1.x": "1.x-dev"
  2163. },
  2164. "drupal": {
  2165. "version": "8.x-1.12",
  2166. "datestamp": "1554702781",
  2167. "security-coverage": {
  2168. "status": "covered",
  2169. "message": "Covered by Drupal's security advisory policy"
  2170. }
  2171. }
  2172. },
  2173. "notification-url": "https://packages.drupal.org/8/downloads",
  2174. "license": [
  2175. "GPL-2.0-or-later"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "AddToAny",
  2180. "homepage": "https://www.drupal.org/user/2640913"
  2181. },
  2182. {
  2183. "name": "micropat",
  2184. "homepage": "https://www.drupal.org/user/260224"
  2185. }
  2186. ],
  2187. "description": "Share buttons by AddToAny, including the AddToAny universal sharing button, Facebook, Twitter, Google+, Pinterest, and over 100 more on the <a href=\"https://www.addtoany.com/\" target=\"_blank\">AddToAny</a> platform.",
  2188. "homepage": "https://www.drupal.org/project/addtoany",
  2189. "support": {
  2190. "source": "https://git.drupalcode.org/project/addtoany"
  2191. }
  2192. },
  2193. {
  2194. "name": "drupal/admin_toolbar",
  2195. "version": "2.0.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2199. "reference": "8.x-2.0"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  2204. "reference": "8.x-2.0",
  2205. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  2206. },
  2207. "require": {
  2208. "drupal/core": "*"
  2209. },
  2210. "type": "drupal-module",
  2211. "extra": {
  2212. "branch-alias": {
  2213. "dev-2.x": "2.x-dev"
  2214. },
  2215. "drupal": {
  2216. "version": "8.x-2.0",
  2217. "datestamp": "1573751237",
  2218. "security-coverage": {
  2219. "status": "covered",
  2220. "message": "Covered by Drupal's security advisory policy"
  2221. }
  2222. }
  2223. },
  2224. "notification-url": "https://packages.drupal.org/8/downloads",
  2225. "license": [
  2226. "GPL-2.0+"
  2227. ],
  2228. "authors": [
  2229. {
  2230. "name": "Wilfrid Roze (eme)",
  2231. "homepage": "https://www.drupal.org/u/eme",
  2232. "role": "Maintainer"
  2233. },
  2234. {
  2235. "name": "Romain Jarraud (romainj)",
  2236. "homepage": "https://www.drupal.org/u/romainj",
  2237. "role": "Maintainer"
  2238. },
  2239. {
  2240. "name": "Adrian Cid Almaguer (adriancid)",
  2241. "homepage": "https://www.drupal.org/u/adriancid",
  2242. "email": "adriancid@gmail.com",
  2243. "role": "Maintainer"
  2244. },
  2245. {
  2246. "name": "Mohamed Anis Taktak (matio89)",
  2247. "homepage": "https://www.drupal.org/u/matio89",
  2248. "role": "Maintainer"
  2249. },
  2250. {
  2251. "name": "fethi.krout",
  2252. "homepage": "https://www.drupal.org/user/3206765"
  2253. },
  2254. {
  2255. "name": "matio89",
  2256. "homepage": "https://www.drupal.org/user/2320090"
  2257. },
  2258. {
  2259. "name": "romainj",
  2260. "homepage": "https://www.drupal.org/user/370706"
  2261. }
  2262. ],
  2263. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2264. "homepage": "http://drupal.org/project/admin_toolbar",
  2265. "keywords": [
  2266. "Drupal",
  2267. "Toolbar"
  2268. ],
  2269. "support": {
  2270. "source": "http://cgit.drupalcode.org/admin_toolbar",
  2271. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2272. }
  2273. },
  2274. {
  2275. "name": "drupal/adminimal_theme",
  2276. "version": "1.5.0",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2280. "reference": "8.x-1.5"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  2285. "reference": "8.x-1.5",
  2286. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  2287. },
  2288. "require": {
  2289. "drupal/core": "~8.0"
  2290. },
  2291. "type": "drupal-theme",
  2292. "extra": {
  2293. "branch-alias": {
  2294. "dev-1.x": "1.x-dev"
  2295. },
  2296. "drupal": {
  2297. "version": "8.x-1.5",
  2298. "datestamp": "1558584484",
  2299. "security-coverage": {
  2300. "status": "covered",
  2301. "message": "Covered by Drupal's security advisory policy"
  2302. }
  2303. }
  2304. },
  2305. "notification-url": "https://packages.drupal.org/8/downloads",
  2306. "license": [
  2307. "GPL-2.0+"
  2308. ],
  2309. "authors": [
  2310. {
  2311. "name": "ANDiTKO",
  2312. "homepage": "https://www.drupal.org/user/1428124"
  2313. },
  2314. {
  2315. "name": "andrey.troeglazov",
  2316. "homepage": "https://www.drupal.org/user/3145389"
  2317. },
  2318. {
  2319. "name": "realityloop",
  2320. "homepage": "https://www.drupal.org/user/139189"
  2321. }
  2322. ],
  2323. "description": "Drupal administration theme with modern minimalist design.",
  2324. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2325. "support": {
  2326. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2327. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2328. }
  2329. },
  2330. {
  2331. "name": "drupal/audiofield",
  2332. "version": "1.9.0",
  2333. "source": {
  2334. "type": "git",
  2335. "url": "https://git.drupalcode.org/project/audiofield.git",
  2336. "reference": "8.x-1.9"
  2337. },
  2338. "dist": {
  2339. "type": "zip",
  2340. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2341. "reference": "8.x-1.9",
  2342. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2343. },
  2344. "require": {
  2345. "drupal/core": "~8.0"
  2346. },
  2347. "type": "drupal-module",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-1.x": "1.x-dev"
  2351. },
  2352. "drupal": {
  2353. "version": "8.x-1.9",
  2354. "datestamp": "1553712781",
  2355. "security-coverage": {
  2356. "status": "covered",
  2357. "message": "Covered by Drupal's security advisory policy"
  2358. }
  2359. },
  2360. "drush": {
  2361. "services": {
  2362. "drush.services.yml": "^9"
  2363. }
  2364. }
  2365. },
  2366. "notification-url": "https://packages.drupal.org/8/downloads",
  2367. "license": [
  2368. "GPL-2.0+"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Daniel Moberly",
  2373. "homepage": "https://www.drupal.org/u/danielmoberly",
  2374. "role": "Maintainer"
  2375. },
  2376. {
  2377. "name": "josipsaric",
  2378. "homepage": "https://www.drupal.org/user/3063287"
  2379. },
  2380. {
  2381. "name": "tamerzg",
  2382. "homepage": "https://www.drupal.org/user/464564"
  2383. }
  2384. ],
  2385. "description": "AudioField Module",
  2386. "homepage": "https://www.drupal.org/project/audiofield",
  2387. "support": {
  2388. "source": "https://git.drupalcode.org/project/audiofield",
  2389. "issues": "https://www.drupal.org/project/issues/audiofield"
  2390. }
  2391. },
  2392. {
  2393. "name": "drupal/autologout",
  2394. "version": "1.0.0",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://git.drupalcode.org/project/autologout.git",
  2398. "reference": "8.x-1.0"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2403. "reference": "8.x-1.0",
  2404. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2405. },
  2406. "require": {
  2407. "drupal/core": "~8.0"
  2408. },
  2409. "type": "drupal-module",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-1.x": "1.x-dev"
  2413. },
  2414. "drupal": {
  2415. "version": "8.x-1.0",
  2416. "datestamp": "1494237185",
  2417. "security-coverage": {
  2418. "status": "covered",
  2419. "message": "Covered by Drupal's security advisory policy"
  2420. }
  2421. }
  2422. },
  2423. "notification-url": "https://packages.drupal.org/8/downloads",
  2424. "license": [
  2425. "GPL-2.0+"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "AjK",
  2430. "homepage": "https://www.drupal.org/user/39030"
  2431. },
  2432. {
  2433. "name": "AjitS",
  2434. "homepage": "https://www.drupal.org/user/981944"
  2435. },
  2436. {
  2437. "name": "boshtian",
  2438. "homepage": "https://www.drupal.org/user/1773456"
  2439. },
  2440. {
  2441. "name": "dandrews",
  2442. "homepage": "https://www.drupal.org/user/2014490"
  2443. },
  2444. {
  2445. "name": "darksnow",
  2446. "homepage": "https://www.drupal.org/user/391915"
  2447. },
  2448. {
  2449. "name": "johnennew",
  2450. "homepage": "https://www.drupal.org/user/1150042"
  2451. },
  2452. {
  2453. "name": "jrglasgow",
  2454. "homepage": "https://www.drupal.org/user/36590"
  2455. },
  2456. {
  2457. "name": "kmasood",
  2458. "homepage": "https://www.drupal.org/user/1262860"
  2459. },
  2460. {
  2461. "name": "levelos",
  2462. "homepage": "https://www.drupal.org/user/54135"
  2463. },
  2464. {
  2465. "name": "prabeen.giri",
  2466. "homepage": "https://www.drupal.org/user/913078"
  2467. },
  2468. {
  2469. "name": "str8",
  2470. "homepage": "https://www.drupal.org/user/2865063"
  2471. }
  2472. ],
  2473. "description": "Adds automated timed logout.",
  2474. "homepage": "http://drupal.org/project/autologout",
  2475. "support": {
  2476. "source": "https://git.drupalcode.org/project/autologout"
  2477. }
  2478. },
  2479. {
  2480. "name": "drupal/basic",
  2481. "version": "1.3.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://git.drupalcode.org/project/basic.git",
  2485. "reference": "8.x-1.3"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2490. "reference": "8.x-1.3",
  2491. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2492. },
  2493. "require": {
  2494. "drupal/core": "~8.0"
  2495. },
  2496. "type": "drupal-theme",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-1.x": "1.x-dev"
  2500. },
  2501. "drupal": {
  2502. "version": "8.x-1.3",
  2503. "datestamp": "1508096944",
  2504. "security-coverage": {
  2505. "status": "covered",
  2506. "message": "Covered by Drupal's security advisory policy"
  2507. }
  2508. }
  2509. },
  2510. "notification-url": "https://packages.drupal.org/8/downloads",
  2511. "license": [
  2512. "GPL-2.0+"
  2513. ],
  2514. "authors": [
  2515. {
  2516. "name": "Steve Krueger",
  2517. "homepage": "http://thejibe.com",
  2518. "email": "steve@thejibe.com",
  2519. "role": "Maintainer"
  2520. },
  2521. {
  2522. "name": "Joël Pittet",
  2523. "homepage": "https://www.drupal.org/u/joelpittet",
  2524. "email": "joel@pittet.ca",
  2525. "role": "Maintainer"
  2526. },
  2527. {
  2528. "name": "Leah Wagner",
  2529. "homepage": "http://thejibe.com",
  2530. "email": "leah@thejibe.com",
  2531. "role": "Maintainer"
  2532. },
  2533. {
  2534. "name": "Catherine Winters",
  2535. "homepage": "http://www.catherinewinters.com",
  2536. "email": "catherine@catherinewinters.com",
  2537. "role": "Maintainer"
  2538. },
  2539. {
  2540. "name": "Johannes Schmidt",
  2541. "homepage": "http://2tabs.com",
  2542. "email": "mail@2tabs.com",
  2543. "role": "Maintainer"
  2544. },
  2545. {
  2546. "name": "johannez",
  2547. "homepage": "https://www.drupal.org/user/670988"
  2548. },
  2549. {
  2550. "name": "leahtard",
  2551. "homepage": "https://www.drupal.org/user/683812"
  2552. }
  2553. ],
  2554. "description": "HTML5, SASS, Responsive grid starter theme.",
  2555. "homepage": "http://drupal.org/project/basic",
  2556. "support": {
  2557. "source": "http://cgit.drupalcode.org/basic",
  2558. "issues": "https://www.drupal.org/project/issues/basic",
  2559. "irc": "irc://irc.freenode.org/drupal-contribute"
  2560. }
  2561. },
  2562. {
  2563. "name": "drupal/better_messages",
  2564. "version": "1.0.0-alpha2",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://git.drupalcode.org/project/better_messages.git",
  2568. "reference": "8.x-1.0-alpha2"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2573. "reference": "8.x-1.0-alpha2",
  2574. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2575. },
  2576. "require": {
  2577. "drupal/core": "~8.0"
  2578. },
  2579. "type": "drupal-module",
  2580. "extra": {
  2581. "branch-alias": {
  2582. "dev-1.x": "1.x-dev"
  2583. },
  2584. "drupal": {
  2585. "version": "8.x-1.0-alpha2",
  2586. "datestamp": "1517663880",
  2587. "security-coverage": {
  2588. "status": "not-covered",
  2589. "message": "Alpha releases are not covered by Drupal security advisories."
  2590. }
  2591. }
  2592. },
  2593. "notification-url": "https://packages.drupal.org/8/downloads",
  2594. "license": [
  2595. "GPL-2.0-or-later"
  2596. ],
  2597. "authors": [
  2598. {
  2599. "name": "Mohammed J. Razem",
  2600. "homepage": "https://www.drupal.org/user/255384"
  2601. },
  2602. {
  2603. "name": "bucefal91",
  2604. "homepage": "https://www.drupal.org/user/504128"
  2605. },
  2606. {
  2607. "name": "le72",
  2608. "homepage": "https://www.drupal.org/user/1866896"
  2609. }
  2610. ],
  2611. "description": "Better Messages module for Drupal 8.",
  2612. "homepage": "https://www.drupal.org/project/better_messages",
  2613. "support": {
  2614. "source": "https://git.drupalcode.org/project/better_messages"
  2615. }
  2616. },
  2617. {
  2618. "name": "drupal/bulkdelete",
  2619. "version": "dev-1.x",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2623. "reference": "22e6ff410cf345609e83605d086cf7885bf4e865"
  2624. },
  2625. "require": {
  2626. "drupal/core": "~8.0"
  2627. },
  2628. "type": "drupal-module",
  2629. "extra": {
  2630. "branch-alias": {
  2631. "dev-1.x": "1.x-dev"
  2632. },
  2633. "drupal": {
  2634. "version": "8.x-1.x-dev",
  2635. "datestamp": "1495565583",
  2636. "security-coverage": {
  2637. "status": "not-covered",
  2638. "message": "Dev releases are not covered by Drupal security advisories."
  2639. }
  2640. }
  2641. },
  2642. "notification-url": "https://packages.drupal.org/8/downloads",
  2643. "license": [
  2644. "GPL-2.0-or-later"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "Kars-T",
  2649. "homepage": "https://www.drupal.org/user/224499"
  2650. },
  2651. {
  2652. "name": "Rahul Seth",
  2653. "homepage": "https://www.drupal.org/user/2694359"
  2654. },
  2655. {
  2656. "name": "adriancid",
  2657. "homepage": "https://www.drupal.org/user/1962106"
  2658. },
  2659. {
  2660. "name": "robertDouglass",
  2661. "homepage": "https://www.drupal.org/user/5449"
  2662. }
  2663. ],
  2664. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2665. "homepage": "https://www.drupal.org/project/bulkdelete",
  2666. "support": {
  2667. "source": "https://git.drupalcode.org/project/bulkdelete"
  2668. },
  2669. "time": "2019-09-27T12:11:08+00:00"
  2670. },
  2671. {
  2672. "name": "drupal/coder",
  2673. "version": "8.3.9",
  2674. "source": {
  2675. "type": "git",
  2676. "url": "https://git.drupalcode.org/project/coder.git",
  2677. "reference": "d51e0b8c6561e21c0545d04b5410a7bed7ee7c6b"
  2678. },
  2679. "require": {
  2680. "ext-mbstring": "*",
  2681. "php": ">=7.0.8",
  2682. "squizlabs/php_codesniffer": "^3.5.5",
  2683. "symfony/yaml": ">=2.0.5"
  2684. },
  2685. "require-dev": {
  2686. "phpstan/phpstan": "^0.12.5",
  2687. "phpunit/phpunit": "^6.0 || ^7.0"
  2688. },
  2689. "type": "phpcodesniffer-standard",
  2690. "autoload": {
  2691. "psr-4": {
  2692. "Drupal\\": "coder_sniffer/Drupal/",
  2693. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  2694. }
  2695. },
  2696. "notification-url": "https://packagist.org/downloads/",
  2697. "license": [
  2698. "GPL-2.0+"
  2699. ],
  2700. "description": "Coder is a library to review Drupal code.",
  2701. "homepage": "https://www.drupal.org/project/coder",
  2702. "keywords": [
  2703. "code review",
  2704. "phpcs",
  2705. "standards"
  2706. ],
  2707. "time": "2020-05-08T10:20:59+00:00"
  2708. },
  2709. {
  2710. "name": "drupal/color_field",
  2711. "version": "2.0.0",
  2712. "source": {
  2713. "type": "git",
  2714. "url": "https://git.drupalcode.org/project/color_field.git",
  2715. "reference": "8.x-2.0"
  2716. },
  2717. "dist": {
  2718. "type": "zip",
  2719. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2720. "reference": "8.x-2.0",
  2721. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2722. },
  2723. "require": {
  2724. "drupal/core": "*"
  2725. },
  2726. "require-dev": {
  2727. "drupal/token": "~1.3"
  2728. },
  2729. "suggest": {
  2730. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2731. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2732. },
  2733. "type": "drupal-module",
  2734. "extra": {
  2735. "branch-alias": {
  2736. "dev-2.x": "2.x-dev"
  2737. },
  2738. "drupal": {
  2739. "version": "8.x-2.0",
  2740. "datestamp": "1579324387",
  2741. "security-coverage": {
  2742. "status": "covered",
  2743. "message": "Covered by Drupal's security advisory policy"
  2744. }
  2745. }
  2746. },
  2747. "notification-url": "https://packages.drupal.org/8/downloads",
  2748. "license": [
  2749. "GPL-2.0-or-later"
  2750. ],
  2751. "authors": [
  2752. {
  2753. "name": "targoo",
  2754. "homepage": "https://www.drupal.org/user/431910",
  2755. "role": "Maintainer"
  2756. },
  2757. {
  2758. "name": "Nick Wilde",
  2759. "homepage": "https://www.drupal.org/user/nickwilde",
  2760. "role": "Maintainer"
  2761. }
  2762. ],
  2763. "description": "Provides a color field type to store the color value and opacity",
  2764. "homepage": "https://www.drupal.org/project/color_field",
  2765. "support": {
  2766. "source": "http://cgit.drupalcode.org/color_field",
  2767. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2768. }
  2769. },
  2770. {
  2771. "name": "drupal/config_devel",
  2772. "version": "1.4.0",
  2773. "source": {
  2774. "type": "git",
  2775. "url": "https://git.drupalcode.org/project/config_devel.git",
  2776. "reference": "8.x-1.4"
  2777. },
  2778. "dist": {
  2779. "type": "zip",
  2780. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.4.zip",
  2781. "reference": "8.x-1.4",
  2782. "shasum": "93cbecd4811cbf357cd0a8be19e480f7af32f756"
  2783. },
  2784. "require": {
  2785. "drupal/core": "~8.0"
  2786. },
  2787. "type": "drupal-module",
  2788. "extra": {
  2789. "branch-alias": {
  2790. "dev-1.x": "1.x-dev"
  2791. },
  2792. "drupal": {
  2793. "version": "8.x-1.4",
  2794. "datestamp": "1569934685",
  2795. "security-coverage": {
  2796. "status": "covered",
  2797. "message": "Covered by Drupal's security advisory policy"
  2798. }
  2799. }
  2800. },
  2801. "notification-url": "https://packages.drupal.org/8/downloads",
  2802. "license": [
  2803. "GPL-2.0+"
  2804. ],
  2805. "authors": [
  2806. {
  2807. "name": "alexpott",
  2808. "homepage": "https://www.drupal.org/user/157725"
  2809. },
  2810. {
  2811. "name": "benjy",
  2812. "homepage": "https://www.drupal.org/user/1852732"
  2813. },
  2814. {
  2815. "name": "chx",
  2816. "homepage": "https://www.drupal.org/user/9446"
  2817. },
  2818. {
  2819. "name": "joachim",
  2820. "homepage": "https://www.drupal.org/user/107701"
  2821. },
  2822. {
  2823. "name": "nedjo",
  2824. "homepage": "https://www.drupal.org/user/4481"
  2825. },
  2826. {
  2827. "name": "tim.plunkett",
  2828. "homepage": "https://www.drupal.org/user/241634"
  2829. },
  2830. {
  2831. "name": "vijaycs85",
  2832. "homepage": "https://www.drupal.org/user/93488"
  2833. }
  2834. ],
  2835. "description": "Helps developers work with configuration.",
  2836. "homepage": "https://www.drupal.org/project/config_devel",
  2837. "support": {
  2838. "source": "https://git.drupalcode.org/project/config_devel"
  2839. }
  2840. },
  2841. {
  2842. "name": "drupal/config_filter",
  2843. "version": "1.5.0",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://git.drupalcode.org/project/config_filter.git",
  2847. "reference": "8.x-1.5"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2852. "reference": "8.x-1.5",
  2853. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2854. },
  2855. "require": {
  2856. "drupal/core": "^8 || ^9"
  2857. },
  2858. "suggest": {
  2859. "drupal/config_split": "Split site configuration for different environments."
  2860. },
  2861. "type": "drupal-module",
  2862. "extra": {
  2863. "branch-alias": {
  2864. "dev-1.x": "1.x-dev"
  2865. },
  2866. "drupal": {
  2867. "version": "8.x-1.5",
  2868. "datestamp": "1572542288",
  2869. "security-coverage": {
  2870. "status": "covered",
  2871. "message": "Covered by Drupal's security advisory policy"
  2872. }
  2873. }
  2874. },
  2875. "notification-url": "https://packages.drupal.org/8/downloads",
  2876. "license": [
  2877. "GPL-2.0+"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Fabian Bircher",
  2882. "homepage": "https://www.drupal.org/u/bircher",
  2883. "email": "opensource@fabianbircher.com",
  2884. "role": "Maintainer"
  2885. },
  2886. {
  2887. "name": "Nuvole Web",
  2888. "homepage": "http://nuvole.org",
  2889. "email": "info@nuvole.org",
  2890. "role": "Maintainer"
  2891. },
  2892. {
  2893. "name": "pescetti",
  2894. "homepage": "https://www.drupal.org/user/436244"
  2895. }
  2896. ],
  2897. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2898. "homepage": "https://www.drupal.org/project/config_filter",
  2899. "keywords": [
  2900. "Drupal",
  2901. "configuration",
  2902. "configuration management"
  2903. ],
  2904. "support": {
  2905. "source": "http://cgit.drupalcode.org/config_filter",
  2906. "issues": "https://www.drupal.org/project/issues/config_filter",
  2907. "irc": "irc://irc.freenode.org/drupal-contribute"
  2908. }
  2909. },
  2910. {
  2911. "name": "drupal/config_ignore",
  2912. "version": "2.1.0",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2916. "reference": "8.x-2.1"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2921. "reference": "8.x-2.1",
  2922. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2923. },
  2924. "require": {
  2925. "drupal/config_filter": "1.*",
  2926. "drupal/core": "~8.0"
  2927. },
  2928. "type": "drupal-module",
  2929. "extra": {
  2930. "branch-alias": {
  2931. "dev-2.x": "2.x-dev"
  2932. },
  2933. "drupal": {
  2934. "version": "8.x-2.1",
  2935. "datestamp": "1507706044",
  2936. "security-coverage": {
  2937. "status": "covered",
  2938. "message": "Covered by Drupal's security advisory policy"
  2939. }
  2940. }
  2941. },
  2942. "notification-url": "https://packages.drupal.org/8/downloads",
  2943. "license": [
  2944. "GPL-2.0+"
  2945. ],
  2946. "authors": [
  2947. {
  2948. "name": "Tommy Lynge Jørgensen",
  2949. "homepage": "https://www.drupal.org/u/tlyngej",
  2950. "email": "tlyngej@gmail.com",
  2951. "role": "Maintainer"
  2952. },
  2953. {
  2954. "name": "Fabian Bircher",
  2955. "homepage": "https://www.drupal.org/u/bircher",
  2956. "role": "Maintainer"
  2957. }
  2958. ],
  2959. "description": "Ignore certain configuration during import.",
  2960. "homepage": "http://drupal.org/project/config_ignore",
  2961. "support": {
  2962. "source": "http://cgit.drupalcode.org/config_ignore",
  2963. "issues": "http://drupal.org/project/config_ignore",
  2964. "irc": "irc://irc.freenode.org/drupal-contribute"
  2965. }
  2966. },
  2967. {
  2968. "name": "drupal/config_update",
  2969. "version": "1.6.0",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://git.drupalcode.org/project/config_update.git",
  2973. "reference": "8.x-1.6"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2978. "reference": "8.x-1.6",
  2979. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2980. },
  2981. "require": {
  2982. "drupal/core": "*"
  2983. },
  2984. "type": "drupal-module",
  2985. "extra": {
  2986. "branch-alias": {
  2987. "dev-1.x": "1.x-dev"
  2988. },
  2989. "drupal": {
  2990. "version": "8.x-1.6",
  2991. "datestamp": "1545090480",
  2992. "security-coverage": {
  2993. "status": "covered",
  2994. "message": "Covered by Drupal's security advisory policy"
  2995. }
  2996. }
  2997. },
  2998. "notification-url": "https://packages.drupal.org/8/downloads",
  2999. "license": [
  3000. "GPL-2.0-or-later"
  3001. ],
  3002. "authors": [
  3003. {
  3004. "name": "jhodgdon",
  3005. "homepage": "https://www.drupal.org/user/155601"
  3006. },
  3007. {
  3008. "name": "nedjo",
  3009. "homepage": "https://www.drupal.org/user/4481"
  3010. }
  3011. ],
  3012. "description": "Provides basic revert and update functionality for other modules",
  3013. "homepage": "https://www.drupal.org/project/config_update",
  3014. "support": {
  3015. "source": "https://git.drupalcode.org/project/config_update"
  3016. }
  3017. },
  3018. {
  3019. "name": "drupal/console",
  3020. "version": "1.9.4",
  3021. "source": {
  3022. "type": "git",
  3023. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3024. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  3025. },
  3026. "dist": {
  3027. "type": "zip",
  3028. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  3029. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  3030. "shasum": ""
  3031. },
  3032. "require": {
  3033. "alchemy/zippy": "~0.4",
  3034. "composer/installers": "~1.0",
  3035. "doctrine/annotations": "^1.2",
  3036. "doctrine/collections": "^1.3",
  3037. "drupal/console-core": "1.9.4",
  3038. "drupal/console-extend-plugin": "~0",
  3039. "php": "^5.5.9 || ^7.0",
  3040. "psy/psysh": "0.6.* || ~0.8",
  3041. "symfony/css-selector": "~2.8|~3.0",
  3042. "symfony/dom-crawler": "~2.8|~3.0",
  3043. "symfony/http-foundation": "~2.8|~3.0"
  3044. },
  3045. "suggest": {
  3046. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3047. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3048. },
  3049. "bin": [
  3050. "bin/drupal"
  3051. ],
  3052. "type": "library",
  3053. "autoload": {
  3054. "psr-4": {
  3055. "Drupal\\Console\\": "src"
  3056. }
  3057. },
  3058. "notification-url": "https://packagist.org/downloads/",
  3059. "license": [
  3060. "GPL-2.0-or-later"
  3061. ],
  3062. "authors": [
  3063. {
  3064. "name": "David Flores",
  3065. "email": "dmousex@gmail.com",
  3066. "homepage": "http://dmouse.net"
  3067. },
  3068. {
  3069. "name": "Jesus Manuel Olivas",
  3070. "email": "jesus.olivas@gmail.com",
  3071. "homepage": "http://jmolivas.com"
  3072. },
  3073. {
  3074. "name": "Eduardo Garcia",
  3075. "email": "enzo@enzolutions.com",
  3076. "homepage": "http://enzolutions.com/"
  3077. },
  3078. {
  3079. "name": "Omar Aguirre",
  3080. "email": "omersguchigu@gmail.com"
  3081. },
  3082. {
  3083. "name": "Drupal Console Contributors",
  3084. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3085. }
  3086. ],
  3087. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3088. "homepage": "http://drupalconsole.com/",
  3089. "keywords": [
  3090. "console",
  3091. "development",
  3092. "drupal",
  3093. "symfony"
  3094. ],
  3095. "time": "2019-11-11T19:35:01+00:00"
  3096. },
  3097. {
  3098. "name": "drupal/console-core",
  3099. "version": "1.9.4",
  3100. "source": {
  3101. "type": "git",
  3102. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3103. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  3104. },
  3105. "dist": {
  3106. "type": "zip",
  3107. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3108. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3109. "shasum": ""
  3110. },
  3111. "require": {
  3112. "dflydev/dot-access-configuration": "^1.0",
  3113. "drupal/console-en": "1.9.4",
  3114. "guzzlehttp/guzzle": "~6.1",
  3115. "php": "^5.5.9 || ^7.0",
  3116. "stecman/symfony-console-completion": "~0.7",
  3117. "symfony/config": "~2.8|~3.0",
  3118. "symfony/console": "~2.8|~3.0",
  3119. "symfony/debug": "~2.8|~3.0",
  3120. "symfony/dependency-injection": "~2.8|~3.0",
  3121. "symfony/event-dispatcher": "~2.8|~3.0",
  3122. "symfony/filesystem": "~2.8|~3.0",
  3123. "symfony/finder": "~2.8|~3.0",
  3124. "symfony/process": "~2.8|~3.0",
  3125. "symfony/translation": "~2.8|~3.0",
  3126. "symfony/yaml": "~2.8|~3.0",
  3127. "twig/twig": "^1.23.1",
  3128. "webflo/drupal-finder": "^1.0",
  3129. "webmozart/path-util": "^2.3"
  3130. },
  3131. "type": "library",
  3132. "autoload": {
  3133. "files": [
  3134. "src/functions.php"
  3135. ],
  3136. "psr-4": {
  3137. "Drupal\\Console\\Core\\": "src"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "GPL-2.0-or-later"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "David Flores",
  3147. "email": "dmousex@gmail.com",
  3148. "homepage": "http://dmouse.net"
  3149. },
  3150. {
  3151. "name": "Jesus Manuel Olivas",
  3152. "email": "jesus.olivas@gmail.com",
  3153. "homepage": "http://jmolivas.com"
  3154. },
  3155. {
  3156. "name": "Eduardo Garcia",
  3157. "email": "enzo@enzolutions.com",
  3158. "homepage": "http://enzolutions.com/"
  3159. },
  3160. {
  3161. "name": "Omar Aguirre",
  3162. "email": "omersguchigu@gmail.com"
  3163. },
  3164. {
  3165. "name": "Drupal Console Contributors",
  3166. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3167. }
  3168. ],
  3169. "description": "Drupal Console Core",
  3170. "homepage": "http://drupalconsole.com/",
  3171. "keywords": [
  3172. "console",
  3173. "development",
  3174. "drupal",
  3175. "symfony"
  3176. ],
  3177. "time": "2019-11-11T19:26:28+00:00"
  3178. },
  3179. {
  3180. "name": "drupal/console-en",
  3181. "version": "1.9.4",
  3182. "source": {
  3183. "type": "git",
  3184. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3185. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  3186. },
  3187. "dist": {
  3188. "type": "zip",
  3189. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3190. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3191. "shasum": ""
  3192. },
  3193. "type": "library",
  3194. "notification-url": "https://packagist.org/downloads/",
  3195. "license": [
  3196. "GPL-2.0-or-later"
  3197. ],
  3198. "authors": [
  3199. {
  3200. "name": "David Flores",
  3201. "email": "dmousex@gmail.com",
  3202. "homepage": "http://dmouse.net"
  3203. },
  3204. {
  3205. "name": "Jesus Manuel Olivas",
  3206. "email": "jesus.olivas@gmail.com",
  3207. "homepage": "http://jmolivas.com"
  3208. },
  3209. {
  3210. "name": "Eduardo Garcia",
  3211. "email": "enzo@enzolutions.com",
  3212. "homepage": "http://enzolutions.com/"
  3213. },
  3214. {
  3215. "name": "Omar Aguirre",
  3216. "email": "omersguchigu@gmail.com"
  3217. },
  3218. {
  3219. "name": "Drupal Console Contributors",
  3220. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3221. }
  3222. ],
  3223. "description": "Drupal Console English Language",
  3224. "homepage": "http://drupalconsole.com/",
  3225. "keywords": [
  3226. "console",
  3227. "development",
  3228. "drupal",
  3229. "symfony"
  3230. ],
  3231. "time": "2019-10-07T23:45:30+00:00"
  3232. },
  3233. {
  3234. "name": "drupal/console-extend-plugin",
  3235. "version": "0.9.3",
  3236. "source": {
  3237. "type": "git",
  3238. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3239. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  3240. },
  3241. "dist": {
  3242. "type": "zip",
  3243. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3244. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3245. "shasum": ""
  3246. },
  3247. "require": {
  3248. "composer-plugin-api": "^1.0",
  3249. "composer/installers": "^1.2",
  3250. "symfony/finder": "~2.7|~3.0",
  3251. "symfony/yaml": "~2.7|~3.0"
  3252. },
  3253. "type": "composer-plugin",
  3254. "extra": {
  3255. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3256. },
  3257. "autoload": {
  3258. "psr-4": {
  3259. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3260. }
  3261. },
  3262. "notification-url": "https://packagist.org/downloads/",
  3263. "license": [
  3264. "GPL-2.0+"
  3265. ],
  3266. "authors": [
  3267. {
  3268. "name": "Jesus Manuel Olivas",
  3269. "email": "jesus.olivas@gmail.com"
  3270. }
  3271. ],
  3272. "description": "Drupal Console Extend Plugin",
  3273. "time": "2019-11-07T20:15:27+00:00"
  3274. },
  3275. {
  3276. "name": "drupal/context",
  3277. "version": "4.0.0-beta2",
  3278. "source": {
  3279. "type": "git",
  3280. "url": "https://git.drupalcode.org/project/context.git",
  3281. "reference": "8.x-4.0-beta2"
  3282. },
  3283. "dist": {
  3284. "type": "zip",
  3285. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3286. "reference": "8.x-4.0-beta2",
  3287. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3288. },
  3289. "require": {
  3290. "drupal/core": "~8.0"
  3291. },
  3292. "type": "drupal-module",
  3293. "extra": {
  3294. "branch-alias": {
  3295. "dev-4.x": "4.x-dev"
  3296. },
  3297. "drupal": {
  3298. "version": "8.x-4.0-beta2",
  3299. "datestamp": "1505378944",
  3300. "security-coverage": {
  3301. "status": "not-covered",
  3302. "message": "Beta releases are not covered by Drupal security advisories."
  3303. }
  3304. }
  3305. },
  3306. "notification-url": "https://packages.drupal.org/8/downloads",
  3307. "license": [
  3308. "MIT"
  3309. ],
  3310. "authors": [
  3311. {
  3312. "name": "Christoffer Palm",
  3313. "homepage": "http://www.oddhill.se/",
  3314. "email": "christoffer.palm@oddhill.se",
  3315. "role": "Developer"
  3316. },
  3317. {
  3318. "name": "Steven Jones",
  3319. "homepage": "https://www.drupal.org/user/99644"
  3320. },
  3321. {
  3322. "name": "alex_b",
  3323. "homepage": "https://www.drupal.org/user/53995"
  3324. },
  3325. {
  3326. "name": "boshtian",
  3327. "homepage": "https://www.drupal.org/user/1773456"
  3328. },
  3329. {
  3330. "name": "colan",
  3331. "homepage": "https://www.drupal.org/user/58704"
  3332. },
  3333. {
  3334. "name": "emanaton",
  3335. "homepage": "https://www.drupal.org/user/120853"
  3336. },
  3337. {
  3338. "name": "febbraro",
  3339. "homepage": "https://www.drupal.org/user/43670"
  3340. },
  3341. {
  3342. "name": "fizk",
  3343. "homepage": "https://www.drupal.org/user/473174"
  3344. },
  3345. {
  3346. "name": "hass",
  3347. "homepage": "https://www.drupal.org/user/85918"
  3348. },
  3349. {
  3350. "name": "hefox",
  3351. "homepage": "https://www.drupal.org/user/426416"
  3352. },
  3353. {
  3354. "name": "hyrcan",
  3355. "homepage": "https://www.drupal.org/user/26618"
  3356. },
  3357. {
  3358. "name": "jmiccolis",
  3359. "homepage": "https://www.drupal.org/user/31731"
  3360. },
  3361. {
  3362. "name": "nedjo",
  3363. "homepage": "https://www.drupal.org/user/4481"
  3364. },
  3365. {
  3366. "name": "tekante",
  3367. "homepage": "https://www.drupal.org/user/640024"
  3368. },
  3369. {
  3370. "name": "yhahn",
  3371. "homepage": "https://www.drupal.org/user/264833"
  3372. }
  3373. ],
  3374. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3375. "homepage": "https://github.com/oddhill/context",
  3376. "keywords": [
  3377. "Drupal",
  3378. "block",
  3379. "conditions",
  3380. "context",
  3381. "visibility"
  3382. ],
  3383. "support": {
  3384. "source": "https://github.com/oddhill/context",
  3385. "issues": "https://github.com/oddhill/context/issues",
  3386. "docs": "https://github.com/oddhill/context"
  3387. }
  3388. },
  3389. {
  3390. "name": "drupal/core",
  3391. "version": "8.7.14",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://github.com/drupal/core.git",
  3395. "reference": "3ff1fbdd6e9ba8c778d8111e1f06c8a71113b326"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://api.github.com/repos/drupal/core/zipball/3ff1fbdd6e9ba8c778d8111e1f06c8a71113b326",
  3400. "reference": "3ff1fbdd6e9ba8c778d8111e1f06c8a71113b326",
  3401. "shasum": ""
  3402. },
  3403. "require": {
  3404. "asm89/stack-cors": "^1.1",
  3405. "composer/semver": "^1.0",
  3406. "doctrine/annotations": "^1.2",
  3407. "doctrine/common": "^2.5",
  3408. "easyrdf/easyrdf": "^0.9",
  3409. "egulias/email-validator": "^2.0",
  3410. "ext-date": "*",
  3411. "ext-dom": "*",
  3412. "ext-filter": "*",
  3413. "ext-gd": "*",
  3414. "ext-hash": "*",
  3415. "ext-json": "*",
  3416. "ext-pcre": "*",
  3417. "ext-pdo": "*",
  3418. "ext-session": "*",
  3419. "ext-simplexml": "*",
  3420. "ext-spl": "*",
  3421. "ext-tokenizer": "*",
  3422. "ext-xml": "*",
  3423. "guzzlehttp/guzzle": "^6.2.1",
  3424. "masterminds/html5": "^2.1",
  3425. "paragonie/random_compat": "^1.0|^2.0|^9.99.99",
  3426. "pear/archive_tar": "^1.4.9",
  3427. "php": "^5.5.9|>=7.0.8",
  3428. "stack/builder": "^1.0",
  3429. "symfony-cmf/routing": "^1.4",
  3430. "symfony/class-loader": "~3.4.0",
  3431. "symfony/console": "~3.4.0",
  3432. "symfony/dependency-injection": "~3.4.26",
  3433. "symfony/event-dispatcher": "~3.4.0",
  3434. "symfony/http-foundation": "~3.4.27",
  3435. "symfony/http-kernel": "~3.4.14",
  3436. "symfony/polyfill-iconv": "^1.0",
  3437. "symfony/process": "~3.4.0",
  3438. "symfony/psr-http-message-bridge": "^1.1.2",
  3439. "symfony/routing": "~3.4.0",
  3440. "symfony/serializer": "~3.4.0",
  3441. "symfony/translation": "~3.4.0",
  3442. "symfony/validator": "~3.4.0",
  3443. "symfony/yaml": "~3.4.5",
  3444. "twig/twig": "^1.38.2",
  3445. "typo3/phar-stream-wrapper": "^2.1.1",
  3446. "zendframework/zend-diactoros": "^1.1",
  3447. "zendframework/zend-feed": "^2.4"
  3448. },
  3449. "conflict": {
  3450. "drush/drush": "<8.1.10",
  3451. "symfony/dom-crawler": ">=4"
  3452. },
  3453. "replace": {
  3454. "drupal/action": "self.version",
  3455. "drupal/aggregator": "self.version",
  3456. "drupal/automated_cron": "self.version",
  3457. "drupal/ban": "self.version",
  3458. "drupal/bartik": "self.version",
  3459. "drupal/basic_auth": "self.version",
  3460. "drupal/big_pipe": "self.version",
  3461. "drupal/block": "self.version",
  3462. "drupal/block_content": "self.version",
  3463. "drupal/block_place": "self.version",
  3464. "drupal/book": "self.version",
  3465. "drupal/breakpoint": "self.version",
  3466. "drupal/ckeditor": "self.version",
  3467. "drupal/classy": "self.version",
  3468. "drupal/color": "self.version",
  3469. "drupal/comment": "self.version",
  3470. "drupal/config": "self.version",
  3471. "drupal/config_translation": "self.version",
  3472. "drupal/contact": "self.version",
  3473. "drupal/content_moderation": "self.version",
  3474. "drupal/content_translation": "self.version",
  3475. "drupal/contextual": "self.version",
  3476. "drupal/core-annotation": "self.version",
  3477. "drupal/core-assertion": "self.version",
  3478. "drupal/core-bridge": "self.version",
  3479. "drupal/core-class-finder": "self.version",
  3480. "drupal/core-datetime": "self.version",
  3481. "drupal/core-dependency-injection": "self.version",
  3482. "drupal/core-diff": "self.version",
  3483. "drupal/core-discovery": "self.version",
  3484. "drupal/core-event-dispatcher": "self.version",
  3485. "drupal/core-file-cache": "self.version",
  3486. "drupal/core-filesystem": "self.version",
  3487. "drupal/core-gettext": "self.version",
  3488. "drupal/core-graph": "self.version",
  3489. "drupal/core-http-foundation": "self.version",
  3490. "drupal/core-php-storage": "self.version",
  3491. "drupal/core-plugin": "self.version",
  3492. "drupal/core-proxy-builder": "self.version",
  3493. "drupal/core-render": "self.version",
  3494. "drupal/core-serialization": "self.version",
  3495. "drupal/core-transliteration": "self.version",
  3496. "drupal/core-utility": "self.version",
  3497. "drupal/core-uuid": "self.version",
  3498. "drupal/core-version": "self.version",
  3499. "drupal/datetime": "self.version",
  3500. "drupal/datetime_range": "self.version",
  3501. "drupal/dblog": "self.version",
  3502. "drupal/dynamic_page_cache": "self.version",
  3503. "drupal/editor": "self.version",
  3504. "drupal/entity_reference": "self.version",
  3505. "drupal/field": "self.version",
  3506. "drupal/field_layout": "self.version",
  3507. "drupal/field_ui": "self.version",
  3508. "drupal/file": "self.version",
  3509. "drupal/filter": "self.version",
  3510. "drupal/forum": "self.version",
  3511. "drupal/hal": "self.version",
  3512. "drupal/help": "self.version",
  3513. "drupal/history": "self.version",
  3514. "drupal/image": "self.version",
  3515. "drupal/inline_form_errors": "self.version",
  3516. "drupal/jsonapi": "self.version",
  3517. "drupal/language": "self.version",
  3518. "drupal/layout_builder": "self.version",
  3519. "drupal/layout_discovery": "self.version",
  3520. "drupal/link": "self.version",
  3521. "drupal/locale": "self.version",
  3522. "drupal/media": "self.version",
  3523. "drupal/media_library": "self.version",
  3524. "drupal/menu_link_content": "self.version",
  3525. "drupal/menu_ui": "self.version",
  3526. "drupal/migrate": "self.version",
  3527. "drupal/migrate_drupal": "self.version",
  3528. "drupal/migrate_drupal_multilingual": "self.version",
  3529. "drupal/migrate_drupal_ui": "self.version",
  3530. "drupal/minimal": "self.version",
  3531. "drupal/node": "self.version",
  3532. "drupal/options": "self.version",
  3533. "drupal/page_cache": "self.version",
  3534. "drupal/path": "self.version",
  3535. "drupal/quickedit": "self.version",
  3536. "drupal/rdf": "self.version",
  3537. "drupal/responsive_image": "self.version",
  3538. "drupal/rest": "self.version",
  3539. "drupal/search": "self.version",
  3540. "drupal/serialization": "self.version",
  3541. "drupal/settings_tray": "self.version",
  3542. "drupal/seven": "self.version",
  3543. "drupal/shortcut": "self.version",
  3544. "drupal/simpletest": "self.version",
  3545. "drupal/standard": "self.version",
  3546. "drupal/stark": "self.version",
  3547. "drupal/statistics": "self.version",
  3548. "drupal/syslog": "self.version",
  3549. "drupal/system": "self.version",
  3550. "drupal/taxonomy": "self.version",
  3551. "drupal/telephone": "self.version",
  3552. "drupal/text": "self.version",
  3553. "drupal/toolbar": "self.version",
  3554. "drupal/tour": "self.version",
  3555. "drupal/tracker": "self.version",
  3556. "drupal/update": "self.version",
  3557. "drupal/user": "self.version",
  3558. "drupal/views": "self.version",
  3559. "drupal/views_ui": "self.version",
  3560. "drupal/workflows": "self.version",
  3561. "drupal/workspaces": "self.version"
  3562. },
  3563. "require-dev": {
  3564. "behat/mink": "1.7.x-dev",
  3565. "behat/mink-goutte-driver": "^1.2",
  3566. "behat/mink-selenium2-driver": "1.3.x-dev",
  3567. "drupal/coder": "^8.3.1",
  3568. "jcalderonzumba/gastonjs": "^1.0.2",
  3569. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3570. "justinrainbow/json-schema": "^5.2",
  3571. "mikey179/vfsstream": "^1.2",
  3572. "phpspec/prophecy": "^1.7",
  3573. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3574. "symfony/css-selector": "^3.4.0",
  3575. "symfony/debug": "^3.4.0",
  3576. "symfony/phpunit-bridge": "^3.4.3"
  3577. },
  3578. "type": "drupal-core",
  3579. "extra": {
  3580. "merge-plugin": {
  3581. "require": [
  3582. "core/lib/Drupal/Component/Annotation/composer.json",
  3583. "core/lib/Drupal/Component/Assertion/composer.json",
  3584. "core/lib/Drupal/Component/Bridge/composer.json",
  3585. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3586. "core/lib/Drupal/Component/Datetime/composer.json",
  3587. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3588. "core/lib/Drupal/Component/Diff/composer.json",
  3589. "core/lib/Drupal/Component/Discovery/composer.json",
  3590. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3591. "core/lib/Drupal/Component/FileCache/composer.json",
  3592. "core/lib/Drupal/Component/FileSystem/composer.json",
  3593. "core/lib/Drupal/Component/Gettext/composer.json",
  3594. "core/lib/Drupal/Component/Graph/composer.json",
  3595. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3596. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3597. "core/lib/Drupal/Component/Plugin/composer.json",
  3598. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3599. "core/lib/Drupal/Component/Render/composer.json",
  3600. "core/lib/Drupal/Component/Serialization/composer.json",
  3601. "core/lib/Drupal/Component/Transliteration/composer.json",
  3602. "core/lib/Drupal/Component/Utility/composer.json",
  3603. "core/lib/Drupal/Component/Uuid/composer.json",
  3604. "core/lib/Drupal/Component/Version/composer.json"
  3605. ],
  3606. "recurse": false,
  3607. "replace": false,
  3608. "merge-extra": false
  3609. }
  3610. },
  3611. "autoload": {
  3612. "psr-4": {
  3613. "Drupal\\Core\\": "lib/Drupal/Core",
  3614. "Drupal\\Component\\": "lib/Drupal/Component",
  3615. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3616. },
  3617. "classmap": [
  3618. "lib/Drupal.php",
  3619. "lib/Drupal/Component/Utility/Timer.php",
  3620. "lib/Drupal/Component/Utility/Unicode.php",
  3621. "lib/Drupal/Core/Database/Database.php",
  3622. "lib/Drupal/Core/DrupalKernel.php",
  3623. "lib/Drupal/Core/DrupalKernelInterface.php",
  3624. "lib/Drupal/Core/Site/Settings.php"
  3625. ]
  3626. },
  3627. "notification-url": "https://packagist.org/downloads/",
  3628. "license": [
  3629. "GPL-2.0-or-later"
  3630. ],
  3631. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3632. "time": "2020-05-20T08:22:34+00:00"
  3633. },
  3634. {
  3635. "name": "drupal/ctools",
  3636. "version": "3.2.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://git.drupalcode.org/project/ctools.git",
  3640. "reference": "8.x-3.2"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3645. "reference": "8.x-3.2",
  3646. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3647. },
  3648. "require": {
  3649. "drupal/core": "^8.5"
  3650. },
  3651. "type": "drupal-module",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-3.x": "3.x-dev"
  3655. },
  3656. "drupal": {
  3657. "version": "8.x-3.2",
  3658. "datestamp": "1550728386",
  3659. "security-coverage": {
  3660. "status": "covered",
  3661. "message": "Covered by Drupal's security advisory policy"
  3662. }
  3663. }
  3664. },
  3665. "notification-url": "https://packages.drupal.org/8/downloads",
  3666. "license": [
  3667. "GPL-2.0+"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Kris Vanderwater (EclipseGc)",
  3672. "homepage": "https://www.drupal.org/u/eclipsegc",
  3673. "role": "Maintainer"
  3674. },
  3675. {
  3676. "name": "Jakob Perry (japerry)",
  3677. "homepage": "https://www.drupal.org/u/japerry",
  3678. "role": "Maintainer"
  3679. },
  3680. {
  3681. "name": "Tim Plunkett (tim.plunkett)",
  3682. "homepage": "https://www.drupal.org/u/timplunkett",
  3683. "role": "Maintainer"
  3684. },
  3685. {
  3686. "name": "James Gilliland (neclimdul)",
  3687. "homepage": "https://www.drupal.org/u/neclimdul",
  3688. "role": "Maintainer"
  3689. },
  3690. {
  3691. "name": "Daniel Wehner (dawehner)",
  3692. "homepage": "https://www.drupal.org/u/dawehner",
  3693. "role": "Maintainer"
  3694. },
  3695. {
  3696. "name": "joelpittet",
  3697. "homepage": "https://www.drupal.org/user/160302"
  3698. },
  3699. {
  3700. "name": "merlinofchaos",
  3701. "homepage": "https://www.drupal.org/user/26979"
  3702. },
  3703. {
  3704. "name": "neclimdul",
  3705. "homepage": "https://www.drupal.org/user/48673"
  3706. },
  3707. {
  3708. "name": "sdboyer",
  3709. "homepage": "https://www.drupal.org/user/146719"
  3710. },
  3711. {
  3712. "name": "sun",
  3713. "homepage": "https://www.drupal.org/user/54136"
  3714. },
  3715. {
  3716. "name": "tim.plunkett",
  3717. "homepage": "https://www.drupal.org/user/241634"
  3718. }
  3719. ],
  3720. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3721. "homepage": "https://www.drupal.org/project/ctools",
  3722. "support": {
  3723. "source": "http://cgit.drupalcode.org/ctools",
  3724. "issues": "https://www.drupal.org/project/issues/ctools"
  3725. }
  3726. },
  3727. {
  3728. "name": "drupal/date_range_formatter",
  3729. "version": "3.1.0",
  3730. "source": {
  3731. "type": "git",
  3732. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3733. "reference": "8.x-3.1"
  3734. },
  3735. "dist": {
  3736. "type": "zip",
  3737. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3738. "reference": "8.x-3.1",
  3739. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3740. },
  3741. "require": {
  3742. "drupal/core": "*"
  3743. },
  3744. "type": "drupal-module",
  3745. "extra": {
  3746. "branch-alias": {
  3747. "dev-3.x": "3.x-dev"
  3748. },
  3749. "drupal": {
  3750. "version": "8.x-3.1",
  3751. "datestamp": "1502454544",
  3752. "security-coverage": {
  3753. "status": "covered",
  3754. "message": "Covered by Drupal's security advisory policy"
  3755. }
  3756. }
  3757. },
  3758. "notification-url": "https://packages.drupal.org/8/downloads",
  3759. "license": [
  3760. "GPL-2.0-or-later"
  3761. ],
  3762. "authors": [
  3763. {
  3764. "name": "maximpodorov",
  3765. "homepage": "https://www.drupal.org/user/515310"
  3766. },
  3767. {
  3768. "name": "sudishth",
  3769. "homepage": "https://www.drupal.org/user/1440562"
  3770. }
  3771. ],
  3772. "description": "Formats date ranges.",
  3773. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3774. "support": {
  3775. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3776. }
  3777. },
  3778. {
  3779. "name": "drupal/devel",
  3780. "version": "2.1.0",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://git.drupalcode.org/project/devel.git",
  3784. "reference": "8.x-2.1"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3789. "reference": "8.x-2.1",
  3790. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3791. },
  3792. "require": {
  3793. "drupal/core": "~8.0",
  3794. "symfony/var-dumper": "~2.7|^3|^4"
  3795. },
  3796. "type": "drupal-module",
  3797. "extra": {
  3798. "branch-alias": {
  3799. "dev-2.x": "2.x-dev"
  3800. },
  3801. "drupal": {
  3802. "version": "8.x-2.1",
  3803. "datestamp": "1556799496",
  3804. "security-coverage": {
  3805. "status": "covered",
  3806. "message": "Covered by Drupal's security advisory policy"
  3807. }
  3808. },
  3809. "drush": {
  3810. "services": {
  3811. "drush.services.yml": "^9"
  3812. }
  3813. }
  3814. },
  3815. "notification-url": "https://packages.drupal.org/8/downloads",
  3816. "license": [
  3817. "GPL-2.0+"
  3818. ],
  3819. "authors": [
  3820. {
  3821. "name": "Moshe Weitzman",
  3822. "homepage": "https://github.com/weitzman",
  3823. "email": "weitzman@tejasa.com",
  3824. "role": "Maintainer"
  3825. },
  3826. {
  3827. "name": "Hans Salvisberg",
  3828. "homepage": "https://www.drupal.org/u/salvis",
  3829. "email": "drupal@salvisberg.com",
  3830. "role": "Maintainer"
  3831. },
  3832. {
  3833. "name": "Luca Lusso",
  3834. "homepage": "https://www.drupal.org/u/lussoluca",
  3835. "role": "Maintainer"
  3836. },
  3837. {
  3838. "name": "Marco (willzyx)",
  3839. "homepage": "https://www.drupal.org/u/willzyx",
  3840. "role": "Maintainer"
  3841. },
  3842. {
  3843. "name": "See contributors",
  3844. "homepage": "https://www.drupal.org/node/3236/committers"
  3845. },
  3846. {
  3847. "name": "pcambra",
  3848. "homepage": "https://www.drupal.org/user/122101"
  3849. },
  3850. {
  3851. "name": "salvis",
  3852. "homepage": "https://www.drupal.org/user/82964"
  3853. },
  3854. {
  3855. "name": "willzyx",
  3856. "homepage": "https://www.drupal.org/user/1043862"
  3857. }
  3858. ],
  3859. "description": "Various blocks, pages, and functions for developers.",
  3860. "homepage": "http://drupal.org/project/devel",
  3861. "support": {
  3862. "source": "http://cgit.drupalcode.org/devel",
  3863. "issues": "http://drupal.org/project/devel",
  3864. "irc": "irc://irc.freenode.org/drupal-contribute"
  3865. }
  3866. },
  3867. {
  3868. "name": "drupal/domain",
  3869. "version": "1.0.0-alpha16",
  3870. "source": {
  3871. "type": "git",
  3872. "url": "https://git.drupalcode.org/project/domain.git",
  3873. "reference": "8.x-1.0-alpha16"
  3874. },
  3875. "dist": {
  3876. "type": "zip",
  3877. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3878. "reference": "8.x-1.0-alpha16",
  3879. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3880. },
  3881. "require": {
  3882. "drupal/core": "^8.5"
  3883. },
  3884. "require-dev": {
  3885. "drupal/domain_access": "*"
  3886. },
  3887. "type": "drupal-module",
  3888. "extra": {
  3889. "branch-alias": {
  3890. "dev-1.x": "1.x-dev"
  3891. },
  3892. "drupal": {
  3893. "version": "8.x-1.0-alpha16",
  3894. "datestamp": "1561126081",
  3895. "security-coverage": {
  3896. "status": "not-covered",
  3897. "message": "Alpha releases are not covered by Drupal security advisories."
  3898. }
  3899. }
  3900. },
  3901. "notification-url": "https://packages.drupal.org/8/downloads",
  3902. "license": [
  3903. "GPL-2.0-or-later"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "agentrickard",
  3908. "homepage": "https://www.drupal.org/user/20975"
  3909. },
  3910. {
  3911. "name": "nonsie",
  3912. "homepage": "https://www.drupal.org/user/29899"
  3913. }
  3914. ],
  3915. "description": "Creates domain records within a Drupal installation.",
  3916. "homepage": "https://www.drupal.org/project/domain",
  3917. "support": {
  3918. "source": "https://git.drupalcode.org/project/domain"
  3919. }
  3920. },
  3921. {
  3922. "name": "drupal/domain_access",
  3923. "version": "1.0.0-alpha16",
  3924. "require": {
  3925. "drupal/core": "*",
  3926. "drupal/domain": "self.version"
  3927. },
  3928. "type": "metapackage",
  3929. "extra": {
  3930. "branch-alias": {
  3931. "dev-1.x": "1.x-dev"
  3932. },
  3933. "drupal": {
  3934. "version": "8.x-1.0-alpha16",
  3935. "datestamp": "1561126081",
  3936. "security-coverage": {
  3937. "status": "not-covered",
  3938. "message": "Alpha releases are not covered by Drupal security advisories."
  3939. }
  3940. }
  3941. },
  3942. "notification-url": "https://packages.drupal.org/8/downloads",
  3943. "license": [
  3944. "GPL-2.0-or-later"
  3945. ],
  3946. "authors": [
  3947. {
  3948. "name": "agentrickard",
  3949. "homepage": "https://www.drupal.org/user/20975"
  3950. },
  3951. {
  3952. "name": "nonsie",
  3953. "homepage": "https://www.drupal.org/user/29899"
  3954. }
  3955. ],
  3956. "description": "Domain-based access control for content.",
  3957. "homepage": "https://www.drupal.org/project/domain",
  3958. "support": {
  3959. "source": "https://git.drupalcode.org/project/domain"
  3960. }
  3961. },
  3962. {
  3963. "name": "drupal/domain_config",
  3964. "version": "1.0.0-alpha16",
  3965. "require": {
  3966. "drupal/core": "~8.0",
  3967. "drupal/domain": "self.version"
  3968. },
  3969. "type": "metapackage",
  3970. "extra": {
  3971. "branch-alias": {
  3972. "dev-1.x": "1.x-dev"
  3973. },
  3974. "drupal": {
  3975. "version": "8.x-1.0-alpha16",
  3976. "datestamp": "1561126081",
  3977. "security-coverage": {
  3978. "status": "not-covered",
  3979. "message": "Alpha releases are not covered by Drupal security advisories."
  3980. }
  3981. }
  3982. },
  3983. "notification-url": "https://packages.drupal.org/8/downloads",
  3984. "license": [
  3985. "GPL-2.0-or-later"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "agentrickard",
  3990. "homepage": "https://www.drupal.org/user/20975"
  3991. },
  3992. {
  3993. "name": "nonsie",
  3994. "homepage": "https://www.drupal.org/user/29899"
  3995. }
  3996. ],
  3997. "description": "Allows domain specific configuration.",
  3998. "homepage": "https://www.drupal.org/project/domain",
  3999. "support": {
  4000. "source": "https://git.drupalcode.org/project/domain"
  4001. }
  4002. },
  4003. {
  4004. "name": "drupal/domain_menu_access",
  4005. "version": "dev-1.x",
  4006. "source": {
  4007. "type": "git",
  4008. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  4009. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  4010. },
  4011. "require": {
  4012. "drupal/core": "~8.0",
  4013. "drupal/domain": "^1",
  4014. "drupal/domain_access": "^1"
  4015. },
  4016. "type": "drupal-module",
  4017. "extra": {
  4018. "branch-alias": {
  4019. "dev-1.x": "1.x-dev"
  4020. },
  4021. "drupal": {
  4022. "version": "8.x-1.0-alpha2+3-dev",
  4023. "datestamp": "1551553085",
  4024. "security-coverage": {
  4025. "status": "not-covered",
  4026. "message": "Dev releases are not covered by Drupal security advisories."
  4027. }
  4028. }
  4029. },
  4030. "notification-url": "https://packages.drupal.org/8/downloads",
  4031. "license": [
  4032. "GPL-2.0+"
  4033. ],
  4034. "authors": [
  4035. {
  4036. "name": "Sebastien @Actualys",
  4037. "homepage": "https://www.drupal.org/user/380104"
  4038. },
  4039. {
  4040. "name": "maciej.zgadzaj",
  4041. "homepage": "https://www.drupal.org/user/271491"
  4042. },
  4043. {
  4044. "name": "pifagor",
  4045. "homepage": "https://www.drupal.org/user/2375692"
  4046. }
  4047. ],
  4048. "description": "Domain-based access control for menu link.",
  4049. "homepage": "https://www.drupal.org/project/domain_menu_access",
  4050. "support": {
  4051. "source": "https://git.drupalcode.org/project/domain_menu_access"
  4052. },
  4053. "time": "2019-04-11T06:07:16+00:00"
  4054. },
  4055. {
  4056. "name": "drupal/domain_site_settings",
  4057. "version": "1.3.0",
  4058. "source": {
  4059. "type": "git",
  4060. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4061. "reference": "8.x-1.3"
  4062. },
  4063. "dist": {
  4064. "type": "zip",
  4065. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4066. "reference": "8.x-1.3",
  4067. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4068. },
  4069. "require": {
  4070. "drupal/core": "~8.0",
  4071. "drupal/domain": "*",
  4072. "drupal/domain_config": "*"
  4073. },
  4074. "type": "drupal-module",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-1.x": "1.x-dev"
  4078. },
  4079. "drupal": {
  4080. "version": "8.x-1.3",
  4081. "datestamp": "1537684980",
  4082. "security-coverage": {
  4083. "status": "covered",
  4084. "message": "Covered by Drupal's security advisory policy"
  4085. }
  4086. },
  4087. "patches_applied": {
  4088. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  4089. }
  4090. },
  4091. "notification-url": "https://packages.drupal.org/8/downloads",
  4092. "license": [
  4093. "GPL-2.0+"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "aloknarwaria",
  4098. "homepage": "https://www.drupal.org/user/906640"
  4099. },
  4100. {
  4101. "name": "malaynayak",
  4102. "homepage": "https://www.drupal.org/user/3529755"
  4103. }
  4104. ],
  4105. "description": "Basic Site Setting for Domains.",
  4106. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4107. "keywords": [
  4108. "Drupal"
  4109. ],
  4110. "support": {
  4111. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4112. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4113. }
  4114. },
  4115. {
  4116. "name": "drupal/email_registration",
  4117. "version": "1.0.0-rc7",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://git.drupalcode.org/project/email_registration.git",
  4121. "reference": "8.x-1.0-rc7"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc7.zip",
  4126. "reference": "8.x-1.0-rc7",
  4127. "shasum": "a3ebc1e38539e7916f48e827d5bd7b1abeef0011"
  4128. },
  4129. "require": {
  4130. "drupal/core": "*"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "branch-alias": {
  4135. "dev-1.x": "1.x-dev"
  4136. },
  4137. "drupal": {
  4138. "version": "8.x-1.0-rc7",
  4139. "datestamp": "1557344281",
  4140. "security-coverage": {
  4141. "status": "not-covered",
  4142. "message": "RC releases are not covered by Drupal security advisories."
  4143. }
  4144. }
  4145. },
  4146. "notification-url": "https://packages.drupal.org/8/downloads",
  4147. "license": [
  4148. "GPL-2.0+"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "Greg Knaddison (greggles)",
  4153. "homepage": "https://www.drupal.org/u/greggles",
  4154. "role": "Maintainer"
  4155. },
  4156. {
  4157. "name": "Andrey Postnikov (andypost)",
  4158. "homepage": "https://www.drupal.org/u/andypost",
  4159. "role": "Maintainer"
  4160. },
  4161. {
  4162. "name": "Chris Herberte",
  4163. "homepage": "https://www.drupal.org/u/chris-herberte",
  4164. "role": "Maintainer"
  4165. },
  4166. {
  4167. "name": "Moshe Weitzman (moshe weitzman)",
  4168. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4169. "role": "Maintainer"
  4170. }
  4171. ],
  4172. "description": "Allows users to register with an email address as their username.",
  4173. "homepage": "https://www.drupal.org/project/email_registration",
  4174. "support": {
  4175. "source": "http://cgit.drupalcode.org/email_registration",
  4176. "issues": "http://drupal.org/project/issues/email_registration"
  4177. }
  4178. },
  4179. {
  4180. "name": "drupal/entity",
  4181. "version": "1.0.0-rc3",
  4182. "source": {
  4183. "type": "git",
  4184. "url": "https://git.drupalcode.org/project/entity.git",
  4185. "reference": "8.x-1.0-rc3"
  4186. },
  4187. "dist": {
  4188. "type": "zip",
  4189. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc3.zip",
  4190. "reference": "8.x-1.0-rc3",
  4191. "shasum": "6b4ccc0231c52ed9594502a0718057f53d98404d"
  4192. },
  4193. "require": {
  4194. "drupal/core": "^8.6"
  4195. },
  4196. "type": "drupal-module",
  4197. "extra": {
  4198. "branch-alias": {
  4199. "dev-1.x": "1.x-dev"
  4200. },
  4201. "drupal": {
  4202. "version": "8.x-1.0-rc3",
  4203. "datestamp": "1559579884",
  4204. "security-coverage": {
  4205. "status": "not-covered",
  4206. "message": "RC releases are not covered by Drupal security advisories."
  4207. }
  4208. }
  4209. },
  4210. "notification-url": "https://packages.drupal.org/8/downloads",
  4211. "license": [
  4212. "GPL-2.0+"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "Berdir",
  4217. "homepage": "https://www.drupal.org/user/214652"
  4218. },
  4219. {
  4220. "name": "bojanz",
  4221. "homepage": "https://www.drupal.org/user/86106"
  4222. },
  4223. {
  4224. "name": "dawehner",
  4225. "homepage": "https://www.drupal.org/user/99340"
  4226. },
  4227. {
  4228. "name": "dixon_",
  4229. "homepage": "https://www.drupal.org/user/239911"
  4230. },
  4231. {
  4232. "name": "fago",
  4233. "homepage": "https://www.drupal.org/user/16747"
  4234. }
  4235. ],
  4236. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4237. "homepage": "http://drupal.org/project/entity",
  4238. "support": {
  4239. "source": "https://git.drupalcode.org/project/entity"
  4240. }
  4241. },
  4242. {
  4243. "name": "drupal/features",
  4244. "version": "3.8.0",
  4245. "source": {
  4246. "type": "git",
  4247. "url": "https://git.drupalcode.org/project/features.git",
  4248. "reference": "8.x-3.8"
  4249. },
  4250. "dist": {
  4251. "type": "zip",
  4252. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  4253. "reference": "8.x-3.8",
  4254. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  4255. },
  4256. "require": {
  4257. "drupal/config_update": "^1.4",
  4258. "drupal/core": "*"
  4259. },
  4260. "type": "drupal-module",
  4261. "extra": {
  4262. "branch-alias": {
  4263. "dev-3.x": "3.x-dev"
  4264. },
  4265. "drupal": {
  4266. "version": "8.x-3.8",
  4267. "datestamp": "1536512284",
  4268. "security-coverage": {
  4269. "status": "covered",
  4270. "message": "Covered by Drupal's security advisory policy"
  4271. }
  4272. },
  4273. "drush": {
  4274. "services": {
  4275. "drush.services.yml": "^9"
  4276. }
  4277. }
  4278. },
  4279. "notification-url": "https://packages.drupal.org/8/downloads",
  4280. "license": [
  4281. "GPL-2.0+"
  4282. ],
  4283. "authors": [
  4284. {
  4285. "name": "dawehner",
  4286. "homepage": "https://www.drupal.org/user/99340"
  4287. },
  4288. {
  4289. "name": "e2thex",
  4290. "homepage": "https://www.drupal.org/user/189123"
  4291. },
  4292. {
  4293. "name": "febbraro",
  4294. "homepage": "https://www.drupal.org/user/43670"
  4295. },
  4296. {
  4297. "name": "jmiccolis",
  4298. "homepage": "https://www.drupal.org/user/31731"
  4299. },
  4300. {
  4301. "name": "joseph.olstad",
  4302. "homepage": "https://www.drupal.org/user/1321830"
  4303. },
  4304. {
  4305. "name": "mpotter",
  4306. "homepage": "https://www.drupal.org/user/616192"
  4307. },
  4308. {
  4309. "name": "nedjo",
  4310. "homepage": "https://www.drupal.org/user/4481"
  4311. },
  4312. {
  4313. "name": "tim.plunkett",
  4314. "homepage": "https://www.drupal.org/user/241634"
  4315. }
  4316. ],
  4317. "description": "Enables administrators to package configuration into modules",
  4318. "homepage": "https://www.drupal.org/project/features",
  4319. "support": {
  4320. "source": "https://git.drupalcode.org/project/features"
  4321. }
  4322. },
  4323. {
  4324. "name": "drupal/field_group",
  4325. "version": "3.0.0-rc1",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://git.drupalcode.org/project/field_group.git",
  4329. "reference": "8.x-3.0-rc1"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip",
  4334. "reference": "8.x-3.0-rc1",
  4335. "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22"
  4336. },
  4337. "require": {
  4338. "drupal/core": "*"
  4339. },
  4340. "type": "drupal-module",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-3.x": "3.x-dev"
  4344. },
  4345. "drupal": {
  4346. "version": "8.x-3.0-rc1",
  4347. "datestamp": "1558678323",
  4348. "security-coverage": {
  4349. "status": "not-covered",
  4350. "message": "RC releases are not covered by Drupal security advisories."
  4351. }
  4352. }
  4353. },
  4354. "notification-url": "https://packages.drupal.org/8/downloads",
  4355. "license": [
  4356. "GPL-2.0+"
  4357. ],
  4358. "authors": [
  4359. {
  4360. "name": "Hydra",
  4361. "homepage": "https://www.drupal.org/user/647364"
  4362. },
  4363. {
  4364. "name": "Stalski",
  4365. "homepage": "https://www.drupal.org/user/322618"
  4366. },
  4367. {
  4368. "name": "jyve",
  4369. "homepage": "https://www.drupal.org/user/591438"
  4370. },
  4371. {
  4372. "name": "swentel",
  4373. "homepage": "https://www.drupal.org/user/107403"
  4374. },
  4375. {
  4376. "name": "zuuperman",
  4377. "homepage": "https://www.drupal.org/user/361625"
  4378. }
  4379. ],
  4380. "description": "Provides the field_group module.",
  4381. "homepage": "https://www.drupal.org/project/field_group",
  4382. "support": {
  4383. "source": "https://git.drupalcode.org/project/field_group"
  4384. }
  4385. },
  4386. {
  4387. "name": "drupal/filefield_sources",
  4388. "version": "dev-1.x",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4392. "reference": "6da74b585fcdc66bf5b1f5b3d9c6985df137fa2a"
  4393. },
  4394. "require": {
  4395. "drupal/core": "*"
  4396. },
  4397. "require-dev": {
  4398. "drupal/imce": "*"
  4399. },
  4400. "type": "drupal-module",
  4401. "extra": {
  4402. "branch-alias": {
  4403. "dev-1.x": "1.x-dev"
  4404. },
  4405. "drupal": {
  4406. "version": "8.x-1.0-alpha1+5-dev",
  4407. "datestamp": "1556769786",
  4408. "security-coverage": {
  4409. "status": "not-covered",
  4410. "message": "Dev releases are not covered by Drupal security advisories."
  4411. }
  4412. }
  4413. },
  4414. "notification-url": "https://packages.drupal.org/8/downloads",
  4415. "license": [
  4416. "GPL-2.0-or-later"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Nate Lampton (quicksketch)",
  4421. "homepage": "https://www.drupal.org/u/quicksketch",
  4422. "role": "Maintainer"
  4423. },
  4424. {
  4425. "name": "Andrey Khromyshev (profak)",
  4426. "homepage": "https://www.drupal.org/u/profak",
  4427. "role": "Maintainer"
  4428. },
  4429. {
  4430. "name": "David Valdez (gnuget)",
  4431. "homepage": "https://www.drupal.org/u/gnuget",
  4432. "role": "Maintainer"
  4433. }
  4434. ],
  4435. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4436. "homepage": "https://www.drupal.org/project/filefield_sources",
  4437. "support": {
  4438. "source": "https://git.drupalcode.org/project/filefield_sources",
  4439. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4440. "irc": "irc://irc.freenode.org/drupal-contribute"
  4441. },
  4442. "time": "2019-05-03T18:32:19+00:00"
  4443. },
  4444. {
  4445. "name": "drupal/filter_perms",
  4446. "version": "dev-1.x",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4450. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4451. },
  4452. "require": {
  4453. "drupal/core": "*"
  4454. },
  4455. "type": "drupal-module",
  4456. "extra": {
  4457. "branch-alias": {
  4458. "dev-1.x": "1.x-dev"
  4459. },
  4460. "drupal": {
  4461. "version": "8.x-1.x-dev",
  4462. "datestamp": "1469645939",
  4463. "security-coverage": {
  4464. "status": "not-covered",
  4465. "message": "Dev releases are not covered by Drupal security advisories."
  4466. }
  4467. }
  4468. },
  4469. "notification-url": "https://packages.drupal.org/8/downloads",
  4470. "license": [
  4471. "GPL-2.0-or-later"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "cYu",
  4476. "homepage": "https://www.drupal.org/user/202205"
  4477. },
  4478. {
  4479. "name": "deekayen",
  4480. "homepage": "https://www.drupal.org/user/972"
  4481. },
  4482. {
  4483. "name": "willzyx",
  4484. "homepage": "https://www.drupal.org/user/1043862"
  4485. }
  4486. ],
  4487. "description": "Provides role and module filters to simplify the user permissions page.",
  4488. "homepage": "https://www.drupal.org/project/filter_perms",
  4489. "support": {
  4490. "source": "https://git.drupalcode.org/project/filter_perms"
  4491. },
  4492. "time": "2016-07-27T19:01:11+00:00"
  4493. },
  4494. {
  4495. "name": "drupal/honeypot",
  4496. "version": "1.29.0",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://git.drupalcode.org/project/honeypot.git",
  4500. "reference": "8.x-1.29"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4505. "reference": "8.x-1.29",
  4506. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4507. },
  4508. "require": {
  4509. "drupal/core": "~8.0"
  4510. },
  4511. "type": "drupal-module",
  4512. "extra": {
  4513. "branch-alias": {
  4514. "dev-1.x": "1.x-dev"
  4515. },
  4516. "drupal": {
  4517. "version": "8.x-1.29",
  4518. "datestamp": "1536179280",
  4519. "security-coverage": {
  4520. "status": "covered",
  4521. "message": "Covered by Drupal's security advisory policy"
  4522. }
  4523. }
  4524. },
  4525. "notification-url": "https://packages.drupal.org/8/downloads",
  4526. "license": [
  4527. "GPL-2.0+"
  4528. ],
  4529. "authors": [
  4530. {
  4531. "name": "Jeff Geerling",
  4532. "homepage": "https://www.drupal.org/user/213194",
  4533. "email": "geerlingguy@mac.com"
  4534. },
  4535. {
  4536. "name": "geerlingguy",
  4537. "homepage": "https://www.drupal.org/user/389011"
  4538. },
  4539. {
  4540. "name": "vijaycs85",
  4541. "homepage": "https://www.drupal.org/user/93488"
  4542. }
  4543. ],
  4544. "description": "Mitigates spam form submissions using the honeypot method.",
  4545. "homepage": "https://www.drupal.org/project/honeypot",
  4546. "keywords": [
  4547. "deterrent",
  4548. "form",
  4549. "honeypot",
  4550. "honeytrap",
  4551. "php",
  4552. "spam"
  4553. ],
  4554. "support": {
  4555. "source": "https://git.drupalcode.org/project/honeypot"
  4556. }
  4557. },
  4558. {
  4559. "name": "drupal/linkit",
  4560. "version": "5.0.0-beta9",
  4561. "source": {
  4562. "type": "git",
  4563. "url": "https://git.drupalcode.org/project/linkit.git",
  4564. "reference": "8.x-5.0-beta9"
  4565. },
  4566. "dist": {
  4567. "type": "zip",
  4568. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta9.zip",
  4569. "reference": "8.x-5.0-beta9",
  4570. "shasum": "150291dd87a4f65027492020c28635e2b5249d1a"
  4571. },
  4572. "require": {
  4573. "drupal/core": "~8.0"
  4574. },
  4575. "require-dev": {
  4576. "drupal/imce": "*"
  4577. },
  4578. "type": "drupal-module",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-5.x": "5.x-dev"
  4582. },
  4583. "drupal": {
  4584. "version": "8.x-5.0-beta9",
  4585. "datestamp": "1562194985",
  4586. "security-coverage": {
  4587. "status": "not-covered",
  4588. "message": "Beta releases are not covered by Drupal security advisories."
  4589. }
  4590. }
  4591. },
  4592. "notification-url": "https://packages.drupal.org/8/downloads",
  4593. "license": [
  4594. "GPL-2.0+"
  4595. ],
  4596. "authors": [
  4597. {
  4598. "name": "Emil Stjerneman",
  4599. "homepage": "https://stjerneman.com",
  4600. "email": "emil@stjerneman.com",
  4601. "role": "Maintainer"
  4602. }
  4603. ],
  4604. "description": "Linkit - Enriched linking experience",
  4605. "homepage": "http://drupal.org/project/linkit",
  4606. "support": {
  4607. "source": "http://cgit.drupalcode.org/linkit",
  4608. "issues": "http://drupal.org/project/linkit"
  4609. }
  4610. },
  4611. {
  4612. "name": "drupal/login_emailusername",
  4613. "version": "1.1.0",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4617. "reference": "8.x-1.1"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  4622. "reference": "8.x-1.1",
  4623. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  4624. },
  4625. "require": {
  4626. "drupal/core": "~8.0"
  4627. },
  4628. "type": "drupal-module",
  4629. "extra": {
  4630. "branch-alias": {
  4631. "dev-1.x": "1.x-dev"
  4632. },
  4633. "drupal": {
  4634. "version": "8.x-1.1",
  4635. "datestamp": "1483456142",
  4636. "security-coverage": {
  4637. "status": "covered",
  4638. "message": "Covered by Drupal's security advisory policy"
  4639. }
  4640. },
  4641. "patches_applied": {
  4642. "rest login email or user name https://www.drupal.org/project/login_emailusername/issues/2910511#comment-12564801": "https://www.drupal.org/files/issues/2018-04-10/allow-rest-login-with-email-2910511-9.patch"
  4643. }
  4644. },
  4645. "notification-url": "https://packages.drupal.org/8/downloads",
  4646. "license": [
  4647. "GPL-2.0-or-later"
  4648. ],
  4649. "authors": [
  4650. {
  4651. "name": "rjjakes",
  4652. "homepage": "https://www.drupal.org/user/3457245"
  4653. }
  4654. ],
  4655. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  4656. "homepage": "https://www.drupal.org/project/login_emailusername",
  4657. "support": {
  4658. "source": "https://git.drupalcode.org/project/login_emailusername"
  4659. }
  4660. },
  4661. {
  4662. "name": "drupal/maillog",
  4663. "version": "dev-1.x",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://git.drupalcode.org/project/maillog.git",
  4667. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4668. },
  4669. "require": {
  4670. "drupal/core": "*"
  4671. },
  4672. "type": "drupal-module",
  4673. "extra": {
  4674. "branch-alias": {
  4675. "dev-1.x": "1.x-dev"
  4676. },
  4677. "drupal": {
  4678. "version": "8.x-1.x-dev",
  4679. "datestamp": "1470431939",
  4680. "security-coverage": {
  4681. "status": "not-covered",
  4682. "message": "Project has not opted into security advisory coverage!"
  4683. }
  4684. }
  4685. },
  4686. "notification-url": "https://packages.drupal.org/8/downloads",
  4687. "license": [
  4688. "GPL-2.0-or-later"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Berdir",
  4693. "homepage": "https://www.drupal.org/user/214652"
  4694. },
  4695. {
  4696. "name": "DamienMcKenna",
  4697. "homepage": "https://www.drupal.org/user/108450"
  4698. },
  4699. {
  4700. "name": "miro_dietiker",
  4701. "homepage": "https://www.drupal.org/user/227761"
  4702. },
  4703. {
  4704. "name": "pluess",
  4705. "homepage": "https://www.drupal.org/user/84659"
  4706. }
  4707. ],
  4708. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4709. "homepage": "https://www.drupal.org/project/maillog",
  4710. "support": {
  4711. "source": "https://git.drupalcode.org/project/maillog"
  4712. },
  4713. "time": "2016-08-05T21:18:07+00:00"
  4714. },
  4715. {
  4716. "name": "drupal/matomo",
  4717. "version": "1.9.0",
  4718. "source": {
  4719. "type": "git",
  4720. "url": "https://git.drupalcode.org/project/matomo.git",
  4721. "reference": "8.x-1.9"
  4722. },
  4723. "dist": {
  4724. "type": "zip",
  4725. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4726. "reference": "8.x-1.9",
  4727. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4728. },
  4729. "require": {
  4730. "drupal/core": "~8.5"
  4731. },
  4732. "require-dev": {
  4733. "drupal/php": "*",
  4734. "drupal/token": "*"
  4735. },
  4736. "type": "drupal-module",
  4737. "extra": {
  4738. "branch-alias": {
  4739. "dev-1.x": "1.x-dev"
  4740. },
  4741. "drupal": {
  4742. "version": "8.x-1.9",
  4743. "datestamp": "1549615080",
  4744. "security-coverage": {
  4745. "status": "covered",
  4746. "message": "Covered by Drupal's security advisory policy"
  4747. }
  4748. }
  4749. },
  4750. "notification-url": "https://packages.drupal.org/8/downloads",
  4751. "license": [
  4752. "GPL-2.0+"
  4753. ],
  4754. "authors": [
  4755. {
  4756. "name": "hass",
  4757. "homepage": "https://www.drupal.org/u/hass"
  4758. },
  4759. {
  4760. "name": "See other contributors",
  4761. "homepage": "https://www.drupal.org/node/247808/committers"
  4762. }
  4763. ],
  4764. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4765. "homepage": "https://www.drupal.org/project/matomo",
  4766. "support": {
  4767. "source": "https://git.drupal.org/project/matomo.git",
  4768. "issues": "https://www.drupal.org/project/issues/matomo"
  4769. }
  4770. },
  4771. {
  4772. "name": "drupal/menu_admin_per_menu",
  4773. "version": "1.0.0",
  4774. "source": {
  4775. "type": "git",
  4776. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4777. "reference": "8.x-1.0"
  4778. },
  4779. "dist": {
  4780. "type": "zip",
  4781. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4782. "reference": "8.x-1.0",
  4783. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4784. },
  4785. "require": {
  4786. "drupal/core": "*"
  4787. },
  4788. "type": "drupal-module",
  4789. "extra": {
  4790. "branch-alias": {
  4791. "dev-1.x": "1.x-dev"
  4792. },
  4793. "drupal": {
  4794. "version": "8.x-1.0",
  4795. "datestamp": "1507184944",
  4796. "security-coverage": {
  4797. "status": "covered",
  4798. "message": "Covered by Drupal's security advisory policy"
  4799. }
  4800. }
  4801. },
  4802. "notification-url": "https://packages.drupal.org/8/downloads",
  4803. "license": [
  4804. "GPL-2.0-or-later"
  4805. ],
  4806. "authors": [
  4807. {
  4808. "name": "anrikun",
  4809. "homepage": "https://www.drupal.org/user/410199"
  4810. },
  4811. {
  4812. "name": "mkdok",
  4813. "homepage": "https://www.drupal.org/user/3308753"
  4814. }
  4815. ],
  4816. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4817. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4818. "support": {
  4819. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4820. }
  4821. },
  4822. {
  4823. "name": "drupal/metatag",
  4824. "version": "1.10.0",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://git.drupalcode.org/project/metatag.git",
  4828. "reference": "8.x-1.10"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip",
  4833. "reference": "8.x-1.10",
  4834. "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc"
  4835. },
  4836. "require": {
  4837. "drupal/core": "*",
  4838. "drupal/token": "^1.0"
  4839. },
  4840. "require-dev": {
  4841. "drupal/devel": "^2.0",
  4842. "drupal/metatag_dc": "*",
  4843. "drupal/metatag_open_graph": "*",
  4844. "drupal/page_manager": "^4.0",
  4845. "drupal/redirect": "^1.0",
  4846. "drupal/restui": "^1.0",
  4847. "drupal/schema_metatag": "^1.0",
  4848. "drupal/schema_web_page": "*"
  4849. },
  4850. "type": "drupal-module",
  4851. "extra": {
  4852. "branch-alias": {
  4853. "dev-1.x": "1.x-dev"
  4854. },
  4855. "drupal": {
  4856. "version": "8.x-1.10",
  4857. "datestamp": "1567099985",
  4858. "security-coverage": {
  4859. "status": "covered",
  4860. "message": "Covered by Drupal's security advisory policy"
  4861. }
  4862. }
  4863. },
  4864. "notification-url": "https://packages.drupal.org/8/downloads",
  4865. "license": [
  4866. "GPL-2.0+"
  4867. ],
  4868. "authors": [
  4869. {
  4870. "name": "See contributors",
  4871. "homepage": "https://www.drupal.org/node/640498/committers",
  4872. "role": "Developer"
  4873. },
  4874. {
  4875. "name": "Dave Reid",
  4876. "homepage": "https://www.drupal.org/user/53892"
  4877. }
  4878. ],
  4879. "description": "Manage meta tags for all entities.",
  4880. "homepage": "https://www.drupal.org/project/metatag",
  4881. "keywords": [
  4882. "Drupal",
  4883. "seo"
  4884. ],
  4885. "support": {
  4886. "source": "http://cgit.drupalcode.org/metatag",
  4887. "issues": "http://drupal.org/project/issues/metatag"
  4888. }
  4889. },
  4890. {
  4891. "name": "drupal/migrate_plus",
  4892. "version": "4.2.0",
  4893. "source": {
  4894. "type": "git",
  4895. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4896. "reference": "8.x-4.2"
  4897. },
  4898. "dist": {
  4899. "type": "zip",
  4900. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4901. "reference": "8.x-4.2",
  4902. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4903. },
  4904. "require": {
  4905. "drupal/core": "^8.3"
  4906. },
  4907. "require-dev": {
  4908. "drupal/entity": "*",
  4909. "drupal/migrate_example_advanced_setup": "*",
  4910. "drupal/migrate_example_setup": "*",
  4911. "drupal/migrate_tools": "*",
  4912. "drupal/profile": "*"
  4913. },
  4914. "suggest": {
  4915. "ext-soap": "*",
  4916. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4917. },
  4918. "type": "drupal-module",
  4919. "extra": {
  4920. "branch-alias": {
  4921. "dev-4.x": "4.x-dev"
  4922. },
  4923. "drupal": {
  4924. "version": "8.x-4.2",
  4925. "datestamp": "1555683487",
  4926. "security-coverage": {
  4927. "status": "covered",
  4928. "message": "Covered by Drupal's security advisory policy"
  4929. }
  4930. }
  4931. },
  4932. "notification-url": "https://packages.drupal.org/8/downloads",
  4933. "license": [
  4934. "GPL-2.0+"
  4935. ],
  4936. "authors": [
  4937. {
  4938. "name": "Mike Ryan",
  4939. "homepage": "https://www.drupal.org/u/mikeryan",
  4940. "role": "Maintainer"
  4941. },
  4942. {
  4943. "name": "mikeryan",
  4944. "homepage": "https://www.drupal.org/user/4420"
  4945. }
  4946. ],
  4947. "description": "Enhancements to core migration support.",
  4948. "homepage": "https://www.drupal.org/project/migrate_plus",
  4949. "support": {
  4950. "source": "https://cgit.drupalcode.org/migrate_plus",
  4951. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4952. "irc": "irc://irc.freenode.org/drupal-migrate"
  4953. }
  4954. },
  4955. {
  4956. "name": "drupal/migrate_tools",
  4957. "version": "4.4.0",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4961. "reference": "8.x-4.4"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.4.zip",
  4966. "reference": "8.x-4.4",
  4967. "shasum": "54a9f138809564c7e89d0e37e9fbb2ed57b562e2"
  4968. },
  4969. "require": {
  4970. "drupal/core": "^8.3",
  4971. "drupal/migrate_plus": "^4 || ^5"
  4972. },
  4973. "require-dev": {
  4974. "drupal/migrate_plus": "4.x-dev",
  4975. "drupal/migrate_source_csv": "^2.2",
  4976. "drush/drush": "^10"
  4977. },
  4978. "type": "drupal-module",
  4979. "extra": {
  4980. "branch-alias": {
  4981. "dev-4.x": "4.x-dev"
  4982. },
  4983. "drupal": {
  4984. "version": "8.x-4.4",
  4985. "datestamp": "1570477985",
  4986. "security-coverage": {
  4987. "status": "covered",
  4988. "message": "Covered by Drupal's security advisory policy"
  4989. }
  4990. },
  4991. "drush": {
  4992. "services": {
  4993. "drush.services.yml": "^9 || ^10"
  4994. }
  4995. }
  4996. },
  4997. "notification-url": "https://packages.drupal.org/8/downloads",
  4998. "license": [
  4999. "GPL-2.0-or-later"
  5000. ],
  5001. "authors": [
  5002. {
  5003. "name": "heddn",
  5004. "homepage": "https://www.drupal.org/user/1463982"
  5005. },
  5006. {
  5007. "name": "mikeryan",
  5008. "homepage": "https://www.drupal.org/user/4420"
  5009. },
  5010. {
  5011. "name": "moshe weitzman",
  5012. "homepage": "https://www.drupal.org/user/23"
  5013. }
  5014. ],
  5015. "description": "Tools to assist in developing and running migrations.",
  5016. "homepage": "http://drupal.org/project/migrate_tools",
  5017. "support": {
  5018. "source": "http://cgit.drupalcode.org/migrate_tools",
  5019. "issues": "http://drupal.org/project/migrate_tools",
  5020. "irc": "irc://irc.freenode.org/drupal-migrate"
  5021. }
  5022. },
  5023. {
  5024. "name": "drupal/path_alias_xt",
  5025. "version": "dev-1.x",
  5026. "source": {
  5027. "type": "git",
  5028. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5029. "reference": "30e7fc03f4f8572516160ea3a7d7282653e71818"
  5030. },
  5031. "require": {
  5032. "drupal/core": "*"
  5033. },
  5034. "type": "drupal-module",
  5035. "extra": {
  5036. "branch-alias": {
  5037. "dev-1.x": "1.x-dev"
  5038. },
  5039. "drupal": {
  5040. "version": "8.x-1.x-dev",
  5041. "datestamp": "1557514381",
  5042. "security-coverage": {
  5043. "status": "not-covered",
  5044. "message": "Dev releases are not covered by Drupal security advisories."
  5045. }
  5046. }
  5047. },
  5048. "notification-url": "https://packages.drupal.org/8/downloads",
  5049. "license": [
  5050. "GPL-2.0-or-later"
  5051. ],
  5052. "authors": [
  5053. {
  5054. "name": "RdeBoer",
  5055. "homepage": "https://www.drupal.org/user/404007"
  5056. },
  5057. {
  5058. "name": "adriancid",
  5059. "homepage": "https://www.drupal.org/user/1962106"
  5060. },
  5061. {
  5062. "name": "sdstyles",
  5063. "homepage": "https://www.drupal.org/user/1420228"
  5064. }
  5065. ],
  5066. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  5067. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5068. "support": {
  5069. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5070. },
  5071. "time": "2019-05-28T17:44:23+00:00"
  5072. },
  5073. {
  5074. "name": "drupal/pathauto",
  5075. "version": "1.6.0",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://git.drupalcode.org/project/pathauto.git",
  5079. "reference": "8.x-1.6"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.6.zip",
  5084. "reference": "8.x-1.6",
  5085. "shasum": "eb976ae110d73c06fafb1b657adb967dd2cb8246"
  5086. },
  5087. "require": {
  5088. "drupal/core": "^8.6",
  5089. "drupal/ctools": "*",
  5090. "drupal/token": "*"
  5091. },
  5092. "type": "drupal-module",
  5093. "extra": {
  5094. "branch-alias": {
  5095. "dev-1.x": "1.x-dev"
  5096. },
  5097. "drupal": {
  5098. "version": "8.x-1.6",
  5099. "datestamp": "1575467285",
  5100. "security-coverage": {
  5101. "status": "covered",
  5102. "message": "Covered by Drupal's security advisory policy"
  5103. }
  5104. }
  5105. },
  5106. "notification-url": "https://packages.drupal.org/8/downloads",
  5107. "license": [
  5108. "GPL-2.0-or-later"
  5109. ],
  5110. "authors": [
  5111. {
  5112. "name": "Berdir",
  5113. "homepage": "https://www.drupal.org/user/214652"
  5114. },
  5115. {
  5116. "name": "Dave Reid",
  5117. "homepage": "https://www.drupal.org/user/53892"
  5118. },
  5119. {
  5120. "name": "Freso",
  5121. "homepage": "https://www.drupal.org/user/27504"
  5122. },
  5123. {
  5124. "name": "greggles",
  5125. "homepage": "https://www.drupal.org/user/36762"
  5126. }
  5127. ],
  5128. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5129. "homepage": "https://www.drupal.org/project/pathauto",
  5130. "support": {
  5131. "source": "https://git.drupalcode.org/project/pathauto"
  5132. }
  5133. },
  5134. {
  5135. "name": "drupal/piwik",
  5136. "version": "1.4.0",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://git.drupalcode.org/project/piwik.git",
  5140. "reference": "8.x-1.4"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  5145. "reference": "8.x-1.4",
  5146. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  5147. },
  5148. "require": {
  5149. "drupal/core": "~8.0",
  5150. "drupal/matomo": "^1.0"
  5151. },
  5152. "require-dev": {
  5153. "drupal/php": "*",
  5154. "drupal/token": "*"
  5155. },
  5156. "type": "drupal-module",
  5157. "extra": {
  5158. "branch-alias": {
  5159. "dev-1.x": "1.x-dev"
  5160. },
  5161. "drupal": {
  5162. "version": "8.x-1.4",
  5163. "datestamp": "1530437786",
  5164. "security-coverage": {
  5165. "status": "covered",
  5166. "message": "Covered by Drupal's security advisory policy"
  5167. }
  5168. }
  5169. },
  5170. "notification-url": "https://packages.drupal.org/8/downloads",
  5171. "license": [
  5172. "GPL-2.0+"
  5173. ],
  5174. "authors": [
  5175. {
  5176. "name": "hass",
  5177. "homepage": "https://www.drupal.org/u/hass"
  5178. },
  5179. {
  5180. "name": "See other contributors",
  5181. "homepage": "https://www.drupal.org/node/247808/committers"
  5182. }
  5183. ],
  5184. "description": "Adds Piwik javascript tracking code to all your site's pages",
  5185. "homepage": "https://www.drupal.org/project/piwik",
  5186. "support": {
  5187. "source": "http://git.drupal.org/project/piwik.git",
  5188. "issues": "https://www.drupal.org/project/issues/piwik"
  5189. }
  5190. },
  5191. {
  5192. "name": "drupal/profile",
  5193. "version": "1.1.0",
  5194. "source": {
  5195. "type": "git",
  5196. "url": "https://git.drupalcode.org/project/profile.git",
  5197. "reference": "8.x-1.1"
  5198. },
  5199. "dist": {
  5200. "type": "zip",
  5201. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  5202. "reference": "8.x-1.1",
  5203. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  5204. },
  5205. "require": {
  5206. "drupal/core": "^8.7.7 || ^9",
  5207. "drupal/entity": "^1.0-rc2"
  5208. },
  5209. "require-dev": {
  5210. "drupal/token": "^1.0"
  5211. },
  5212. "type": "drupal-module",
  5213. "extra": {
  5214. "branch-alias": {
  5215. "dev-1.x": "1.x-dev"
  5216. },
  5217. "drupal": {
  5218. "version": "8.x-1.1",
  5219. "datestamp": "1582134004",
  5220. "security-coverage": {
  5221. "status": "covered",
  5222. "message": "Covered by Drupal's security advisory policy"
  5223. }
  5224. }
  5225. },
  5226. "notification-url": "https://packages.drupal.org/8/downloads",
  5227. "license": [
  5228. "GPL-2.0+"
  5229. ],
  5230. "authors": [
  5231. {
  5232. "name": "bojanz",
  5233. "homepage": "https://www.drupal.org/user/86106"
  5234. },
  5235. {
  5236. "name": "daggerhart",
  5237. "homepage": "https://www.drupal.org/user/167806"
  5238. },
  5239. {
  5240. "name": "fago",
  5241. "homepage": "https://www.drupal.org/user/16747"
  5242. },
  5243. {
  5244. "name": "jsacksick",
  5245. "homepage": "https://www.drupal.org/user/972218"
  5246. },
  5247. {
  5248. "name": "mglaman",
  5249. "homepage": "https://www.drupal.org/user/2416470"
  5250. },
  5251. {
  5252. "name": "pcambra",
  5253. "homepage": "https://www.drupal.org/user/122101"
  5254. }
  5255. ],
  5256. "description": "Provides configurable user profiles.",
  5257. "homepage": "http://drupal.org/project/profile",
  5258. "support": {
  5259. "source": "https://git.drupalcode.org/project/profile"
  5260. }
  5261. },
  5262. {
  5263. "name": "drupal/redirect",
  5264. "version": "1.4.0",
  5265. "source": {
  5266. "type": "git",
  5267. "url": "https://git.drupalcode.org/project/redirect.git",
  5268. "reference": "8.x-1.4"
  5269. },
  5270. "dist": {
  5271. "type": "zip",
  5272. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.4.zip",
  5273. "reference": "8.x-1.4",
  5274. "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c"
  5275. },
  5276. "require": {
  5277. "drupal/core": "~8"
  5278. },
  5279. "type": "drupal-module",
  5280. "extra": {
  5281. "branch-alias": {
  5282. "dev-1.x": "1.x-dev"
  5283. },
  5284. "drupal": {
  5285. "version": "8.x-1.4",
  5286. "datestamp": "1561757585",
  5287. "security-coverage": {
  5288. "status": "covered",
  5289. "message": "Covered by Drupal's security advisory policy"
  5290. }
  5291. }
  5292. },
  5293. "notification-url": "https://packages.drupal.org/8/downloads",
  5294. "license": [
  5295. "GPL-2.0+"
  5296. ],
  5297. "authors": [
  5298. {
  5299. "name": "Berdir",
  5300. "homepage": "https://www.drupal.org/user/214652"
  5301. },
  5302. {
  5303. "name": "Dave Reid",
  5304. "homepage": "https://www.drupal.org/user/53892"
  5305. },
  5306. {
  5307. "name": "pifagor",
  5308. "homepage": "https://www.drupal.org/user/2375692"
  5309. }
  5310. ],
  5311. "description": "Allows users to redirect from old URLs to new URLs.",
  5312. "homepage": "https://www.drupal.org/project/redirect",
  5313. "support": {
  5314. "source": "https://git.drupalcode.org/project/redirect"
  5315. }
  5316. },
  5317. {
  5318. "name": "drupal/redis",
  5319. "version": "1.2.0",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://git.drupalcode.org/project/redis.git",
  5323. "reference": "8.x-1.2"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.2.zip",
  5328. "reference": "8.x-1.2",
  5329. "shasum": "6b8847a0816a6e400d495aed1e9dde4c594d6e2b"
  5330. },
  5331. "require": {
  5332. "drupal/core": "~8.0"
  5333. },
  5334. "suggest": {
  5335. "predis/predis": "^1.1.1"
  5336. },
  5337. "type": "drupal-module",
  5338. "extra": {
  5339. "branch-alias": {
  5340. "dev-1.x": "1.x-dev"
  5341. },
  5342. "drupal": {
  5343. "version": "8.x-1.2",
  5344. "datestamp": "1568275684",
  5345. "security-coverage": {
  5346. "status": "covered",
  5347. "message": "Covered by Drupal's security advisory policy"
  5348. }
  5349. }
  5350. },
  5351. "autoload": {
  5352. "psr-4": {
  5353. "Drupal\\redis\\": "src"
  5354. }
  5355. },
  5356. "notification-url": "https://packages.drupal.org/8/downloads",
  5357. "license": [
  5358. "GPL-2.0"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Berdir",
  5363. "homepage": "https://www.drupal.org/user/214652"
  5364. },
  5365. {
  5366. "name": "pounard",
  5367. "homepage": "https://www.drupal.org/user/240164"
  5368. }
  5369. ],
  5370. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5371. "homepage": "https://www.drupal.org/project/redis",
  5372. "support": {
  5373. "source": "https://git.drupalcode.org/project/redis"
  5374. }
  5375. },
  5376. {
  5377. "name": "drupal/restui",
  5378. "version": "1.17.0",
  5379. "source": {
  5380. "type": "git",
  5381. "url": "https://git.drupalcode.org/project/restui.git",
  5382. "reference": "8.x-1.17"
  5383. },
  5384. "dist": {
  5385. "type": "zip",
  5386. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.17.zip",
  5387. "reference": "8.x-1.17",
  5388. "shasum": "2fff1b74759d5e490884d002330ad04d1bf241ba"
  5389. },
  5390. "require": {
  5391. "drupal/core": "^8.2.0"
  5392. },
  5393. "type": "drupal-module",
  5394. "extra": {
  5395. "branch-alias": {
  5396. "dev-1.x": "1.x-dev"
  5397. },
  5398. "drupal": {
  5399. "version": "8.x-1.17",
  5400. "datestamp": "1557845581",
  5401. "security-coverage": {
  5402. "status": "covered",
  5403. "message": "Covered by Drupal's security advisory policy"
  5404. }
  5405. }
  5406. },
  5407. "notification-url": "https://packages.drupal.org/8/downloads",
  5408. "license": [
  5409. "GPL-2.0-or-later"
  5410. ],
  5411. "authors": [
  5412. {
  5413. "name": "-enzo-",
  5414. "homepage": "https://www.drupal.org/user/294937"
  5415. },
  5416. {
  5417. "name": "clemens.tolboom",
  5418. "homepage": "https://www.drupal.org/user/125814"
  5419. },
  5420. {
  5421. "name": "juampynr",
  5422. "homepage": "https://www.drupal.org/user/682736"
  5423. },
  5424. {
  5425. "name": "klausi",
  5426. "homepage": "https://www.drupal.org/user/262198"
  5427. }
  5428. ],
  5429. "description": "Provides a user interface to manage REST resources.",
  5430. "homepage": "https://www.drupal.org/project/restui",
  5431. "support": {
  5432. "source": "https://git.drupalcode.org/project/restui"
  5433. }
  5434. },
  5435. {
  5436. "name": "drupal/search_api",
  5437. "version": "1.15.0",
  5438. "source": {
  5439. "type": "git",
  5440. "url": "https://git.drupalcode.org/project/search_api.git",
  5441. "reference": "8.x-1.15"
  5442. },
  5443. "dist": {
  5444. "type": "zip",
  5445. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.15.zip",
  5446. "reference": "8.x-1.15",
  5447. "shasum": "12c13141adb6b687fe36781ac9269a49ef810323"
  5448. },
  5449. "require": {
  5450. "drupal/core": "^8.6"
  5451. },
  5452. "conflict": {
  5453. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5454. },
  5455. "require-dev": {
  5456. "drupal/language_fallback_fix": "@dev",
  5457. "drupal/search_api_autocomplete": "@dev",
  5458. "drupal/search_api_db": "*"
  5459. },
  5460. "suggest": {
  5461. "drupal/facets": "Adds the ability to create faceted searches.",
  5462. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5463. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5464. },
  5465. "type": "drupal-module",
  5466. "extra": {
  5467. "branch-alias": {
  5468. "dev-1.x": "1.x-dev"
  5469. },
  5470. "drupal": {
  5471. "version": "8.x-1.15",
  5472. "datestamp": "1573122785",
  5473. "security-coverage": {
  5474. "status": "covered",
  5475. "message": "Covered by Drupal's security advisory policy"
  5476. }
  5477. },
  5478. "drush": {
  5479. "services": {
  5480. "drush.services.yml": "^9"
  5481. }
  5482. }
  5483. },
  5484. "notification-url": "https://packages.drupal.org/8/downloads",
  5485. "license": [
  5486. "GPL-2.0+"
  5487. ],
  5488. "authors": [
  5489. {
  5490. "name": "Thomas Seidl",
  5491. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5492. },
  5493. {
  5494. "name": "Nick Veenhof",
  5495. "homepage": "https://www.drupal.org/u/nick_vh"
  5496. },
  5497. {
  5498. "name": "See other contributors",
  5499. "homepage": "https://www.drupal.org/node/790418/committers"
  5500. }
  5501. ],
  5502. "description": "Provides a generic framework for modules offering search capabilities.",
  5503. "homepage": "https://www.drupal.org/project/search_api",
  5504. "support": {
  5505. "source": "http://git.drupal.org/project/search_api.git",
  5506. "issues": "https://www.drupal.org/project/issues/search_api",
  5507. "irc": "irc://irc.freenode.org/drupal-search-api"
  5508. }
  5509. },
  5510. {
  5511. "name": "drupal/simple_sitemap",
  5512. "version": "3.4.0",
  5513. "source": {
  5514. "type": "git",
  5515. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5516. "reference": "8.x-3.4"
  5517. },
  5518. "dist": {
  5519. "type": "zip",
  5520. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.4.zip",
  5521. "reference": "8.x-3.4",
  5522. "shasum": "7cb1944ca2659e426e20680ef8e7cd48747545c8"
  5523. },
  5524. "require": {
  5525. "drupal/core": "~8.0",
  5526. "ext-xmlwriter": "*"
  5527. },
  5528. "type": "drupal-module",
  5529. "extra": {
  5530. "branch-alias": {
  5531. "dev-3.x": "3.x-dev"
  5532. },
  5533. "drupal": {
  5534. "version": "8.x-3.4",
  5535. "datestamp": "1570445886",
  5536. "security-coverage": {
  5537. "status": "covered",
  5538. "message": "Covered by Drupal's security advisory policy"
  5539. }
  5540. },
  5541. "drush": {
  5542. "services": {
  5543. "drush.services.yml": "^9"
  5544. }
  5545. }
  5546. },
  5547. "notification-url": "https://packages.drupal.org/8/downloads",
  5548. "license": [
  5549. "GPL-2.0+"
  5550. ],
  5551. "authors": [
  5552. {
  5553. "name": "Pawel Ginalski (gbyte.co)",
  5554. "homepage": "https://www.drupal.org/u/gbyte.co",
  5555. "email": "contact@gbyte.co",
  5556. "role": "Maintainer"
  5557. },
  5558. {
  5559. "name": "gbyte.co",
  5560. "homepage": "https://www.drupal.org/user/2381352"
  5561. }
  5562. ],
  5563. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5564. "homepage": "https://drupal.org/project/simple_sitemap",
  5565. "support": {
  5566. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5567. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5568. "irc": "irc://irc.freenode.org/drupal-contribute"
  5569. }
  5570. },
  5571. {
  5572. "name": "drupal/synonyms",
  5573. "version": "dev-1.x",
  5574. "source": {
  5575. "type": "git",
  5576. "url": "https://git.drupalcode.org/project/synonyms.git",
  5577. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5578. },
  5579. "require": {
  5580. "drupal/core": "^8.2"
  5581. },
  5582. "type": "drupal-module",
  5583. "extra": {
  5584. "branch-alias": {
  5585. "dev-1.x": "1.x-dev"
  5586. },
  5587. "drupal": {
  5588. "version": "8.x-1.0-alpha1+5-dev",
  5589. "datestamp": "1540141681",
  5590. "security-coverage": {
  5591. "status": "not-covered",
  5592. "message": "Dev releases are not covered by Drupal security advisories."
  5593. }
  5594. }
  5595. },
  5596. "notification-url": "https://packages.drupal.org/8/downloads",
  5597. "license": [
  5598. "GPL-2.0-or-later"
  5599. ],
  5600. "authors": [
  5601. {
  5602. "name": "Zen",
  5603. "homepage": "https://www.drupal.org/user/21209"
  5604. },
  5605. {
  5606. "name": "bojanz",
  5607. "homepage": "https://www.drupal.org/user/86106"
  5608. },
  5609. {
  5610. "name": "bucefal91",
  5611. "homepage": "https://www.drupal.org/user/504128"
  5612. }
  5613. ],
  5614. "description": "Provides synonyms feature for content entities.",
  5615. "homepage": "https://www.drupal.org/project/synonyms",
  5616. "support": {
  5617. "source": "https://git.drupalcode.org/project/synonyms"
  5618. },
  5619. "time": "2018-10-21T17:05:25+00:00"
  5620. },
  5621. {
  5622. "name": "drupal/token",
  5623. "version": "1.5.0",
  5624. "source": {
  5625. "type": "git",
  5626. "url": "https://git.drupalcode.org/project/token.git",
  5627. "reference": "8.x-1.5"
  5628. },
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5632. "reference": "8.x-1.5",
  5633. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5634. },
  5635. "require": {
  5636. "drupal/core": "^8.5"
  5637. },
  5638. "type": "drupal-module",
  5639. "extra": {
  5640. "branch-alias": {
  5641. "dev-1.x": "1.x-dev"
  5642. },
  5643. "drupal": {
  5644. "version": "8.x-1.5",
  5645. "datestamp": "1537557481",
  5646. "security-coverage": {
  5647. "status": "covered",
  5648. "message": "Covered by Drupal's security advisory policy"
  5649. }
  5650. }
  5651. },
  5652. "notification-url": "https://packages.drupal.org/8/downloads",
  5653. "license": [
  5654. "GPL-2.0-or-later"
  5655. ],
  5656. "authors": [
  5657. {
  5658. "name": "Berdir",
  5659. "homepage": "https://www.drupal.org/user/214652"
  5660. },
  5661. {
  5662. "name": "Dave Reid",
  5663. "homepage": "https://www.drupal.org/user/53892"
  5664. },
  5665. {
  5666. "name": "eaton",
  5667. "homepage": "https://www.drupal.org/user/16496"
  5668. },
  5669. {
  5670. "name": "fago",
  5671. "homepage": "https://www.drupal.org/user/16747"
  5672. },
  5673. {
  5674. "name": "greggles",
  5675. "homepage": "https://www.drupal.org/user/36762"
  5676. },
  5677. {
  5678. "name": "mikeryan",
  5679. "homepage": "https://www.drupal.org/user/4420"
  5680. }
  5681. ],
  5682. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5683. "homepage": "https://www.drupal.org/project/token",
  5684. "support": {
  5685. "source": "https://git.drupalcode.org/project/token"
  5686. }
  5687. },
  5688. {
  5689. "name": "drupal/toolbar_themes",
  5690. "version": "dev-1.x",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5694. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5695. },
  5696. "require": {
  5697. "drupal/core": "*"
  5698. },
  5699. "type": "drupal-module",
  5700. "extra": {
  5701. "branch-alias": {
  5702. "dev-1.x": "1.x-dev"
  5703. },
  5704. "drupal": {
  5705. "version": "8.x-1.0-alpha4+10-dev",
  5706. "datestamp": "1510689485",
  5707. "security-coverage": {
  5708. "status": "not-covered",
  5709. "message": "Project has not opted into security advisory coverage!"
  5710. }
  5711. }
  5712. },
  5713. "notification-url": "https://packages.drupal.org/8/downloads",
  5714. "license": [
  5715. "GPL-2.0-or-later"
  5716. ],
  5717. "authors": [
  5718. {
  5719. "name": "Jeff Burnz",
  5720. "homepage": "https://www.drupal.org/user/61393"
  5721. }
  5722. ],
  5723. "description": "Apply themes to the toolbar.",
  5724. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5725. "support": {
  5726. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5727. },
  5728. "time": "2017-11-14T19:57:02+00:00"
  5729. },
  5730. {
  5731. "name": "drupal/translation_views",
  5732. "version": "1.0.0-alpha8",
  5733. "source": {
  5734. "type": "git",
  5735. "url": "https://git.drupalcode.org/project/translation_views.git",
  5736. "reference": "8.x-1.0-alpha8"
  5737. },
  5738. "dist": {
  5739. "type": "zip",
  5740. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha8.zip",
  5741. "reference": "8.x-1.0-alpha8",
  5742. "shasum": "5903869f77129aa46daf46cd9a34bd9706072eb5"
  5743. },
  5744. "require": {
  5745. "drupal/core": "*"
  5746. },
  5747. "require-dev": {
  5748. "drupal/translators": "*",
  5749. "drupal/translators_content": "*"
  5750. },
  5751. "type": "drupal-module",
  5752. "extra": {
  5753. "branch-alias": {
  5754. "dev-1.x": "1.x-dev"
  5755. },
  5756. "drupal": {
  5757. "version": "8.x-1.0-alpha8",
  5758. "datestamp": "1572571385",
  5759. "security-coverage": {
  5760. "status": "not-covered",
  5761. "message": "Project has not opted into security advisory coverage!"
  5762. }
  5763. }
  5764. },
  5765. "notification-url": "https://packages.drupal.org/8/downloads",
  5766. "license": [
  5767. "GPL-2.0-or-later"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "matsbla",
  5772. "homepage": "https://www.drupal.org/user/2325394"
  5773. },
  5774. {
  5775. "name": "vlad.dancer",
  5776. "homepage": "https://www.drupal.org/user/903844"
  5777. }
  5778. ],
  5779. "description": "Create customized lists and queries of translations from your database.",
  5780. "homepage": "https://www.drupal.org/project/translation_views",
  5781. "support": {
  5782. "source": "https://git.drupalcode.org/project/translation_views"
  5783. }
  5784. },
  5785. {
  5786. "name": "drupal/url_to_video_filter",
  5787. "version": "1.3.0",
  5788. "source": {
  5789. "type": "git",
  5790. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5791. "reference": "8.x-1.3"
  5792. },
  5793. "dist": {
  5794. "type": "zip",
  5795. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5796. "reference": "8.x-1.3",
  5797. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5798. },
  5799. "require": {
  5800. "drupal/core": "~8.0"
  5801. },
  5802. "type": "drupal-module",
  5803. "extra": {
  5804. "branch-alias": {
  5805. "dev-1.x": "1.x-dev"
  5806. },
  5807. "drupal": {
  5808. "version": "8.x-1.3",
  5809. "datestamp": "1532695981",
  5810. "security-coverage": {
  5811. "status": "covered",
  5812. "message": "Covered by Drupal's security advisory policy"
  5813. }
  5814. }
  5815. },
  5816. "notification-url": "https://packages.drupal.org/8/downloads",
  5817. "license": [
  5818. "GPL-2.0-or-later"
  5819. ],
  5820. "authors": [
  5821. {
  5822. "name": "Jaypan",
  5823. "homepage": "https://www.drupal.org/user/324696"
  5824. }
  5825. ],
  5826. "description": "Text filter to convert URLs to embedded videos",
  5827. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5828. "support": {
  5829. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5830. }
  5831. },
  5832. {
  5833. "name": "drupal/views_bulk_edit",
  5834. "version": "2.4.0",
  5835. "source": {
  5836. "type": "git",
  5837. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5838. "reference": "8.x-2.4"
  5839. },
  5840. "dist": {
  5841. "type": "zip",
  5842. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5843. "reference": "8.x-2.4",
  5844. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5845. },
  5846. "require": {
  5847. "drupal/core": "*",
  5848. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5849. },
  5850. "type": "drupal-module",
  5851. "extra": {
  5852. "branch-alias": {
  5853. "dev-2.x": "2.x-dev"
  5854. },
  5855. "drupal": {
  5856. "version": "8.x-2.4",
  5857. "datestamp": "1570030085",
  5858. "security-coverage": {
  5859. "status": "covered",
  5860. "message": "Covered by Drupal's security advisory policy"
  5861. }
  5862. }
  5863. },
  5864. "notification-url": "https://packages.drupal.org/8/downloads",
  5865. "license": [
  5866. "GPL-2.0+"
  5867. ],
  5868. "authors": [
  5869. {
  5870. "name": "Marcin Grabias",
  5871. "homepage": "https://www.drupal.org/u/graber"
  5872. },
  5873. {
  5874. "name": "benjy",
  5875. "homepage": "https://www.drupal.org/user/1852732"
  5876. }
  5877. ],
  5878. "description": "Allows bulk edition of entity field values.",
  5879. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5880. "support": {
  5881. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5882. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5883. }
  5884. },
  5885. {
  5886. "name": "drupal/views_bulk_operations",
  5887. "version": "3.4.0",
  5888. "source": {
  5889. "type": "git",
  5890. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5891. "reference": "8.x-3.4"
  5892. },
  5893. "dist": {
  5894. "type": "zip",
  5895. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.4.zip",
  5896. "reference": "8.x-3.4",
  5897. "shasum": "549eb149f82fbf30e975155a14cd7a0d4653dfe9"
  5898. },
  5899. "require": {
  5900. "drupal/core": "~8.5"
  5901. },
  5902. "type": "drupal-module",
  5903. "extra": {
  5904. "branch-alias": {
  5905. "dev-3.x": "3.x-dev"
  5906. },
  5907. "drupal": {
  5908. "version": "8.x-3.4",
  5909. "datestamp": "1582575462",
  5910. "security-coverage": {
  5911. "status": "covered",
  5912. "message": "Covered by Drupal's security advisory policy"
  5913. }
  5914. },
  5915. "drush": {
  5916. "services": {
  5917. "drush.services.yml": "^9"
  5918. }
  5919. }
  5920. },
  5921. "notification-url": "https://packages.drupal.org/8/downloads",
  5922. "license": [
  5923. "GPL-2.0+"
  5924. ],
  5925. "authors": [
  5926. {
  5927. "name": "Marcin Grabias",
  5928. "homepage": "https://www.drupal.org/u/graber"
  5929. },
  5930. {
  5931. "name": "Jon Pugh",
  5932. "homepage": "https://www.drupal.org/user/17028"
  5933. },
  5934. {
  5935. "name": "bojanz",
  5936. "homepage": "https://www.drupal.org/user/86106"
  5937. },
  5938. {
  5939. "name": "infojunkie",
  5940. "homepage": "https://www.drupal.org/user/48424"
  5941. },
  5942. {
  5943. "name": "joelpittet",
  5944. "homepage": "https://www.drupal.org/user/160302"
  5945. }
  5946. ],
  5947. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5948. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5949. "support": {
  5950. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5951. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5952. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5953. }
  5954. },
  5955. {
  5956. "name": "drupal/workflow",
  5957. "version": "dev-1.x",
  5958. "source": {
  5959. "type": "git",
  5960. "url": "https://git.drupalcode.org/project/workflow.git",
  5961. "reference": "920f1e5acc99da722592eb0f3b3cb32c0e96a560"
  5962. },
  5963. "require": {
  5964. "drupal/core": "*"
  5965. },
  5966. "type": "drupal-module",
  5967. "extra": {
  5968. "branch-alias": {
  5969. "dev-1.x": "1.x-dev"
  5970. },
  5971. "drupal": {
  5972. "version": "8.x-1.1+38-dev",
  5973. "datestamp": "1571663284",
  5974. "security-coverage": {
  5975. "status": "not-covered",
  5976. "message": "Dev releases are not covered by Drupal security advisories."
  5977. }
  5978. }
  5979. },
  5980. "notification-url": "https://packages.drupal.org/8/downloads",
  5981. "license": [
  5982. "GPL-2.0-or-later"
  5983. ],
  5984. "authors": [
  5985. {
  5986. "name": "Bastlynn",
  5987. "homepage": "https://www.drupal.org/user/275249"
  5988. },
  5989. {
  5990. "name": "Heine",
  5991. "homepage": "https://www.drupal.org/user/17943"
  5992. },
  5993. {
  5994. "name": "JacobSingh",
  5995. "homepage": "https://www.drupal.org/user/68912"
  5996. },
  5997. {
  5998. "name": "NancyDru",
  5999. "homepage": "https://www.drupal.org/user/101412"
  6000. },
  6001. {
  6002. "name": "eaton",
  6003. "homepage": "https://www.drupal.org/user/16496"
  6004. },
  6005. {
  6006. "name": "johnv",
  6007. "homepage": "https://www.drupal.org/user/591042"
  6008. },
  6009. {
  6010. "name": "jvandyk",
  6011. "homepage": "https://www.drupal.org/user/2375"
  6012. },
  6013. {
  6014. "name": "mfredrickson",
  6015. "homepage": "https://www.drupal.org/user/31994"
  6016. },
  6017. {
  6018. "name": "q0rban",
  6019. "homepage": "https://www.drupal.org/user/31022"
  6020. }
  6021. ],
  6022. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6023. "homepage": "https://www.drupal.org/project/workflow",
  6024. "support": {
  6025. "source": "https://git.drupalcode.org/project/workflow"
  6026. },
  6027. "time": "2019-11-12T11:10:01+00:00"
  6028. },
  6029. {
  6030. "name": "drush/drush",
  6031. "version": "9.7.1",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://github.com/drush-ops/drush.git",
  6035. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479",
  6040. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479",
  6041. "shasum": ""
  6042. },
  6043. "require": {
  6044. "chi-teck/drupal-code-generator": "^1.28.1",
  6045. "composer/semver": "^1.4",
  6046. "consolidation/annotated-command": "^2.12",
  6047. "consolidation/config": "^1.2",
  6048. "consolidation/filter-via-dot-access-data": "^1",
  6049. "consolidation/output-formatters": "^3.3.1",
  6050. "consolidation/robo": "^1.4.6",
  6051. "consolidation/site-alias": "^3.0.0@stable",
  6052. "consolidation/site-process": "^2.0.3",
  6053. "ext-dom": "*",
  6054. "grasmash/yaml-expander": "^1.1.1",
  6055. "league/container": "~2",
  6056. "php": ">=5.6.0",
  6057. "psr/log": "~1.0",
  6058. "psy/psysh": "~0.6",
  6059. "symfony/console": "^3.4",
  6060. "symfony/event-dispatcher": "^3.4",
  6061. "symfony/finder": "^3.4 || ^4.0",
  6062. "symfony/process": "^3.4",
  6063. "symfony/var-dumper": "^3.4 || ^4.0",
  6064. "symfony/yaml": "^3.4",
  6065. "webflo/drupal-finder": "^1.1",
  6066. "webmozart/path-util": "^2.1.0"
  6067. },
  6068. "require-dev": {
  6069. "composer/installers": "^1.2",
  6070. "cweagans/composer-patches": "~1.0",
  6071. "drupal/alinks": "1.0.0",
  6072. "drupal/devel": "^2",
  6073. "drupal/empty_theme": "1.0",
  6074. "g1a/composer-test-scenarios": "^3",
  6075. "lox/xhprof": "dev-master",
  6076. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6077. "squizlabs/php_codesniffer": "^2.7 || ^3",
  6078. "vlucas/phpdotenv": "^2.4",
  6079. "webflo/drupal-core-require-dev": "8.7.x-dev",
  6080. "webflo/drupal-core-strict": "8.7.x-dev"
  6081. },
  6082. "bin": [
  6083. "drush"
  6084. ],
  6085. "type": "library",
  6086. "extra": {
  6087. "installer-paths": {
  6088. "sut/core": [
  6089. "type:drupal-core"
  6090. ],
  6091. "sut/libraries/{$name}": [
  6092. "type:drupal-library"
  6093. ],
  6094. "sut/modules/unish/{$name}": [
  6095. "drupal/devel"
  6096. ],
  6097. "sut/themes/unish/{$name}": [
  6098. "drupal/empty_theme"
  6099. ],
  6100. "sut/modules/contrib/{$name}": [
  6101. "type:drupal-module"
  6102. ],
  6103. "sut/profiles/contrib/{$name}": [
  6104. "type:drupal-profile"
  6105. ],
  6106. "sut/themes/contrib/{$name}": [
  6107. "type:drupal-theme"
  6108. ],
  6109. "sut/drush/contrib/{$name}": [
  6110. "type:drupal-drush"
  6111. ]
  6112. },
  6113. "scenarios": {
  6114. "php5": {
  6115. "config": {
  6116. "platform": {
  6117. "php": "5.6.38"
  6118. }
  6119. },
  6120. "require-dev": {
  6121. "webflo/drupal-core-strict": "8.6.x-dev",
  6122. "webflo/drupal-core-require-dev": "8.6.x-dev"
  6123. }
  6124. }
  6125. },
  6126. "branch-alias": {
  6127. "dev-master": "9.x-dev"
  6128. }
  6129. },
  6130. "autoload": {
  6131. "psr-4": {
  6132. "Drush\\": "src/",
  6133. "Drush\\Internal\\": "src/internal-forks"
  6134. }
  6135. },
  6136. "notification-url": "https://packagist.org/downloads/",
  6137. "license": [
  6138. "GPL-2.0-or-later"
  6139. ],
  6140. "authors": [
  6141. {
  6142. "name": "Moshe Weitzman",
  6143. "email": "weitzman@tejasa.com"
  6144. },
  6145. {
  6146. "name": "Owen Barton",
  6147. "email": "drupal@owenbarton.com"
  6148. },
  6149. {
  6150. "name": "Greg Anderson",
  6151. "email": "greg.1.anderson@greenknowe.org"
  6152. },
  6153. {
  6154. "name": "Jonathan Araña Cruz",
  6155. "email": "jonhattan@faita.net"
  6156. },
  6157. {
  6158. "name": "Jonathan Hedstrom",
  6159. "email": "jhedstrom@gmail.com"
  6160. },
  6161. {
  6162. "name": "Christopher Gervais",
  6163. "email": "chris@ergonlogic.com"
  6164. },
  6165. {
  6166. "name": "Dave Reid",
  6167. "email": "dave@davereid.net"
  6168. },
  6169. {
  6170. "name": "Damian Lee",
  6171. "email": "damiankloip@googlemail.com"
  6172. }
  6173. ],
  6174. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  6175. "homepage": "http://www.drush.org",
  6176. "time": "2019-06-30T19:46:39+00:00"
  6177. },
  6178. {
  6179. "name": "easyrdf/easyrdf",
  6180. "version": "0.9.1",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://github.com/njh/easyrdf.git",
  6184. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6189. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6190. "shasum": ""
  6191. },
  6192. "require": {
  6193. "ext-mbstring": "*",
  6194. "ext-pcre": "*",
  6195. "php": ">=5.2.8"
  6196. },
  6197. "require-dev": {
  6198. "phpunit/phpunit": "~3.5",
  6199. "sami/sami": "~1.4",
  6200. "squizlabs/php_codesniffer": "~1.4.3"
  6201. },
  6202. "suggest": {
  6203. "ml/json-ld": "~1.0"
  6204. },
  6205. "type": "library",
  6206. "autoload": {
  6207. "psr-0": {
  6208. "EasyRdf_": "lib/"
  6209. }
  6210. },
  6211. "notification-url": "https://packagist.org/downloads/",
  6212. "license": [
  6213. "BSD-3-Clause"
  6214. ],
  6215. "authors": [
  6216. {
  6217. "name": "Nicholas Humfrey",
  6218. "email": "njh@aelius.com",
  6219. "homepage": "http://www.aelius.com/njh/",
  6220. "role": "Developer"
  6221. },
  6222. {
  6223. "name": "Alexey Zakhlestin",
  6224. "email": "indeyets@gmail.com",
  6225. "role": "Developer"
  6226. }
  6227. ],
  6228. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6229. "homepage": "http://www.easyrdf.org/",
  6230. "keywords": [
  6231. "Linked Data",
  6232. "RDF",
  6233. "Semantic Web",
  6234. "Turtle",
  6235. "rdfa",
  6236. "sparql"
  6237. ],
  6238. "time": "2015-02-27T09:45:49+00:00"
  6239. },
  6240. {
  6241. "name": "egulias/email-validator",
  6242. "version": "2.1.17",
  6243. "source": {
  6244. "type": "git",
  6245. "url": "https://github.com/egulias/EmailValidator.git",
  6246. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  6247. },
  6248. "dist": {
  6249. "type": "zip",
  6250. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  6251. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  6252. "shasum": ""
  6253. },
  6254. "require": {
  6255. "doctrine/lexer": "^1.0.1",
  6256. "php": ">=5.5",
  6257. "symfony/polyfill-intl-idn": "^1.10"
  6258. },
  6259. "require-dev": {
  6260. "dominicsayers/isemail": "^3.0.7",
  6261. "phpunit/phpunit": "^4.8.36|^7.5.15",
  6262. "satooshi/php-coveralls": "^1.0.1"
  6263. },
  6264. "suggest": {
  6265. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  6266. },
  6267. "type": "library",
  6268. "extra": {
  6269. "branch-alias": {
  6270. "dev-master": "2.1.x-dev"
  6271. }
  6272. },
  6273. "autoload": {
  6274. "psr-4": {
  6275. "Egulias\\EmailValidator\\": "EmailValidator"
  6276. }
  6277. },
  6278. "notification-url": "https://packagist.org/downloads/",
  6279. "license": [
  6280. "MIT"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Eduardo Gulias Davis"
  6285. }
  6286. ],
  6287. "description": "A library for validating emails against several RFCs",
  6288. "homepage": "https://github.com/egulias/EmailValidator",
  6289. "keywords": [
  6290. "email",
  6291. "emailvalidation",
  6292. "emailvalidator",
  6293. "validation",
  6294. "validator"
  6295. ],
  6296. "time": "2020-02-13T22:36:52+00:00"
  6297. },
  6298. {
  6299. "name": "fabpot/goutte",
  6300. "version": "v3.2.3",
  6301. "source": {
  6302. "type": "git",
  6303. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6304. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6305. },
  6306. "dist": {
  6307. "type": "zip",
  6308. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6309. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6310. "shasum": ""
  6311. },
  6312. "require": {
  6313. "guzzlehttp/guzzle": "^6.0",
  6314. "php": ">=5.5.0",
  6315. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6316. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6317. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6318. },
  6319. "require-dev": {
  6320. "symfony/phpunit-bridge": "^3.3 || ^4"
  6321. },
  6322. "type": "application",
  6323. "extra": {
  6324. "branch-alias": {
  6325. "dev-master": "3.2-dev"
  6326. }
  6327. },
  6328. "autoload": {
  6329. "psr-4": {
  6330. "Goutte\\": "Goutte"
  6331. },
  6332. "exclude-from-classmap": [
  6333. "Goutte/Tests"
  6334. ]
  6335. },
  6336. "notification-url": "https://packagist.org/downloads/",
  6337. "license": [
  6338. "MIT"
  6339. ],
  6340. "authors": [
  6341. {
  6342. "name": "Fabien Potencier",
  6343. "email": "fabien@symfony.com"
  6344. }
  6345. ],
  6346. "description": "A simple PHP Web Scraper",
  6347. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6348. "keywords": [
  6349. "scraper"
  6350. ],
  6351. "time": "2018-06-29T15:13:57+00:00"
  6352. },
  6353. {
  6354. "name": "grasmash/expander",
  6355. "version": "1.0.0",
  6356. "source": {
  6357. "type": "git",
  6358. "url": "https://github.com/grasmash/expander.git",
  6359. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6360. },
  6361. "dist": {
  6362. "type": "zip",
  6363. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6364. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6365. "shasum": ""
  6366. },
  6367. "require": {
  6368. "dflydev/dot-access-data": "^1.1.0",
  6369. "php": ">=5.4"
  6370. },
  6371. "require-dev": {
  6372. "greg-1-anderson/composer-test-scenarios": "^1",
  6373. "phpunit/phpunit": "^4|^5.5.4",
  6374. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6375. "squizlabs/php_codesniffer": "^2.7"
  6376. },
  6377. "type": "library",
  6378. "extra": {
  6379. "branch-alias": {
  6380. "dev-master": "1.x-dev"
  6381. }
  6382. },
  6383. "autoload": {
  6384. "psr-4": {
  6385. "Grasmash\\Expander\\": "src/"
  6386. }
  6387. },
  6388. "notification-url": "https://packagist.org/downloads/",
  6389. "license": [
  6390. "MIT"
  6391. ],
  6392. "authors": [
  6393. {
  6394. "name": "Matthew Grasmick"
  6395. }
  6396. ],
  6397. "description": "Expands internal property references in PHP arrays file.",
  6398. "time": "2017-12-21T22:14:55+00:00"
  6399. },
  6400. {
  6401. "name": "grasmash/yaml-expander",
  6402. "version": "1.4.0",
  6403. "source": {
  6404. "type": "git",
  6405. "url": "https://github.com/grasmash/yaml-expander.git",
  6406. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6407. },
  6408. "dist": {
  6409. "type": "zip",
  6410. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6411. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6412. "shasum": ""
  6413. },
  6414. "require": {
  6415. "dflydev/dot-access-data": "^1.1.0",
  6416. "php": ">=5.4",
  6417. "symfony/yaml": "^2.8.11|^3|^4"
  6418. },
  6419. "require-dev": {
  6420. "greg-1-anderson/composer-test-scenarios": "^1",
  6421. "phpunit/phpunit": "^4.8|^5.5.4",
  6422. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6423. "squizlabs/php_codesniffer": "^2.7"
  6424. },
  6425. "type": "library",
  6426. "extra": {
  6427. "branch-alias": {
  6428. "dev-master": "1.x-dev"
  6429. }
  6430. },
  6431. "autoload": {
  6432. "psr-4": {
  6433. "Grasmash\\YamlExpander\\": "src/"
  6434. }
  6435. },
  6436. "notification-url": "https://packagist.org/downloads/",
  6437. "license": [
  6438. "MIT"
  6439. ],
  6440. "authors": [
  6441. {
  6442. "name": "Matthew Grasmick"
  6443. }
  6444. ],
  6445. "description": "Expands internal property references in a yaml file.",
  6446. "time": "2017-12-16T16:06:03+00:00"
  6447. },
  6448. {
  6449. "name": "guzzlehttp/guzzle",
  6450. "version": "6.5.4",
  6451. "source": {
  6452. "type": "git",
  6453. "url": "https://github.com/guzzle/guzzle.git",
  6454. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  6455. },
  6456. "dist": {
  6457. "type": "zip",
  6458. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6459. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6460. "shasum": ""
  6461. },
  6462. "require": {
  6463. "ext-json": "*",
  6464. "guzzlehttp/promises": "^1.0",
  6465. "guzzlehttp/psr7": "^1.6.1",
  6466. "php": ">=5.5",
  6467. "symfony/polyfill-intl-idn": "1.17.0"
  6468. },
  6469. "require-dev": {
  6470. "ext-curl": "*",
  6471. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6472. "psr/log": "^1.1"
  6473. },
  6474. "suggest": {
  6475. "psr/log": "Required for using the Log middleware"
  6476. },
  6477. "type": "library",
  6478. "extra": {
  6479. "branch-alias": {
  6480. "dev-master": "6.5-dev"
  6481. }
  6482. },
  6483. "autoload": {
  6484. "psr-4": {
  6485. "GuzzleHttp\\": "src/"
  6486. },
  6487. "files": [
  6488. "src/functions_include.php"
  6489. ]
  6490. },
  6491. "notification-url": "https://packagist.org/downloads/",
  6492. "license": [
  6493. "MIT"
  6494. ],
  6495. "authors": [
  6496. {
  6497. "name": "Michael Dowling",
  6498. "email": "mtdowling@gmail.com",
  6499. "homepage": "https://github.com/mtdowling"
  6500. }
  6501. ],
  6502. "description": "Guzzle is a PHP HTTP client library",
  6503. "homepage": "http://guzzlephp.org/",
  6504. "keywords": [
  6505. "client",
  6506. "curl",
  6507. "framework",
  6508. "http",
  6509. "http client",
  6510. "rest",
  6511. "web service"
  6512. ],
  6513. "time": "2020-05-25T19:35:05+00:00"
  6514. },
  6515. {
  6516. "name": "guzzlehttp/promises",
  6517. "version": "v1.3.1",
  6518. "source": {
  6519. "type": "git",
  6520. "url": "https://github.com/guzzle/promises.git",
  6521. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6522. },
  6523. "dist": {
  6524. "type": "zip",
  6525. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6526. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6527. "shasum": ""
  6528. },
  6529. "require": {
  6530. "php": ">=5.5.0"
  6531. },
  6532. "require-dev": {
  6533. "phpunit/phpunit": "^4.0"
  6534. },
  6535. "type": "library",
  6536. "extra": {
  6537. "branch-alias": {
  6538. "dev-master": "1.4-dev"
  6539. }
  6540. },
  6541. "autoload": {
  6542. "psr-4": {
  6543. "GuzzleHttp\\Promise\\": "src/"
  6544. },
  6545. "files": [
  6546. "src/functions_include.php"
  6547. ]
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "MIT"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Michael Dowling",
  6556. "email": "mtdowling@gmail.com",
  6557. "homepage": "https://github.com/mtdowling"
  6558. }
  6559. ],
  6560. "description": "Guzzle promises library",
  6561. "keywords": [
  6562. "promise"
  6563. ],
  6564. "time": "2016-12-20T10:07:11+00:00"
  6565. },
  6566. {
  6567. "name": "guzzlehttp/psr7",
  6568. "version": "1.6.1",
  6569. "source": {
  6570. "type": "git",
  6571. "url": "https://github.com/guzzle/psr7.git",
  6572. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6573. },
  6574. "dist": {
  6575. "type": "zip",
  6576. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6577. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6578. "shasum": ""
  6579. },
  6580. "require": {
  6581. "php": ">=5.4.0",
  6582. "psr/http-message": "~1.0",
  6583. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6584. },
  6585. "provide": {
  6586. "psr/http-message-implementation": "1.0"
  6587. },
  6588. "require-dev": {
  6589. "ext-zlib": "*",
  6590. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6591. },
  6592. "suggest": {
  6593. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6594. },
  6595. "type": "library",
  6596. "extra": {
  6597. "branch-alias": {
  6598. "dev-master": "1.6-dev"
  6599. }
  6600. },
  6601. "autoload": {
  6602. "psr-4": {
  6603. "GuzzleHttp\\Psr7\\": "src/"
  6604. },
  6605. "files": [
  6606. "src/functions_include.php"
  6607. ]
  6608. },
  6609. "notification-url": "https://packagist.org/downloads/",
  6610. "license": [
  6611. "MIT"
  6612. ],
  6613. "authors": [
  6614. {
  6615. "name": "Michael Dowling",
  6616. "email": "mtdowling@gmail.com",
  6617. "homepage": "https://github.com/mtdowling"
  6618. },
  6619. {
  6620. "name": "Tobias Schultze",
  6621. "homepage": "https://github.com/Tobion"
  6622. }
  6623. ],
  6624. "description": "PSR-7 message implementation that also provides common utility methods",
  6625. "keywords": [
  6626. "http",
  6627. "message",
  6628. "psr-7",
  6629. "request",
  6630. "response",
  6631. "stream",
  6632. "uri",
  6633. "url"
  6634. ],
  6635. "time": "2019-07-01T23:21:34+00:00"
  6636. },
  6637. {
  6638. "name": "instaclick/php-webdriver",
  6639. "version": "1.4.7",
  6640. "source": {
  6641. "type": "git",
  6642. "url": "https://github.com/instaclick/php-webdriver.git",
  6643. "reference": "b5f330e900e9b3edfc18024a5ec8c07136075712"
  6644. },
  6645. "dist": {
  6646. "type": "zip",
  6647. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/b5f330e900e9b3edfc18024a5ec8c07136075712",
  6648. "reference": "b5f330e900e9b3edfc18024a5ec8c07136075712",
  6649. "shasum": ""
  6650. },
  6651. "require": {
  6652. "ext-curl": "*",
  6653. "php": ">=5.3.2"
  6654. },
  6655. "require-dev": {
  6656. "phpunit/phpunit": "^4.8",
  6657. "satooshi/php-coveralls": "^1.0||^2.0"
  6658. },
  6659. "type": "library",
  6660. "extra": {
  6661. "branch-alias": {
  6662. "dev-master": "1.4.x-dev"
  6663. }
  6664. },
  6665. "autoload": {
  6666. "psr-0": {
  6667. "WebDriver": "lib/"
  6668. }
  6669. },
  6670. "notification-url": "https://packagist.org/downloads/",
  6671. "license": [
  6672. "Apache-2.0"
  6673. ],
  6674. "authors": [
  6675. {
  6676. "name": "Justin Bishop",
  6677. "email": "jubishop@gmail.com",
  6678. "role": "Developer"
  6679. },
  6680. {
  6681. "name": "Anthon Pang",
  6682. "email": "apang@softwaredevelopment.ca",
  6683. "role": "Fork Maintainer"
  6684. }
  6685. ],
  6686. "description": "PHP WebDriver for Selenium 2",
  6687. "homepage": "http://instaclick.com/",
  6688. "keywords": [
  6689. "browser",
  6690. "selenium",
  6691. "webdriver",
  6692. "webtest"
  6693. ],
  6694. "time": "2019-09-25T09:05:11+00:00"
  6695. },
  6696. {
  6697. "name": "jakub-onderka/php-console-color",
  6698. "version": "v0.2",
  6699. "source": {
  6700. "type": "git",
  6701. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6702. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6703. },
  6704. "dist": {
  6705. "type": "zip",
  6706. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6707. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6708. "shasum": ""
  6709. },
  6710. "require": {
  6711. "php": ">=5.4.0"
  6712. },
  6713. "require-dev": {
  6714. "jakub-onderka/php-code-style": "1.0",
  6715. "jakub-onderka/php-parallel-lint": "1.0",
  6716. "jakub-onderka/php-var-dump-check": "0.*",
  6717. "phpunit/phpunit": "~4.3",
  6718. "squizlabs/php_codesniffer": "1.*"
  6719. },
  6720. "type": "library",
  6721. "autoload": {
  6722. "psr-4": {
  6723. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6724. }
  6725. },
  6726. "notification-url": "https://packagist.org/downloads/",
  6727. "license": [
  6728. "BSD-2-Clause"
  6729. ],
  6730. "authors": [
  6731. {
  6732. "name": "Jakub Onderka",
  6733. "email": "jakub.onderka@gmail.com"
  6734. }
  6735. ],
  6736. "abandoned": "php-parallel-lint/php-console-color",
  6737. "time": "2018-09-29T17:23:10+00:00"
  6738. },
  6739. {
  6740. "name": "jakub-onderka/php-console-highlighter",
  6741. "version": "v0.4",
  6742. "source": {
  6743. "type": "git",
  6744. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6745. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6746. },
  6747. "dist": {
  6748. "type": "zip",
  6749. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6750. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6751. "shasum": ""
  6752. },
  6753. "require": {
  6754. "ext-tokenizer": "*",
  6755. "jakub-onderka/php-console-color": "~0.2",
  6756. "php": ">=5.4.0"
  6757. },
  6758. "require-dev": {
  6759. "jakub-onderka/php-code-style": "~1.0",
  6760. "jakub-onderka/php-parallel-lint": "~1.0",
  6761. "jakub-onderka/php-var-dump-check": "~0.1",
  6762. "phpunit/phpunit": "~4.0",
  6763. "squizlabs/php_codesniffer": "~1.5"
  6764. },
  6765. "type": "library",
  6766. "autoload": {
  6767. "psr-4": {
  6768. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6769. }
  6770. },
  6771. "notification-url": "https://packagist.org/downloads/",
  6772. "license": [
  6773. "MIT"
  6774. ],
  6775. "authors": [
  6776. {
  6777. "name": "Jakub Onderka",
  6778. "email": "acci@acci.cz",
  6779. "homepage": "http://www.acci.cz/"
  6780. }
  6781. ],
  6782. "description": "Highlight PHP code in terminal",
  6783. "abandoned": "php-parallel-lint/php-console-highlighter",
  6784. "time": "2018-09-29T18:48:56+00:00"
  6785. },
  6786. {
  6787. "name": "jcalderonzumba/gastonjs",
  6788. "version": "v1.2.0",
  6789. "source": {
  6790. "type": "git",
  6791. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6792. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6793. },
  6794. "dist": {
  6795. "type": "zip",
  6796. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6797. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6798. "shasum": ""
  6799. },
  6800. "require": {
  6801. "guzzlehttp/guzzle": "~5.0|~6.0",
  6802. "php": ">=5.4"
  6803. },
  6804. "require-dev": {
  6805. "phpunit/phpunit": "~4.6",
  6806. "silex/silex": "~1.2",
  6807. "symfony/phpunit-bridge": "~2.7",
  6808. "symfony/process": "~2.1"
  6809. },
  6810. "type": "phantomjs-api",
  6811. "extra": {
  6812. "branch-alias": {
  6813. "dev-master": "1.1.x-dev"
  6814. }
  6815. },
  6816. "autoload": {
  6817. "psr-4": {
  6818. "Zumba\\GastonJS\\": "src"
  6819. }
  6820. },
  6821. "notification-url": "https://packagist.org/downloads/",
  6822. "license": [
  6823. "MIT"
  6824. ],
  6825. "authors": [
  6826. {
  6827. "name": "Juan Francisco Calderón Zumba",
  6828. "email": "juanfcz@gmail.com",
  6829. "homepage": "http://github.com/jcalderonzumba"
  6830. }
  6831. ],
  6832. "description": "PhantomJS API based server for webpage automation",
  6833. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6834. "keywords": [
  6835. "api",
  6836. "automation",
  6837. "browser",
  6838. "headless",
  6839. "phantomjs"
  6840. ],
  6841. "time": "2017-03-31T07:31:47+00:00"
  6842. },
  6843. {
  6844. "name": "jcalderonzumba/mink-phantomjs-driver",
  6845. "version": "v0.3.3",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6849. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6854. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "behat/mink": "~1.7",
  6859. "jcalderonzumba/gastonjs": "~1.0",
  6860. "php": ">=5.4",
  6861. "twig/twig": "~1.20|~2.0"
  6862. },
  6863. "require-dev": {
  6864. "mink/driver-testsuite": "dev-master",
  6865. "phpunit/phpunit": "~4.6"
  6866. },
  6867. "type": "mink-driver",
  6868. "extra": {
  6869. "branch-alias": {
  6870. "dev-master": "0.4.x-dev"
  6871. }
  6872. },
  6873. "autoload": {
  6874. "psr-4": {
  6875. "Zumba\\Mink\\Driver\\": "src"
  6876. }
  6877. },
  6878. "notification-url": "https://packagist.org/downloads/",
  6879. "license": [
  6880. "MIT"
  6881. ],
  6882. "authors": [
  6883. {
  6884. "name": "Juan Francisco Calderón Zumba",
  6885. "email": "juanfcz@gmail.com",
  6886. "homepage": "http://github.com/jcalderonzumba"
  6887. }
  6888. ],
  6889. "description": "PhantomJS driver for Mink framework",
  6890. "homepage": "http://mink.behat.org/",
  6891. "keywords": [
  6892. "ajax",
  6893. "browser",
  6894. "headless",
  6895. "javascript",
  6896. "phantomjs",
  6897. "testing"
  6898. ],
  6899. "time": "2016-12-01T10:57:30+00:00"
  6900. },
  6901. {
  6902. "name": "justinrainbow/json-schema",
  6903. "version": "5.2.9",
  6904. "source": {
  6905. "type": "git",
  6906. "url": "https://github.com/justinrainbow/json-schema.git",
  6907. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  6908. },
  6909. "dist": {
  6910. "type": "zip",
  6911. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  6912. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  6913. "shasum": ""
  6914. },
  6915. "require": {
  6916. "php": ">=5.3.3"
  6917. },
  6918. "require-dev": {
  6919. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  6920. "json-schema/json-schema-test-suite": "1.2.0",
  6921. "phpunit/phpunit": "^4.8.35"
  6922. },
  6923. "bin": [
  6924. "bin/validate-json"
  6925. ],
  6926. "type": "library",
  6927. "extra": {
  6928. "branch-alias": {
  6929. "dev-master": "5.0.x-dev"
  6930. }
  6931. },
  6932. "autoload": {
  6933. "psr-4": {
  6934. "JsonSchema\\": "src/JsonSchema/"
  6935. }
  6936. },
  6937. "notification-url": "https://packagist.org/downloads/",
  6938. "license": [
  6939. "MIT"
  6940. ],
  6941. "authors": [
  6942. {
  6943. "name": "Bruno Prieto Reis",
  6944. "email": "bruno.p.reis@gmail.com"
  6945. },
  6946. {
  6947. "name": "Justin Rainbow",
  6948. "email": "justin.rainbow@gmail.com"
  6949. },
  6950. {
  6951. "name": "Igor Wiedler",
  6952. "email": "igor@wiedler.ch"
  6953. },
  6954. {
  6955. "name": "Robert Schönthal",
  6956. "email": "seroscho@googlemail.com"
  6957. }
  6958. ],
  6959. "description": "A library to validate a json schema.",
  6960. "homepage": "https://github.com/justinrainbow/json-schema",
  6961. "keywords": [
  6962. "json",
  6963. "schema"
  6964. ],
  6965. "time": "2019-09-25T14:49:45+00:00"
  6966. },
  6967. {
  6968. "name": "league/container",
  6969. "version": "2.4.1",
  6970. "source": {
  6971. "type": "git",
  6972. "url": "https://github.com/thephpleague/container.git",
  6973. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6974. },
  6975. "dist": {
  6976. "type": "zip",
  6977. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6978. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6979. "shasum": ""
  6980. },
  6981. "require": {
  6982. "container-interop/container-interop": "^1.2",
  6983. "php": "^5.4.0 || ^7.0"
  6984. },
  6985. "provide": {
  6986. "container-interop/container-interop-implementation": "^1.2",
  6987. "psr/container-implementation": "^1.0"
  6988. },
  6989. "replace": {
  6990. "orno/di": "~2.0"
  6991. },
  6992. "require-dev": {
  6993. "phpunit/phpunit": "4.*"
  6994. },
  6995. "type": "library",
  6996. "extra": {
  6997. "branch-alias": {
  6998. "dev-2.x": "2.x-dev",
  6999. "dev-1.x": "1.x-dev"
  7000. }
  7001. },
  7002. "autoload": {
  7003. "psr-4": {
  7004. "League\\Container\\": "src"
  7005. }
  7006. },
  7007. "notification-url": "https://packagist.org/downloads/",
  7008. "license": [
  7009. "MIT"
  7010. ],
  7011. "authors": [
  7012. {
  7013. "name": "Phil Bennett",
  7014. "email": "philipobenito@gmail.com",
  7015. "homepage": "http://www.philipobenito.com",
  7016. "role": "Developer"
  7017. }
  7018. ],
  7019. "description": "A fast and intuitive dependency injection container.",
  7020. "homepage": "https://github.com/thephpleague/container",
  7021. "keywords": [
  7022. "container",
  7023. "dependency",
  7024. "di",
  7025. "injection",
  7026. "league",
  7027. "provider",
  7028. "service"
  7029. ],
  7030. "time": "2017-05-10T09:20:27+00:00"
  7031. },
  7032. {
  7033. "name": "masterminds/html5",
  7034. "version": "2.7.0",
  7035. "source": {
  7036. "type": "git",
  7037. "url": "https://github.com/Masterminds/html5-php.git",
  7038. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
  7039. },
  7040. "dist": {
  7041. "type": "zip",
  7042. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
  7043. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
  7044. "shasum": ""
  7045. },
  7046. "require": {
  7047. "ext-ctype": "*",
  7048. "ext-dom": "*",
  7049. "ext-libxml": "*",
  7050. "php": ">=5.3.0"
  7051. },
  7052. "require-dev": {
  7053. "phpunit/phpunit": "^4.8.35",
  7054. "sami/sami": "~2.0",
  7055. "satooshi/php-coveralls": "1.0.*"
  7056. },
  7057. "type": "library",
  7058. "extra": {
  7059. "branch-alias": {
  7060. "dev-master": "2.7-dev"
  7061. }
  7062. },
  7063. "autoload": {
  7064. "psr-4": {
  7065. "Masterminds\\": "src"
  7066. }
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "MIT"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Matt Butcher",
  7075. "email": "technosophos@gmail.com"
  7076. },
  7077. {
  7078. "name": "Matt Farina",
  7079. "email": "matt@mattfarina.com"
  7080. },
  7081. {
  7082. "name": "Asmir Mustafic",
  7083. "email": "goetas@gmail.com"
  7084. }
  7085. ],
  7086. "description": "An HTML5 parser and serializer.",
  7087. "homepage": "http://masterminds.github.io/html5-php",
  7088. "keywords": [
  7089. "HTML5",
  7090. "dom",
  7091. "html",
  7092. "parser",
  7093. "querypath",
  7094. "serializer",
  7095. "xml"
  7096. ],
  7097. "time": "2019-07-25T07:03:26+00:00"
  7098. },
  7099. {
  7100. "name": "mikey179/vfsstream",
  7101. "version": "v1.6.8",
  7102. "source": {
  7103. "type": "git",
  7104. "url": "https://github.com/bovigo/vfsStream.git",
  7105. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe"
  7106. },
  7107. "dist": {
  7108. "type": "zip",
  7109. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  7110. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  7111. "shasum": ""
  7112. },
  7113. "require": {
  7114. "php": ">=5.3.0"
  7115. },
  7116. "require-dev": {
  7117. "phpunit/phpunit": "^4.5|^5.0"
  7118. },
  7119. "type": "library",
  7120. "extra": {
  7121. "branch-alias": {
  7122. "dev-master": "1.6.x-dev"
  7123. }
  7124. },
  7125. "autoload": {
  7126. "psr-0": {
  7127. "org\\bovigo\\vfs\\": "src/main/php"
  7128. }
  7129. },
  7130. "notification-url": "https://packagist.org/downloads/",
  7131. "license": [
  7132. "BSD-3-Clause"
  7133. ],
  7134. "authors": [
  7135. {
  7136. "name": "Frank Kleine",
  7137. "homepage": "http://frankkleine.de/",
  7138. "role": "Developer"
  7139. }
  7140. ],
  7141. "description": "Virtual file system to mock the real file system in unit tests.",
  7142. "homepage": "http://vfs.bovigo.org/",
  7143. "time": "2019-10-30T15:31:00+00:00"
  7144. },
  7145. {
  7146. "name": "myclabs/deep-copy",
  7147. "version": "1.7.0",
  7148. "source": {
  7149. "type": "git",
  7150. "url": "https://github.com/myclabs/DeepCopy.git",
  7151. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  7152. },
  7153. "dist": {
  7154. "type": "zip",
  7155. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7156. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7157. "shasum": ""
  7158. },
  7159. "require": {
  7160. "php": "^5.6 || ^7.0"
  7161. },
  7162. "require-dev": {
  7163. "doctrine/collections": "^1.0",
  7164. "doctrine/common": "^2.6",
  7165. "phpunit/phpunit": "^4.1"
  7166. },
  7167. "type": "library",
  7168. "autoload": {
  7169. "psr-4": {
  7170. "DeepCopy\\": "src/DeepCopy/"
  7171. },
  7172. "files": [
  7173. "src/DeepCopy/deep_copy.php"
  7174. ]
  7175. },
  7176. "notification-url": "https://packagist.org/downloads/",
  7177. "license": [
  7178. "MIT"
  7179. ],
  7180. "description": "Create deep copies (clones) of your objects",
  7181. "keywords": [
  7182. "clone",
  7183. "copy",
  7184. "duplicate",
  7185. "object",
  7186. "object graph"
  7187. ],
  7188. "time": "2017-10-19T19:58:43+00:00"
  7189. },
  7190. {
  7191. "name": "nikic/php-parser",
  7192. "version": "v4.3.0",
  7193. "source": {
  7194. "type": "git",
  7195. "url": "https://github.com/nikic/PHP-Parser.git",
  7196. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  7197. },
  7198. "dist": {
  7199. "type": "zip",
  7200. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7201. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7202. "shasum": ""
  7203. },
  7204. "require": {
  7205. "ext-tokenizer": "*",
  7206. "php": ">=7.0"
  7207. },
  7208. "require-dev": {
  7209. "ircmaxell/php-yacc": "0.0.5",
  7210. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7211. },
  7212. "bin": [
  7213. "bin/php-parse"
  7214. ],
  7215. "type": "library",
  7216. "extra": {
  7217. "branch-alias": {
  7218. "dev-master": "4.3-dev"
  7219. }
  7220. },
  7221. "autoload": {
  7222. "psr-4": {
  7223. "PhpParser\\": "lib/PhpParser"
  7224. }
  7225. },
  7226. "notification-url": "https://packagist.org/downloads/",
  7227. "license": [
  7228. "BSD-3-Clause"
  7229. ],
  7230. "authors": [
  7231. {
  7232. "name": "Nikita Popov"
  7233. }
  7234. ],
  7235. "description": "A PHP parser written in PHP",
  7236. "keywords": [
  7237. "parser",
  7238. "php"
  7239. ],
  7240. "time": "2019-11-08T13:50:10+00:00"
  7241. },
  7242. {
  7243. "name": "oomphinc/composer-installers-extender",
  7244. "version": "v1.1.2",
  7245. "source": {
  7246. "type": "git",
  7247. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  7248. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  7249. },
  7250. "dist": {
  7251. "type": "zip",
  7252. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7253. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7254. "shasum": ""
  7255. },
  7256. "require": {
  7257. "composer-plugin-api": "^1.0",
  7258. "composer/installers": "^1.0"
  7259. },
  7260. "type": "composer-plugin",
  7261. "extra": {
  7262. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  7263. },
  7264. "autoload": {
  7265. "psr-4": {
  7266. "OomphInc\\ComposerInstallersExtender\\": "src/"
  7267. }
  7268. },
  7269. "notification-url": "https://packagist.org/downloads/",
  7270. "license": [
  7271. "MIT"
  7272. ],
  7273. "authors": [
  7274. {
  7275. "name": "Stephen Beemsterboer",
  7276. "email": "stephen@oomphinc.com",
  7277. "homepage": "https://github.com/balbuf"
  7278. }
  7279. ],
  7280. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  7281. "homepage": "http://www.oomphinc.com/",
  7282. "time": "2017-03-31T16:57:39+00:00"
  7283. },
  7284. {
  7285. "name": "paragonie/random_compat",
  7286. "version": "v9.99.99",
  7287. "source": {
  7288. "type": "git",
  7289. "url": "https://github.com/paragonie/random_compat.git",
  7290. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7291. },
  7292. "dist": {
  7293. "type": "zip",
  7294. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7295. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7296. "shasum": ""
  7297. },
  7298. "require": {
  7299. "php": "^7"
  7300. },
  7301. "require-dev": {
  7302. "phpunit/phpunit": "4.*|5.*",
  7303. "vimeo/psalm": "^1"
  7304. },
  7305. "suggest": {
  7306. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7307. },
  7308. "type": "library",
  7309. "notification-url": "https://packagist.org/downloads/",
  7310. "license": [
  7311. "MIT"
  7312. ],
  7313. "authors": [
  7314. {
  7315. "name": "Paragon Initiative Enterprises",
  7316. "email": "security@paragonie.com",
  7317. "homepage": "https://paragonie.com"
  7318. }
  7319. ],
  7320. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7321. "keywords": [
  7322. "csprng",
  7323. "polyfill",
  7324. "pseudorandom",
  7325. "random"
  7326. ],
  7327. "time": "2018-07-02T15:55:56+00:00"
  7328. },
  7329. {
  7330. "name": "pear/archive_tar",
  7331. "version": "1.4.9",
  7332. "source": {
  7333. "type": "git",
  7334. "url": "https://github.com/pear/Archive_Tar.git",
  7335. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  7336. },
  7337. "dist": {
  7338. "type": "zip",
  7339. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  7340. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  7341. "shasum": ""
  7342. },
  7343. "require": {
  7344. "pear/pear-core-minimal": "^1.10.0alpha2",
  7345. "php": ">=5.2.0"
  7346. },
  7347. "require-dev": {
  7348. "phpunit/phpunit": "*"
  7349. },
  7350. "suggest": {
  7351. "ext-bz2": "Bz2 compression support.",
  7352. "ext-xz": "Lzma2 compression support.",
  7353. "ext-zlib": "Gzip compression support."
  7354. },
  7355. "type": "library",
  7356. "extra": {
  7357. "branch-alias": {
  7358. "dev-master": "1.4.x-dev"
  7359. }
  7360. },
  7361. "autoload": {
  7362. "psr-0": {
  7363. "Archive_Tar": ""
  7364. }
  7365. },
  7366. "notification-url": "https://packagist.org/downloads/",
  7367. "include-path": [
  7368. "./"
  7369. ],
  7370. "license": [
  7371. "BSD-3-Clause"
  7372. ],
  7373. "authors": [
  7374. {
  7375. "name": "Vincent Blavet",
  7376. "email": "vincent@phpconcept.net"
  7377. },
  7378. {
  7379. "name": "Greg Beaver",
  7380. "email": "greg@chiaraquartet.net"
  7381. },
  7382. {
  7383. "name": "Michiel Rook",
  7384. "email": "mrook@php.net"
  7385. }
  7386. ],
  7387. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7388. "homepage": "https://github.com/pear/Archive_Tar",
  7389. "keywords": [
  7390. "archive",
  7391. "tar"
  7392. ],
  7393. "time": "2019-12-04T10:17:28+00:00"
  7394. },
  7395. {
  7396. "name": "pear/console_getopt",
  7397. "version": "v1.4.3",
  7398. "source": {
  7399. "type": "git",
  7400. "url": "https://github.com/pear/Console_Getopt.git",
  7401. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7402. },
  7403. "dist": {
  7404. "type": "zip",
  7405. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7406. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7407. "shasum": ""
  7408. },
  7409. "type": "library",
  7410. "autoload": {
  7411. "psr-0": {
  7412. "Console": "./"
  7413. }
  7414. },
  7415. "notification-url": "https://packagist.org/downloads/",
  7416. "include-path": [
  7417. "./"
  7418. ],
  7419. "license": [
  7420. "BSD-2-Clause"
  7421. ],
  7422. "authors": [
  7423. {
  7424. "name": "Andrei Zmievski",
  7425. "email": "andrei@php.net",
  7426. "role": "Lead"
  7427. },
  7428. {
  7429. "name": "Stig Bakken",
  7430. "email": "stig@php.net",
  7431. "role": "Developer"
  7432. },
  7433. {
  7434. "name": "Greg Beaver",
  7435. "email": "cellog@php.net",
  7436. "role": "Helper"
  7437. }
  7438. ],
  7439. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7440. "time": "2019-11-20T18:27:48+00:00"
  7441. },
  7442. {
  7443. "name": "pear/pear-core-minimal",
  7444. "version": "v1.10.10",
  7445. "source": {
  7446. "type": "git",
  7447. "url": "https://github.com/pear/pear-core-minimal.git",
  7448. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7449. },
  7450. "dist": {
  7451. "type": "zip",
  7452. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7453. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7454. "shasum": ""
  7455. },
  7456. "require": {
  7457. "pear/console_getopt": "~1.4",
  7458. "pear/pear_exception": "~1.0"
  7459. },
  7460. "replace": {
  7461. "rsky/pear-core-min": "self.version"
  7462. },
  7463. "type": "library",
  7464. "autoload": {
  7465. "psr-0": {
  7466. "": "src/"
  7467. }
  7468. },
  7469. "notification-url": "https://packagist.org/downloads/",
  7470. "include-path": [
  7471. "src/"
  7472. ],
  7473. "license": [
  7474. "BSD-3-Clause"
  7475. ],
  7476. "authors": [
  7477. {
  7478. "name": "Christian Weiske",
  7479. "email": "cweiske@php.net",
  7480. "role": "Lead"
  7481. }
  7482. ],
  7483. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7484. "time": "2019-11-19T19:00:24+00:00"
  7485. },
  7486. {
  7487. "name": "pear/pear_exception",
  7488. "version": "v1.0.1",
  7489. "source": {
  7490. "type": "git",
  7491. "url": "https://github.com/pear/PEAR_Exception.git",
  7492. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7493. },
  7494. "dist": {
  7495. "type": "zip",
  7496. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7497. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7498. "shasum": ""
  7499. },
  7500. "require": {
  7501. "php": ">=4.4.0"
  7502. },
  7503. "require-dev": {
  7504. "phpunit/phpunit": "*"
  7505. },
  7506. "type": "class",
  7507. "extra": {
  7508. "branch-alias": {
  7509. "dev-master": "1.0.x-dev"
  7510. }
  7511. },
  7512. "autoload": {
  7513. "classmap": [
  7514. "PEAR/"
  7515. ]
  7516. },
  7517. "notification-url": "https://packagist.org/downloads/",
  7518. "include-path": [
  7519. "."
  7520. ],
  7521. "license": [
  7522. "BSD-2-Clause"
  7523. ],
  7524. "authors": [
  7525. {
  7526. "name": "Helgi Thormar",
  7527. "email": "dufuz@php.net"
  7528. },
  7529. {
  7530. "name": "Greg Beaver",
  7531. "email": "cellog@php.net"
  7532. }
  7533. ],
  7534. "description": "The PEAR Exception base class.",
  7535. "homepage": "https://github.com/pear/PEAR_Exception",
  7536. "keywords": [
  7537. "exception"
  7538. ],
  7539. "time": "2019-12-10T10:24:42+00:00"
  7540. },
  7541. {
  7542. "name": "phar-io/manifest",
  7543. "version": "1.0.1",
  7544. "source": {
  7545. "type": "git",
  7546. "url": "https://github.com/phar-io/manifest.git",
  7547. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  7548. },
  7549. "dist": {
  7550. "type": "zip",
  7551. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7552. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7553. "shasum": ""
  7554. },
  7555. "require": {
  7556. "ext-dom": "*",
  7557. "ext-phar": "*",
  7558. "phar-io/version": "^1.0.1",
  7559. "php": "^5.6 || ^7.0"
  7560. },
  7561. "type": "library",
  7562. "extra": {
  7563. "branch-alias": {
  7564. "dev-master": "1.0.x-dev"
  7565. }
  7566. },
  7567. "autoload": {
  7568. "classmap": [
  7569. "src/"
  7570. ]
  7571. },
  7572. "notification-url": "https://packagist.org/downloads/",
  7573. "license": [
  7574. "BSD-3-Clause"
  7575. ],
  7576. "authors": [
  7577. {
  7578. "name": "Arne Blankerts",
  7579. "email": "arne@blankerts.de",
  7580. "role": "Developer"
  7581. },
  7582. {
  7583. "name": "Sebastian Heuer",
  7584. "email": "sebastian@phpeople.de",
  7585. "role": "Developer"
  7586. },
  7587. {
  7588. "name": "Sebastian Bergmann",
  7589. "email": "sebastian@phpunit.de",
  7590. "role": "Developer"
  7591. }
  7592. ],
  7593. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7594. "time": "2017-03-05T18:14:27+00:00"
  7595. },
  7596. {
  7597. "name": "phar-io/version",
  7598. "version": "1.0.1",
  7599. "source": {
  7600. "type": "git",
  7601. "url": "https://github.com/phar-io/version.git",
  7602. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  7603. },
  7604. "dist": {
  7605. "type": "zip",
  7606. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  7607. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  7608. "shasum": ""
  7609. },
  7610. "require": {
  7611. "php": "^5.6 || ^7.0"
  7612. },
  7613. "type": "library",
  7614. "autoload": {
  7615. "classmap": [
  7616. "src/"
  7617. ]
  7618. },
  7619. "notification-url": "https://packagist.org/downloads/",
  7620. "license": [
  7621. "BSD-3-Clause"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "Arne Blankerts",
  7626. "email": "arne@blankerts.de",
  7627. "role": "Developer"
  7628. },
  7629. {
  7630. "name": "Sebastian Heuer",
  7631. "email": "sebastian@phpeople.de",
  7632. "role": "Developer"
  7633. },
  7634. {
  7635. "name": "Sebastian Bergmann",
  7636. "email": "sebastian@phpunit.de",
  7637. "role": "Developer"
  7638. }
  7639. ],
  7640. "description": "Library for handling version information and constraints",
  7641. "time": "2017-03-05T17:38:23+00:00"
  7642. },
  7643. {
  7644. "name": "phpdocumentor/reflection-common",
  7645. "version": "1.0.1",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7649. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7654. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7655. "shasum": ""
  7656. },
  7657. "require": {
  7658. "php": ">=5.5"
  7659. },
  7660. "require-dev": {
  7661. "phpunit/phpunit": "^4.6"
  7662. },
  7663. "type": "library",
  7664. "extra": {
  7665. "branch-alias": {
  7666. "dev-master": "1.0.x-dev"
  7667. }
  7668. },
  7669. "autoload": {
  7670. "psr-4": {
  7671. "phpDocumentor\\Reflection\\": [
  7672. "src"
  7673. ]
  7674. }
  7675. },
  7676. "notification-url": "https://packagist.org/downloads/",
  7677. "license": [
  7678. "MIT"
  7679. ],
  7680. "authors": [
  7681. {
  7682. "name": "Jaap van Otterdijk",
  7683. "email": "opensource@ijaap.nl"
  7684. }
  7685. ],
  7686. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7687. "homepage": "http://www.phpdoc.org",
  7688. "keywords": [
  7689. "FQSEN",
  7690. "phpDocumentor",
  7691. "phpdoc",
  7692. "reflection",
  7693. "static analysis"
  7694. ],
  7695. "time": "2017-09-11T18:02:19+00:00"
  7696. },
  7697. {
  7698. "name": "phpdocumentor/reflection-docblock",
  7699. "version": "4.3.4",
  7700. "source": {
  7701. "type": "git",
  7702. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7703. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  7704. },
  7705. "dist": {
  7706. "type": "zip",
  7707. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  7708. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  7709. "shasum": ""
  7710. },
  7711. "require": {
  7712. "php": "^7.0",
  7713. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  7714. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  7715. "webmozart/assert": "^1.0"
  7716. },
  7717. "require-dev": {
  7718. "doctrine/instantiator": "^1.0.5",
  7719. "mockery/mockery": "^1.0",
  7720. "phpdocumentor/type-resolver": "0.4.*",
  7721. "phpunit/phpunit": "^6.4"
  7722. },
  7723. "type": "library",
  7724. "extra": {
  7725. "branch-alias": {
  7726. "dev-master": "4.x-dev"
  7727. }
  7728. },
  7729. "autoload": {
  7730. "psr-4": {
  7731. "phpDocumentor\\Reflection\\": [
  7732. "src/"
  7733. ]
  7734. }
  7735. },
  7736. "notification-url": "https://packagist.org/downloads/",
  7737. "license": [
  7738. "MIT"
  7739. ],
  7740. "authors": [
  7741. {
  7742. "name": "Mike van Riel",
  7743. "email": "me@mikevanriel.com"
  7744. }
  7745. ],
  7746. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7747. "time": "2019-12-28T18:55:12+00:00"
  7748. },
  7749. {
  7750. "name": "phpdocumentor/type-resolver",
  7751. "version": "0.5.1",
  7752. "source": {
  7753. "type": "git",
  7754. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7755. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  7756. },
  7757. "dist": {
  7758. "type": "zip",
  7759. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  7760. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  7761. "shasum": ""
  7762. },
  7763. "require": {
  7764. "php": "^7.0",
  7765. "phpdocumentor/reflection-common": "^1.0"
  7766. },
  7767. "require-dev": {
  7768. "mockery/mockery": "^1.0",
  7769. "phpunit/phpunit": "^6.4"
  7770. },
  7771. "type": "library",
  7772. "extra": {
  7773. "branch-alias": {
  7774. "dev-master": "1.0.x-dev"
  7775. }
  7776. },
  7777. "autoload": {
  7778. "psr-4": {
  7779. "phpDocumentor\\Reflection\\": "src"
  7780. }
  7781. },
  7782. "notification-url": "https://packagist.org/downloads/",
  7783. "license": [
  7784. "MIT"
  7785. ],
  7786. "authors": [
  7787. {
  7788. "name": "Mike van Riel",
  7789. "email": "me@mikevanriel.com"
  7790. }
  7791. ],
  7792. "time": "2017-12-30T13:23:38+00:00"
  7793. },
  7794. {
  7795. "name": "phpspec/prophecy",
  7796. "version": "v1.10.3",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/phpspec/prophecy.git",
  7800. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  7805. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "doctrine/instantiator": "^1.0.2",
  7810. "php": "^5.3|^7.0",
  7811. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7812. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  7813. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  7814. },
  7815. "require-dev": {
  7816. "phpspec/phpspec": "^2.5 || ^3.2",
  7817. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7818. },
  7819. "type": "library",
  7820. "extra": {
  7821. "branch-alias": {
  7822. "dev-master": "1.10.x-dev"
  7823. }
  7824. },
  7825. "autoload": {
  7826. "psr-4": {
  7827. "Prophecy\\": "src/Prophecy"
  7828. }
  7829. },
  7830. "notification-url": "https://packagist.org/downloads/",
  7831. "license": [
  7832. "MIT"
  7833. ],
  7834. "authors": [
  7835. {
  7836. "name": "Konstantin Kudryashov",
  7837. "email": "ever.zet@gmail.com",
  7838. "homepage": "http://everzet.com"
  7839. },
  7840. {
  7841. "name": "Marcello Duarte",
  7842. "email": "marcello.duarte@gmail.com"
  7843. }
  7844. ],
  7845. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7846. "homepage": "https://github.com/phpspec/prophecy",
  7847. "keywords": [
  7848. "Double",
  7849. "Dummy",
  7850. "fake",
  7851. "mock",
  7852. "spy",
  7853. "stub"
  7854. ],
  7855. "time": "2020-03-05T15:02:03+00:00"
  7856. },
  7857. {
  7858. "name": "phpunit/php-code-coverage",
  7859. "version": "5.3.2",
  7860. "source": {
  7861. "type": "git",
  7862. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7863. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7864. },
  7865. "dist": {
  7866. "type": "zip",
  7867. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7868. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7869. "shasum": ""
  7870. },
  7871. "require": {
  7872. "ext-dom": "*",
  7873. "ext-xmlwriter": "*",
  7874. "php": "^7.0",
  7875. "phpunit/php-file-iterator": "^1.4.2",
  7876. "phpunit/php-text-template": "^1.2.1",
  7877. "phpunit/php-token-stream": "^2.0.1",
  7878. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7879. "sebastian/environment": "^3.0",
  7880. "sebastian/version": "^2.0.1",
  7881. "theseer/tokenizer": "^1.1"
  7882. },
  7883. "require-dev": {
  7884. "phpunit/phpunit": "^6.0"
  7885. },
  7886. "suggest": {
  7887. "ext-xdebug": "^2.5.5"
  7888. },
  7889. "type": "library",
  7890. "extra": {
  7891. "branch-alias": {
  7892. "dev-master": "5.3.x-dev"
  7893. }
  7894. },
  7895. "autoload": {
  7896. "classmap": [
  7897. "src/"
  7898. ]
  7899. },
  7900. "notification-url": "https://packagist.org/downloads/",
  7901. "license": [
  7902. "BSD-3-Clause"
  7903. ],
  7904. "authors": [
  7905. {
  7906. "name": "Sebastian Bergmann",
  7907. "email": "sebastian@phpunit.de",
  7908. "role": "lead"
  7909. }
  7910. ],
  7911. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7912. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7913. "keywords": [
  7914. "coverage",
  7915. "testing",
  7916. "xunit"
  7917. ],
  7918. "time": "2018-04-06T15:36:58+00:00"
  7919. },
  7920. {
  7921. "name": "phpunit/php-file-iterator",
  7922. "version": "1.4.5",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7926. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7931. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7932. "shasum": ""
  7933. },
  7934. "require": {
  7935. "php": ">=5.3.3"
  7936. },
  7937. "type": "library",
  7938. "extra": {
  7939. "branch-alias": {
  7940. "dev-master": "1.4.x-dev"
  7941. }
  7942. },
  7943. "autoload": {
  7944. "classmap": [
  7945. "src/"
  7946. ]
  7947. },
  7948. "notification-url": "https://packagist.org/downloads/",
  7949. "license": [
  7950. "BSD-3-Clause"
  7951. ],
  7952. "authors": [
  7953. {
  7954. "name": "Sebastian Bergmann",
  7955. "email": "sb@sebastian-bergmann.de",
  7956. "role": "lead"
  7957. }
  7958. ],
  7959. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7960. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7961. "keywords": [
  7962. "filesystem",
  7963. "iterator"
  7964. ],
  7965. "time": "2017-11-27T13:52:08+00:00"
  7966. },
  7967. {
  7968. "name": "phpunit/php-text-template",
  7969. "version": "1.2.1",
  7970. "source": {
  7971. "type": "git",
  7972. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7973. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7974. },
  7975. "dist": {
  7976. "type": "zip",
  7977. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7978. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7979. "shasum": ""
  7980. },
  7981. "require": {
  7982. "php": ">=5.3.3"
  7983. },
  7984. "type": "library",
  7985. "autoload": {
  7986. "classmap": [
  7987. "src/"
  7988. ]
  7989. },
  7990. "notification-url": "https://packagist.org/downloads/",
  7991. "license": [
  7992. "BSD-3-Clause"
  7993. ],
  7994. "authors": [
  7995. {
  7996. "name": "Sebastian Bergmann",
  7997. "email": "sebastian@phpunit.de",
  7998. "role": "lead"
  7999. }
  8000. ],
  8001. "description": "Simple template engine.",
  8002. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8003. "keywords": [
  8004. "template"
  8005. ],
  8006. "time": "2015-06-21T13:50:34+00:00"
  8007. },
  8008. {
  8009. "name": "phpunit/php-timer",
  8010. "version": "1.0.9",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8014. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  8019. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "php": "^5.3.3 || ^7.0"
  8024. },
  8025. "require-dev": {
  8026. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  8027. },
  8028. "type": "library",
  8029. "extra": {
  8030. "branch-alias": {
  8031. "dev-master": "1.0-dev"
  8032. }
  8033. },
  8034. "autoload": {
  8035. "classmap": [
  8036. "src/"
  8037. ]
  8038. },
  8039. "notification-url": "https://packagist.org/downloads/",
  8040. "license": [
  8041. "BSD-3-Clause"
  8042. ],
  8043. "authors": [
  8044. {
  8045. "name": "Sebastian Bergmann",
  8046. "email": "sb@sebastian-bergmann.de",
  8047. "role": "lead"
  8048. }
  8049. ],
  8050. "description": "Utility class for timing",
  8051. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8052. "keywords": [
  8053. "timer"
  8054. ],
  8055. "time": "2017-02-26T11:10:40+00:00"
  8056. },
  8057. {
  8058. "name": "phpunit/php-token-stream",
  8059. "version": "2.0.2",
  8060. "source": {
  8061. "type": "git",
  8062. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8063. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  8064. },
  8065. "dist": {
  8066. "type": "zip",
  8067. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  8068. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  8069. "shasum": ""
  8070. },
  8071. "require": {
  8072. "ext-tokenizer": "*",
  8073. "php": "^7.0"
  8074. },
  8075. "require-dev": {
  8076. "phpunit/phpunit": "^6.2.4"
  8077. },
  8078. "type": "library",
  8079. "extra": {
  8080. "branch-alias": {
  8081. "dev-master": "2.0-dev"
  8082. }
  8083. },
  8084. "autoload": {
  8085. "classmap": [
  8086. "src/"
  8087. ]
  8088. },
  8089. "notification-url": "https://packagist.org/downloads/",
  8090. "license": [
  8091. "BSD-3-Clause"
  8092. ],
  8093. "authors": [
  8094. {
  8095. "name": "Sebastian Bergmann",
  8096. "email": "sebastian@phpunit.de"
  8097. }
  8098. ],
  8099. "description": "Wrapper around PHP's tokenizer extension.",
  8100. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8101. "keywords": [
  8102. "tokenizer"
  8103. ],
  8104. "time": "2017-11-27T05:48:46+00:00"
  8105. },
  8106. {
  8107. "name": "phpunit/phpunit",
  8108. "version": "6.5.14",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8112. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  8117. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  8118. "shasum": ""
  8119. },
  8120. "require": {
  8121. "ext-dom": "*",
  8122. "ext-json": "*",
  8123. "ext-libxml": "*",
  8124. "ext-mbstring": "*",
  8125. "ext-xml": "*",
  8126. "myclabs/deep-copy": "^1.6.1",
  8127. "phar-io/manifest": "^1.0.1",
  8128. "phar-io/version": "^1.0",
  8129. "php": "^7.0",
  8130. "phpspec/prophecy": "^1.7",
  8131. "phpunit/php-code-coverage": "^5.3",
  8132. "phpunit/php-file-iterator": "^1.4.3",
  8133. "phpunit/php-text-template": "^1.2.1",
  8134. "phpunit/php-timer": "^1.0.9",
  8135. "phpunit/phpunit-mock-objects": "^5.0.9",
  8136. "sebastian/comparator": "^2.1",
  8137. "sebastian/diff": "^2.0",
  8138. "sebastian/environment": "^3.1",
  8139. "sebastian/exporter": "^3.1",
  8140. "sebastian/global-state": "^2.0",
  8141. "sebastian/object-enumerator": "^3.0.3",
  8142. "sebastian/resource-operations": "^1.0",
  8143. "sebastian/version": "^2.0.1"
  8144. },
  8145. "conflict": {
  8146. "phpdocumentor/reflection-docblock": "3.0.2",
  8147. "phpunit/dbunit": "<3.0"
  8148. },
  8149. "require-dev": {
  8150. "ext-pdo": "*"
  8151. },
  8152. "suggest": {
  8153. "ext-xdebug": "*",
  8154. "phpunit/php-invoker": "^1.1"
  8155. },
  8156. "bin": [
  8157. "phpunit"
  8158. ],
  8159. "type": "library",
  8160. "extra": {
  8161. "branch-alias": {
  8162. "dev-master": "6.5.x-dev"
  8163. }
  8164. },
  8165. "autoload": {
  8166. "classmap": [
  8167. "src/"
  8168. ]
  8169. },
  8170. "notification-url": "https://packagist.org/downloads/",
  8171. "license": [
  8172. "BSD-3-Clause"
  8173. ],
  8174. "authors": [
  8175. {
  8176. "name": "Sebastian Bergmann",
  8177. "email": "sebastian@phpunit.de",
  8178. "role": "lead"
  8179. }
  8180. ],
  8181. "description": "The PHP Unit Testing framework.",
  8182. "homepage": "https://phpunit.de/",
  8183. "keywords": [
  8184. "phpunit",
  8185. "testing",
  8186. "xunit"
  8187. ],
  8188. "time": "2019-02-01T05:22:47+00:00"
  8189. },
  8190. {
  8191. "name": "phpunit/phpunit-mock-objects",
  8192. "version": "5.0.10",
  8193. "source": {
  8194. "type": "git",
  8195. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  8196. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  8197. },
  8198. "dist": {
  8199. "type": "zip",
  8200. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8201. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8202. "shasum": ""
  8203. },
  8204. "require": {
  8205. "doctrine/instantiator": "^1.0.5",
  8206. "php": "^7.0",
  8207. "phpunit/php-text-template": "^1.2.1",
  8208. "sebastian/exporter": "^3.1"
  8209. },
  8210. "conflict": {
  8211. "phpunit/phpunit": "<6.0"
  8212. },
  8213. "require-dev": {
  8214. "phpunit/phpunit": "^6.5.11"
  8215. },
  8216. "suggest": {
  8217. "ext-soap": "*"
  8218. },
  8219. "type": "library",
  8220. "extra": {
  8221. "branch-alias": {
  8222. "dev-master": "5.0.x-dev"
  8223. }
  8224. },
  8225. "autoload": {
  8226. "classmap": [
  8227. "src/"
  8228. ]
  8229. },
  8230. "notification-url": "https://packagist.org/downloads/",
  8231. "license": [
  8232. "BSD-3-Clause"
  8233. ],
  8234. "authors": [
  8235. {
  8236. "name": "Sebastian Bergmann",
  8237. "email": "sebastian@phpunit.de",
  8238. "role": "lead"
  8239. }
  8240. ],
  8241. "description": "Mock Object library for PHPUnit",
  8242. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  8243. "keywords": [
  8244. "mock",
  8245. "xunit"
  8246. ],
  8247. "abandoned": true,
  8248. "time": "2018-08-09T05:50:03+00:00"
  8249. },
  8250. {
  8251. "name": "psr/container",
  8252. "version": "1.0.0",
  8253. "source": {
  8254. "type": "git",
  8255. "url": "https://github.com/php-fig/container.git",
  8256. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8257. },
  8258. "dist": {
  8259. "type": "zip",
  8260. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8261. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8262. "shasum": ""
  8263. },
  8264. "require": {
  8265. "php": ">=5.3.0"
  8266. },
  8267. "type": "library",
  8268. "extra": {
  8269. "branch-alias": {
  8270. "dev-master": "1.0.x-dev"
  8271. }
  8272. },
  8273. "autoload": {
  8274. "psr-4": {
  8275. "Psr\\Container\\": "src/"
  8276. }
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "MIT"
  8281. ],
  8282. "authors": [
  8283. {
  8284. "name": "PHP-FIG",
  8285. "homepage": "http://www.php-fig.org/"
  8286. }
  8287. ],
  8288. "description": "Common Container Interface (PHP FIG PSR-11)",
  8289. "homepage": "https://github.com/php-fig/container",
  8290. "keywords": [
  8291. "PSR-11",
  8292. "container",
  8293. "container-interface",
  8294. "container-interop",
  8295. "psr"
  8296. ],
  8297. "time": "2017-02-14T16:28:37+00:00"
  8298. },
  8299. {
  8300. "name": "psr/http-message",
  8301. "version": "1.0.1",
  8302. "source": {
  8303. "type": "git",
  8304. "url": "https://github.com/php-fig/http-message.git",
  8305. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8306. },
  8307. "dist": {
  8308. "type": "zip",
  8309. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8310. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8311. "shasum": ""
  8312. },
  8313. "require": {
  8314. "php": ">=5.3.0"
  8315. },
  8316. "type": "library",
  8317. "extra": {
  8318. "branch-alias": {
  8319. "dev-master": "1.0.x-dev"
  8320. }
  8321. },
  8322. "autoload": {
  8323. "psr-4": {
  8324. "Psr\\Http\\Message\\": "src/"
  8325. }
  8326. },
  8327. "notification-url": "https://packagist.org/downloads/",
  8328. "license": [
  8329. "MIT"
  8330. ],
  8331. "authors": [
  8332. {
  8333. "name": "PHP-FIG",
  8334. "homepage": "http://www.php-fig.org/"
  8335. }
  8336. ],
  8337. "description": "Common interface for HTTP messages",
  8338. "homepage": "https://github.com/php-fig/http-message",
  8339. "keywords": [
  8340. "http",
  8341. "http-message",
  8342. "psr",
  8343. "psr-7",
  8344. "request",
  8345. "response"
  8346. ],
  8347. "time": "2016-08-06T14:39:51+00:00"
  8348. },
  8349. {
  8350. "name": "psr/log",
  8351. "version": "1.1.3",
  8352. "source": {
  8353. "type": "git",
  8354. "url": "https://github.com/php-fig/log.git",
  8355. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  8356. },
  8357. "dist": {
  8358. "type": "zip",
  8359. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  8360. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  8361. "shasum": ""
  8362. },
  8363. "require": {
  8364. "php": ">=5.3.0"
  8365. },
  8366. "type": "library",
  8367. "extra": {
  8368. "branch-alias": {
  8369. "dev-master": "1.1.x-dev"
  8370. }
  8371. },
  8372. "autoload": {
  8373. "psr-4": {
  8374. "Psr\\Log\\": "Psr/Log/"
  8375. }
  8376. },
  8377. "notification-url": "https://packagist.org/downloads/",
  8378. "license": [
  8379. "MIT"
  8380. ],
  8381. "authors": [
  8382. {
  8383. "name": "PHP-FIG",
  8384. "homepage": "http://www.php-fig.org/"
  8385. }
  8386. ],
  8387. "description": "Common interface for logging libraries",
  8388. "homepage": "https://github.com/php-fig/log",
  8389. "keywords": [
  8390. "log",
  8391. "psr",
  8392. "psr-3"
  8393. ],
  8394. "time": "2020-03-23T09:12:05+00:00"
  8395. },
  8396. {
  8397. "name": "psy/psysh",
  8398. "version": "v0.9.9",
  8399. "source": {
  8400. "type": "git",
  8401. "url": "https://github.com/bobthecow/psysh.git",
  8402. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8403. },
  8404. "dist": {
  8405. "type": "zip",
  8406. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8407. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8408. "shasum": ""
  8409. },
  8410. "require": {
  8411. "dnoegel/php-xdg-base-dir": "0.1",
  8412. "ext-json": "*",
  8413. "ext-tokenizer": "*",
  8414. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8415. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8416. "php": ">=5.4.0",
  8417. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8418. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8419. },
  8420. "require-dev": {
  8421. "bamarni/composer-bin-plugin": "^1.2",
  8422. "hoa/console": "~2.15|~3.16",
  8423. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8424. },
  8425. "suggest": {
  8426. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8427. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8428. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8429. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8430. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8431. },
  8432. "bin": [
  8433. "bin/psysh"
  8434. ],
  8435. "type": "library",
  8436. "extra": {
  8437. "branch-alias": {
  8438. "dev-develop": "0.9.x-dev"
  8439. }
  8440. },
  8441. "autoload": {
  8442. "files": [
  8443. "src/functions.php"
  8444. ],
  8445. "psr-4": {
  8446. "Psy\\": "src/"
  8447. }
  8448. },
  8449. "notification-url": "https://packagist.org/downloads/",
  8450. "license": [
  8451. "MIT"
  8452. ],
  8453. "authors": [
  8454. {
  8455. "name": "Justin Hileman",
  8456. "email": "justin@justinhileman.info",
  8457. "homepage": "http://justinhileman.com"
  8458. }
  8459. ],
  8460. "description": "An interactive shell for modern PHP.",
  8461. "homepage": "http://psysh.org",
  8462. "keywords": [
  8463. "REPL",
  8464. "console",
  8465. "interactive",
  8466. "shell"
  8467. ],
  8468. "time": "2018-10-13T15:16:03+00:00"
  8469. },
  8470. {
  8471. "name": "ralouphie/getallheaders",
  8472. "version": "3.0.3",
  8473. "source": {
  8474. "type": "git",
  8475. "url": "https://github.com/ralouphie/getallheaders.git",
  8476. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8477. },
  8478. "dist": {
  8479. "type": "zip",
  8480. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8481. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8482. "shasum": ""
  8483. },
  8484. "require": {
  8485. "php": ">=5.6"
  8486. },
  8487. "require-dev": {
  8488. "php-coveralls/php-coveralls": "^2.1",
  8489. "phpunit/phpunit": "^5 || ^6.5"
  8490. },
  8491. "type": "library",
  8492. "autoload": {
  8493. "files": [
  8494. "src/getallheaders.php"
  8495. ]
  8496. },
  8497. "notification-url": "https://packagist.org/downloads/",
  8498. "license": [
  8499. "MIT"
  8500. ],
  8501. "authors": [
  8502. {
  8503. "name": "Ralph Khattar",
  8504. "email": "ralph.khattar@gmail.com"
  8505. }
  8506. ],
  8507. "description": "A polyfill for getallheaders.",
  8508. "time": "2019-03-08T08:55:37+00:00"
  8509. },
  8510. {
  8511. "name": "sebastian/code-unit-reverse-lookup",
  8512. "version": "1.0.1",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8516. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8521. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8522. "shasum": ""
  8523. },
  8524. "require": {
  8525. "php": "^5.6 || ^7.0"
  8526. },
  8527. "require-dev": {
  8528. "phpunit/phpunit": "^5.7 || ^6.0"
  8529. },
  8530. "type": "library",
  8531. "extra": {
  8532. "branch-alias": {
  8533. "dev-master": "1.0.x-dev"
  8534. }
  8535. },
  8536. "autoload": {
  8537. "classmap": [
  8538. "src/"
  8539. ]
  8540. },
  8541. "notification-url": "https://packagist.org/downloads/",
  8542. "license": [
  8543. "BSD-3-Clause"
  8544. ],
  8545. "authors": [
  8546. {
  8547. "name": "Sebastian Bergmann",
  8548. "email": "sebastian@phpunit.de"
  8549. }
  8550. ],
  8551. "description": "Looks up which function or method a line of code belongs to",
  8552. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8553. "time": "2017-03-04T06:30:41+00:00"
  8554. },
  8555. {
  8556. "name": "sebastian/comparator",
  8557. "version": "2.1.3",
  8558. "source": {
  8559. "type": "git",
  8560. "url": "https://github.com/sebastianbergmann/comparator.git",
  8561. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  8562. },
  8563. "dist": {
  8564. "type": "zip",
  8565. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  8566. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  8567. "shasum": ""
  8568. },
  8569. "require": {
  8570. "php": "^7.0",
  8571. "sebastian/diff": "^2.0 || ^3.0",
  8572. "sebastian/exporter": "^3.1"
  8573. },
  8574. "require-dev": {
  8575. "phpunit/phpunit": "^6.4"
  8576. },
  8577. "type": "library",
  8578. "extra": {
  8579. "branch-alias": {
  8580. "dev-master": "2.1.x-dev"
  8581. }
  8582. },
  8583. "autoload": {
  8584. "classmap": [
  8585. "src/"
  8586. ]
  8587. },
  8588. "notification-url": "https://packagist.org/downloads/",
  8589. "license": [
  8590. "BSD-3-Clause"
  8591. ],
  8592. "authors": [
  8593. {
  8594. "name": "Jeff Welch",
  8595. "email": "whatthejeff@gmail.com"
  8596. },
  8597. {
  8598. "name": "Volker Dusch",
  8599. "email": "github@wallbash.com"
  8600. },
  8601. {
  8602. "name": "Bernhard Schussek",
  8603. "email": "bschussek@2bepublished.at"
  8604. },
  8605. {
  8606. "name": "Sebastian Bergmann",
  8607. "email": "sebastian@phpunit.de"
  8608. }
  8609. ],
  8610. "description": "Provides the functionality to compare PHP values for equality",
  8611. "homepage": "https://github.com/sebastianbergmann/comparator",
  8612. "keywords": [
  8613. "comparator",
  8614. "compare",
  8615. "equality"
  8616. ],
  8617. "time": "2018-02-01T13:46:46+00:00"
  8618. },
  8619. {
  8620. "name": "sebastian/diff",
  8621. "version": "2.0.1",
  8622. "source": {
  8623. "type": "git",
  8624. "url": "https://github.com/sebastianbergmann/diff.git",
  8625. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  8626. },
  8627. "dist": {
  8628. "type": "zip",
  8629. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8630. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8631. "shasum": ""
  8632. },
  8633. "require": {
  8634. "php": "^7.0"
  8635. },
  8636. "require-dev": {
  8637. "phpunit/phpunit": "^6.2"
  8638. },
  8639. "type": "library",
  8640. "extra": {
  8641. "branch-alias": {
  8642. "dev-master": "2.0-dev"
  8643. }
  8644. },
  8645. "autoload": {
  8646. "classmap": [
  8647. "src/"
  8648. ]
  8649. },
  8650. "notification-url": "https://packagist.org/downloads/",
  8651. "license": [
  8652. "BSD-3-Clause"
  8653. ],
  8654. "authors": [
  8655. {
  8656. "name": "Kore Nordmann",
  8657. "email": "mail@kore-nordmann.de"
  8658. },
  8659. {
  8660. "name": "Sebastian Bergmann",
  8661. "email": "sebastian@phpunit.de"
  8662. }
  8663. ],
  8664. "description": "Diff implementation",
  8665. "homepage": "https://github.com/sebastianbergmann/diff",
  8666. "keywords": [
  8667. "diff"
  8668. ],
  8669. "time": "2017-08-03T08:09:46+00:00"
  8670. },
  8671. {
  8672. "name": "sebastian/environment",
  8673. "version": "3.1.0",
  8674. "source": {
  8675. "type": "git",
  8676. "url": "https://github.com/sebastianbergmann/environment.git",
  8677. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  8678. },
  8679. "dist": {
  8680. "type": "zip",
  8681. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8682. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8683. "shasum": ""
  8684. },
  8685. "require": {
  8686. "php": "^7.0"
  8687. },
  8688. "require-dev": {
  8689. "phpunit/phpunit": "^6.1"
  8690. },
  8691. "type": "library",
  8692. "extra": {
  8693. "branch-alias": {
  8694. "dev-master": "3.1.x-dev"
  8695. }
  8696. },
  8697. "autoload": {
  8698. "classmap": [
  8699. "src/"
  8700. ]
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "BSD-3-Clause"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Sebastian Bergmann",
  8709. "email": "sebastian@phpunit.de"
  8710. }
  8711. ],
  8712. "description": "Provides functionality to handle HHVM/PHP environments",
  8713. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8714. "keywords": [
  8715. "Xdebug",
  8716. "environment",
  8717. "hhvm"
  8718. ],
  8719. "time": "2017-07-01T08:51:00+00:00"
  8720. },
  8721. {
  8722. "name": "sebastian/exporter",
  8723. "version": "3.1.2",
  8724. "source": {
  8725. "type": "git",
  8726. "url": "https://github.com/sebastianbergmann/exporter.git",
  8727. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8728. },
  8729. "dist": {
  8730. "type": "zip",
  8731. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8732. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8733. "shasum": ""
  8734. },
  8735. "require": {
  8736. "php": "^7.0",
  8737. "sebastian/recursion-context": "^3.0"
  8738. },
  8739. "require-dev": {
  8740. "ext-mbstring": "*",
  8741. "phpunit/phpunit": "^6.0"
  8742. },
  8743. "type": "library",
  8744. "extra": {
  8745. "branch-alias": {
  8746. "dev-master": "3.1.x-dev"
  8747. }
  8748. },
  8749. "autoload": {
  8750. "classmap": [
  8751. "src/"
  8752. ]
  8753. },
  8754. "notification-url": "https://packagist.org/downloads/",
  8755. "license": [
  8756. "BSD-3-Clause"
  8757. ],
  8758. "authors": [
  8759. {
  8760. "name": "Sebastian Bergmann",
  8761. "email": "sebastian@phpunit.de"
  8762. },
  8763. {
  8764. "name": "Jeff Welch",
  8765. "email": "whatthejeff@gmail.com"
  8766. },
  8767. {
  8768. "name": "Volker Dusch",
  8769. "email": "github@wallbash.com"
  8770. },
  8771. {
  8772. "name": "Adam Harvey",
  8773. "email": "aharvey@php.net"
  8774. },
  8775. {
  8776. "name": "Bernhard Schussek",
  8777. "email": "bschussek@gmail.com"
  8778. }
  8779. ],
  8780. "description": "Provides the functionality to export PHP variables for visualization",
  8781. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8782. "keywords": [
  8783. "export",
  8784. "exporter"
  8785. ],
  8786. "time": "2019-09-14T09:02:43+00:00"
  8787. },
  8788. {
  8789. "name": "sebastian/global-state",
  8790. "version": "2.0.0",
  8791. "source": {
  8792. "type": "git",
  8793. "url": "https://github.com/sebastianbergmann/global-state.git",
  8794. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8795. },
  8796. "dist": {
  8797. "type": "zip",
  8798. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8799. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8800. "shasum": ""
  8801. },
  8802. "require": {
  8803. "php": "^7.0"
  8804. },
  8805. "require-dev": {
  8806. "phpunit/phpunit": "^6.0"
  8807. },
  8808. "suggest": {
  8809. "ext-uopz": "*"
  8810. },
  8811. "type": "library",
  8812. "extra": {
  8813. "branch-alias": {
  8814. "dev-master": "2.0-dev"
  8815. }
  8816. },
  8817. "autoload": {
  8818. "classmap": [
  8819. "src/"
  8820. ]
  8821. },
  8822. "notification-url": "https://packagist.org/downloads/",
  8823. "license": [
  8824. "BSD-3-Clause"
  8825. ],
  8826. "authors": [
  8827. {
  8828. "name": "Sebastian Bergmann",
  8829. "email": "sebastian@phpunit.de"
  8830. }
  8831. ],
  8832. "description": "Snapshotting of global state",
  8833. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8834. "keywords": [
  8835. "global state"
  8836. ],
  8837. "time": "2017-04-27T15:39:26+00:00"
  8838. },
  8839. {
  8840. "name": "sebastian/object-enumerator",
  8841. "version": "3.0.3",
  8842. "source": {
  8843. "type": "git",
  8844. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8845. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8846. },
  8847. "dist": {
  8848. "type": "zip",
  8849. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8850. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8851. "shasum": ""
  8852. },
  8853. "require": {
  8854. "php": "^7.0",
  8855. "sebastian/object-reflector": "^1.1.1",
  8856. "sebastian/recursion-context": "^3.0"
  8857. },
  8858. "require-dev": {
  8859. "phpunit/phpunit": "^6.0"
  8860. },
  8861. "type": "library",
  8862. "extra": {
  8863. "branch-alias": {
  8864. "dev-master": "3.0.x-dev"
  8865. }
  8866. },
  8867. "autoload": {
  8868. "classmap": [
  8869. "src/"
  8870. ]
  8871. },
  8872. "notification-url": "https://packagist.org/downloads/",
  8873. "license": [
  8874. "BSD-3-Clause"
  8875. ],
  8876. "authors": [
  8877. {
  8878. "name": "Sebastian Bergmann",
  8879. "email": "sebastian@phpunit.de"
  8880. }
  8881. ],
  8882. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8883. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8884. "time": "2017-08-03T12:35:26+00:00"
  8885. },
  8886. {
  8887. "name": "sebastian/object-reflector",
  8888. "version": "1.1.1",
  8889. "source": {
  8890. "type": "git",
  8891. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8892. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8893. },
  8894. "dist": {
  8895. "type": "zip",
  8896. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8897. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8898. "shasum": ""
  8899. },
  8900. "require": {
  8901. "php": "^7.0"
  8902. },
  8903. "require-dev": {
  8904. "phpunit/phpunit": "^6.0"
  8905. },
  8906. "type": "library",
  8907. "extra": {
  8908. "branch-alias": {
  8909. "dev-master": "1.1-dev"
  8910. }
  8911. },
  8912. "autoload": {
  8913. "classmap": [
  8914. "src/"
  8915. ]
  8916. },
  8917. "notification-url": "https://packagist.org/downloads/",
  8918. "license": [
  8919. "BSD-3-Clause"
  8920. ],
  8921. "authors": [
  8922. {
  8923. "name": "Sebastian Bergmann",
  8924. "email": "sebastian@phpunit.de"
  8925. }
  8926. ],
  8927. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8928. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8929. "time": "2017-03-29T09:07:27+00:00"
  8930. },
  8931. {
  8932. "name": "sebastian/recursion-context",
  8933. "version": "3.0.0",
  8934. "source": {
  8935. "type": "git",
  8936. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8937. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8938. },
  8939. "dist": {
  8940. "type": "zip",
  8941. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8942. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8943. "shasum": ""
  8944. },
  8945. "require": {
  8946. "php": "^7.0"
  8947. },
  8948. "require-dev": {
  8949. "phpunit/phpunit": "^6.0"
  8950. },
  8951. "type": "library",
  8952. "extra": {
  8953. "branch-alias": {
  8954. "dev-master": "3.0.x-dev"
  8955. }
  8956. },
  8957. "autoload": {
  8958. "classmap": [
  8959. "src/"
  8960. ]
  8961. },
  8962. "notification-url": "https://packagist.org/downloads/",
  8963. "license": [
  8964. "BSD-3-Clause"
  8965. ],
  8966. "authors": [
  8967. {
  8968. "name": "Jeff Welch",
  8969. "email": "whatthejeff@gmail.com"
  8970. },
  8971. {
  8972. "name": "Sebastian Bergmann",
  8973. "email": "sebastian@phpunit.de"
  8974. },
  8975. {
  8976. "name": "Adam Harvey",
  8977. "email": "aharvey@php.net"
  8978. }
  8979. ],
  8980. "description": "Provides functionality to recursively process PHP variables",
  8981. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8982. "time": "2017-03-03T06:23:57+00:00"
  8983. },
  8984. {
  8985. "name": "sebastian/resource-operations",
  8986. "version": "1.0.0",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8990. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8995. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8996. "shasum": ""
  8997. },
  8998. "require": {
  8999. "php": ">=5.6.0"
  9000. },
  9001. "type": "library",
  9002. "extra": {
  9003. "branch-alias": {
  9004. "dev-master": "1.0.x-dev"
  9005. }
  9006. },
  9007. "autoload": {
  9008. "classmap": [
  9009. "src/"
  9010. ]
  9011. },
  9012. "notification-url": "https://packagist.org/downloads/",
  9013. "license": [
  9014. "BSD-3-Clause"
  9015. ],
  9016. "authors": [
  9017. {
  9018. "name": "Sebastian Bergmann",
  9019. "email": "sebastian@phpunit.de"
  9020. }
  9021. ],
  9022. "description": "Provides a list of PHP built-in functions that operate on resources",
  9023. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9024. "time": "2015-07-28T20:34:47+00:00"
  9025. },
  9026. {
  9027. "name": "sebastian/version",
  9028. "version": "2.0.1",
  9029. "source": {
  9030. "type": "git",
  9031. "url": "https://github.com/sebastianbergmann/version.git",
  9032. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9033. },
  9034. "dist": {
  9035. "type": "zip",
  9036. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9037. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9038. "shasum": ""
  9039. },
  9040. "require": {
  9041. "php": ">=5.6"
  9042. },
  9043. "type": "library",
  9044. "extra": {
  9045. "branch-alias": {
  9046. "dev-master": "2.0.x-dev"
  9047. }
  9048. },
  9049. "autoload": {
  9050. "classmap": [
  9051. "src/"
  9052. ]
  9053. },
  9054. "notification-url": "https://packagist.org/downloads/",
  9055. "license": [
  9056. "BSD-3-Clause"
  9057. ],
  9058. "authors": [
  9059. {
  9060. "name": "Sebastian Bergmann",
  9061. "email": "sebastian@phpunit.de",
  9062. "role": "lead"
  9063. }
  9064. ],
  9065. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9066. "homepage": "https://github.com/sebastianbergmann/version",
  9067. "time": "2016-10-03T07:35:21+00:00"
  9068. },
  9069. {
  9070. "name": "squizlabs/php_codesniffer",
  9071. "version": "3.5.5",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  9075. "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6",
  9080. "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6",
  9081. "shasum": ""
  9082. },
  9083. "require": {
  9084. "ext-simplexml": "*",
  9085. "ext-tokenizer": "*",
  9086. "ext-xmlwriter": "*",
  9087. "php": ">=5.4.0"
  9088. },
  9089. "require-dev": {
  9090. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  9091. },
  9092. "bin": [
  9093. "bin/phpcs",
  9094. "bin/phpcbf"
  9095. ],
  9096. "type": "library",
  9097. "extra": {
  9098. "branch-alias": {
  9099. "dev-master": "3.x-dev"
  9100. }
  9101. },
  9102. "notification-url": "https://packagist.org/downloads/",
  9103. "license": [
  9104. "BSD-3-Clause"
  9105. ],
  9106. "authors": [
  9107. {
  9108. "name": "Greg Sherwood",
  9109. "role": "lead"
  9110. }
  9111. ],
  9112. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  9113. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  9114. "keywords": [
  9115. "phpcs",
  9116. "standards"
  9117. ],
  9118. "time": "2020-04-17T01:09:41+00:00"
  9119. },
  9120. {
  9121. "name": "stack/builder",
  9122. "version": "v1.0.5",
  9123. "source": {
  9124. "type": "git",
  9125. "url": "https://github.com/stackphp/builder.git",
  9126. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  9127. },
  9128. "dist": {
  9129. "type": "zip",
  9130. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9131. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9132. "shasum": ""
  9133. },
  9134. "require": {
  9135. "php": ">=5.3.0",
  9136. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  9137. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  9138. },
  9139. "require-dev": {
  9140. "silex/silex": "~1.0"
  9141. },
  9142. "type": "library",
  9143. "extra": {
  9144. "branch-alias": {
  9145. "dev-master": "1.0-dev"
  9146. }
  9147. },
  9148. "autoload": {
  9149. "psr-0": {
  9150. "Stack": "src"
  9151. }
  9152. },
  9153. "notification-url": "https://packagist.org/downloads/",
  9154. "license": [
  9155. "MIT"
  9156. ],
  9157. "authors": [
  9158. {
  9159. "name": "Igor Wiedler",
  9160. "email": "igor@wiedler.ch"
  9161. }
  9162. ],
  9163. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  9164. "keywords": [
  9165. "stack"
  9166. ],
  9167. "time": "2017-11-18T14:57:29+00:00"
  9168. },
  9169. {
  9170. "name": "stecman/symfony-console-completion",
  9171. "version": "0.10.1",
  9172. "source": {
  9173. "type": "git",
  9174. "url": "https://github.com/stecman/symfony-console-completion.git",
  9175. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8"
  9176. },
  9177. "dist": {
  9178. "type": "zip",
  9179. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9180. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9181. "shasum": ""
  9182. },
  9183. "require": {
  9184. "php": ">=5.3.2",
  9185. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  9186. },
  9187. "require-dev": {
  9188. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9189. },
  9190. "type": "library",
  9191. "extra": {
  9192. "branch-alias": {
  9193. "dev-master": "0.10.x-dev"
  9194. }
  9195. },
  9196. "autoload": {
  9197. "psr-4": {
  9198. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9199. }
  9200. },
  9201. "notification-url": "https://packagist.org/downloads/",
  9202. "license": [
  9203. "MIT"
  9204. ],
  9205. "authors": [
  9206. {
  9207. "name": "Stephen Holdaway",
  9208. "email": "stephen@stecman.co.nz"
  9209. }
  9210. ],
  9211. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9212. "time": "2019-04-29T03:20:18+00:00"
  9213. },
  9214. {
  9215. "name": "symfony-cmf/routing",
  9216. "version": "1.4.1",
  9217. "source": {
  9218. "type": "git",
  9219. "url": "https://github.com/symfony-cmf/routing.git",
  9220. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  9221. },
  9222. "dist": {
  9223. "type": "zip",
  9224. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9225. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9226. "shasum": ""
  9227. },
  9228. "require": {
  9229. "php": "^5.3.9|^7.0",
  9230. "psr/log": "1.*",
  9231. "symfony/http-kernel": "^2.2|3.*",
  9232. "symfony/routing": "^2.2|3.*"
  9233. },
  9234. "require-dev": {
  9235. "friendsofsymfony/jsrouting-bundle": "^1.1",
  9236. "symfony-cmf/testing": "^1.3",
  9237. "symfony/config": "^2.2|3.*",
  9238. "symfony/dependency-injection": "^2.0.5|3.*",
  9239. "symfony/event-dispatcher": "^2.1|3.*"
  9240. },
  9241. "suggest": {
  9242. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  9243. },
  9244. "type": "library",
  9245. "extra": {
  9246. "branch-alias": {
  9247. "dev-master": "1.4-dev"
  9248. }
  9249. },
  9250. "autoload": {
  9251. "psr-4": {
  9252. "Symfony\\Cmf\\Component\\Routing\\": ""
  9253. }
  9254. },
  9255. "notification-url": "https://packagist.org/downloads/",
  9256. "license": [
  9257. "MIT"
  9258. ],
  9259. "authors": [
  9260. {
  9261. "name": "Symfony CMF Community",
  9262. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9263. }
  9264. ],
  9265. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  9266. "homepage": "http://cmf.symfony.com",
  9267. "keywords": [
  9268. "database",
  9269. "routing"
  9270. ],
  9271. "time": "2017-05-09T08:10:41+00:00"
  9272. },
  9273. {
  9274. "name": "symfony/browser-kit",
  9275. "version": "v3.4.40",
  9276. "source": {
  9277. "type": "git",
  9278. "url": "https://github.com/symfony/browser-kit.git",
  9279. "reference": "1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367"
  9280. },
  9281. "dist": {
  9282. "type": "zip",
  9283. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367",
  9284. "reference": "1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367",
  9285. "shasum": ""
  9286. },
  9287. "require": {
  9288. "php": "^5.5.9|>=7.0.8",
  9289. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  9290. },
  9291. "require-dev": {
  9292. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9293. "symfony/process": "~2.8|~3.0|~4.0"
  9294. },
  9295. "suggest": {
  9296. "symfony/process": ""
  9297. },
  9298. "type": "library",
  9299. "extra": {
  9300. "branch-alias": {
  9301. "dev-master": "3.4-dev"
  9302. }
  9303. },
  9304. "autoload": {
  9305. "psr-4": {
  9306. "Symfony\\Component\\BrowserKit\\": ""
  9307. },
  9308. "exclude-from-classmap": [
  9309. "/Tests/"
  9310. ]
  9311. },
  9312. "notification-url": "https://packagist.org/downloads/",
  9313. "license": [
  9314. "MIT"
  9315. ],
  9316. "authors": [
  9317. {
  9318. "name": "Fabien Potencier",
  9319. "email": "fabien@symfony.com"
  9320. },
  9321. {
  9322. "name": "Symfony Community",
  9323. "homepage": "https://symfony.com/contributors"
  9324. }
  9325. ],
  9326. "description": "Symfony BrowserKit Component",
  9327. "homepage": "https://symfony.com",
  9328. "time": "2020-03-15T09:38:08+00:00"
  9329. },
  9330. {
  9331. "name": "symfony/class-loader",
  9332. "version": "v3.4.40",
  9333. "source": {
  9334. "type": "git",
  9335. "url": "https://github.com/symfony/class-loader.git",
  9336. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  9337. },
  9338. "dist": {
  9339. "type": "zip",
  9340. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  9341. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  9342. "shasum": ""
  9343. },
  9344. "require": {
  9345. "php": "^5.5.9|>=7.0.8"
  9346. },
  9347. "require-dev": {
  9348. "symfony/finder": "~2.8|~3.0|~4.0",
  9349. "symfony/polyfill-apcu": "~1.1"
  9350. },
  9351. "suggest": {
  9352. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  9353. },
  9354. "type": "library",
  9355. "extra": {
  9356. "branch-alias": {
  9357. "dev-master": "3.4-dev"
  9358. }
  9359. },
  9360. "autoload": {
  9361. "psr-4": {
  9362. "Symfony\\Component\\ClassLoader\\": ""
  9363. },
  9364. "exclude-from-classmap": [
  9365. "/Tests/"
  9366. ]
  9367. },
  9368. "notification-url": "https://packagist.org/downloads/",
  9369. "license": [
  9370. "MIT"
  9371. ],
  9372. "authors": [
  9373. {
  9374. "name": "Fabien Potencier",
  9375. "email": "fabien@symfony.com"
  9376. },
  9377. {
  9378. "name": "Symfony Community",
  9379. "homepage": "https://symfony.com/contributors"
  9380. }
  9381. ],
  9382. "description": "Symfony ClassLoader Component",
  9383. "homepage": "https://symfony.com",
  9384. "time": "2020-03-15T09:38:08+00:00"
  9385. },
  9386. {
  9387. "name": "symfony/config",
  9388. "version": "v3.4.34",
  9389. "source": {
  9390. "type": "git",
  9391. "url": "https://github.com/symfony/config.git",
  9392. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f"
  9393. },
  9394. "dist": {
  9395. "type": "zip",
  9396. "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f",
  9397. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f",
  9398. "shasum": ""
  9399. },
  9400. "require": {
  9401. "php": "^5.5.9|>=7.0.8",
  9402. "symfony/filesystem": "~2.8|~3.0|~4.0",
  9403. "symfony/polyfill-ctype": "~1.8"
  9404. },
  9405. "conflict": {
  9406. "symfony/dependency-injection": "<3.3",
  9407. "symfony/finder": "<3.3"
  9408. },
  9409. "require-dev": {
  9410. "symfony/dependency-injection": "~3.3|~4.0",
  9411. "symfony/event-dispatcher": "~3.3|~4.0",
  9412. "symfony/finder": "~3.3|~4.0",
  9413. "symfony/yaml": "~3.0|~4.0"
  9414. },
  9415. "suggest": {
  9416. "symfony/yaml": "To use the yaml reference dumper"
  9417. },
  9418. "type": "library",
  9419. "extra": {
  9420. "branch-alias": {
  9421. "dev-master": "3.4-dev"
  9422. }
  9423. },
  9424. "autoload": {
  9425. "psr-4": {
  9426. "Symfony\\Component\\Config\\": ""
  9427. },
  9428. "exclude-from-classmap": [
  9429. "/Tests/"
  9430. ]
  9431. },
  9432. "notification-url": "https://packagist.org/downloads/",
  9433. "license": [
  9434. "MIT"
  9435. ],
  9436. "authors": [
  9437. {
  9438. "name": "Fabien Potencier",
  9439. "email": "fabien@symfony.com"
  9440. },
  9441. {
  9442. "name": "Symfony Community",
  9443. "homepage": "https://symfony.com/contributors"
  9444. }
  9445. ],
  9446. "description": "Symfony Config Component",
  9447. "homepage": "https://symfony.com",
  9448. "time": "2019-11-08T08:28:59+00:00"
  9449. },
  9450. {
  9451. "name": "symfony/console",
  9452. "version": "v3.4.40",
  9453. "source": {
  9454. "type": "git",
  9455. "url": "https://github.com/symfony/console.git",
  9456. "reference": "bf60d5e606cd595391c5f82bf6b570d9573fa120"
  9457. },
  9458. "dist": {
  9459. "type": "zip",
  9460. "url": "https://api.github.com/repos/symfony/console/zipball/bf60d5e606cd595391c5f82bf6b570d9573fa120",
  9461. "reference": "bf60d5e606cd595391c5f82bf6b570d9573fa120",
  9462. "shasum": ""
  9463. },
  9464. "require": {
  9465. "php": "^5.5.9|>=7.0.8",
  9466. "symfony/debug": "~2.8|~3.0|~4.0",
  9467. "symfony/polyfill-mbstring": "~1.0"
  9468. },
  9469. "conflict": {
  9470. "symfony/dependency-injection": "<3.4",
  9471. "symfony/process": "<3.3"
  9472. },
  9473. "provide": {
  9474. "psr/log-implementation": "1.0"
  9475. },
  9476. "require-dev": {
  9477. "psr/log": "~1.0",
  9478. "symfony/config": "~3.3|~4.0",
  9479. "symfony/dependency-injection": "~3.4|~4.0",
  9480. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9481. "symfony/lock": "~3.4|~4.0",
  9482. "symfony/process": "~3.3|~4.0"
  9483. },
  9484. "suggest": {
  9485. "psr/log": "For using the console logger",
  9486. "symfony/event-dispatcher": "",
  9487. "symfony/lock": "",
  9488. "symfony/process": ""
  9489. },
  9490. "type": "library",
  9491. "extra": {
  9492. "branch-alias": {
  9493. "dev-master": "3.4-dev"
  9494. }
  9495. },
  9496. "autoload": {
  9497. "psr-4": {
  9498. "Symfony\\Component\\Console\\": ""
  9499. },
  9500. "exclude-from-classmap": [
  9501. "/Tests/"
  9502. ]
  9503. },
  9504. "notification-url": "https://packagist.org/downloads/",
  9505. "license": [
  9506. "MIT"
  9507. ],
  9508. "authors": [
  9509. {
  9510. "name": "Fabien Potencier",
  9511. "email": "fabien@symfony.com"
  9512. },
  9513. {
  9514. "name": "Symfony Community",
  9515. "homepage": "https://symfony.com/contributors"
  9516. }
  9517. ],
  9518. "description": "Symfony Console Component",
  9519. "homepage": "https://symfony.com",
  9520. "time": "2020-03-27T17:07:22+00:00"
  9521. },
  9522. {
  9523. "name": "symfony/css-selector",
  9524. "version": "v3.4.40",
  9525. "source": {
  9526. "type": "git",
  9527. "url": "https://github.com/symfony/css-selector.git",
  9528. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518"
  9529. },
  9530. "dist": {
  9531. "type": "zip",
  9532. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518",
  9533. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518",
  9534. "shasum": ""
  9535. },
  9536. "require": {
  9537. "php": "^5.5.9|>=7.0.8"
  9538. },
  9539. "type": "library",
  9540. "extra": {
  9541. "branch-alias": {
  9542. "dev-master": "3.4-dev"
  9543. }
  9544. },
  9545. "autoload": {
  9546. "psr-4": {
  9547. "Symfony\\Component\\CssSelector\\": ""
  9548. },
  9549. "exclude-from-classmap": [
  9550. "/Tests/"
  9551. ]
  9552. },
  9553. "notification-url": "https://packagist.org/downloads/",
  9554. "license": [
  9555. "MIT"
  9556. ],
  9557. "authors": [
  9558. {
  9559. "name": "Fabien Potencier",
  9560. "email": "fabien@symfony.com"
  9561. },
  9562. {
  9563. "name": "Jean-François Simon",
  9564. "email": "jeanfrancois.simon@sensiolabs.com"
  9565. },
  9566. {
  9567. "name": "Symfony Community",
  9568. "homepage": "https://symfony.com/contributors"
  9569. }
  9570. ],
  9571. "description": "Symfony CssSelector Component",
  9572. "homepage": "https://symfony.com",
  9573. "time": "2020-03-16T08:31:04+00:00"
  9574. },
  9575. {
  9576. "name": "symfony/debug",
  9577. "version": "v3.4.40",
  9578. "source": {
  9579. "type": "git",
  9580. "url": "https://github.com/symfony/debug.git",
  9581. "reference": "ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29"
  9582. },
  9583. "dist": {
  9584. "type": "zip",
  9585. "url": "https://api.github.com/repos/symfony/debug/zipball/ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29",
  9586. "reference": "ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29",
  9587. "shasum": ""
  9588. },
  9589. "require": {
  9590. "php": "^5.5.9|>=7.0.8",
  9591. "psr/log": "~1.0"
  9592. },
  9593. "conflict": {
  9594. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9595. },
  9596. "require-dev": {
  9597. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9598. },
  9599. "type": "library",
  9600. "extra": {
  9601. "branch-alias": {
  9602. "dev-master": "3.4-dev"
  9603. }
  9604. },
  9605. "autoload": {
  9606. "psr-4": {
  9607. "Symfony\\Component\\Debug\\": ""
  9608. },
  9609. "exclude-from-classmap": [
  9610. "/Tests/"
  9611. ]
  9612. },
  9613. "notification-url": "https://packagist.org/downloads/",
  9614. "license": [
  9615. "MIT"
  9616. ],
  9617. "authors": [
  9618. {
  9619. "name": "Fabien Potencier",
  9620. "email": "fabien@symfony.com"
  9621. },
  9622. {
  9623. "name": "Symfony Community",
  9624. "homepage": "https://symfony.com/contributors"
  9625. }
  9626. ],
  9627. "description": "Symfony Debug Component",
  9628. "homepage": "https://symfony.com",
  9629. "time": "2020-03-23T10:22:40+00:00"
  9630. },
  9631. {
  9632. "name": "symfony/dependency-injection",
  9633. "version": "v3.4.40",
  9634. "source": {
  9635. "type": "git",
  9636. "url": "https://github.com/symfony/dependency-injection.git",
  9637. "reference": "d10ff5503b0b27711087eef4ac7835a752fe42fd"
  9638. },
  9639. "dist": {
  9640. "type": "zip",
  9641. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d10ff5503b0b27711087eef4ac7835a752fe42fd",
  9642. "reference": "d10ff5503b0b27711087eef4ac7835a752fe42fd",
  9643. "shasum": ""
  9644. },
  9645. "require": {
  9646. "php": "^5.5.9|>=7.0.8",
  9647. "psr/container": "^1.0"
  9648. },
  9649. "conflict": {
  9650. "symfony/config": "<3.3.7",
  9651. "symfony/finder": "<3.3",
  9652. "symfony/proxy-manager-bridge": "<3.4",
  9653. "symfony/yaml": "<3.4"
  9654. },
  9655. "provide": {
  9656. "psr/container-implementation": "1.0"
  9657. },
  9658. "require-dev": {
  9659. "symfony/config": "~3.3|~4.0",
  9660. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9661. "symfony/yaml": "~3.4|~4.0"
  9662. },
  9663. "suggest": {
  9664. "symfony/config": "",
  9665. "symfony/expression-language": "For using expressions in service container configuration",
  9666. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9667. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9668. "symfony/yaml": ""
  9669. },
  9670. "type": "library",
  9671. "extra": {
  9672. "branch-alias": {
  9673. "dev-master": "3.4-dev"
  9674. }
  9675. },
  9676. "autoload": {
  9677. "psr-4": {
  9678. "Symfony\\Component\\DependencyInjection\\": ""
  9679. },
  9680. "exclude-from-classmap": [
  9681. "/Tests/"
  9682. ]
  9683. },
  9684. "notification-url": "https://packagist.org/downloads/",
  9685. "license": [
  9686. "MIT"
  9687. ],
  9688. "authors": [
  9689. {
  9690. "name": "Fabien Potencier",
  9691. "email": "fabien@symfony.com"
  9692. },
  9693. {
  9694. "name": "Symfony Community",
  9695. "homepage": "https://symfony.com/contributors"
  9696. }
  9697. ],
  9698. "description": "Symfony DependencyInjection Component",
  9699. "homepage": "https://symfony.com",
  9700. "time": "2020-04-13T09:33:40+00:00"
  9701. },
  9702. {
  9703. "name": "symfony/dom-crawler",
  9704. "version": "v3.4.40",
  9705. "source": {
  9706. "type": "git",
  9707. "url": "https://github.com/symfony/dom-crawler.git",
  9708. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358"
  9709. },
  9710. "dist": {
  9711. "type": "zip",
  9712. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  9713. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  9714. "shasum": ""
  9715. },
  9716. "require": {
  9717. "php": "^5.5.9|>=7.0.8",
  9718. "symfony/polyfill-ctype": "~1.8",
  9719. "symfony/polyfill-mbstring": "~1.0"
  9720. },
  9721. "require-dev": {
  9722. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9723. },
  9724. "suggest": {
  9725. "symfony/css-selector": ""
  9726. },
  9727. "type": "library",
  9728. "extra": {
  9729. "branch-alias": {
  9730. "dev-master": "3.4-dev"
  9731. }
  9732. },
  9733. "autoload": {
  9734. "psr-4": {
  9735. "Symfony\\Component\\DomCrawler\\": ""
  9736. },
  9737. "exclude-from-classmap": [
  9738. "/Tests/"
  9739. ]
  9740. },
  9741. "notification-url": "https://packagist.org/downloads/",
  9742. "license": [
  9743. "MIT"
  9744. ],
  9745. "authors": [
  9746. {
  9747. "name": "Fabien Potencier",
  9748. "email": "fabien@symfony.com"
  9749. },
  9750. {
  9751. "name": "Symfony Community",
  9752. "homepage": "https://symfony.com/contributors"
  9753. }
  9754. ],
  9755. "description": "Symfony DomCrawler Component",
  9756. "homepage": "https://symfony.com",
  9757. "time": "2020-03-16T08:31:04+00:00"
  9758. },
  9759. {
  9760. "name": "symfony/event-dispatcher",
  9761. "version": "v3.4.40",
  9762. "source": {
  9763. "type": "git",
  9764. "url": "https://github.com/symfony/event-dispatcher.git",
  9765. "reference": "9d4e22943b73acc1ba50595b7de1a01fe9dbad48"
  9766. },
  9767. "dist": {
  9768. "type": "zip",
  9769. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9d4e22943b73acc1ba50595b7de1a01fe9dbad48",
  9770. "reference": "9d4e22943b73acc1ba50595b7de1a01fe9dbad48",
  9771. "shasum": ""
  9772. },
  9773. "require": {
  9774. "php": "^5.5.9|>=7.0.8"
  9775. },
  9776. "conflict": {
  9777. "symfony/dependency-injection": "<3.3"
  9778. },
  9779. "require-dev": {
  9780. "psr/log": "~1.0",
  9781. "symfony/config": "~2.8|~3.0|~4.0",
  9782. "symfony/dependency-injection": "~3.3|~4.0",
  9783. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9784. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9785. },
  9786. "suggest": {
  9787. "symfony/dependency-injection": "",
  9788. "symfony/http-kernel": ""
  9789. },
  9790. "type": "library",
  9791. "extra": {
  9792. "branch-alias": {
  9793. "dev-master": "3.4-dev"
  9794. }
  9795. },
  9796. "autoload": {
  9797. "psr-4": {
  9798. "Symfony\\Component\\EventDispatcher\\": ""
  9799. },
  9800. "exclude-from-classmap": [
  9801. "/Tests/"
  9802. ]
  9803. },
  9804. "notification-url": "https://packagist.org/downloads/",
  9805. "license": [
  9806. "MIT"
  9807. ],
  9808. "authors": [
  9809. {
  9810. "name": "Fabien Potencier",
  9811. "email": "fabien@symfony.com"
  9812. },
  9813. {
  9814. "name": "Symfony Community",
  9815. "homepage": "https://symfony.com/contributors"
  9816. }
  9817. ],
  9818. "description": "Symfony EventDispatcher Component",
  9819. "homepage": "https://symfony.com",
  9820. "time": "2020-03-15T09:38:08+00:00"
  9821. },
  9822. {
  9823. "name": "symfony/filesystem",
  9824. "version": "v3.4.34",
  9825. "source": {
  9826. "type": "git",
  9827. "url": "https://github.com/symfony/filesystem.git",
  9828. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516"
  9829. },
  9830. "dist": {
  9831. "type": "zip",
  9832. "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9833. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9834. "shasum": ""
  9835. },
  9836. "require": {
  9837. "php": "^5.5.9|>=7.0.8",
  9838. "symfony/polyfill-ctype": "~1.8"
  9839. },
  9840. "type": "library",
  9841. "extra": {
  9842. "branch-alias": {
  9843. "dev-master": "3.4-dev"
  9844. }
  9845. },
  9846. "autoload": {
  9847. "psr-4": {
  9848. "Symfony\\Component\\Filesystem\\": ""
  9849. },
  9850. "exclude-from-classmap": [
  9851. "/Tests/"
  9852. ]
  9853. },
  9854. "notification-url": "https://packagist.org/downloads/",
  9855. "license": [
  9856. "MIT"
  9857. ],
  9858. "authors": [
  9859. {
  9860. "name": "Fabien Potencier",
  9861. "email": "fabien@symfony.com"
  9862. },
  9863. {
  9864. "name": "Symfony Community",
  9865. "homepage": "https://symfony.com/contributors"
  9866. }
  9867. ],
  9868. "description": "Symfony Filesystem Component",
  9869. "homepage": "https://symfony.com",
  9870. "time": "2019-08-20T13:31:17+00:00"
  9871. },
  9872. {
  9873. "name": "symfony/finder",
  9874. "version": "v3.4.34",
  9875. "source": {
  9876. "type": "git",
  9877. "url": "https://github.com/symfony/finder.git",
  9878. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8"
  9879. },
  9880. "dist": {
  9881. "type": "zip",
  9882. "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9883. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9884. "shasum": ""
  9885. },
  9886. "require": {
  9887. "php": "^5.5.9|>=7.0.8"
  9888. },
  9889. "type": "library",
  9890. "extra": {
  9891. "branch-alias": {
  9892. "dev-master": "3.4-dev"
  9893. }
  9894. },
  9895. "autoload": {
  9896. "psr-4": {
  9897. "Symfony\\Component\\Finder\\": ""
  9898. },
  9899. "exclude-from-classmap": [
  9900. "/Tests/"
  9901. ]
  9902. },
  9903. "notification-url": "https://packagist.org/downloads/",
  9904. "license": [
  9905. "MIT"
  9906. ],
  9907. "authors": [
  9908. {
  9909. "name": "Fabien Potencier",
  9910. "email": "fabien@symfony.com"
  9911. },
  9912. {
  9913. "name": "Symfony Community",
  9914. "homepage": "https://symfony.com/contributors"
  9915. }
  9916. ],
  9917. "description": "Symfony Finder Component",
  9918. "homepage": "https://symfony.com",
  9919. "time": "2019-10-30T12:43:22+00:00"
  9920. },
  9921. {
  9922. "name": "symfony/http-foundation",
  9923. "version": "v3.4.40",
  9924. "source": {
  9925. "type": "git",
  9926. "url": "https://github.com/symfony/http-foundation.git",
  9927. "reference": "eded33daef1147be7ff1249706be9a49fe2c7a44"
  9928. },
  9929. "dist": {
  9930. "type": "zip",
  9931. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/eded33daef1147be7ff1249706be9a49fe2c7a44",
  9932. "reference": "eded33daef1147be7ff1249706be9a49fe2c7a44",
  9933. "shasum": ""
  9934. },
  9935. "require": {
  9936. "php": "^5.5.9|>=7.0.8",
  9937. "symfony/polyfill-mbstring": "~1.1",
  9938. "symfony/polyfill-php70": "~1.6"
  9939. },
  9940. "require-dev": {
  9941. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9942. },
  9943. "type": "library",
  9944. "extra": {
  9945. "branch-alias": {
  9946. "dev-master": "3.4-dev"
  9947. }
  9948. },
  9949. "autoload": {
  9950. "psr-4": {
  9951. "Symfony\\Component\\HttpFoundation\\": ""
  9952. },
  9953. "exclude-from-classmap": [
  9954. "/Tests/"
  9955. ]
  9956. },
  9957. "notification-url": "https://packagist.org/downloads/",
  9958. "license": [
  9959. "MIT"
  9960. ],
  9961. "authors": [
  9962. {
  9963. "name": "Fabien Potencier",
  9964. "email": "fabien@symfony.com"
  9965. },
  9966. {
  9967. "name": "Symfony Community",
  9968. "homepage": "https://symfony.com/contributors"
  9969. }
  9970. ],
  9971. "description": "Symfony HttpFoundation Component",
  9972. "homepage": "https://symfony.com",
  9973. "time": "2020-04-18T20:23:17+00:00"
  9974. },
  9975. {
  9976. "name": "symfony/http-kernel",
  9977. "version": "v3.4.40",
  9978. "source": {
  9979. "type": "git",
  9980. "url": "https://github.com/symfony/http-kernel.git",
  9981. "reference": "139d477cc926de9ca03c3d59b51ab6e22450c6df"
  9982. },
  9983. "dist": {
  9984. "type": "zip",
  9985. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/139d477cc926de9ca03c3d59b51ab6e22450c6df",
  9986. "reference": "139d477cc926de9ca03c3d59b51ab6e22450c6df",
  9987. "shasum": ""
  9988. },
  9989. "require": {
  9990. "php": "^5.5.9|>=7.0.8",
  9991. "psr/log": "~1.0",
  9992. "symfony/debug": "^3.3.3|~4.0",
  9993. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9994. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9995. "symfony/polyfill-ctype": "~1.8",
  9996. "symfony/polyfill-php56": "~1.8"
  9997. },
  9998. "conflict": {
  9999. "symfony/config": "<2.8",
  10000. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  10001. "symfony/var-dumper": "<3.3",
  10002. "twig/twig": "<1.34|<2.4,>=2"
  10003. },
  10004. "provide": {
  10005. "psr/log-implementation": "1.0"
  10006. },
  10007. "require-dev": {
  10008. "psr/cache": "~1.0",
  10009. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  10010. "symfony/class-loader": "~2.8|~3.0",
  10011. "symfony/config": "~2.8|~3.0|~4.0",
  10012. "symfony/console": "~2.8|~3.0|~4.0",
  10013. "symfony/css-selector": "~2.8|~3.0|~4.0",
  10014. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  10015. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  10016. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10017. "symfony/finder": "~2.8|~3.0|~4.0",
  10018. "symfony/process": "~2.8|~3.0|~4.0",
  10019. "symfony/routing": "~3.4|~4.0",
  10020. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  10021. "symfony/templating": "~2.8|~3.0|~4.0",
  10022. "symfony/translation": "~2.8|~3.0|~4.0",
  10023. "symfony/var-dumper": "~3.3|~4.0"
  10024. },
  10025. "suggest": {
  10026. "symfony/browser-kit": "",
  10027. "symfony/config": "",
  10028. "symfony/console": "",
  10029. "symfony/dependency-injection": "",
  10030. "symfony/finder": "",
  10031. "symfony/var-dumper": ""
  10032. },
  10033. "type": "library",
  10034. "extra": {
  10035. "branch-alias": {
  10036. "dev-master": "3.4-dev"
  10037. }
  10038. },
  10039. "autoload": {
  10040. "psr-4": {
  10041. "Symfony\\Component\\HttpKernel\\": ""
  10042. },
  10043. "exclude-from-classmap": [
  10044. "/Tests/"
  10045. ]
  10046. },
  10047. "notification-url": "https://packagist.org/downloads/",
  10048. "license": [
  10049. "MIT"
  10050. ],
  10051. "authors": [
  10052. {
  10053. "name": "Fabien Potencier",
  10054. "email": "fabien@symfony.com"
  10055. },
  10056. {
  10057. "name": "Symfony Community",
  10058. "homepage": "https://symfony.com/contributors"
  10059. }
  10060. ],
  10061. "description": "Symfony HttpKernel Component",
  10062. "homepage": "https://symfony.com",
  10063. "time": "2020-04-28T17:41:38+00:00"
  10064. },
  10065. {
  10066. "name": "symfony/phpunit-bridge",
  10067. "version": "v3.4.40",
  10068. "source": {
  10069. "type": "git",
  10070. "url": "https://github.com/symfony/phpunit-bridge.git",
  10071. "reference": "58c7de42b8b13c3bec82dbb8a87d00e4d83dd7c2"
  10072. },
  10073. "dist": {
  10074. "type": "zip",
  10075. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/58c7de42b8b13c3bec82dbb8a87d00e4d83dd7c2",
  10076. "reference": "58c7de42b8b13c3bec82dbb8a87d00e4d83dd7c2",
  10077. "shasum": ""
  10078. },
  10079. "require": {
  10080. "php": ">=5.3.3"
  10081. },
  10082. "conflict": {
  10083. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  10084. },
  10085. "suggest": {
  10086. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  10087. },
  10088. "bin": [
  10089. "bin/simple-phpunit"
  10090. ],
  10091. "type": "symfony-bridge",
  10092. "extra": {
  10093. "branch-alias": {
  10094. "dev-master": "3.4-dev"
  10095. },
  10096. "thanks": {
  10097. "name": "phpunit/phpunit",
  10098. "url": "https://github.com/sebastianbergmann/phpunit"
  10099. }
  10100. },
  10101. "autoload": {
  10102. "files": [
  10103. "bootstrap.php"
  10104. ],
  10105. "psr-4": {
  10106. "Symfony\\Bridge\\PhpUnit\\": ""
  10107. },
  10108. "exclude-from-classmap": [
  10109. "/Tests/"
  10110. ]
  10111. },
  10112. "notification-url": "https://packagist.org/downloads/",
  10113. "license": [
  10114. "MIT"
  10115. ],
  10116. "authors": [
  10117. {
  10118. "name": "Nicolas Grekas",
  10119. "email": "p@tchwork.com"
  10120. },
  10121. {
  10122. "name": "Symfony Community",
  10123. "homepage": "https://symfony.com/contributors"
  10124. }
  10125. ],
  10126. "description": "Symfony PHPUnit Bridge",
  10127. "homepage": "https://symfony.com",
  10128. "time": "2020-04-25T12:18:34+00:00"
  10129. },
  10130. {
  10131. "name": "symfony/polyfill-ctype",
  10132. "version": "v1.17.0",
  10133. "source": {
  10134. "type": "git",
  10135. "url": "https://github.com/symfony/polyfill-ctype.git",
  10136. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  10137. },
  10138. "dist": {
  10139. "type": "zip",
  10140. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  10141. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  10142. "shasum": ""
  10143. },
  10144. "require": {
  10145. "php": ">=5.3.3"
  10146. },
  10147. "suggest": {
  10148. "ext-ctype": "For best performance"
  10149. },
  10150. "type": "library",
  10151. "extra": {
  10152. "branch-alias": {
  10153. "dev-master": "1.17-dev"
  10154. }
  10155. },
  10156. "autoload": {
  10157. "psr-4": {
  10158. "Symfony\\Polyfill\\Ctype\\": ""
  10159. },
  10160. "files": [
  10161. "bootstrap.php"
  10162. ]
  10163. },
  10164. "notification-url": "https://packagist.org/downloads/",
  10165. "license": [
  10166. "MIT"
  10167. ],
  10168. "authors": [
  10169. {
  10170. "name": "Gert de Pagter",
  10171. "email": "BackEndTea@gmail.com"
  10172. },
  10173. {
  10174. "name": "Symfony Community",
  10175. "homepage": "https://symfony.com/contributors"
  10176. }
  10177. ],
  10178. "description": "Symfony polyfill for ctype functions",
  10179. "homepage": "https://symfony.com",
  10180. "keywords": [
  10181. "compatibility",
  10182. "ctype",
  10183. "polyfill",
  10184. "portable"
  10185. ],
  10186. "time": "2020-05-12T16:14:59+00:00"
  10187. },
  10188. {
  10189. "name": "symfony/polyfill-iconv",
  10190. "version": "v1.17.0",
  10191. "source": {
  10192. "type": "git",
  10193. "url": "https://github.com/symfony/polyfill-iconv.git",
  10194. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  10195. },
  10196. "dist": {
  10197. "type": "zip",
  10198. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  10199. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  10200. "shasum": ""
  10201. },
  10202. "require": {
  10203. "php": ">=5.3.3"
  10204. },
  10205. "suggest": {
  10206. "ext-iconv": "For best performance"
  10207. },
  10208. "type": "library",
  10209. "extra": {
  10210. "branch-alias": {
  10211. "dev-master": "1.17-dev"
  10212. }
  10213. },
  10214. "autoload": {
  10215. "psr-4": {
  10216. "Symfony\\Polyfill\\Iconv\\": ""
  10217. },
  10218. "files": [
  10219. "bootstrap.php"
  10220. ]
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "MIT"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "Nicolas Grekas",
  10229. "email": "p@tchwork.com"
  10230. },
  10231. {
  10232. "name": "Symfony Community",
  10233. "homepage": "https://symfony.com/contributors"
  10234. }
  10235. ],
  10236. "description": "Symfony polyfill for the Iconv extension",
  10237. "homepage": "https://symfony.com",
  10238. "keywords": [
  10239. "compatibility",
  10240. "iconv",
  10241. "polyfill",
  10242. "portable",
  10243. "shim"
  10244. ],
  10245. "time": "2020-05-12T16:47:27+00:00"
  10246. },
  10247. {
  10248. "name": "symfony/polyfill-intl-idn",
  10249. "version": "v1.17.0",
  10250. "source": {
  10251. "type": "git",
  10252. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10253. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  10254. },
  10255. "dist": {
  10256. "type": "zip",
  10257. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  10258. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  10259. "shasum": ""
  10260. },
  10261. "require": {
  10262. "php": ">=5.3.3",
  10263. "symfony/polyfill-mbstring": "^1.3",
  10264. "symfony/polyfill-php72": "^1.10"
  10265. },
  10266. "suggest": {
  10267. "ext-intl": "For best performance"
  10268. },
  10269. "type": "library",
  10270. "extra": {
  10271. "branch-alias": {
  10272. "dev-master": "1.17-dev"
  10273. }
  10274. },
  10275. "autoload": {
  10276. "psr-4": {
  10277. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10278. },
  10279. "files": [
  10280. "bootstrap.php"
  10281. ]
  10282. },
  10283. "notification-url": "https://packagist.org/downloads/",
  10284. "license": [
  10285. "MIT"
  10286. ],
  10287. "authors": [
  10288. {
  10289. "name": "Laurent Bassin",
  10290. "email": "laurent@bassin.info"
  10291. },
  10292. {
  10293. "name": "Symfony Community",
  10294. "homepage": "https://symfony.com/contributors"
  10295. }
  10296. ],
  10297. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10298. "homepage": "https://symfony.com",
  10299. "keywords": [
  10300. "compatibility",
  10301. "idn",
  10302. "intl",
  10303. "polyfill",
  10304. "portable",
  10305. "shim"
  10306. ],
  10307. "time": "2020-05-12T16:47:27+00:00"
  10308. },
  10309. {
  10310. "name": "symfony/polyfill-mbstring",
  10311. "version": "v1.17.0",
  10312. "source": {
  10313. "type": "git",
  10314. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10315. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  10316. },
  10317. "dist": {
  10318. "type": "zip",
  10319. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  10320. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  10321. "shasum": ""
  10322. },
  10323. "require": {
  10324. "php": ">=5.3.3"
  10325. },
  10326. "suggest": {
  10327. "ext-mbstring": "For best performance"
  10328. },
  10329. "type": "library",
  10330. "extra": {
  10331. "branch-alias": {
  10332. "dev-master": "1.17-dev"
  10333. }
  10334. },
  10335. "autoload": {
  10336. "psr-4": {
  10337. "Symfony\\Polyfill\\Mbstring\\": ""
  10338. },
  10339. "files": [
  10340. "bootstrap.php"
  10341. ]
  10342. },
  10343. "notification-url": "https://packagist.org/downloads/",
  10344. "license": [
  10345. "MIT"
  10346. ],
  10347. "authors": [
  10348. {
  10349. "name": "Nicolas Grekas",
  10350. "email": "p@tchwork.com"
  10351. },
  10352. {
  10353. "name": "Symfony Community",
  10354. "homepage": "https://symfony.com/contributors"
  10355. }
  10356. ],
  10357. "description": "Symfony polyfill for the Mbstring extension",
  10358. "homepage": "https://symfony.com",
  10359. "keywords": [
  10360. "compatibility",
  10361. "mbstring",
  10362. "polyfill",
  10363. "portable",
  10364. "shim"
  10365. ],
  10366. "time": "2020-05-12T16:47:27+00:00"
  10367. },
  10368. {
  10369. "name": "symfony/polyfill-php56",
  10370. "version": "v1.17.0",
  10371. "source": {
  10372. "type": "git",
  10373. "url": "https://github.com/symfony/polyfill-php56.git",
  10374. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  10375. },
  10376. "dist": {
  10377. "type": "zip",
  10378. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  10379. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  10380. "shasum": ""
  10381. },
  10382. "require": {
  10383. "php": ">=5.3.3",
  10384. "symfony/polyfill-util": "~1.0"
  10385. },
  10386. "type": "library",
  10387. "extra": {
  10388. "branch-alias": {
  10389. "dev-master": "1.17-dev"
  10390. }
  10391. },
  10392. "autoload": {
  10393. "psr-4": {
  10394. "Symfony\\Polyfill\\Php56\\": ""
  10395. },
  10396. "files": [
  10397. "bootstrap.php"
  10398. ]
  10399. },
  10400. "notification-url": "https://packagist.org/downloads/",
  10401. "license": [
  10402. "MIT"
  10403. ],
  10404. "authors": [
  10405. {
  10406. "name": "Nicolas Grekas",
  10407. "email": "p@tchwork.com"
  10408. },
  10409. {
  10410. "name": "Symfony Community",
  10411. "homepage": "https://symfony.com/contributors"
  10412. }
  10413. ],
  10414. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  10415. "homepage": "https://symfony.com",
  10416. "keywords": [
  10417. "compatibility",
  10418. "polyfill",
  10419. "portable",
  10420. "shim"
  10421. ],
  10422. "time": "2020-05-12T16:47:27+00:00"
  10423. },
  10424. {
  10425. "name": "symfony/polyfill-php70",
  10426. "version": "v1.17.0",
  10427. "source": {
  10428. "type": "git",
  10429. "url": "https://github.com/symfony/polyfill-php70.git",
  10430. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  10431. },
  10432. "dist": {
  10433. "type": "zip",
  10434. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  10435. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  10436. "shasum": ""
  10437. },
  10438. "require": {
  10439. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  10440. "php": ">=5.3.3"
  10441. },
  10442. "type": "library",
  10443. "extra": {
  10444. "branch-alias": {
  10445. "dev-master": "1.17-dev"
  10446. }
  10447. },
  10448. "autoload": {
  10449. "psr-4": {
  10450. "Symfony\\Polyfill\\Php70\\": ""
  10451. },
  10452. "files": [
  10453. "bootstrap.php"
  10454. ],
  10455. "classmap": [
  10456. "Resources/stubs"
  10457. ]
  10458. },
  10459. "notification-url": "https://packagist.org/downloads/",
  10460. "license": [
  10461. "MIT"
  10462. ],
  10463. "authors": [
  10464. {
  10465. "name": "Nicolas Grekas",
  10466. "email": "p@tchwork.com"
  10467. },
  10468. {
  10469. "name": "Symfony Community",
  10470. "homepage": "https://symfony.com/contributors"
  10471. }
  10472. ],
  10473. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  10474. "homepage": "https://symfony.com",
  10475. "keywords": [
  10476. "compatibility",
  10477. "polyfill",
  10478. "portable",
  10479. "shim"
  10480. ],
  10481. "time": "2020-05-12T16:47:27+00:00"
  10482. },
  10483. {
  10484. "name": "symfony/polyfill-php72",
  10485. "version": "v1.17.0",
  10486. "source": {
  10487. "type": "git",
  10488. "url": "https://github.com/symfony/polyfill-php72.git",
  10489. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  10490. },
  10491. "dist": {
  10492. "type": "zip",
  10493. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  10494. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  10495. "shasum": ""
  10496. },
  10497. "require": {
  10498. "php": ">=5.3.3"
  10499. },
  10500. "type": "library",
  10501. "extra": {
  10502. "branch-alias": {
  10503. "dev-master": "1.17-dev"
  10504. }
  10505. },
  10506. "autoload": {
  10507. "psr-4": {
  10508. "Symfony\\Polyfill\\Php72\\": ""
  10509. },
  10510. "files": [
  10511. "bootstrap.php"
  10512. ]
  10513. },
  10514. "notification-url": "https://packagist.org/downloads/",
  10515. "license": [
  10516. "MIT"
  10517. ],
  10518. "authors": [
  10519. {
  10520. "name": "Nicolas Grekas",
  10521. "email": "p@tchwork.com"
  10522. },
  10523. {
  10524. "name": "Symfony Community",
  10525. "homepage": "https://symfony.com/contributors"
  10526. }
  10527. ],
  10528. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  10529. "homepage": "https://symfony.com",
  10530. "keywords": [
  10531. "compatibility",
  10532. "polyfill",
  10533. "portable",
  10534. "shim"
  10535. ],
  10536. "time": "2020-05-12T16:47:27+00:00"
  10537. },
  10538. {
  10539. "name": "symfony/polyfill-util",
  10540. "version": "v1.17.0",
  10541. "source": {
  10542. "type": "git",
  10543. "url": "https://github.com/symfony/polyfill-util.git",
  10544. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  10545. },
  10546. "dist": {
  10547. "type": "zip",
  10548. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  10549. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  10550. "shasum": ""
  10551. },
  10552. "require": {
  10553. "php": ">=5.3.3"
  10554. },
  10555. "type": "library",
  10556. "extra": {
  10557. "branch-alias": {
  10558. "dev-master": "1.17-dev"
  10559. }
  10560. },
  10561. "autoload": {
  10562. "psr-4": {
  10563. "Symfony\\Polyfill\\Util\\": ""
  10564. }
  10565. },
  10566. "notification-url": "https://packagist.org/downloads/",
  10567. "license": [
  10568. "MIT"
  10569. ],
  10570. "authors": [
  10571. {
  10572. "name": "Nicolas Grekas",
  10573. "email": "p@tchwork.com"
  10574. },
  10575. {
  10576. "name": "Symfony Community",
  10577. "homepage": "https://symfony.com/contributors"
  10578. }
  10579. ],
  10580. "description": "Symfony utilities for portability of PHP codes",
  10581. "homepage": "https://symfony.com",
  10582. "keywords": [
  10583. "compat",
  10584. "compatibility",
  10585. "polyfill",
  10586. "shim"
  10587. ],
  10588. "time": "2020-05-12T16:14:59+00:00"
  10589. },
  10590. {
  10591. "name": "symfony/process",
  10592. "version": "v3.4.40",
  10593. "source": {
  10594. "type": "git",
  10595. "url": "https://github.com/symfony/process.git",
  10596. "reference": "f5104c9dcbc2cfad45d01d5150c1da9836967271"
  10597. },
  10598. "dist": {
  10599. "type": "zip",
  10600. "url": "https://api.github.com/repos/symfony/process/zipball/f5104c9dcbc2cfad45d01d5150c1da9836967271",
  10601. "reference": "f5104c9dcbc2cfad45d01d5150c1da9836967271",
  10602. "shasum": ""
  10603. },
  10604. "require": {
  10605. "php": "^5.5.9|>=7.0.8"
  10606. },
  10607. "type": "library",
  10608. "extra": {
  10609. "branch-alias": {
  10610. "dev-master": "3.4-dev"
  10611. }
  10612. },
  10613. "autoload": {
  10614. "psr-4": {
  10615. "Symfony\\Component\\Process\\": ""
  10616. },
  10617. "exclude-from-classmap": [
  10618. "/Tests/"
  10619. ]
  10620. },
  10621. "notification-url": "https://packagist.org/downloads/",
  10622. "license": [
  10623. "MIT"
  10624. ],
  10625. "authors": [
  10626. {
  10627. "name": "Fabien Potencier",
  10628. "email": "fabien@symfony.com"
  10629. },
  10630. {
  10631. "name": "Symfony Community",
  10632. "homepage": "https://symfony.com/contributors"
  10633. }
  10634. ],
  10635. "description": "Symfony Process Component",
  10636. "homepage": "https://symfony.com",
  10637. "time": "2020-04-12T14:33:46+00:00"
  10638. },
  10639. {
  10640. "name": "symfony/psr-http-message-bridge",
  10641. "version": "v1.1.2",
  10642. "source": {
  10643. "type": "git",
  10644. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10645. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  10646. },
  10647. "dist": {
  10648. "type": "zip",
  10649. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  10650. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  10651. "shasum": ""
  10652. },
  10653. "require": {
  10654. "php": "^5.3.3 || ^7.0",
  10655. "psr/http-message": "^1.0",
  10656. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  10657. },
  10658. "require-dev": {
  10659. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  10660. },
  10661. "suggest": {
  10662. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10663. },
  10664. "type": "symfony-bridge",
  10665. "extra": {
  10666. "branch-alias": {
  10667. "dev-master": "1.1-dev"
  10668. }
  10669. },
  10670. "autoload": {
  10671. "psr-4": {
  10672. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10673. },
  10674. "exclude-from-classmap": [
  10675. "/Tests/"
  10676. ]
  10677. },
  10678. "notification-url": "https://packagist.org/downloads/",
  10679. "license": [
  10680. "MIT"
  10681. ],
  10682. "authors": [
  10683. {
  10684. "name": "Symfony Community",
  10685. "homepage": "http://symfony.com/contributors"
  10686. },
  10687. {
  10688. "name": "Fabien Potencier",
  10689. "email": "fabien@symfony.com"
  10690. }
  10691. ],
  10692. "description": "PSR HTTP message bridge",
  10693. "homepage": "http://symfony.com",
  10694. "keywords": [
  10695. "http",
  10696. "http-message",
  10697. "psr-17",
  10698. "psr-7"
  10699. ],
  10700. "time": "2019-04-03T17:09:40+00:00"
  10701. },
  10702. {
  10703. "name": "symfony/routing",
  10704. "version": "v3.4.40",
  10705. "source": {
  10706. "type": "git",
  10707. "url": "https://github.com/symfony/routing.git",
  10708. "reference": "53b432fde8eea7dab820e75abda5b97fdaa829b4"
  10709. },
  10710. "dist": {
  10711. "type": "zip",
  10712. "url": "https://api.github.com/repos/symfony/routing/zipball/53b432fde8eea7dab820e75abda5b97fdaa829b4",
  10713. "reference": "53b432fde8eea7dab820e75abda5b97fdaa829b4",
  10714. "shasum": ""
  10715. },
  10716. "require": {
  10717. "php": "^5.5.9|>=7.0.8"
  10718. },
  10719. "conflict": {
  10720. "symfony/config": "<3.3.1",
  10721. "symfony/dependency-injection": "<3.3",
  10722. "symfony/yaml": "<3.4"
  10723. },
  10724. "require-dev": {
  10725. "doctrine/annotations": "~1.0",
  10726. "psr/log": "~1.0",
  10727. "symfony/config": "^3.3.1|~4.0",
  10728. "symfony/dependency-injection": "~3.3|~4.0",
  10729. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10730. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10731. "symfony/yaml": "~3.4|~4.0"
  10732. },
  10733. "suggest": {
  10734. "doctrine/annotations": "For using the annotation loader",
  10735. "symfony/config": "For using the all-in-one router or any loader",
  10736. "symfony/expression-language": "For using expression matching",
  10737. "symfony/http-foundation": "For using a Symfony Request object",
  10738. "symfony/yaml": "For using the YAML loader"
  10739. },
  10740. "type": "library",
  10741. "extra": {
  10742. "branch-alias": {
  10743. "dev-master": "3.4-dev"
  10744. }
  10745. },
  10746. "autoload": {
  10747. "psr-4": {
  10748. "Symfony\\Component\\Routing\\": ""
  10749. },
  10750. "exclude-from-classmap": [
  10751. "/Tests/"
  10752. ]
  10753. },
  10754. "notification-url": "https://packagist.org/downloads/",
  10755. "license": [
  10756. "MIT"
  10757. ],
  10758. "authors": [
  10759. {
  10760. "name": "Fabien Potencier",
  10761. "email": "fabien@symfony.com"
  10762. },
  10763. {
  10764. "name": "Symfony Community",
  10765. "homepage": "https://symfony.com/contributors"
  10766. }
  10767. ],
  10768. "description": "Symfony Routing Component",
  10769. "homepage": "https://symfony.com",
  10770. "keywords": [
  10771. "router",
  10772. "routing",
  10773. "uri",
  10774. "url"
  10775. ],
  10776. "time": "2020-04-12T09:58:27+00:00"
  10777. },
  10778. {
  10779. "name": "symfony/serializer",
  10780. "version": "v3.4.40",
  10781. "source": {
  10782. "type": "git",
  10783. "url": "https://github.com/symfony/serializer.git",
  10784. "reference": "2e1bdec403d8e7a350884cbbe4807ab7c2a843d4"
  10785. },
  10786. "dist": {
  10787. "type": "zip",
  10788. "url": "https://api.github.com/repos/symfony/serializer/zipball/2e1bdec403d8e7a350884cbbe4807ab7c2a843d4",
  10789. "reference": "2e1bdec403d8e7a350884cbbe4807ab7c2a843d4",
  10790. "shasum": ""
  10791. },
  10792. "require": {
  10793. "php": "^5.5.9|>=7.0.8",
  10794. "symfony/polyfill-ctype": "~1.8"
  10795. },
  10796. "conflict": {
  10797. "phpdocumentor/type-resolver": "<0.2.1",
  10798. "symfony/dependency-injection": "<3.2",
  10799. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10800. "symfony/property-info": "<3.1",
  10801. "symfony/yaml": "<3.4"
  10802. },
  10803. "require-dev": {
  10804. "doctrine/annotations": "~1.0",
  10805. "doctrine/cache": "~1.0",
  10806. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10807. "symfony/cache": "~3.1|~4.0",
  10808. "symfony/config": "~2.8|~3.0|~4.0",
  10809. "symfony/dependency-injection": "~3.2|~4.0",
  10810. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10811. "symfony/property-access": "~2.8|~3.0|~4.0",
  10812. "symfony/property-info": "^3.4.13|~4.0",
  10813. "symfony/yaml": "~3.4|~4.0"
  10814. },
  10815. "suggest": {
  10816. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10817. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10818. "psr/cache-implementation": "For using the metadata cache.",
  10819. "symfony/config": "For using the XML mapping loader.",
  10820. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10821. "symfony/property-access": "For using the ObjectNormalizer.",
  10822. "symfony/property-info": "To deserialize relations.",
  10823. "symfony/yaml": "For using the default YAML mapping loader."
  10824. },
  10825. "type": "library",
  10826. "extra": {
  10827. "branch-alias": {
  10828. "dev-master": "3.4-dev"
  10829. }
  10830. },
  10831. "autoload": {
  10832. "psr-4": {
  10833. "Symfony\\Component\\Serializer\\": ""
  10834. },
  10835. "exclude-from-classmap": [
  10836. "/Tests/"
  10837. ]
  10838. },
  10839. "notification-url": "https://packagist.org/downloads/",
  10840. "license": [
  10841. "MIT"
  10842. ],
  10843. "authors": [
  10844. {
  10845. "name": "Fabien Potencier",
  10846. "email": "fabien@symfony.com"
  10847. },
  10848. {
  10849. "name": "Symfony Community",
  10850. "homepage": "https://symfony.com/contributors"
  10851. }
  10852. ],
  10853. "description": "Symfony Serializer Component",
  10854. "homepage": "https://symfony.com",
  10855. "time": "2020-04-12T14:33:46+00:00"
  10856. },
  10857. {
  10858. "name": "symfony/translation",
  10859. "version": "v3.4.40",
  10860. "source": {
  10861. "type": "git",
  10862. "url": "https://github.com/symfony/translation.git",
  10863. "reference": "4e844362f573713e6d45949795c95a4cb6cf760d"
  10864. },
  10865. "dist": {
  10866. "type": "zip",
  10867. "url": "https://api.github.com/repos/symfony/translation/zipball/4e844362f573713e6d45949795c95a4cb6cf760d",
  10868. "reference": "4e844362f573713e6d45949795c95a4cb6cf760d",
  10869. "shasum": ""
  10870. },
  10871. "require": {
  10872. "php": "^5.5.9|>=7.0.8",
  10873. "symfony/polyfill-mbstring": "~1.0"
  10874. },
  10875. "conflict": {
  10876. "symfony/config": "<2.8",
  10877. "symfony/dependency-injection": "<3.4",
  10878. "symfony/yaml": "<3.4"
  10879. },
  10880. "require-dev": {
  10881. "psr/log": "~1.0",
  10882. "symfony/config": "~2.8|~3.0|~4.0",
  10883. "symfony/dependency-injection": "~3.4|~4.0",
  10884. "symfony/finder": "~2.8|~3.0|~4.0",
  10885. "symfony/http-kernel": "~3.4|~4.0",
  10886. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10887. "symfony/var-dumper": "~3.4|~4.0",
  10888. "symfony/yaml": "~3.4|~4.0"
  10889. },
  10890. "suggest": {
  10891. "psr/log-implementation": "To use logging capability in translator",
  10892. "symfony/config": "",
  10893. "symfony/yaml": ""
  10894. },
  10895. "type": "library",
  10896. "extra": {
  10897. "branch-alias": {
  10898. "dev-master": "3.4-dev"
  10899. }
  10900. },
  10901. "autoload": {
  10902. "psr-4": {
  10903. "Symfony\\Component\\Translation\\": ""
  10904. },
  10905. "exclude-from-classmap": [
  10906. "/Tests/"
  10907. ]
  10908. },
  10909. "notification-url": "https://packagist.org/downloads/",
  10910. "license": [
  10911. "MIT"
  10912. ],
  10913. "authors": [
  10914. {
  10915. "name": "Fabien Potencier",
  10916. "email": "fabien@symfony.com"
  10917. },
  10918. {
  10919. "name": "Symfony Community",
  10920. "homepage": "https://symfony.com/contributors"
  10921. }
  10922. ],
  10923. "description": "Symfony Translation Component",
  10924. "homepage": "https://symfony.com",
  10925. "time": "2020-04-12T16:39:58+00:00"
  10926. },
  10927. {
  10928. "name": "symfony/validator",
  10929. "version": "v3.4.40",
  10930. "source": {
  10931. "type": "git",
  10932. "url": "https://github.com/symfony/validator.git",
  10933. "reference": "0d4d26bacafdead3b73586302fc5019efdfbdb2e"
  10934. },
  10935. "dist": {
  10936. "type": "zip",
  10937. "url": "https://api.github.com/repos/symfony/validator/zipball/0d4d26bacafdead3b73586302fc5019efdfbdb2e",
  10938. "reference": "0d4d26bacafdead3b73586302fc5019efdfbdb2e",
  10939. "shasum": ""
  10940. },
  10941. "require": {
  10942. "php": "^5.5.9|>=7.0.8",
  10943. "symfony/polyfill-ctype": "~1.8",
  10944. "symfony/polyfill-mbstring": "~1.0",
  10945. "symfony/translation": "~2.8|~3.0|~4.0"
  10946. },
  10947. "conflict": {
  10948. "doctrine/lexer": "<1.0.2",
  10949. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10950. "symfony/dependency-injection": "<3.3",
  10951. "symfony/http-kernel": "<3.3.5",
  10952. "symfony/yaml": "<3.4"
  10953. },
  10954. "require-dev": {
  10955. "doctrine/annotations": "~1.7",
  10956. "doctrine/cache": "~1.0",
  10957. "egulias/email-validator": "^2.1.10",
  10958. "symfony/cache": "~3.1|~4.0",
  10959. "symfony/config": "~2.8|~3.0|~4.0",
  10960. "symfony/dependency-injection": "~3.3|~4.0",
  10961. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10962. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10963. "symfony/http-kernel": "^3.3.5|~4.0",
  10964. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10965. "symfony/property-access": "~2.8|~3.0|~4.0",
  10966. "symfony/var-dumper": "~3.3|~4.0",
  10967. "symfony/yaml": "~3.4|~4.0"
  10968. },
  10969. "suggest": {
  10970. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10971. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10972. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10973. "psr/cache-implementation": "For using the metadata cache.",
  10974. "symfony/config": "",
  10975. "symfony/expression-language": "For using the Expression validator",
  10976. "symfony/http-foundation": "",
  10977. "symfony/intl": "",
  10978. "symfony/property-access": "For accessing properties within comparison constraints",
  10979. "symfony/yaml": ""
  10980. },
  10981. "type": "library",
  10982. "extra": {
  10983. "branch-alias": {
  10984. "dev-master": "3.4-dev"
  10985. }
  10986. },
  10987. "autoload": {
  10988. "psr-4": {
  10989. "Symfony\\Component\\Validator\\": ""
  10990. },
  10991. "exclude-from-classmap": [
  10992. "/Tests/"
  10993. ]
  10994. },
  10995. "notification-url": "https://packagist.org/downloads/",
  10996. "license": [
  10997. "MIT"
  10998. ],
  10999. "authors": [
  11000. {
  11001. "name": "Fabien Potencier",
  11002. "email": "fabien@symfony.com"
  11003. },
  11004. {
  11005. "name": "Symfony Community",
  11006. "homepage": "https://symfony.com/contributors"
  11007. }
  11008. ],
  11009. "description": "Symfony Validator Component",
  11010. "homepage": "https://symfony.com",
  11011. "time": "2020-04-26T08:10:12+00:00"
  11012. },
  11013. {
  11014. "name": "symfony/var-dumper",
  11015. "version": "v3.4.34",
  11016. "source": {
  11017. "type": "git",
  11018. "url": "https://github.com/symfony/var-dumper.git",
  11019. "reference": "569e261461600810845a8305ca3f64abd3e712c0"
  11020. },
  11021. "dist": {
  11022. "type": "zip",
  11023. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0",
  11024. "reference": "569e261461600810845a8305ca3f64abd3e712c0",
  11025. "shasum": ""
  11026. },
  11027. "require": {
  11028. "php": "^5.5.9|>=7.0.8",
  11029. "symfony/polyfill-mbstring": "~1.0"
  11030. },
  11031. "conflict": {
  11032. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  11033. },
  11034. "require-dev": {
  11035. "ext-iconv": "*",
  11036. "twig/twig": "~1.34|~2.4"
  11037. },
  11038. "suggest": {
  11039. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  11040. "ext-intl": "To show region name in time zone dump",
  11041. "ext-symfony_debug": ""
  11042. },
  11043. "type": "library",
  11044. "extra": {
  11045. "branch-alias": {
  11046. "dev-master": "3.4-dev"
  11047. }
  11048. },
  11049. "autoload": {
  11050. "files": [
  11051. "Resources/functions/dump.php"
  11052. ],
  11053. "psr-4": {
  11054. "Symfony\\Component\\VarDumper\\": ""
  11055. },
  11056. "exclude-from-classmap": [
  11057. "/Tests/"
  11058. ]
  11059. },
  11060. "notification-url": "https://packagist.org/downloads/",
  11061. "license": [
  11062. "MIT"
  11063. ],
  11064. "authors": [
  11065. {
  11066. "name": "Nicolas Grekas",
  11067. "email": "p@tchwork.com"
  11068. },
  11069. {
  11070. "name": "Symfony Community",
  11071. "homepage": "https://symfony.com/contributors"
  11072. }
  11073. ],
  11074. "description": "Symfony mechanism for exploring and dumping PHP variables",
  11075. "homepage": "https://symfony.com",
  11076. "keywords": [
  11077. "debug",
  11078. "dump"
  11079. ],
  11080. "time": "2019-10-10T11:03:19+00:00"
  11081. },
  11082. {
  11083. "name": "symfony/yaml",
  11084. "version": "v3.4.40",
  11085. "source": {
  11086. "type": "git",
  11087. "url": "https://github.com/symfony/yaml.git",
  11088. "reference": "8fef49ac1357f4e05c997a1f139467ccb186bffa"
  11089. },
  11090. "dist": {
  11091. "type": "zip",
  11092. "url": "https://api.github.com/repos/symfony/yaml/zipball/8fef49ac1357f4e05c997a1f139467ccb186bffa",
  11093. "reference": "8fef49ac1357f4e05c997a1f139467ccb186bffa",
  11094. "shasum": ""
  11095. },
  11096. "require": {
  11097. "php": "^5.5.9|>=7.0.8",
  11098. "symfony/polyfill-ctype": "~1.8"
  11099. },
  11100. "conflict": {
  11101. "symfony/console": "<3.4"
  11102. },
  11103. "require-dev": {
  11104. "symfony/console": "~3.4|~4.0"
  11105. },
  11106. "suggest": {
  11107. "symfony/console": "For validating YAML files using the lint command"
  11108. },
  11109. "type": "library",
  11110. "extra": {
  11111. "branch-alias": {
  11112. "dev-master": "3.4-dev"
  11113. }
  11114. },
  11115. "autoload": {
  11116. "psr-4": {
  11117. "Symfony\\Component\\Yaml\\": ""
  11118. },
  11119. "exclude-from-classmap": [
  11120. "/Tests/"
  11121. ]
  11122. },
  11123. "notification-url": "https://packagist.org/downloads/",
  11124. "license": [
  11125. "MIT"
  11126. ],
  11127. "authors": [
  11128. {
  11129. "name": "Fabien Potencier",
  11130. "email": "fabien@symfony.com"
  11131. },
  11132. {
  11133. "name": "Symfony Community",
  11134. "homepage": "https://symfony.com/contributors"
  11135. }
  11136. ],
  11137. "description": "Symfony Yaml Component",
  11138. "homepage": "https://symfony.com",
  11139. "time": "2020-04-24T10:16:04+00:00"
  11140. },
  11141. {
  11142. "name": "theseer/tokenizer",
  11143. "version": "1.1.3",
  11144. "source": {
  11145. "type": "git",
  11146. "url": "https://github.com/theseer/tokenizer.git",
  11147. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  11148. },
  11149. "dist": {
  11150. "type": "zip",
  11151. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  11152. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  11153. "shasum": ""
  11154. },
  11155. "require": {
  11156. "ext-dom": "*",
  11157. "ext-tokenizer": "*",
  11158. "ext-xmlwriter": "*",
  11159. "php": "^7.0"
  11160. },
  11161. "type": "library",
  11162. "autoload": {
  11163. "classmap": [
  11164. "src/"
  11165. ]
  11166. },
  11167. "notification-url": "https://packagist.org/downloads/",
  11168. "license": [
  11169. "BSD-3-Clause"
  11170. ],
  11171. "authors": [
  11172. {
  11173. "name": "Arne Blankerts",
  11174. "email": "arne@blankerts.de",
  11175. "role": "Developer"
  11176. }
  11177. ],
  11178. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11179. "time": "2019-06-13T22:48:21+00:00"
  11180. },
  11181. {
  11182. "name": "twig/twig",
  11183. "version": "v1.42.5",
  11184. "source": {
  11185. "type": "git",
  11186. "url": "https://github.com/twigphp/Twig.git",
  11187. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  11188. },
  11189. "dist": {
  11190. "type": "zip",
  11191. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  11192. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  11193. "shasum": ""
  11194. },
  11195. "require": {
  11196. "php": ">=5.5.0",
  11197. "symfony/polyfill-ctype": "^1.8"
  11198. },
  11199. "require-dev": {
  11200. "psr/container": "^1.0",
  11201. "symfony/phpunit-bridge": "^4.4|^5.0"
  11202. },
  11203. "type": "library",
  11204. "extra": {
  11205. "branch-alias": {
  11206. "dev-master": "1.42-dev"
  11207. }
  11208. },
  11209. "autoload": {
  11210. "psr-0": {
  11211. "Twig_": "lib/"
  11212. },
  11213. "psr-4": {
  11214. "Twig\\": "src/"
  11215. }
  11216. },
  11217. "notification-url": "https://packagist.org/downloads/",
  11218. "license": [
  11219. "BSD-3-Clause"
  11220. ],
  11221. "authors": [
  11222. {
  11223. "name": "Fabien Potencier",
  11224. "email": "fabien@symfony.com",
  11225. "homepage": "http://fabien.potencier.org",
  11226. "role": "Lead Developer"
  11227. },
  11228. {
  11229. "name": "Twig Team",
  11230. "role": "Contributors"
  11231. },
  11232. {
  11233. "name": "Armin Ronacher",
  11234. "email": "armin.ronacher@active-4.com",
  11235. "role": "Project Founder"
  11236. }
  11237. ],
  11238. "description": "Twig, the flexible, fast, and secure template language for PHP",
  11239. "homepage": "https://twig.symfony.com",
  11240. "keywords": [
  11241. "templating"
  11242. ],
  11243. "time": "2020-02-11T05:59:23+00:00"
  11244. },
  11245. {
  11246. "name": "typo3/phar-stream-wrapper",
  11247. "version": "v2.1.4",
  11248. "source": {
  11249. "type": "git",
  11250. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  11251. "reference": "ade693720ad562224281f8984319b7337cfae99e"
  11252. },
  11253. "dist": {
  11254. "type": "zip",
  11255. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/ade693720ad562224281f8984319b7337cfae99e",
  11256. "reference": "ade693720ad562224281f8984319b7337cfae99e",
  11257. "shasum": ""
  11258. },
  11259. "require": {
  11260. "brumann/polyfill-unserialize": "^1.0",
  11261. "ext-json": "*",
  11262. "php": "^5.3.3|^7.0"
  11263. },
  11264. "require-dev": {
  11265. "ext-xdebug": "*",
  11266. "phpunit/phpunit": "^4.8.36"
  11267. },
  11268. "suggest": {
  11269. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  11270. },
  11271. "type": "library",
  11272. "autoload": {
  11273. "psr-4": {
  11274. "TYPO3\\PharStreamWrapper\\": "src/"
  11275. }
  11276. },
  11277. "notification-url": "https://packagist.org/downloads/",
  11278. "license": [
  11279. "MIT"
  11280. ],
  11281. "description": "Interceptors for PHP's native phar:// stream handling",
  11282. "homepage": "https://typo3.org/",
  11283. "keywords": [
  11284. "phar",
  11285. "php",
  11286. "security",
  11287. "stream-wrapper"
  11288. ],
  11289. "time": "2019-12-10T11:53:54+00:00"
  11290. },
  11291. {
  11292. "name": "vlucas/phpdotenv",
  11293. "version": "v2.6.1",
  11294. "source": {
  11295. "type": "git",
  11296. "url": "https://github.com/vlucas/phpdotenv.git",
  11297. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  11298. },
  11299. "dist": {
  11300. "type": "zip",
  11301. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  11302. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  11303. "shasum": ""
  11304. },
  11305. "require": {
  11306. "php": ">=5.3.9",
  11307. "symfony/polyfill-ctype": "^1.9"
  11308. },
  11309. "require-dev": {
  11310. "phpunit/phpunit": "^4.8.35 || ^5.0"
  11311. },
  11312. "type": "library",
  11313. "extra": {
  11314. "branch-alias": {
  11315. "dev-master": "2.6-dev"
  11316. }
  11317. },
  11318. "autoload": {
  11319. "psr-4": {
  11320. "Dotenv\\": "src/"
  11321. }
  11322. },
  11323. "notification-url": "https://packagist.org/downloads/",
  11324. "license": [
  11325. "BSD-3-Clause"
  11326. ],
  11327. "authors": [
  11328. {
  11329. "name": "Vance Lucas",
  11330. "email": "vance@vancelucas.com",
  11331. "homepage": "http://www.vancelucas.com"
  11332. }
  11333. ],
  11334. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  11335. "keywords": [
  11336. "dotenv",
  11337. "env",
  11338. "environment"
  11339. ],
  11340. "time": "2019-01-29T11:11:52+00:00"
  11341. },
  11342. {
  11343. "name": "webflo/drupal-core-require-dev",
  11344. "version": "8.7.14",
  11345. "source": {
  11346. "type": "git",
  11347. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11348. "reference": "7ad955c04cfccbcd84b64239b7ed057c50a0a90b"
  11349. },
  11350. "dist": {
  11351. "type": "zip",
  11352. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/7ad955c04cfccbcd84b64239b7ed057c50a0a90b",
  11353. "reference": "7ad955c04cfccbcd84b64239b7ed057c50a0a90b",
  11354. "shasum": ""
  11355. },
  11356. "require": {
  11357. "behat/mink": "1.7.x-dev",
  11358. "behat/mink-goutte-driver": "^1.2",
  11359. "behat/mink-selenium2-driver": "1.3.x-dev",
  11360. "drupal/coder": "^8.3.1",
  11361. "drupal/core": "8.7.14",
  11362. "jcalderonzumba/gastonjs": "^1.0.2",
  11363. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11364. "justinrainbow/json-schema": "^5.2",
  11365. "mikey179/vfsstream": "^1.2",
  11366. "phpspec/prophecy": "^1.7",
  11367. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11368. "symfony/css-selector": "^3.4.0",
  11369. "symfony/debug": "^3.4.0",
  11370. "symfony/phpunit-bridge": "^3.4.3"
  11371. },
  11372. "type": "metapackage",
  11373. "notification-url": "https://packagist.org/downloads/",
  11374. "license": [
  11375. "GPL-2.0-or-later"
  11376. ],
  11377. "description": "require-dev dependencies from drupal/core",
  11378. "abandoned": "drupal/core-dev",
  11379. "time": "2020-05-20T15:32:09+00:00"
  11380. },
  11381. {
  11382. "name": "webflo/drupal-core-strict",
  11383. "version": "8.0.0-beta15",
  11384. "source": {
  11385. "type": "git",
  11386. "url": "https://github.com/webflo/drupal-core-strict.git",
  11387. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  11388. },
  11389. "dist": {
  11390. "type": "zip",
  11391. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  11392. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  11393. "shasum": ""
  11394. },
  11395. "type": "metapackage",
  11396. "notification-url": "https://packagist.org/downloads/",
  11397. "license": [
  11398. "GPL-2.0-or-later"
  11399. ],
  11400. "description": "Locked core dependencies",
  11401. "abandoned": "drupal/core-recommended",
  11402. "time": "2018-01-30T18:48:19+00:00"
  11403. },
  11404. {
  11405. "name": "webflo/drupal-finder",
  11406. "version": "1.2.0",
  11407. "source": {
  11408. "type": "git",
  11409. "url": "https://github.com/webflo/drupal-finder.git",
  11410. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  11411. },
  11412. "dist": {
  11413. "type": "zip",
  11414. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11415. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11416. "shasum": ""
  11417. },
  11418. "require": {
  11419. "ext-json": "*"
  11420. },
  11421. "require-dev": {
  11422. "mikey179/vfsstream": "^1.6",
  11423. "phpunit/phpunit": "^4.8"
  11424. },
  11425. "type": "library",
  11426. "autoload": {
  11427. "classmap": [
  11428. "src/DrupalFinder.php"
  11429. ]
  11430. },
  11431. "notification-url": "https://packagist.org/downloads/",
  11432. "license": [
  11433. "GPL-2.0+"
  11434. ],
  11435. "authors": [
  11436. {
  11437. "name": "Florian Weber",
  11438. "email": "florian@webflo.org"
  11439. }
  11440. ],
  11441. "description": "Helper class to locate a Drupal installation from a given path.",
  11442. "time": "2019-08-02T08:06:18+00:00"
  11443. },
  11444. {
  11445. "name": "webmozart/assert",
  11446. "version": "1.8.0",
  11447. "source": {
  11448. "type": "git",
  11449. "url": "https://github.com/webmozart/assert.git",
  11450. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  11451. },
  11452. "dist": {
  11453. "type": "zip",
  11454. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  11455. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  11456. "shasum": ""
  11457. },
  11458. "require": {
  11459. "php": "^5.3.3 || ^7.0",
  11460. "symfony/polyfill-ctype": "^1.8"
  11461. },
  11462. "conflict": {
  11463. "vimeo/psalm": "<3.9.1"
  11464. },
  11465. "require-dev": {
  11466. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11467. },
  11468. "type": "library",
  11469. "autoload": {
  11470. "psr-4": {
  11471. "Webmozart\\Assert\\": "src/"
  11472. }
  11473. },
  11474. "notification-url": "https://packagist.org/downloads/",
  11475. "license": [
  11476. "MIT"
  11477. ],
  11478. "authors": [
  11479. {
  11480. "name": "Bernhard Schussek",
  11481. "email": "bschussek@gmail.com"
  11482. }
  11483. ],
  11484. "description": "Assertions to validate method input/output with nice error messages.",
  11485. "keywords": [
  11486. "assert",
  11487. "check",
  11488. "validate"
  11489. ],
  11490. "time": "2020-04-18T12:12:48+00:00"
  11491. },
  11492. {
  11493. "name": "webmozart/path-util",
  11494. "version": "2.3.0",
  11495. "source": {
  11496. "type": "git",
  11497. "url": "https://github.com/webmozart/path-util.git",
  11498. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  11499. },
  11500. "dist": {
  11501. "type": "zip",
  11502. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11503. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11504. "shasum": ""
  11505. },
  11506. "require": {
  11507. "php": ">=5.3.3",
  11508. "webmozart/assert": "~1.0"
  11509. },
  11510. "require-dev": {
  11511. "phpunit/phpunit": "^4.6",
  11512. "sebastian/version": "^1.0.1"
  11513. },
  11514. "type": "library",
  11515. "extra": {
  11516. "branch-alias": {
  11517. "dev-master": "2.3-dev"
  11518. }
  11519. },
  11520. "autoload": {
  11521. "psr-4": {
  11522. "Webmozart\\PathUtil\\": "src/"
  11523. }
  11524. },
  11525. "notification-url": "https://packagist.org/downloads/",
  11526. "license": [
  11527. "MIT"
  11528. ],
  11529. "authors": [
  11530. {
  11531. "name": "Bernhard Schussek",
  11532. "email": "bschussek@gmail.com"
  11533. }
  11534. ],
  11535. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  11536. "time": "2015-12-17T08:42:14+00:00"
  11537. },
  11538. {
  11539. "name": "zaporylie/composer-drupal-optimizations",
  11540. "version": "1.1.1",
  11541. "source": {
  11542. "type": "git",
  11543. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  11544. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  11545. },
  11546. "dist": {
  11547. "type": "zip",
  11548. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  11549. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  11550. "shasum": ""
  11551. },
  11552. "require": {
  11553. "composer-plugin-api": "^1.1"
  11554. },
  11555. "require-dev": {
  11556. "composer/composer": "^1.6",
  11557. "phpunit/phpunit": "^6"
  11558. },
  11559. "type": "composer-plugin",
  11560. "extra": {
  11561. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  11562. },
  11563. "autoload": {
  11564. "psr-4": {
  11565. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  11566. }
  11567. },
  11568. "notification-url": "https://packagist.org/downloads/",
  11569. "license": [
  11570. "GPL-2.0-or-later"
  11571. ],
  11572. "authors": [
  11573. {
  11574. "name": "Jakub Piasecki",
  11575. "email": "jakub@piaseccy.pl"
  11576. }
  11577. ],
  11578. "description": "Composer plugin to improve composer performance for Drupal projects",
  11579. "time": "2019-10-02T17:01:11+00:00"
  11580. },
  11581. {
  11582. "name": "zendframework/zend-diactoros",
  11583. "version": "1.8.7",
  11584. "source": {
  11585. "type": "git",
  11586. "url": "https://github.com/zendframework/zend-diactoros.git",
  11587. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  11588. },
  11589. "dist": {
  11590. "type": "zip",
  11591. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11592. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11593. "shasum": ""
  11594. },
  11595. "require": {
  11596. "php": "^5.6 || ^7.0",
  11597. "psr/http-message": "^1.0"
  11598. },
  11599. "provide": {
  11600. "psr/http-message-implementation": "1.0"
  11601. },
  11602. "require-dev": {
  11603. "ext-dom": "*",
  11604. "ext-libxml": "*",
  11605. "php-http/psr7-integration-tests": "dev-master",
  11606. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  11607. "zendframework/zend-coding-standard": "~1.0"
  11608. },
  11609. "type": "library",
  11610. "extra": {
  11611. "branch-alias": {
  11612. "dev-release-1.8": "1.8.x-dev"
  11613. }
  11614. },
  11615. "autoload": {
  11616. "files": [
  11617. "src/functions/create_uploaded_file.php",
  11618. "src/functions/marshal_headers_from_sapi.php",
  11619. "src/functions/marshal_method_from_sapi.php",
  11620. "src/functions/marshal_protocol_version_from_sapi.php",
  11621. "src/functions/marshal_uri_from_sapi.php",
  11622. "src/functions/normalize_server.php",
  11623. "src/functions/normalize_uploaded_files.php",
  11624. "src/functions/parse_cookie_header.php"
  11625. ],
  11626. "psr-4": {
  11627. "Zend\\Diactoros\\": "src/"
  11628. }
  11629. },
  11630. "notification-url": "https://packagist.org/downloads/",
  11631. "license": [
  11632. "BSD-2-Clause"
  11633. ],
  11634. "description": "PSR HTTP Message implementations",
  11635. "homepage": "https://github.com/zendframework/zend-diactoros",
  11636. "keywords": [
  11637. "http",
  11638. "psr",
  11639. "psr-7"
  11640. ],
  11641. "abandoned": "laminas/laminas-diactoros",
  11642. "time": "2019-08-06T17:53:53+00:00"
  11643. },
  11644. {
  11645. "name": "zendframework/zend-escaper",
  11646. "version": "2.6.1",
  11647. "source": {
  11648. "type": "git",
  11649. "url": "https://github.com/zendframework/zend-escaper.git",
  11650. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  11651. },
  11652. "dist": {
  11653. "type": "zip",
  11654. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11655. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11656. "shasum": ""
  11657. },
  11658. "require": {
  11659. "php": "^5.6 || ^7.0"
  11660. },
  11661. "require-dev": {
  11662. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11663. "zendframework/zend-coding-standard": "~1.0.0"
  11664. },
  11665. "type": "library",
  11666. "extra": {
  11667. "branch-alias": {
  11668. "dev-master": "2.6.x-dev",
  11669. "dev-develop": "2.7.x-dev"
  11670. }
  11671. },
  11672. "autoload": {
  11673. "psr-4": {
  11674. "Zend\\Escaper\\": "src/"
  11675. }
  11676. },
  11677. "notification-url": "https://packagist.org/downloads/",
  11678. "license": [
  11679. "BSD-3-Clause"
  11680. ],
  11681. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  11682. "keywords": [
  11683. "ZendFramework",
  11684. "escaper",
  11685. "zf"
  11686. ],
  11687. "abandoned": "laminas/laminas-escaper",
  11688. "time": "2019-09-05T20:03:20+00:00"
  11689. },
  11690. {
  11691. "name": "zendframework/zend-feed",
  11692. "version": "2.12.0",
  11693. "source": {
  11694. "type": "git",
  11695. "url": "https://github.com/zendframework/zend-feed.git",
  11696. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  11697. },
  11698. "dist": {
  11699. "type": "zip",
  11700. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  11701. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  11702. "shasum": ""
  11703. },
  11704. "require": {
  11705. "ext-dom": "*",
  11706. "ext-libxml": "*",
  11707. "php": "^5.6 || ^7.0",
  11708. "zendframework/zend-escaper": "^2.5.2",
  11709. "zendframework/zend-stdlib": "^3.2.1"
  11710. },
  11711. "require-dev": {
  11712. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  11713. "psr/http-message": "^1.0.1",
  11714. "zendframework/zend-cache": "^2.7.2",
  11715. "zendframework/zend-coding-standard": "~1.0.0",
  11716. "zendframework/zend-db": "^2.8.2",
  11717. "zendframework/zend-http": "^2.7",
  11718. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  11719. "zendframework/zend-validator": "^2.10.1"
  11720. },
  11721. "suggest": {
  11722. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11723. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11724. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11725. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11726. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11727. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  11728. },
  11729. "type": "library",
  11730. "extra": {
  11731. "branch-alias": {
  11732. "dev-master": "2.12.x-dev",
  11733. "dev-develop": "2.13.x-dev"
  11734. }
  11735. },
  11736. "autoload": {
  11737. "psr-4": {
  11738. "Zend\\Feed\\": "src/"
  11739. }
  11740. },
  11741. "notification-url": "https://packagist.org/downloads/",
  11742. "license": [
  11743. "BSD-3-Clause"
  11744. ],
  11745. "description": "provides functionality for consuming RSS and Atom feeds",
  11746. "keywords": [
  11747. "ZendFramework",
  11748. "feed",
  11749. "zf"
  11750. ],
  11751. "abandoned": "laminas/laminas-feed",
  11752. "time": "2019-03-05T20:08:49+00:00"
  11753. },
  11754. {
  11755. "name": "zendframework/zend-stdlib",
  11756. "version": "3.2.1",
  11757. "source": {
  11758. "type": "git",
  11759. "url": "https://github.com/zendframework/zend-stdlib.git",
  11760. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  11761. },
  11762. "dist": {
  11763. "type": "zip",
  11764. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11765. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11766. "shasum": ""
  11767. },
  11768. "require": {
  11769. "php": "^5.6 || ^7.0"
  11770. },
  11771. "require-dev": {
  11772. "phpbench/phpbench": "^0.13",
  11773. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11774. "zendframework/zend-coding-standard": "~1.0.0"
  11775. },
  11776. "type": "library",
  11777. "extra": {
  11778. "branch-alias": {
  11779. "dev-master": "3.2.x-dev",
  11780. "dev-develop": "3.3.x-dev"
  11781. }
  11782. },
  11783. "autoload": {
  11784. "psr-4": {
  11785. "Zend\\Stdlib\\": "src/"
  11786. }
  11787. },
  11788. "notification-url": "https://packagist.org/downloads/",
  11789. "license": [
  11790. "BSD-3-Clause"
  11791. ],
  11792. "description": "SPL extensions, array utilities, error handlers, and more",
  11793. "keywords": [
  11794. "ZendFramework",
  11795. "stdlib",
  11796. "zf"
  11797. ],
  11798. "abandoned": "laminas/laminas-stdlib",
  11799. "time": "2018-08-28T21:34:05+00:00"
  11800. }
  11801. ],
  11802. "packages-dev": [],
  11803. "aliases": [],
  11804. "minimum-stability": "dev",
  11805. "stability-flags": {
  11806. "drupal/bulkdelete": 20,
  11807. "drupal/domain_menu_access": 20,
  11808. "drupal/filefield_sources": 20,
  11809. "drupal/filter_perms": 20,
  11810. "drupal/maillog": 20,
  11811. "drupal/path_alias_xt": 20,
  11812. "drupal/synonyms": 20,
  11813. "drupal/toolbar_themes": 20,
  11814. "drupal/workflow": 20
  11815. },
  11816. "prefer-stable": true,
  11817. "prefer-lowest": false,
  11818. "platform": {
  11819. "php": ">=5.6"
  11820. },
  11821. "platform-dev": []
  11822. }