composer.lock 420 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705
  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.32.0",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  399. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  404. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  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.41 || ^2.12"
  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": "2020-04-16T06:45:06+00:00"
  437. },
  438. {
  439. "name": "composer/installers",
  440. "version": "v1.9.0",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/composer/installers.git",
  444. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  449. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  450. "shasum": ""
  451. },
  452. "require": {
  453. "composer-plugin-api": "^1.0 || ^2.0"
  454. },
  455. "replace": {
  456. "roundcube/plugin-installer": "*",
  457. "shama/baton": "*"
  458. },
  459. "require-dev": {
  460. "composer/composer": "1.6.* || 2.0.*@dev",
  461. "composer/semver": "1.0.* || 2.0.*@dev",
  462. "phpunit/phpunit": "^4.8.36",
  463. "sebastian/comparator": "^1.2.4",
  464. "symfony/process": "^2.3"
  465. },
  466. "type": "composer-plugin",
  467. "extra": {
  468. "class": "Composer\\Installers\\Plugin",
  469. "branch-alias": {
  470. "dev-master": "1.0-dev"
  471. }
  472. },
  473. "autoload": {
  474. "psr-4": {
  475. "Composer\\Installers\\": "src/Composer/Installers"
  476. }
  477. },
  478. "notification-url": "https://packagist.org/downloads/",
  479. "license": [
  480. "MIT"
  481. ],
  482. "authors": [
  483. {
  484. "name": "Kyle Robinson Young",
  485. "email": "kyle@dontkry.com",
  486. "homepage": "https://github.com/shama"
  487. }
  488. ],
  489. "description": "A multi-framework Composer library installer",
  490. "homepage": "https://composer.github.io/installers/",
  491. "keywords": [
  492. "Craft",
  493. "Dolibarr",
  494. "Eliasis",
  495. "Hurad",
  496. "ImageCMS",
  497. "Kanboard",
  498. "Lan Management System",
  499. "MODX Evo",
  500. "MantisBT",
  501. "Mautic",
  502. "Maya",
  503. "OXID",
  504. "Plentymarkets",
  505. "Porto",
  506. "RadPHP",
  507. "SMF",
  508. "Thelia",
  509. "Whmcs",
  510. "WolfCMS",
  511. "agl",
  512. "aimeos",
  513. "annotatecms",
  514. "attogram",
  515. "bitrix",
  516. "cakephp",
  517. "chef",
  518. "cockpit",
  519. "codeigniter",
  520. "concrete5",
  521. "croogo",
  522. "dokuwiki",
  523. "drupal",
  524. "eZ Platform",
  525. "elgg",
  526. "expressionengine",
  527. "fuelphp",
  528. "grav",
  529. "installer",
  530. "itop",
  531. "joomla",
  532. "known",
  533. "kohana",
  534. "laravel",
  535. "lavalite",
  536. "lithium",
  537. "magento",
  538. "majima",
  539. "mako",
  540. "mediawiki",
  541. "modulework",
  542. "modx",
  543. "moodle",
  544. "osclass",
  545. "phpbb",
  546. "piwik",
  547. "ppi",
  548. "puppet",
  549. "pxcms",
  550. "reindex",
  551. "roundcube",
  552. "shopware",
  553. "silverstripe",
  554. "sydes",
  555. "sylius",
  556. "symfony",
  557. "typo3",
  558. "wordpress",
  559. "yawik",
  560. "zend",
  561. "zikula"
  562. ],
  563. "time": "2020-04-07T06:57:05+00:00"
  564. },
  565. {
  566. "name": "composer/semver",
  567. "version": "1.5.1",
  568. "source": {
  569. "type": "git",
  570. "url": "https://github.com/composer/semver.git",
  571. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  572. },
  573. "dist": {
  574. "type": "zip",
  575. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  576. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  577. "shasum": ""
  578. },
  579. "require": {
  580. "php": "^5.3.2 || ^7.0"
  581. },
  582. "require-dev": {
  583. "phpunit/phpunit": "^4.5 || ^5.0.5"
  584. },
  585. "type": "library",
  586. "extra": {
  587. "branch-alias": {
  588. "dev-master": "1.x-dev"
  589. }
  590. },
  591. "autoload": {
  592. "psr-4": {
  593. "Composer\\Semver\\": "src"
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Nils Adermann",
  603. "email": "naderman@naderman.de",
  604. "homepage": "http://www.naderman.de"
  605. },
  606. {
  607. "name": "Jordi Boggiano",
  608. "email": "j.boggiano@seld.be",
  609. "homepage": "http://seld.be"
  610. },
  611. {
  612. "name": "Rob Bast",
  613. "email": "rob.bast@gmail.com",
  614. "homepage": "http://robbast.nl"
  615. }
  616. ],
  617. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  618. "keywords": [
  619. "semantic",
  620. "semver",
  621. "validation",
  622. "versioning"
  623. ],
  624. "time": "2020-01-13T12:06:48+00:00"
  625. },
  626. {
  627. "name": "consolidation/annotated-command",
  628. "version": "2.12.0",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/consolidation/annotated-command.git",
  632. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  637. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  638. "shasum": ""
  639. },
  640. "require": {
  641. "consolidation/output-formatters": "^3.4",
  642. "php": ">=5.4.5",
  643. "psr/log": "^1",
  644. "symfony/console": "^2.8|^3|^4",
  645. "symfony/event-dispatcher": "^2.5|^3|^4",
  646. "symfony/finder": "^2.5|^3|^4"
  647. },
  648. "require-dev": {
  649. "g1a/composer-test-scenarios": "^3",
  650. "php-coveralls/php-coveralls": "^1",
  651. "phpunit/phpunit": "^6",
  652. "squizlabs/php_codesniffer": "^2.7"
  653. },
  654. "type": "library",
  655. "extra": {
  656. "scenarios": {
  657. "symfony4": {
  658. "require": {
  659. "symfony/console": "^4.0"
  660. },
  661. "config": {
  662. "platform": {
  663. "php": "7.1.3"
  664. }
  665. }
  666. },
  667. "symfony2": {
  668. "require": {
  669. "symfony/console": "^2.8"
  670. },
  671. "require-dev": {
  672. "phpunit/phpunit": "^4.8.36"
  673. },
  674. "remove": [
  675. "php-coveralls/php-coveralls"
  676. ],
  677. "config": {
  678. "platform": {
  679. "php": "5.4.8"
  680. }
  681. },
  682. "scenario-options": {
  683. "create-lockfile": "false"
  684. }
  685. },
  686. "phpunit4": {
  687. "require-dev": {
  688. "phpunit/phpunit": "^4.8.36"
  689. },
  690. "remove": [
  691. "php-coveralls/php-coveralls"
  692. ],
  693. "config": {
  694. "platform": {
  695. "php": "5.4.8"
  696. }
  697. }
  698. }
  699. },
  700. "branch-alias": {
  701. "dev-master": "2.x-dev"
  702. }
  703. },
  704. "autoload": {
  705. "psr-4": {
  706. "Consolidation\\AnnotatedCommand\\": "src"
  707. }
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "Greg Anderson",
  716. "email": "greg.1.anderson@greenknowe.org"
  717. }
  718. ],
  719. "description": "Initialize Symfony Console commands from annotated command class methods.",
  720. "time": "2019-03-08T16:55:03+00:00"
  721. },
  722. {
  723. "name": "consolidation/config",
  724. "version": "1.2.1",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/consolidation/config.git",
  728. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  733. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "dflydev/dot-access-data": "^1.1.0",
  738. "grasmash/expander": "^1",
  739. "php": ">=5.4.0"
  740. },
  741. "require-dev": {
  742. "g1a/composer-test-scenarios": "^3",
  743. "php-coveralls/php-coveralls": "^1",
  744. "phpunit/phpunit": "^5",
  745. "squizlabs/php_codesniffer": "2.*",
  746. "symfony/console": "^2.5|^3|^4",
  747. "symfony/yaml": "^2.8.11|^3|^4"
  748. },
  749. "suggest": {
  750. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  751. },
  752. "type": "library",
  753. "extra": {
  754. "scenarios": {
  755. "symfony4": {
  756. "require-dev": {
  757. "symfony/console": "^4.0"
  758. },
  759. "config": {
  760. "platform": {
  761. "php": "7.1.3"
  762. }
  763. }
  764. },
  765. "symfony2": {
  766. "require-dev": {
  767. "symfony/console": "^2.8",
  768. "symfony/event-dispatcher": "^2.8",
  769. "phpunit/phpunit": "^4.8.36"
  770. },
  771. "remove": [
  772. "php-coveralls/php-coveralls"
  773. ],
  774. "config": {
  775. "platform": {
  776. "php": "5.4.8"
  777. }
  778. }
  779. }
  780. },
  781. "branch-alias": {
  782. "dev-master": "1.x-dev"
  783. }
  784. },
  785. "autoload": {
  786. "psr-4": {
  787. "Consolidation\\Config\\": "src"
  788. }
  789. },
  790. "notification-url": "https://packagist.org/downloads/",
  791. "license": [
  792. "MIT"
  793. ],
  794. "authors": [
  795. {
  796. "name": "Greg Anderson",
  797. "email": "greg.1.anderson@greenknowe.org"
  798. }
  799. ],
  800. "description": "Provide configuration services for a commandline tool.",
  801. "time": "2019-03-03T19:37:04+00:00"
  802. },
  803. {
  804. "name": "consolidation/filter-via-dot-access-data",
  805. "version": "1.0.0",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  809. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  814. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  815. "shasum": ""
  816. },
  817. "require": {
  818. "dflydev/dot-access-data": "^1.1.0",
  819. "php": ">=5.5.0"
  820. },
  821. "require-dev": {
  822. "consolidation/robo": "^1.2.3",
  823. "g1a/composer-test-scenarios": "^3",
  824. "knplabs/github-api": "^2.7",
  825. "php-coveralls/php-coveralls": "^1",
  826. "php-http/guzzle6-adapter": "^1.1",
  827. "phpunit/phpunit": "^5",
  828. "squizlabs/php_codesniffer": "^2.8",
  829. "symfony/console": "^2.8|^3|^4"
  830. },
  831. "type": "library",
  832. "extra": {
  833. "scenarios": {
  834. "phpunit5": {
  835. "require-dev": {
  836. "phpunit/phpunit": "^5.7.27"
  837. },
  838. "remove": [
  839. "php-coveralls/php-coveralls"
  840. ],
  841. "config": {
  842. "platform": {
  843. "php": "5.6.33"
  844. }
  845. }
  846. }
  847. },
  848. "branch-alias": {
  849. "dev-master": "1.x-dev"
  850. }
  851. },
  852. "autoload": {
  853. "psr-4": {
  854. "Consolidation\\Filter\\": "src"
  855. }
  856. },
  857. "notification-url": "https://packagist.org/downloads/",
  858. "license": [
  859. "MIT"
  860. ],
  861. "authors": [
  862. {
  863. "name": "Greg Anderson",
  864. "email": "greg.1.anderson@greenknowe.org"
  865. }
  866. ],
  867. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  868. "time": "2019-01-18T06:05:07+00:00"
  869. },
  870. {
  871. "name": "consolidation/log",
  872. "version": "1.1.1",
  873. "source": {
  874. "type": "git",
  875. "url": "https://github.com/consolidation/log.git",
  876. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  877. },
  878. "dist": {
  879. "type": "zip",
  880. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  881. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  882. "shasum": ""
  883. },
  884. "require": {
  885. "php": ">=5.4.5",
  886. "psr/log": "^1.0",
  887. "symfony/console": "^2.8|^3|^4"
  888. },
  889. "require-dev": {
  890. "g1a/composer-test-scenarios": "^3",
  891. "php-coveralls/php-coveralls": "^1",
  892. "phpunit/phpunit": "^6",
  893. "squizlabs/php_codesniffer": "^2"
  894. },
  895. "type": "library",
  896. "extra": {
  897. "scenarios": {
  898. "symfony4": {
  899. "require": {
  900. "symfony/console": "^4.0"
  901. },
  902. "config": {
  903. "platform": {
  904. "php": "7.1.3"
  905. }
  906. }
  907. },
  908. "symfony2": {
  909. "require": {
  910. "symfony/console": "^2.8"
  911. },
  912. "require-dev": {
  913. "phpunit/phpunit": "^4.8.36"
  914. },
  915. "remove": [
  916. "php-coveralls/php-coveralls"
  917. ],
  918. "config": {
  919. "platform": {
  920. "php": "5.4.8"
  921. }
  922. }
  923. },
  924. "phpunit4": {
  925. "require-dev": {
  926. "phpunit/phpunit": "^4.8.36"
  927. },
  928. "remove": [
  929. "php-coveralls/php-coveralls"
  930. ],
  931. "config": {
  932. "platform": {
  933. "php": "5.4.8"
  934. }
  935. }
  936. }
  937. },
  938. "branch-alias": {
  939. "dev-master": "1.x-dev"
  940. }
  941. },
  942. "autoload": {
  943. "psr-4": {
  944. "Consolidation\\Log\\": "src"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "MIT"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Greg Anderson",
  954. "email": "greg.1.anderson@greenknowe.org"
  955. }
  956. ],
  957. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  958. "time": "2019-01-01T17:30:51+00:00"
  959. },
  960. {
  961. "name": "consolidation/output-formatters",
  962. "version": "3.5.0",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/consolidation/output-formatters.git",
  966. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  971. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "dflydev/dot-access-data": "^1.1.0",
  976. "php": ">=5.4.0",
  977. "symfony/console": "^2.8|^3|^4",
  978. "symfony/finder": "^2.5|^3|^4"
  979. },
  980. "require-dev": {
  981. "g1a/composer-test-scenarios": "^3",
  982. "php-coveralls/php-coveralls": "^1",
  983. "phpunit/phpunit": "^5.7.27",
  984. "squizlabs/php_codesniffer": "^2.7",
  985. "symfony/var-dumper": "^2.8|^3|^4",
  986. "victorjonsson/markdowndocs": "^1.3"
  987. },
  988. "suggest": {
  989. "symfony/var-dumper": "For using the var_dump formatter"
  990. },
  991. "type": "library",
  992. "extra": {
  993. "scenarios": {
  994. "symfony4": {
  995. "require": {
  996. "symfony/console": "^4.0"
  997. },
  998. "require-dev": {
  999. "phpunit/phpunit": "^6"
  1000. },
  1001. "config": {
  1002. "platform": {
  1003. "php": "7.1.3"
  1004. }
  1005. }
  1006. },
  1007. "symfony3": {
  1008. "require": {
  1009. "symfony/console": "^3.4",
  1010. "symfony/finder": "^3.4",
  1011. "symfony/var-dumper": "^3.4"
  1012. },
  1013. "config": {
  1014. "platform": {
  1015. "php": "5.6.32"
  1016. }
  1017. }
  1018. },
  1019. "symfony2": {
  1020. "require": {
  1021. "symfony/console": "^2.8"
  1022. },
  1023. "require-dev": {
  1024. "phpunit/phpunit": "^4.8.36"
  1025. },
  1026. "remove": [
  1027. "php-coveralls/php-coveralls"
  1028. ],
  1029. "config": {
  1030. "platform": {
  1031. "php": "5.4.8"
  1032. }
  1033. },
  1034. "scenario-options": {
  1035. "create-lockfile": "false"
  1036. }
  1037. }
  1038. },
  1039. "branch-alias": {
  1040. "dev-master": "3.x-dev"
  1041. }
  1042. },
  1043. "autoload": {
  1044. "psr-4": {
  1045. "Consolidation\\OutputFormatters\\": "src"
  1046. }
  1047. },
  1048. "notification-url": "https://packagist.org/downloads/",
  1049. "license": [
  1050. "MIT"
  1051. ],
  1052. "authors": [
  1053. {
  1054. "name": "Greg Anderson",
  1055. "email": "greg.1.anderson@greenknowe.org"
  1056. }
  1057. ],
  1058. "description": "Format text by applying transformations provided by plug-in formatters.",
  1059. "time": "2019-05-30T23:16:01+00:00"
  1060. },
  1061. {
  1062. "name": "consolidation/robo",
  1063. "version": "1.4.12",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/consolidation/Robo.git",
  1067. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  1072. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  1073. "shasum": ""
  1074. },
  1075. "require": {
  1076. "consolidation/annotated-command": "^2.11.0|^4.1",
  1077. "consolidation/config": "^1.2.1",
  1078. "consolidation/log": "^1.1.1|^2",
  1079. "consolidation/output-formatters": "^3.1.13|^4.1",
  1080. "consolidation/self-update": "^1.1.5",
  1081. "grasmash/yaml-expander": "^1.4",
  1082. "league/container": "^2.4.1",
  1083. "php": ">=5.5.0",
  1084. "symfony/console": "^2.8|^3|^4",
  1085. "symfony/event-dispatcher": "^2.5|^3|^4",
  1086. "symfony/filesystem": "^2.5|^3|^4",
  1087. "symfony/finder": "^2.5|^3|^4",
  1088. "symfony/process": "^2.5|^3|^4"
  1089. },
  1090. "replace": {
  1091. "codegyre/robo": "< 1.0"
  1092. },
  1093. "require-dev": {
  1094. "g1a/composer-test-scenarios": "^3",
  1095. "natxet/cssmin": "3.0.4",
  1096. "patchwork/jsqueeze": "^2",
  1097. "pear/archive_tar": "^1.4.4",
  1098. "php-coveralls/php-coveralls": "^1",
  1099. "phpunit/phpunit": "^5.7.27",
  1100. "squizlabs/php_codesniffer": "^3"
  1101. },
  1102. "suggest": {
  1103. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  1104. "natxet/CssMin": "For minifying CSS files in taskMinify",
  1105. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  1106. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  1107. },
  1108. "bin": [
  1109. "robo"
  1110. ],
  1111. "type": "library",
  1112. "extra": {
  1113. "scenarios": {
  1114. "symfony4": {
  1115. "require": {
  1116. "symfony/console": "^4"
  1117. },
  1118. "config": {
  1119. "platform": {
  1120. "php": "7.1.3"
  1121. }
  1122. }
  1123. },
  1124. "symfony2": {
  1125. "require": {
  1126. "symfony/console": "^2.8"
  1127. },
  1128. "require-dev": {
  1129. "phpunit/phpunit": "^4.8.36"
  1130. },
  1131. "remove": [
  1132. "php-coveralls/php-coveralls"
  1133. ],
  1134. "config": {
  1135. "platform": {
  1136. "php": "5.5.9"
  1137. }
  1138. },
  1139. "scenario-options": {
  1140. "create-lockfile": "false"
  1141. }
  1142. }
  1143. },
  1144. "branch-alias": {
  1145. "dev-master": "1.x-dev"
  1146. }
  1147. },
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Robo\\": "src"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Davert",
  1160. "email": "davert.php@resend.cc"
  1161. }
  1162. ],
  1163. "description": "Modern task runner",
  1164. "time": "2020-02-18T17:31:26+00:00"
  1165. },
  1166. {
  1167. "name": "consolidation/self-update",
  1168. "version": "1.2.0",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/consolidation/self-update.git",
  1172. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  1177. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  1178. "shasum": ""
  1179. },
  1180. "require": {
  1181. "php": ">=5.5.0",
  1182. "symfony/console": "^2.8|^3|^4|^5",
  1183. "symfony/filesystem": "^2.5|^3|^4|^5"
  1184. },
  1185. "bin": [
  1186. "scripts/release"
  1187. ],
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "1.x-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "SelfUpdate\\": "src"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "authors": [
  1204. {
  1205. "name": "Alexander Menk",
  1206. "email": "menk@mestrona.net"
  1207. },
  1208. {
  1209. "name": "Greg Anderson",
  1210. "email": "greg.1.anderson@greenknowe.org"
  1211. }
  1212. ],
  1213. "description": "Provides a self:update command for Symfony Console applications.",
  1214. "time": "2020-04-13T02:49:20+00:00"
  1215. },
  1216. {
  1217. "name": "consolidation/site-alias",
  1218. "version": "3.0.0",
  1219. "source": {
  1220. "type": "git",
  1221. "url": "https://github.com/consolidation/site-alias.git",
  1222. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  1223. },
  1224. "dist": {
  1225. "type": "zip",
  1226. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1227. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1228. "shasum": ""
  1229. },
  1230. "require": {
  1231. "consolidation/config": "^1.2.1",
  1232. "php": ">=5.5.0"
  1233. },
  1234. "require-dev": {
  1235. "consolidation/robo": "^1.2.3",
  1236. "g1a/composer-test-scenarios": "^3",
  1237. "knplabs/github-api": "^2.7",
  1238. "php-coveralls/php-coveralls": "^1",
  1239. "php-http/guzzle6-adapter": "^1.1",
  1240. "phpunit/phpunit": "^6",
  1241. "squizlabs/php_codesniffer": "^2.8",
  1242. "symfony/console": "^2.8|^3|^4",
  1243. "symfony/yaml": "~2.3|^3"
  1244. },
  1245. "type": "library",
  1246. "extra": {
  1247. "scenarios": {
  1248. "phpunit5": {
  1249. "require-dev": {
  1250. "phpunit/phpunit": "^5.7.27"
  1251. },
  1252. "remove": [
  1253. "php-coveralls/php-coveralls"
  1254. ],
  1255. "config": {
  1256. "platform": {
  1257. "php": "5.6.33"
  1258. }
  1259. }
  1260. }
  1261. },
  1262. "branch-alias": {
  1263. "dev-master": "3.x-dev"
  1264. }
  1265. },
  1266. "autoload": {
  1267. "psr-4": {
  1268. "Consolidation\\SiteAlias\\": "src"
  1269. }
  1270. },
  1271. "notification-url": "https://packagist.org/downloads/",
  1272. "license": [
  1273. "MIT"
  1274. ],
  1275. "authors": [
  1276. {
  1277. "name": "Moshe Weitzman",
  1278. "email": "weitzman@tejasa.com"
  1279. },
  1280. {
  1281. "name": "Greg Anderson",
  1282. "email": "greg.1.anderson@greenknowe.org"
  1283. }
  1284. ],
  1285. "description": "Manage alias records for local and remote sites.",
  1286. "time": "2019-03-12T17:31:48+00:00"
  1287. },
  1288. {
  1289. "name": "consolidation/site-process",
  1290. "version": "2.1.0",
  1291. "source": {
  1292. "type": "git",
  1293. "url": "https://github.com/consolidation/site-process.git",
  1294. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1295. },
  1296. "dist": {
  1297. "type": "zip",
  1298. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1299. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1300. "shasum": ""
  1301. },
  1302. "require": {
  1303. "consolidation/config": "^1.2.1",
  1304. "consolidation/site-alias": "^3",
  1305. "php": ">=5.6.0",
  1306. "symfony/process": "^3.4"
  1307. },
  1308. "require-dev": {
  1309. "consolidation/robo": "^1.3",
  1310. "g1a/composer-test-scenarios": "^3",
  1311. "knplabs/github-api": "^2.7",
  1312. "php-coveralls/php-coveralls": "^1",
  1313. "php-http/guzzle6-adapter": "^1.1",
  1314. "phpunit/phpunit": "^6",
  1315. "squizlabs/php_codesniffer": "^2.8"
  1316. },
  1317. "type": "library",
  1318. "extra": {
  1319. "scenarios": {
  1320. "phpunit5": {
  1321. "require-dev": {
  1322. "phpunit/phpunit": "^5.7.27"
  1323. },
  1324. "remove": [
  1325. "php-coveralls/php-coveralls"
  1326. ],
  1327. "config": {
  1328. "platform": {
  1329. "php": "5.6.33"
  1330. }
  1331. }
  1332. }
  1333. },
  1334. "branch-alias": {
  1335. "dev-master": "0.x-dev"
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Consolidation\\SiteProcess\\": "src"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Greg Anderson",
  1350. "email": "greg.1.anderson@greenknowe.org"
  1351. },
  1352. {
  1353. "name": "Moshe Weitzman",
  1354. "email": "weitzman@tejasa.com"
  1355. }
  1356. ],
  1357. "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.",
  1358. "time": "2019-09-10T17:56:24+00:00"
  1359. },
  1360. {
  1361. "name": "container-interop/container-interop",
  1362. "version": "1.2.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/container-interop/container-interop.git",
  1366. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1371. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "psr/container": "^1.0"
  1376. },
  1377. "type": "library",
  1378. "autoload": {
  1379. "psr-4": {
  1380. "Interop\\Container\\": "src/Interop/Container/"
  1381. }
  1382. },
  1383. "notification-url": "https://packagist.org/downloads/",
  1384. "license": [
  1385. "MIT"
  1386. ],
  1387. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1388. "homepage": "https://github.com/container-interop/container-interop",
  1389. "abandoned": "psr/container",
  1390. "time": "2017-02-14T19:40:03+00:00"
  1391. },
  1392. {
  1393. "name": "cweagans/composer-patches",
  1394. "version": "1.6.7",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/cweagans/composer-patches.git",
  1398. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1403. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "composer-plugin-api": "^1.0",
  1408. "php": ">=5.3.0"
  1409. },
  1410. "require-dev": {
  1411. "composer/composer": "~1.0",
  1412. "phpunit/phpunit": "~4.6"
  1413. },
  1414. "type": "composer-plugin",
  1415. "extra": {
  1416. "class": "cweagans\\Composer\\Patches"
  1417. },
  1418. "autoload": {
  1419. "psr-4": {
  1420. "cweagans\\Composer\\": "src"
  1421. }
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "BSD-3-Clause"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "Cameron Eagans",
  1430. "email": "me@cweagans.net"
  1431. }
  1432. ],
  1433. "description": "Provides a way to patch Composer packages.",
  1434. "time": "2019-08-29T20:11:49+00:00"
  1435. },
  1436. {
  1437. "name": "dflydev/dot-access-configuration",
  1438. "version": "v1.0.3",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1442. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1447. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "dflydev/dot-access-data": "1.*",
  1452. "dflydev/placeholder-resolver": "1.*",
  1453. "php": ">=5.3.2"
  1454. },
  1455. "require-dev": {
  1456. "symfony/yaml": "~2.1"
  1457. },
  1458. "suggest": {
  1459. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1460. },
  1461. "type": "library",
  1462. "extra": {
  1463. "branch-alias": {
  1464. "dev-master": "1.0-dev"
  1465. }
  1466. },
  1467. "autoload": {
  1468. "psr-0": {
  1469. "Dflydev\\DotAccessConfiguration": "src"
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Dragonfly Development Inc.",
  1479. "email": "info@dflydev.com",
  1480. "homepage": "http://dflydev.com"
  1481. },
  1482. {
  1483. "name": "Beau Simensen",
  1484. "email": "beau@dflydev.com",
  1485. "homepage": "http://beausimensen.com"
  1486. }
  1487. ],
  1488. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1489. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1490. "keywords": [
  1491. "config",
  1492. "configuration"
  1493. ],
  1494. "time": "2018-09-08T23:00:17+00:00"
  1495. },
  1496. {
  1497. "name": "dflydev/dot-access-data",
  1498. "version": "v1.1.0",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1502. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1507. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1508. "shasum": ""
  1509. },
  1510. "require": {
  1511. "php": ">=5.3.2"
  1512. },
  1513. "type": "library",
  1514. "extra": {
  1515. "branch-alias": {
  1516. "dev-master": "1.0-dev"
  1517. }
  1518. },
  1519. "autoload": {
  1520. "psr-0": {
  1521. "Dflydev\\DotAccessData": "src"
  1522. }
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "MIT"
  1527. ],
  1528. "authors": [
  1529. {
  1530. "name": "Dragonfly Development Inc.",
  1531. "email": "info@dflydev.com",
  1532. "homepage": "http://dflydev.com"
  1533. },
  1534. {
  1535. "name": "Beau Simensen",
  1536. "email": "beau@dflydev.com",
  1537. "homepage": "http://beausimensen.com"
  1538. },
  1539. {
  1540. "name": "Carlos Frutos",
  1541. "email": "carlos@kiwing.it",
  1542. "homepage": "https://github.com/cfrutos"
  1543. }
  1544. ],
  1545. "description": "Given a deep data structure, access data by dot notation.",
  1546. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1547. "keywords": [
  1548. "access",
  1549. "data",
  1550. "dot",
  1551. "notation"
  1552. ],
  1553. "time": "2017-01-20T21:14:22+00:00"
  1554. },
  1555. {
  1556. "name": "dflydev/placeholder-resolver",
  1557. "version": "v1.0.2",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1561. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1562. },
  1563. "dist": {
  1564. "type": "zip",
  1565. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1566. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1567. "shasum": ""
  1568. },
  1569. "require": {
  1570. "php": ">=5.3.2"
  1571. },
  1572. "type": "library",
  1573. "extra": {
  1574. "branch-alias": {
  1575. "dev-master": "1.0-dev"
  1576. }
  1577. },
  1578. "autoload": {
  1579. "psr-0": {
  1580. "Dflydev\\PlaceholderResolver": "src"
  1581. }
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Dragonfly Development Inc.",
  1590. "email": "info@dflydev.com",
  1591. "homepage": "http://dflydev.com"
  1592. },
  1593. {
  1594. "name": "Beau Simensen",
  1595. "email": "beau@dflydev.com",
  1596. "homepage": "http://beausimensen.com"
  1597. }
  1598. ],
  1599. "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.",
  1600. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1601. "keywords": [
  1602. "placeholder",
  1603. "resolver"
  1604. ],
  1605. "time": "2012-10-28T21:08:28+00:00"
  1606. },
  1607. {
  1608. "name": "dnoegel/php-xdg-base-dir",
  1609. "version": "v0.1.1",
  1610. "source": {
  1611. "type": "git",
  1612. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1613. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1614. },
  1615. "dist": {
  1616. "type": "zip",
  1617. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1618. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1619. "shasum": ""
  1620. },
  1621. "require": {
  1622. "php": ">=5.3.2"
  1623. },
  1624. "require-dev": {
  1625. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1626. },
  1627. "type": "library",
  1628. "autoload": {
  1629. "psr-4": {
  1630. "XdgBaseDir\\": "src/"
  1631. }
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "MIT"
  1636. ],
  1637. "description": "implementation of xdg base directory specification for php",
  1638. "time": "2019-12-04T15:06:13+00:00"
  1639. },
  1640. {
  1641. "name": "doctrine/annotations",
  1642. "version": "v1.4.0",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://github.com/doctrine/annotations.git",
  1646. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1651. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1652. "shasum": ""
  1653. },
  1654. "require": {
  1655. "doctrine/lexer": "1.*",
  1656. "php": "^5.6 || ^7.0"
  1657. },
  1658. "require-dev": {
  1659. "doctrine/cache": "1.*",
  1660. "phpunit/phpunit": "^5.7"
  1661. },
  1662. "type": "library",
  1663. "extra": {
  1664. "branch-alias": {
  1665. "dev-master": "1.4.x-dev"
  1666. }
  1667. },
  1668. "autoload": {
  1669. "psr-4": {
  1670. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1671. }
  1672. },
  1673. "notification-url": "https://packagist.org/downloads/",
  1674. "license": [
  1675. "MIT"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "Roman Borschel",
  1680. "email": "roman@code-factory.org"
  1681. },
  1682. {
  1683. "name": "Benjamin Eberlei",
  1684. "email": "kontakt@beberlei.de"
  1685. },
  1686. {
  1687. "name": "Guilherme Blanco",
  1688. "email": "guilhermeblanco@gmail.com"
  1689. },
  1690. {
  1691. "name": "Jonathan Wage",
  1692. "email": "jonwage@gmail.com"
  1693. },
  1694. {
  1695. "name": "Johannes Schmitt",
  1696. "email": "schmittjoh@gmail.com"
  1697. }
  1698. ],
  1699. "description": "Docblock Annotations Parser",
  1700. "homepage": "http://www.doctrine-project.org",
  1701. "keywords": [
  1702. "annotations",
  1703. "docblock",
  1704. "parser"
  1705. ],
  1706. "time": "2017-02-24T16:22:25+00:00"
  1707. },
  1708. {
  1709. "name": "doctrine/cache",
  1710. "version": "v1.6.2",
  1711. "source": {
  1712. "type": "git",
  1713. "url": "https://github.com/doctrine/cache.git",
  1714. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1715. },
  1716. "dist": {
  1717. "type": "zip",
  1718. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1719. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1720. "shasum": ""
  1721. },
  1722. "require": {
  1723. "php": "~5.5|~7.0"
  1724. },
  1725. "conflict": {
  1726. "doctrine/common": ">2.2,<2.4"
  1727. },
  1728. "require-dev": {
  1729. "phpunit/phpunit": "~4.8|~5.0",
  1730. "predis/predis": "~1.0",
  1731. "satooshi/php-coveralls": "~0.6"
  1732. },
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-master": "1.6.x-dev"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Roman Borschel",
  1751. "email": "roman@code-factory.org"
  1752. },
  1753. {
  1754. "name": "Benjamin Eberlei",
  1755. "email": "kontakt@beberlei.de"
  1756. },
  1757. {
  1758. "name": "Guilherme Blanco",
  1759. "email": "guilhermeblanco@gmail.com"
  1760. },
  1761. {
  1762. "name": "Jonathan Wage",
  1763. "email": "jonwage@gmail.com"
  1764. },
  1765. {
  1766. "name": "Johannes Schmitt",
  1767. "email": "schmittjoh@gmail.com"
  1768. }
  1769. ],
  1770. "description": "Caching library offering an object-oriented API for many cache backends",
  1771. "homepage": "http://www.doctrine-project.org",
  1772. "keywords": [
  1773. "cache",
  1774. "caching"
  1775. ],
  1776. "time": "2017-07-22T12:49:21+00:00"
  1777. },
  1778. {
  1779. "name": "doctrine/collections",
  1780. "version": "v1.4.0",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://github.com/doctrine/collections.git",
  1784. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1789. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1790. "shasum": ""
  1791. },
  1792. "require": {
  1793. "php": "^5.6 || ^7.0"
  1794. },
  1795. "require-dev": {
  1796. "doctrine/coding-standard": "~0.1@dev",
  1797. "phpunit/phpunit": "^5.7"
  1798. },
  1799. "type": "library",
  1800. "extra": {
  1801. "branch-alias": {
  1802. "dev-master": "1.3.x-dev"
  1803. }
  1804. },
  1805. "autoload": {
  1806. "psr-0": {
  1807. "Doctrine\\Common\\Collections\\": "lib/"
  1808. }
  1809. },
  1810. "notification-url": "https://packagist.org/downloads/",
  1811. "license": [
  1812. "MIT"
  1813. ],
  1814. "authors": [
  1815. {
  1816. "name": "Roman Borschel",
  1817. "email": "roman@code-factory.org"
  1818. },
  1819. {
  1820. "name": "Benjamin Eberlei",
  1821. "email": "kontakt@beberlei.de"
  1822. },
  1823. {
  1824. "name": "Guilherme Blanco",
  1825. "email": "guilhermeblanco@gmail.com"
  1826. },
  1827. {
  1828. "name": "Jonathan Wage",
  1829. "email": "jonwage@gmail.com"
  1830. },
  1831. {
  1832. "name": "Johannes Schmitt",
  1833. "email": "schmittjoh@gmail.com"
  1834. }
  1835. ],
  1836. "description": "Collections Abstraction library",
  1837. "homepage": "http://www.doctrine-project.org",
  1838. "keywords": [
  1839. "array",
  1840. "collections",
  1841. "iterator"
  1842. ],
  1843. "time": "2017-01-03T10:49:41+00:00"
  1844. },
  1845. {
  1846. "name": "doctrine/common",
  1847. "version": "v2.7.3",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/doctrine/common.git",
  1851. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1856. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "doctrine/annotations": "1.*",
  1861. "doctrine/cache": "1.*",
  1862. "doctrine/collections": "1.*",
  1863. "doctrine/inflector": "1.*",
  1864. "doctrine/lexer": "1.*",
  1865. "php": "~5.6|~7.0"
  1866. },
  1867. "require-dev": {
  1868. "phpunit/phpunit": "^5.4.6"
  1869. },
  1870. "type": "library",
  1871. "extra": {
  1872. "branch-alias": {
  1873. "dev-master": "2.7.x-dev"
  1874. }
  1875. },
  1876. "autoload": {
  1877. "psr-4": {
  1878. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1879. }
  1880. },
  1881. "notification-url": "https://packagist.org/downloads/",
  1882. "license": [
  1883. "MIT"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Roman Borschel",
  1888. "email": "roman@code-factory.org"
  1889. },
  1890. {
  1891. "name": "Benjamin Eberlei",
  1892. "email": "kontakt@beberlei.de"
  1893. },
  1894. {
  1895. "name": "Guilherme Blanco",
  1896. "email": "guilhermeblanco@gmail.com"
  1897. },
  1898. {
  1899. "name": "Jonathan Wage",
  1900. "email": "jonwage@gmail.com"
  1901. },
  1902. {
  1903. "name": "Johannes Schmitt",
  1904. "email": "schmittjoh@gmail.com"
  1905. }
  1906. ],
  1907. "description": "Common Library for Doctrine projects",
  1908. "homepage": "http://www.doctrine-project.org",
  1909. "keywords": [
  1910. "annotations",
  1911. "collections",
  1912. "eventmanager",
  1913. "persistence",
  1914. "spl"
  1915. ],
  1916. "time": "2017-07-22T08:35:12+00:00"
  1917. },
  1918. {
  1919. "name": "doctrine/inflector",
  1920. "version": "v1.2.0",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/doctrine/inflector.git",
  1924. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1929. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "php": "^7.0"
  1934. },
  1935. "require-dev": {
  1936. "phpunit/phpunit": "^6.2"
  1937. },
  1938. "type": "library",
  1939. "extra": {
  1940. "branch-alias": {
  1941. "dev-master": "1.2.x-dev"
  1942. }
  1943. },
  1944. "autoload": {
  1945. "psr-4": {
  1946. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1947. }
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "Roman Borschel",
  1956. "email": "roman@code-factory.org"
  1957. },
  1958. {
  1959. "name": "Benjamin Eberlei",
  1960. "email": "kontakt@beberlei.de"
  1961. },
  1962. {
  1963. "name": "Guilherme Blanco",
  1964. "email": "guilhermeblanco@gmail.com"
  1965. },
  1966. {
  1967. "name": "Jonathan Wage",
  1968. "email": "jonwage@gmail.com"
  1969. },
  1970. {
  1971. "name": "Johannes Schmitt",
  1972. "email": "schmittjoh@gmail.com"
  1973. }
  1974. ],
  1975. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1976. "homepage": "http://www.doctrine-project.org",
  1977. "keywords": [
  1978. "inflection",
  1979. "pluralize",
  1980. "singularize",
  1981. "string"
  1982. ],
  1983. "time": "2017-07-22T12:18:28+00:00"
  1984. },
  1985. {
  1986. "name": "doctrine/instantiator",
  1987. "version": "1.0.5",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/doctrine/instantiator.git",
  1991. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1996. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1997. "shasum": ""
  1998. },
  1999. "require": {
  2000. "php": ">=5.3,<8.0-DEV"
  2001. },
  2002. "require-dev": {
  2003. "athletic/athletic": "~0.1.8",
  2004. "ext-pdo": "*",
  2005. "ext-phar": "*",
  2006. "phpunit/phpunit": "~4.0",
  2007. "squizlabs/php_codesniffer": "~2.0"
  2008. },
  2009. "type": "library",
  2010. "extra": {
  2011. "branch-alias": {
  2012. "dev-master": "1.0.x-dev"
  2013. }
  2014. },
  2015. "autoload": {
  2016. "psr-4": {
  2017. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2018. }
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "Marco Pivetta",
  2027. "email": "ocramius@gmail.com",
  2028. "homepage": "http://ocramius.github.com/"
  2029. }
  2030. ],
  2031. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2032. "homepage": "https://github.com/doctrine/instantiator",
  2033. "keywords": [
  2034. "constructor",
  2035. "instantiate"
  2036. ],
  2037. "time": "2015-06-14T21:17:01+00:00"
  2038. },
  2039. {
  2040. "name": "doctrine/lexer",
  2041. "version": "1.0.2",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/doctrine/lexer.git",
  2045. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2050. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2051. "shasum": ""
  2052. },
  2053. "require": {
  2054. "php": ">=5.3.2"
  2055. },
  2056. "require-dev": {
  2057. "phpunit/phpunit": "^4.5"
  2058. },
  2059. "type": "library",
  2060. "extra": {
  2061. "branch-alias": {
  2062. "dev-master": "1.0.x-dev"
  2063. }
  2064. },
  2065. "autoload": {
  2066. "psr-4": {
  2067. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  2068. }
  2069. },
  2070. "notification-url": "https://packagist.org/downloads/",
  2071. "license": [
  2072. "MIT"
  2073. ],
  2074. "authors": [
  2075. {
  2076. "name": "Roman Borschel",
  2077. "email": "roman@code-factory.org"
  2078. },
  2079. {
  2080. "name": "Guilherme Blanco",
  2081. "email": "guilhermeblanco@gmail.com"
  2082. },
  2083. {
  2084. "name": "Johannes Schmitt",
  2085. "email": "schmittjoh@gmail.com"
  2086. }
  2087. ],
  2088. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  2089. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  2090. "keywords": [
  2091. "annotations",
  2092. "docblock",
  2093. "lexer",
  2094. "parser",
  2095. "php"
  2096. ],
  2097. "time": "2019-06-08T11:03:04+00:00"
  2098. },
  2099. {
  2100. "name": "drupal-composer/drupal-scaffold",
  2101. "version": "2.6.1",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2105. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2110. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2111. "shasum": ""
  2112. },
  2113. "require": {
  2114. "composer-plugin-api": "^1.0.0",
  2115. "composer/semver": "^1.4",
  2116. "php": "^5.5.9|>=7.0.8"
  2117. },
  2118. "require-dev": {
  2119. "composer/composer": "dev-master",
  2120. "g1a/composer-test-scenarios": "^2.1.0",
  2121. "phpunit/phpunit": "^6",
  2122. "squizlabs/php_codesniffer": "^2.8"
  2123. },
  2124. "type": "composer-plugin",
  2125. "extra": {
  2126. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2127. "branch-alias": {
  2128. "dev-master": "2.0.x-dev"
  2129. }
  2130. },
  2131. "autoload": {
  2132. "psr-4": {
  2133. "DrupalComposer\\DrupalScaffold\\": "src/"
  2134. }
  2135. },
  2136. "notification-url": "https://packagist.org/downloads/",
  2137. "license": [
  2138. "GPL-2.0-or-later"
  2139. ],
  2140. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  2141. "time": "2019-03-30T10:41:38+00:00"
  2142. },
  2143. {
  2144. "name": "drupal/addtoany",
  2145. "version": "1.12.0",
  2146. "source": {
  2147. "type": "git",
  2148. "url": "https://git.drupalcode.org/project/addtoany.git",
  2149. "reference": "8.x-1.12"
  2150. },
  2151. "dist": {
  2152. "type": "zip",
  2153. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  2154. "reference": "8.x-1.12",
  2155. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  2156. },
  2157. "require": {
  2158. "drupal/core": "*"
  2159. },
  2160. "type": "drupal-module",
  2161. "extra": {
  2162. "branch-alias": {
  2163. "dev-1.x": "1.x-dev"
  2164. },
  2165. "drupal": {
  2166. "version": "8.x-1.12",
  2167. "datestamp": "1554702781",
  2168. "security-coverage": {
  2169. "status": "covered",
  2170. "message": "Covered by Drupal's security advisory policy"
  2171. }
  2172. }
  2173. },
  2174. "notification-url": "https://packages.drupal.org/8/downloads",
  2175. "license": [
  2176. "GPL-2.0-or-later"
  2177. ],
  2178. "authors": [
  2179. {
  2180. "name": "AddToAny",
  2181. "homepage": "https://www.drupal.org/user/2640913"
  2182. },
  2183. {
  2184. "name": "micropat",
  2185. "homepage": "https://www.drupal.org/user/260224"
  2186. }
  2187. ],
  2188. "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.",
  2189. "homepage": "https://www.drupal.org/project/addtoany",
  2190. "support": {
  2191. "source": "https://git.drupalcode.org/project/addtoany"
  2192. }
  2193. },
  2194. {
  2195. "name": "drupal/admin_toolbar",
  2196. "version": "2.0.0",
  2197. "source": {
  2198. "type": "git",
  2199. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2200. "reference": "8.x-2.0"
  2201. },
  2202. "dist": {
  2203. "type": "zip",
  2204. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  2205. "reference": "8.x-2.0",
  2206. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  2207. },
  2208. "require": {
  2209. "drupal/core": "*"
  2210. },
  2211. "type": "drupal-module",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-2.x": "2.x-dev"
  2215. },
  2216. "drupal": {
  2217. "version": "8.x-2.0",
  2218. "datestamp": "1573751237",
  2219. "security-coverage": {
  2220. "status": "covered",
  2221. "message": "Covered by Drupal's security advisory policy"
  2222. }
  2223. }
  2224. },
  2225. "notification-url": "https://packages.drupal.org/8/downloads",
  2226. "license": [
  2227. "GPL-2.0+"
  2228. ],
  2229. "authors": [
  2230. {
  2231. "name": "Wilfrid Roze (eme)",
  2232. "homepage": "https://www.drupal.org/u/eme",
  2233. "role": "Maintainer"
  2234. },
  2235. {
  2236. "name": "Romain Jarraud (romainj)",
  2237. "homepage": "https://www.drupal.org/u/romainj",
  2238. "role": "Maintainer"
  2239. },
  2240. {
  2241. "name": "Adrian Cid Almaguer (adriancid)",
  2242. "homepage": "https://www.drupal.org/u/adriancid",
  2243. "email": "adriancid@gmail.com",
  2244. "role": "Maintainer"
  2245. },
  2246. {
  2247. "name": "Mohamed Anis Taktak (matio89)",
  2248. "homepage": "https://www.drupal.org/u/matio89",
  2249. "role": "Maintainer"
  2250. },
  2251. {
  2252. "name": "fethi.krout",
  2253. "homepage": "https://www.drupal.org/user/3206765"
  2254. },
  2255. {
  2256. "name": "matio89",
  2257. "homepage": "https://www.drupal.org/user/2320090"
  2258. },
  2259. {
  2260. "name": "romainj",
  2261. "homepage": "https://www.drupal.org/user/370706"
  2262. }
  2263. ],
  2264. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2265. "homepage": "http://drupal.org/project/admin_toolbar",
  2266. "keywords": [
  2267. "Drupal",
  2268. "Toolbar"
  2269. ],
  2270. "support": {
  2271. "source": "http://cgit.drupalcode.org/admin_toolbar",
  2272. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2273. }
  2274. },
  2275. {
  2276. "name": "drupal/adminimal_theme",
  2277. "version": "1.5.0",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2281. "reference": "8.x-1.5"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  2286. "reference": "8.x-1.5",
  2287. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  2288. },
  2289. "require": {
  2290. "drupal/core": "~8.0"
  2291. },
  2292. "type": "drupal-theme",
  2293. "extra": {
  2294. "branch-alias": {
  2295. "dev-1.x": "1.x-dev"
  2296. },
  2297. "drupal": {
  2298. "version": "8.x-1.5",
  2299. "datestamp": "1558584484",
  2300. "security-coverage": {
  2301. "status": "covered",
  2302. "message": "Covered by Drupal's security advisory policy"
  2303. }
  2304. }
  2305. },
  2306. "notification-url": "https://packages.drupal.org/8/downloads",
  2307. "license": [
  2308. "GPL-2.0+"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "ANDiTKO",
  2313. "homepage": "https://www.drupal.org/user/1428124"
  2314. },
  2315. {
  2316. "name": "andrey.troeglazov",
  2317. "homepage": "https://www.drupal.org/user/3145389"
  2318. },
  2319. {
  2320. "name": "realityloop",
  2321. "homepage": "https://www.drupal.org/user/139189"
  2322. }
  2323. ],
  2324. "description": "Drupal administration theme with modern minimalist design.",
  2325. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2326. "support": {
  2327. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2328. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2329. }
  2330. },
  2331. {
  2332. "name": "drupal/audiofield",
  2333. "version": "1.9.0",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://git.drupalcode.org/project/audiofield.git",
  2337. "reference": "8.x-1.9"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2342. "reference": "8.x-1.9",
  2343. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2344. },
  2345. "require": {
  2346. "drupal/core": "~8.0"
  2347. },
  2348. "type": "drupal-module",
  2349. "extra": {
  2350. "branch-alias": {
  2351. "dev-1.x": "1.x-dev"
  2352. },
  2353. "drupal": {
  2354. "version": "8.x-1.9",
  2355. "datestamp": "1553712781",
  2356. "security-coverage": {
  2357. "status": "covered",
  2358. "message": "Covered by Drupal's security advisory policy"
  2359. }
  2360. },
  2361. "drush": {
  2362. "services": {
  2363. "drush.services.yml": "^9"
  2364. }
  2365. }
  2366. },
  2367. "notification-url": "https://packages.drupal.org/8/downloads",
  2368. "license": [
  2369. "GPL-2.0+"
  2370. ],
  2371. "authors": [
  2372. {
  2373. "name": "Daniel Moberly",
  2374. "homepage": "https://www.drupal.org/u/danielmoberly",
  2375. "role": "Maintainer"
  2376. },
  2377. {
  2378. "name": "josipsaric",
  2379. "homepage": "https://www.drupal.org/user/3063287"
  2380. },
  2381. {
  2382. "name": "tamerzg",
  2383. "homepage": "https://www.drupal.org/user/464564"
  2384. }
  2385. ],
  2386. "description": "AudioField Module",
  2387. "homepage": "https://www.drupal.org/project/audiofield",
  2388. "support": {
  2389. "source": "https://git.drupalcode.org/project/audiofield",
  2390. "issues": "https://www.drupal.org/project/issues/audiofield"
  2391. }
  2392. },
  2393. {
  2394. "name": "drupal/autologout",
  2395. "version": "1.0.0",
  2396. "source": {
  2397. "type": "git",
  2398. "url": "https://git.drupalcode.org/project/autologout.git",
  2399. "reference": "8.x-1.0"
  2400. },
  2401. "dist": {
  2402. "type": "zip",
  2403. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2404. "reference": "8.x-1.0",
  2405. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2406. },
  2407. "require": {
  2408. "drupal/core": "~8.0"
  2409. },
  2410. "type": "drupal-module",
  2411. "extra": {
  2412. "branch-alias": {
  2413. "dev-1.x": "1.x-dev"
  2414. },
  2415. "drupal": {
  2416. "version": "8.x-1.0",
  2417. "datestamp": "1494237185",
  2418. "security-coverage": {
  2419. "status": "covered",
  2420. "message": "Covered by Drupal's security advisory policy"
  2421. }
  2422. }
  2423. },
  2424. "notification-url": "https://packages.drupal.org/8/downloads",
  2425. "license": [
  2426. "GPL-2.0+"
  2427. ],
  2428. "authors": [
  2429. {
  2430. "name": "AjK",
  2431. "homepage": "https://www.drupal.org/user/39030"
  2432. },
  2433. {
  2434. "name": "AjitS",
  2435. "homepage": "https://www.drupal.org/user/981944"
  2436. },
  2437. {
  2438. "name": "boshtian",
  2439. "homepage": "https://www.drupal.org/user/1773456"
  2440. },
  2441. {
  2442. "name": "dandrews",
  2443. "homepage": "https://www.drupal.org/user/2014490"
  2444. },
  2445. {
  2446. "name": "darksnow",
  2447. "homepage": "https://www.drupal.org/user/391915"
  2448. },
  2449. {
  2450. "name": "johnennew",
  2451. "homepage": "https://www.drupal.org/user/1150042"
  2452. },
  2453. {
  2454. "name": "jrglasgow",
  2455. "homepage": "https://www.drupal.org/user/36590"
  2456. },
  2457. {
  2458. "name": "kmasood",
  2459. "homepage": "https://www.drupal.org/user/1262860"
  2460. },
  2461. {
  2462. "name": "levelos",
  2463. "homepage": "https://www.drupal.org/user/54135"
  2464. },
  2465. {
  2466. "name": "prabeen.giri",
  2467. "homepage": "https://www.drupal.org/user/913078"
  2468. },
  2469. {
  2470. "name": "str8",
  2471. "homepage": "https://www.drupal.org/user/2865063"
  2472. }
  2473. ],
  2474. "description": "Adds automated timed logout.",
  2475. "homepage": "http://drupal.org/project/autologout",
  2476. "support": {
  2477. "source": "https://git.drupalcode.org/project/autologout"
  2478. }
  2479. },
  2480. {
  2481. "name": "drupal/basic",
  2482. "version": "1.3.0",
  2483. "source": {
  2484. "type": "git",
  2485. "url": "https://git.drupalcode.org/project/basic.git",
  2486. "reference": "8.x-1.3"
  2487. },
  2488. "dist": {
  2489. "type": "zip",
  2490. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2491. "reference": "8.x-1.3",
  2492. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2493. },
  2494. "require": {
  2495. "drupal/core": "~8.0"
  2496. },
  2497. "type": "drupal-theme",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-1.x": "1.x-dev"
  2501. },
  2502. "drupal": {
  2503. "version": "8.x-1.3",
  2504. "datestamp": "1508096944",
  2505. "security-coverage": {
  2506. "status": "covered",
  2507. "message": "Covered by Drupal's security advisory policy"
  2508. }
  2509. }
  2510. },
  2511. "notification-url": "https://packages.drupal.org/8/downloads",
  2512. "license": [
  2513. "GPL-2.0+"
  2514. ],
  2515. "authors": [
  2516. {
  2517. "name": "Steve Krueger",
  2518. "homepage": "http://thejibe.com",
  2519. "email": "steve@thejibe.com",
  2520. "role": "Maintainer"
  2521. },
  2522. {
  2523. "name": "Joël Pittet",
  2524. "homepage": "https://www.drupal.org/u/joelpittet",
  2525. "email": "joel@pittet.ca",
  2526. "role": "Maintainer"
  2527. },
  2528. {
  2529. "name": "Leah Wagner",
  2530. "homepage": "http://thejibe.com",
  2531. "email": "leah@thejibe.com",
  2532. "role": "Maintainer"
  2533. },
  2534. {
  2535. "name": "Catherine Winters",
  2536. "homepage": "http://www.catherinewinters.com",
  2537. "email": "catherine@catherinewinters.com",
  2538. "role": "Maintainer"
  2539. },
  2540. {
  2541. "name": "Johannes Schmidt",
  2542. "homepage": "http://2tabs.com",
  2543. "email": "mail@2tabs.com",
  2544. "role": "Maintainer"
  2545. },
  2546. {
  2547. "name": "johannez",
  2548. "homepage": "https://www.drupal.org/user/670988"
  2549. },
  2550. {
  2551. "name": "leahtard",
  2552. "homepage": "https://www.drupal.org/user/683812"
  2553. }
  2554. ],
  2555. "description": "HTML5, SASS, Responsive grid starter theme.",
  2556. "homepage": "http://drupal.org/project/basic",
  2557. "support": {
  2558. "source": "http://cgit.drupalcode.org/basic",
  2559. "issues": "https://www.drupal.org/project/issues/basic",
  2560. "irc": "irc://irc.freenode.org/drupal-contribute"
  2561. }
  2562. },
  2563. {
  2564. "name": "drupal/better_messages",
  2565. "version": "1.0.0-alpha2",
  2566. "source": {
  2567. "type": "git",
  2568. "url": "https://git.drupalcode.org/project/better_messages.git",
  2569. "reference": "8.x-1.0-alpha2"
  2570. },
  2571. "dist": {
  2572. "type": "zip",
  2573. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2574. "reference": "8.x-1.0-alpha2",
  2575. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2576. },
  2577. "require": {
  2578. "drupal/core": "~8.0"
  2579. },
  2580. "type": "drupal-module",
  2581. "extra": {
  2582. "branch-alias": {
  2583. "dev-1.x": "1.x-dev"
  2584. },
  2585. "drupal": {
  2586. "version": "8.x-1.0-alpha2",
  2587. "datestamp": "1517663880",
  2588. "security-coverage": {
  2589. "status": "not-covered",
  2590. "message": "Alpha releases are not covered by Drupal security advisories."
  2591. }
  2592. }
  2593. },
  2594. "notification-url": "https://packages.drupal.org/8/downloads",
  2595. "license": [
  2596. "GPL-2.0-or-later"
  2597. ],
  2598. "authors": [
  2599. {
  2600. "name": "Mohammed J. Razem",
  2601. "homepage": "https://www.drupal.org/user/255384"
  2602. },
  2603. {
  2604. "name": "bucefal91",
  2605. "homepage": "https://www.drupal.org/user/504128"
  2606. },
  2607. {
  2608. "name": "le72",
  2609. "homepage": "https://www.drupal.org/user/1866896"
  2610. }
  2611. ],
  2612. "description": "Better Messages module for Drupal 8.",
  2613. "homepage": "https://www.drupal.org/project/better_messages",
  2614. "support": {
  2615. "source": "https://git.drupalcode.org/project/better_messages"
  2616. }
  2617. },
  2618. {
  2619. "name": "drupal/bulkdelete",
  2620. "version": "dev-1.x",
  2621. "source": {
  2622. "type": "git",
  2623. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2624. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2625. },
  2626. "require": {
  2627. "drupal/core": "^8.7.7 || ^9"
  2628. },
  2629. "type": "drupal-module",
  2630. "extra": {
  2631. "branch-alias": {
  2632. "dev-1.x": "1.x-dev"
  2633. },
  2634. "drupal": {
  2635. "version": "8.x-1.x-dev",
  2636. "datestamp": "1569586386",
  2637. "security-coverage": {
  2638. "status": "not-covered",
  2639. "message": "Dev releases are not covered by Drupal security advisories."
  2640. }
  2641. }
  2642. },
  2643. "notification-url": "https://packages.drupal.org/8/downloads",
  2644. "license": [
  2645. "GPL-2.0-or-later"
  2646. ],
  2647. "authors": [
  2648. {
  2649. "name": "Kars-T",
  2650. "homepage": "https://www.drupal.org/user/224499"
  2651. },
  2652. {
  2653. "name": "Rahul Seth",
  2654. "homepage": "https://www.drupal.org/user/2694359"
  2655. },
  2656. {
  2657. "name": "adriancid",
  2658. "homepage": "https://www.drupal.org/user/1962106"
  2659. },
  2660. {
  2661. "name": "robertDouglass",
  2662. "homepage": "https://www.drupal.org/user/5449"
  2663. }
  2664. ],
  2665. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2666. "homepage": "https://www.drupal.org/project/bulkdelete",
  2667. "support": {
  2668. "source": "https://git.drupalcode.org/project/bulkdelete"
  2669. },
  2670. "time": "2020-05-24T06:01:38+00:00"
  2671. },
  2672. {
  2673. "name": "drupal/coder",
  2674. "version": "8.3.9",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://git.drupalcode.org/project/coder.git",
  2678. "reference": "d51e0b8c6561e21c0545d04b5410a7bed7ee7c6b"
  2679. },
  2680. "require": {
  2681. "ext-mbstring": "*",
  2682. "php": ">=7.0.8",
  2683. "squizlabs/php_codesniffer": "^3.5.5",
  2684. "symfony/yaml": ">=2.0.5"
  2685. },
  2686. "require-dev": {
  2687. "phpstan/phpstan": "^0.12.5",
  2688. "phpunit/phpunit": "^6.0 || ^7.0"
  2689. },
  2690. "type": "phpcodesniffer-standard",
  2691. "autoload": {
  2692. "psr-4": {
  2693. "Drupal\\": "coder_sniffer/Drupal/",
  2694. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  2695. }
  2696. },
  2697. "notification-url": "https://packagist.org/downloads/",
  2698. "license": [
  2699. "GPL-2.0+"
  2700. ],
  2701. "description": "Coder is a library to review Drupal code.",
  2702. "homepage": "https://www.drupal.org/project/coder",
  2703. "keywords": [
  2704. "code review",
  2705. "phpcs",
  2706. "standards"
  2707. ],
  2708. "time": "2020-05-08T10:20:59+00:00"
  2709. },
  2710. {
  2711. "name": "drupal/color_field",
  2712. "version": "2.0.0",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://git.drupalcode.org/project/color_field.git",
  2716. "reference": "8.x-2.0"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2721. "reference": "8.x-2.0",
  2722. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2723. },
  2724. "require": {
  2725. "drupal/core": "*"
  2726. },
  2727. "require-dev": {
  2728. "drupal/token": "~1.3"
  2729. },
  2730. "suggest": {
  2731. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2732. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2733. },
  2734. "type": "drupal-module",
  2735. "extra": {
  2736. "branch-alias": {
  2737. "dev-2.x": "2.x-dev"
  2738. },
  2739. "drupal": {
  2740. "version": "8.x-2.0",
  2741. "datestamp": "1579324387",
  2742. "security-coverage": {
  2743. "status": "covered",
  2744. "message": "Covered by Drupal's security advisory policy"
  2745. }
  2746. }
  2747. },
  2748. "notification-url": "https://packages.drupal.org/8/downloads",
  2749. "license": [
  2750. "GPL-2.0-or-later"
  2751. ],
  2752. "authors": [
  2753. {
  2754. "name": "targoo",
  2755. "homepage": "https://www.drupal.org/user/431910",
  2756. "role": "Maintainer"
  2757. },
  2758. {
  2759. "name": "Nick Wilde",
  2760. "homepage": "https://www.drupal.org/user/nickwilde",
  2761. "role": "Maintainer"
  2762. }
  2763. ],
  2764. "description": "Provides a color field type to store the color value and opacity",
  2765. "homepage": "https://www.drupal.org/project/color_field",
  2766. "support": {
  2767. "source": "http://cgit.drupalcode.org/color_field",
  2768. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2769. }
  2770. },
  2771. {
  2772. "name": "drupal/config_devel",
  2773. "version": "1.7.0",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://git.drupalcode.org/project/config_devel.git",
  2777. "reference": "8.x-1.7"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.7.zip",
  2782. "reference": "8.x-1.7",
  2783. "shasum": "4ebcf4fb2a2842232b9bf9b0855e3728df918fc7"
  2784. },
  2785. "require": {
  2786. "drupal/core": "*"
  2787. },
  2788. "type": "drupal-module",
  2789. "extra": {
  2790. "drupal": {
  2791. "version": "8.x-1.7",
  2792. "datestamp": "1590070764",
  2793. "security-coverage": {
  2794. "status": "covered",
  2795. "message": "Covered by Drupal's security advisory policy"
  2796. }
  2797. }
  2798. },
  2799. "notification-url": "https://packages.drupal.org/8/downloads",
  2800. "license": [
  2801. "GPL-2.0+"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "alexpott",
  2806. "homepage": "https://www.drupal.org/user/157725"
  2807. },
  2808. {
  2809. "name": "benjy",
  2810. "homepage": "https://www.drupal.org/user/1852732"
  2811. },
  2812. {
  2813. "name": "chx",
  2814. "homepage": "https://www.drupal.org/user/9446"
  2815. },
  2816. {
  2817. "name": "joachim",
  2818. "homepage": "https://www.drupal.org/user/107701"
  2819. },
  2820. {
  2821. "name": "nedjo",
  2822. "homepage": "https://www.drupal.org/user/4481"
  2823. },
  2824. {
  2825. "name": "tim.plunkett",
  2826. "homepage": "https://www.drupal.org/user/241634"
  2827. },
  2828. {
  2829. "name": "vijaycs85",
  2830. "homepage": "https://www.drupal.org/user/93488"
  2831. }
  2832. ],
  2833. "description": "Helps developers work with configuration.",
  2834. "homepage": "https://www.drupal.org/project/config_devel",
  2835. "support": {
  2836. "source": "https://git.drupalcode.org/project/config_devel"
  2837. }
  2838. },
  2839. {
  2840. "name": "drupal/config_filter",
  2841. "version": "1.5.0",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://git.drupalcode.org/project/config_filter.git",
  2845. "reference": "8.x-1.5"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2850. "reference": "8.x-1.5",
  2851. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2852. },
  2853. "require": {
  2854. "drupal/core": "^8 || ^9"
  2855. },
  2856. "suggest": {
  2857. "drupal/config_split": "Split site configuration for different environments."
  2858. },
  2859. "type": "drupal-module",
  2860. "extra": {
  2861. "branch-alias": {
  2862. "dev-1.x": "1.x-dev"
  2863. },
  2864. "drupal": {
  2865. "version": "8.x-1.5",
  2866. "datestamp": "1572542288",
  2867. "security-coverage": {
  2868. "status": "covered",
  2869. "message": "Covered by Drupal's security advisory policy"
  2870. }
  2871. }
  2872. },
  2873. "notification-url": "https://packages.drupal.org/8/downloads",
  2874. "license": [
  2875. "GPL-2.0+"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Fabian Bircher",
  2880. "homepage": "https://www.drupal.org/u/bircher",
  2881. "email": "opensource@fabianbircher.com",
  2882. "role": "Maintainer"
  2883. },
  2884. {
  2885. "name": "Nuvole Web",
  2886. "homepage": "http://nuvole.org",
  2887. "email": "info@nuvole.org",
  2888. "role": "Maintainer"
  2889. },
  2890. {
  2891. "name": "pescetti",
  2892. "homepage": "https://www.drupal.org/user/436244"
  2893. }
  2894. ],
  2895. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2896. "homepage": "https://www.drupal.org/project/config_filter",
  2897. "keywords": [
  2898. "Drupal",
  2899. "configuration",
  2900. "configuration management"
  2901. ],
  2902. "support": {
  2903. "source": "http://cgit.drupalcode.org/config_filter",
  2904. "issues": "https://www.drupal.org/project/issues/config_filter",
  2905. "irc": "irc://irc.freenode.org/drupal-contribute"
  2906. }
  2907. },
  2908. {
  2909. "name": "drupal/config_ignore",
  2910. "version": "2.1.0",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2914. "reference": "8.x-2.1"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2919. "reference": "8.x-2.1",
  2920. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2921. },
  2922. "require": {
  2923. "drupal/config_filter": "1.*",
  2924. "drupal/core": "~8.0"
  2925. },
  2926. "type": "drupal-module",
  2927. "extra": {
  2928. "branch-alias": {
  2929. "dev-2.x": "2.x-dev"
  2930. },
  2931. "drupal": {
  2932. "version": "8.x-2.1",
  2933. "datestamp": "1507706044",
  2934. "security-coverage": {
  2935. "status": "covered",
  2936. "message": "Covered by Drupal's security advisory policy"
  2937. }
  2938. }
  2939. },
  2940. "notification-url": "https://packages.drupal.org/8/downloads",
  2941. "license": [
  2942. "GPL-2.0+"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Tommy Lynge Jørgensen",
  2947. "homepage": "https://www.drupal.org/u/tlyngej",
  2948. "email": "tlyngej@gmail.com",
  2949. "role": "Maintainer"
  2950. },
  2951. {
  2952. "name": "Fabian Bircher",
  2953. "homepage": "https://www.drupal.org/u/bircher",
  2954. "role": "Maintainer"
  2955. }
  2956. ],
  2957. "description": "Ignore certain configuration during import.",
  2958. "homepage": "http://drupal.org/project/config_ignore",
  2959. "support": {
  2960. "source": "http://cgit.drupalcode.org/config_ignore",
  2961. "issues": "http://drupal.org/project/config_ignore",
  2962. "irc": "irc://irc.freenode.org/drupal-contribute"
  2963. }
  2964. },
  2965. {
  2966. "name": "drupal/config_update",
  2967. "version": "1.7.0",
  2968. "source": {
  2969. "type": "git",
  2970. "url": "https://git.drupalcode.org/project/config_update.git",
  2971. "reference": "8.x-1.7"
  2972. },
  2973. "dist": {
  2974. "type": "zip",
  2975. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2976. "reference": "8.x-1.7",
  2977. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2978. },
  2979. "require": {
  2980. "drupal/core": "^8 || ^9"
  2981. },
  2982. "type": "drupal-module",
  2983. "extra": {
  2984. "drupal": {
  2985. "version": "8.x-1.7",
  2986. "datestamp": "1586355587",
  2987. "security-coverage": {
  2988. "status": "covered",
  2989. "message": "Covered by Drupal's security advisory policy"
  2990. }
  2991. }
  2992. },
  2993. "notification-url": "https://packages.drupal.org/8/downloads",
  2994. "license": [
  2995. "GPL-2.0-or-later"
  2996. ],
  2997. "authors": [
  2998. {
  2999. "name": "jhodgdon",
  3000. "homepage": "https://www.drupal.org/user/155601"
  3001. },
  3002. {
  3003. "name": "nedjo",
  3004. "homepage": "https://www.drupal.org/user/4481"
  3005. }
  3006. ],
  3007. "description": "Provides basic revert and update functionality for other modules",
  3008. "homepage": "https://www.drupal.org/project/config_update",
  3009. "support": {
  3010. "source": "https://git.drupalcode.org/project/config_update"
  3011. }
  3012. },
  3013. {
  3014. "name": "drupal/console",
  3015. "version": "1.9.4",
  3016. "source": {
  3017. "type": "git",
  3018. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3019. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  3020. },
  3021. "dist": {
  3022. "type": "zip",
  3023. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  3024. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  3025. "shasum": ""
  3026. },
  3027. "require": {
  3028. "alchemy/zippy": "~0.4",
  3029. "composer/installers": "~1.0",
  3030. "doctrine/annotations": "^1.2",
  3031. "doctrine/collections": "^1.3",
  3032. "drupal/console-core": "1.9.4",
  3033. "drupal/console-extend-plugin": "~0",
  3034. "php": "^5.5.9 || ^7.0",
  3035. "psy/psysh": "0.6.* || ~0.8",
  3036. "symfony/css-selector": "~2.8|~3.0",
  3037. "symfony/dom-crawler": "~2.8|~3.0",
  3038. "symfony/http-foundation": "~2.8|~3.0"
  3039. },
  3040. "suggest": {
  3041. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3042. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3043. },
  3044. "bin": [
  3045. "bin/drupal"
  3046. ],
  3047. "type": "library",
  3048. "autoload": {
  3049. "psr-4": {
  3050. "Drupal\\Console\\": "src"
  3051. }
  3052. },
  3053. "notification-url": "https://packagist.org/downloads/",
  3054. "license": [
  3055. "GPL-2.0-or-later"
  3056. ],
  3057. "authors": [
  3058. {
  3059. "name": "David Flores",
  3060. "email": "dmousex@gmail.com",
  3061. "homepage": "http://dmouse.net"
  3062. },
  3063. {
  3064. "name": "Jesus Manuel Olivas",
  3065. "email": "jesus.olivas@gmail.com",
  3066. "homepage": "http://jmolivas.com"
  3067. },
  3068. {
  3069. "name": "Eduardo Garcia",
  3070. "email": "enzo@enzolutions.com",
  3071. "homepage": "http://enzolutions.com/"
  3072. },
  3073. {
  3074. "name": "Omar Aguirre",
  3075. "email": "omersguchigu@gmail.com"
  3076. },
  3077. {
  3078. "name": "Drupal Console Contributors",
  3079. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3080. }
  3081. ],
  3082. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3083. "homepage": "http://drupalconsole.com/",
  3084. "keywords": [
  3085. "console",
  3086. "development",
  3087. "drupal",
  3088. "symfony"
  3089. ],
  3090. "time": "2019-11-11T19:35:01+00:00"
  3091. },
  3092. {
  3093. "name": "drupal/console-core",
  3094. "version": "1.9.4",
  3095. "source": {
  3096. "type": "git",
  3097. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3098. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  3099. },
  3100. "dist": {
  3101. "type": "zip",
  3102. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3103. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3104. "shasum": ""
  3105. },
  3106. "require": {
  3107. "dflydev/dot-access-configuration": "^1.0",
  3108. "drupal/console-en": "1.9.4",
  3109. "guzzlehttp/guzzle": "~6.1",
  3110. "php": "^5.5.9 || ^7.0",
  3111. "stecman/symfony-console-completion": "~0.7",
  3112. "symfony/config": "~2.8|~3.0",
  3113. "symfony/console": "~2.8|~3.0",
  3114. "symfony/debug": "~2.8|~3.0",
  3115. "symfony/dependency-injection": "~2.8|~3.0",
  3116. "symfony/event-dispatcher": "~2.8|~3.0",
  3117. "symfony/filesystem": "~2.8|~3.0",
  3118. "symfony/finder": "~2.8|~3.0",
  3119. "symfony/process": "~2.8|~3.0",
  3120. "symfony/translation": "~2.8|~3.0",
  3121. "symfony/yaml": "~2.8|~3.0",
  3122. "twig/twig": "^1.23.1",
  3123. "webflo/drupal-finder": "^1.0",
  3124. "webmozart/path-util": "^2.3"
  3125. },
  3126. "type": "library",
  3127. "autoload": {
  3128. "files": [
  3129. "src/functions.php"
  3130. ],
  3131. "psr-4": {
  3132. "Drupal\\Console\\Core\\": "src"
  3133. }
  3134. },
  3135. "notification-url": "https://packagist.org/downloads/",
  3136. "license": [
  3137. "GPL-2.0-or-later"
  3138. ],
  3139. "authors": [
  3140. {
  3141. "name": "David Flores",
  3142. "email": "dmousex@gmail.com",
  3143. "homepage": "http://dmouse.net"
  3144. },
  3145. {
  3146. "name": "Jesus Manuel Olivas",
  3147. "email": "jesus.olivas@gmail.com",
  3148. "homepage": "http://jmolivas.com"
  3149. },
  3150. {
  3151. "name": "Eduardo Garcia",
  3152. "email": "enzo@enzolutions.com",
  3153. "homepage": "http://enzolutions.com/"
  3154. },
  3155. {
  3156. "name": "Omar Aguirre",
  3157. "email": "omersguchigu@gmail.com"
  3158. },
  3159. {
  3160. "name": "Drupal Console Contributors",
  3161. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3162. }
  3163. ],
  3164. "description": "Drupal Console Core",
  3165. "homepage": "http://drupalconsole.com/",
  3166. "keywords": [
  3167. "console",
  3168. "development",
  3169. "drupal",
  3170. "symfony"
  3171. ],
  3172. "time": "2019-11-11T19:26:28+00:00"
  3173. },
  3174. {
  3175. "name": "drupal/console-en",
  3176. "version": "1.9.4",
  3177. "source": {
  3178. "type": "git",
  3179. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3180. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  3181. },
  3182. "dist": {
  3183. "type": "zip",
  3184. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3185. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3186. "shasum": ""
  3187. },
  3188. "type": "library",
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "GPL-2.0-or-later"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "David Flores",
  3196. "email": "dmousex@gmail.com",
  3197. "homepage": "http://dmouse.net"
  3198. },
  3199. {
  3200. "name": "Jesus Manuel Olivas",
  3201. "email": "jesus.olivas@gmail.com",
  3202. "homepage": "http://jmolivas.com"
  3203. },
  3204. {
  3205. "name": "Eduardo Garcia",
  3206. "email": "enzo@enzolutions.com",
  3207. "homepage": "http://enzolutions.com/"
  3208. },
  3209. {
  3210. "name": "Omar Aguirre",
  3211. "email": "omersguchigu@gmail.com"
  3212. },
  3213. {
  3214. "name": "Drupal Console Contributors",
  3215. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3216. }
  3217. ],
  3218. "description": "Drupal Console English Language",
  3219. "homepage": "http://drupalconsole.com/",
  3220. "keywords": [
  3221. "console",
  3222. "development",
  3223. "drupal",
  3224. "symfony"
  3225. ],
  3226. "time": "2019-10-07T23:45:30+00:00"
  3227. },
  3228. {
  3229. "name": "drupal/console-extend-plugin",
  3230. "version": "0.9.3",
  3231. "source": {
  3232. "type": "git",
  3233. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3234. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  3235. },
  3236. "dist": {
  3237. "type": "zip",
  3238. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3239. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3240. "shasum": ""
  3241. },
  3242. "require": {
  3243. "composer-plugin-api": "^1.0",
  3244. "composer/installers": "^1.2",
  3245. "symfony/finder": "~2.7|~3.0",
  3246. "symfony/yaml": "~2.7|~3.0"
  3247. },
  3248. "type": "composer-plugin",
  3249. "extra": {
  3250. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3251. },
  3252. "autoload": {
  3253. "psr-4": {
  3254. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3255. }
  3256. },
  3257. "notification-url": "https://packagist.org/downloads/",
  3258. "license": [
  3259. "GPL-2.0+"
  3260. ],
  3261. "authors": [
  3262. {
  3263. "name": "Jesus Manuel Olivas",
  3264. "email": "jesus.olivas@gmail.com"
  3265. }
  3266. ],
  3267. "description": "Drupal Console Extend Plugin",
  3268. "time": "2019-11-07T20:15:27+00:00"
  3269. },
  3270. {
  3271. "name": "drupal/context",
  3272. "version": "4.0.0-beta2",
  3273. "source": {
  3274. "type": "git",
  3275. "url": "https://git.drupalcode.org/project/context.git",
  3276. "reference": "8.x-4.0-beta2"
  3277. },
  3278. "dist": {
  3279. "type": "zip",
  3280. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3281. "reference": "8.x-4.0-beta2",
  3282. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3283. },
  3284. "require": {
  3285. "drupal/core": "~8.0"
  3286. },
  3287. "type": "drupal-module",
  3288. "extra": {
  3289. "branch-alias": {
  3290. "dev-4.x": "4.x-dev"
  3291. },
  3292. "drupal": {
  3293. "version": "8.x-4.0-beta2",
  3294. "datestamp": "1505378944",
  3295. "security-coverage": {
  3296. "status": "not-covered",
  3297. "message": "Beta releases are not covered by Drupal security advisories."
  3298. }
  3299. }
  3300. },
  3301. "notification-url": "https://packages.drupal.org/8/downloads",
  3302. "license": [
  3303. "MIT"
  3304. ],
  3305. "authors": [
  3306. {
  3307. "name": "Christoffer Palm",
  3308. "homepage": "http://www.oddhill.se/",
  3309. "email": "christoffer.palm@oddhill.se",
  3310. "role": "Developer"
  3311. },
  3312. {
  3313. "name": "Steven Jones",
  3314. "homepage": "https://www.drupal.org/user/99644"
  3315. },
  3316. {
  3317. "name": "alex_b",
  3318. "homepage": "https://www.drupal.org/user/53995"
  3319. },
  3320. {
  3321. "name": "boshtian",
  3322. "homepage": "https://www.drupal.org/user/1773456"
  3323. },
  3324. {
  3325. "name": "colan",
  3326. "homepage": "https://www.drupal.org/user/58704"
  3327. },
  3328. {
  3329. "name": "emanaton",
  3330. "homepage": "https://www.drupal.org/user/120853"
  3331. },
  3332. {
  3333. "name": "febbraro",
  3334. "homepage": "https://www.drupal.org/user/43670"
  3335. },
  3336. {
  3337. "name": "fizk",
  3338. "homepage": "https://www.drupal.org/user/473174"
  3339. },
  3340. {
  3341. "name": "hass",
  3342. "homepage": "https://www.drupal.org/user/85918"
  3343. },
  3344. {
  3345. "name": "hefox",
  3346. "homepage": "https://www.drupal.org/user/426416"
  3347. },
  3348. {
  3349. "name": "hyrcan",
  3350. "homepage": "https://www.drupal.org/user/26618"
  3351. },
  3352. {
  3353. "name": "jmiccolis",
  3354. "homepage": "https://www.drupal.org/user/31731"
  3355. },
  3356. {
  3357. "name": "nedjo",
  3358. "homepage": "https://www.drupal.org/user/4481"
  3359. },
  3360. {
  3361. "name": "tekante",
  3362. "homepage": "https://www.drupal.org/user/640024"
  3363. },
  3364. {
  3365. "name": "yhahn",
  3366. "homepage": "https://www.drupal.org/user/264833"
  3367. }
  3368. ],
  3369. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3370. "homepage": "https://github.com/oddhill/context",
  3371. "keywords": [
  3372. "Drupal",
  3373. "block",
  3374. "conditions",
  3375. "context",
  3376. "visibility"
  3377. ],
  3378. "support": {
  3379. "source": "https://github.com/oddhill/context",
  3380. "issues": "https://github.com/oddhill/context/issues",
  3381. "docs": "https://github.com/oddhill/context"
  3382. }
  3383. },
  3384. {
  3385. "name": "drupal/core",
  3386. "version": "8.7.14",
  3387. "source": {
  3388. "type": "git",
  3389. "url": "https://github.com/drupal/core.git",
  3390. "reference": "3ff1fbdd6e9ba8c778d8111e1f06c8a71113b326"
  3391. },
  3392. "dist": {
  3393. "type": "zip",
  3394. "url": "https://api.github.com/repos/drupal/core/zipball/3ff1fbdd6e9ba8c778d8111e1f06c8a71113b326",
  3395. "reference": "3ff1fbdd6e9ba8c778d8111e1f06c8a71113b326",
  3396. "shasum": ""
  3397. },
  3398. "require": {
  3399. "asm89/stack-cors": "^1.1",
  3400. "composer/semver": "^1.0",
  3401. "doctrine/annotations": "^1.2",
  3402. "doctrine/common": "^2.5",
  3403. "easyrdf/easyrdf": "^0.9",
  3404. "egulias/email-validator": "^2.0",
  3405. "ext-date": "*",
  3406. "ext-dom": "*",
  3407. "ext-filter": "*",
  3408. "ext-gd": "*",
  3409. "ext-hash": "*",
  3410. "ext-json": "*",
  3411. "ext-pcre": "*",
  3412. "ext-pdo": "*",
  3413. "ext-session": "*",
  3414. "ext-simplexml": "*",
  3415. "ext-spl": "*",
  3416. "ext-tokenizer": "*",
  3417. "ext-xml": "*",
  3418. "guzzlehttp/guzzle": "^6.2.1",
  3419. "masterminds/html5": "^2.1",
  3420. "paragonie/random_compat": "^1.0|^2.0|^9.99.99",
  3421. "pear/archive_tar": "^1.4.9",
  3422. "php": "^5.5.9|>=7.0.8",
  3423. "stack/builder": "^1.0",
  3424. "symfony-cmf/routing": "^1.4",
  3425. "symfony/class-loader": "~3.4.0",
  3426. "symfony/console": "~3.4.0",
  3427. "symfony/dependency-injection": "~3.4.26",
  3428. "symfony/event-dispatcher": "~3.4.0",
  3429. "symfony/http-foundation": "~3.4.27",
  3430. "symfony/http-kernel": "~3.4.14",
  3431. "symfony/polyfill-iconv": "^1.0",
  3432. "symfony/process": "~3.4.0",
  3433. "symfony/psr-http-message-bridge": "^1.1.2",
  3434. "symfony/routing": "~3.4.0",
  3435. "symfony/serializer": "~3.4.0",
  3436. "symfony/translation": "~3.4.0",
  3437. "symfony/validator": "~3.4.0",
  3438. "symfony/yaml": "~3.4.5",
  3439. "twig/twig": "^1.38.2",
  3440. "typo3/phar-stream-wrapper": "^2.1.1",
  3441. "zendframework/zend-diactoros": "^1.1",
  3442. "zendframework/zend-feed": "^2.4"
  3443. },
  3444. "conflict": {
  3445. "drush/drush": "<8.1.10",
  3446. "symfony/dom-crawler": ">=4"
  3447. },
  3448. "replace": {
  3449. "drupal/action": "self.version",
  3450. "drupal/aggregator": "self.version",
  3451. "drupal/automated_cron": "self.version",
  3452. "drupal/ban": "self.version",
  3453. "drupal/bartik": "self.version",
  3454. "drupal/basic_auth": "self.version",
  3455. "drupal/big_pipe": "self.version",
  3456. "drupal/block": "self.version",
  3457. "drupal/block_content": "self.version",
  3458. "drupal/block_place": "self.version",
  3459. "drupal/book": "self.version",
  3460. "drupal/breakpoint": "self.version",
  3461. "drupal/ckeditor": "self.version",
  3462. "drupal/classy": "self.version",
  3463. "drupal/color": "self.version",
  3464. "drupal/comment": "self.version",
  3465. "drupal/config": "self.version",
  3466. "drupal/config_translation": "self.version",
  3467. "drupal/contact": "self.version",
  3468. "drupal/content_moderation": "self.version",
  3469. "drupal/content_translation": "self.version",
  3470. "drupal/contextual": "self.version",
  3471. "drupal/core-annotation": "self.version",
  3472. "drupal/core-assertion": "self.version",
  3473. "drupal/core-bridge": "self.version",
  3474. "drupal/core-class-finder": "self.version",
  3475. "drupal/core-datetime": "self.version",
  3476. "drupal/core-dependency-injection": "self.version",
  3477. "drupal/core-diff": "self.version",
  3478. "drupal/core-discovery": "self.version",
  3479. "drupal/core-event-dispatcher": "self.version",
  3480. "drupal/core-file-cache": "self.version",
  3481. "drupal/core-filesystem": "self.version",
  3482. "drupal/core-gettext": "self.version",
  3483. "drupal/core-graph": "self.version",
  3484. "drupal/core-http-foundation": "self.version",
  3485. "drupal/core-php-storage": "self.version",
  3486. "drupal/core-plugin": "self.version",
  3487. "drupal/core-proxy-builder": "self.version",
  3488. "drupal/core-render": "self.version",
  3489. "drupal/core-serialization": "self.version",
  3490. "drupal/core-transliteration": "self.version",
  3491. "drupal/core-utility": "self.version",
  3492. "drupal/core-uuid": "self.version",
  3493. "drupal/core-version": "self.version",
  3494. "drupal/datetime": "self.version",
  3495. "drupal/datetime_range": "self.version",
  3496. "drupal/dblog": "self.version",
  3497. "drupal/dynamic_page_cache": "self.version",
  3498. "drupal/editor": "self.version",
  3499. "drupal/entity_reference": "self.version",
  3500. "drupal/field": "self.version",
  3501. "drupal/field_layout": "self.version",
  3502. "drupal/field_ui": "self.version",
  3503. "drupal/file": "self.version",
  3504. "drupal/filter": "self.version",
  3505. "drupal/forum": "self.version",
  3506. "drupal/hal": "self.version",
  3507. "drupal/help": "self.version",
  3508. "drupal/history": "self.version",
  3509. "drupal/image": "self.version",
  3510. "drupal/inline_form_errors": "self.version",
  3511. "drupal/jsonapi": "self.version",
  3512. "drupal/language": "self.version",
  3513. "drupal/layout_builder": "self.version",
  3514. "drupal/layout_discovery": "self.version",
  3515. "drupal/link": "self.version",
  3516. "drupal/locale": "self.version",
  3517. "drupal/media": "self.version",
  3518. "drupal/media_library": "self.version",
  3519. "drupal/menu_link_content": "self.version",
  3520. "drupal/menu_ui": "self.version",
  3521. "drupal/migrate": "self.version",
  3522. "drupal/migrate_drupal": "self.version",
  3523. "drupal/migrate_drupal_multilingual": "self.version",
  3524. "drupal/migrate_drupal_ui": "self.version",
  3525. "drupal/minimal": "self.version",
  3526. "drupal/node": "self.version",
  3527. "drupal/options": "self.version",
  3528. "drupal/page_cache": "self.version",
  3529. "drupal/path": "self.version",
  3530. "drupal/quickedit": "self.version",
  3531. "drupal/rdf": "self.version",
  3532. "drupal/responsive_image": "self.version",
  3533. "drupal/rest": "self.version",
  3534. "drupal/search": "self.version",
  3535. "drupal/serialization": "self.version",
  3536. "drupal/settings_tray": "self.version",
  3537. "drupal/seven": "self.version",
  3538. "drupal/shortcut": "self.version",
  3539. "drupal/simpletest": "self.version",
  3540. "drupal/standard": "self.version",
  3541. "drupal/stark": "self.version",
  3542. "drupal/statistics": "self.version",
  3543. "drupal/syslog": "self.version",
  3544. "drupal/system": "self.version",
  3545. "drupal/taxonomy": "self.version",
  3546. "drupal/telephone": "self.version",
  3547. "drupal/text": "self.version",
  3548. "drupal/toolbar": "self.version",
  3549. "drupal/tour": "self.version",
  3550. "drupal/tracker": "self.version",
  3551. "drupal/update": "self.version",
  3552. "drupal/user": "self.version",
  3553. "drupal/views": "self.version",
  3554. "drupal/views_ui": "self.version",
  3555. "drupal/workflows": "self.version",
  3556. "drupal/workspaces": "self.version"
  3557. },
  3558. "require-dev": {
  3559. "behat/mink": "1.7.x-dev",
  3560. "behat/mink-goutte-driver": "^1.2",
  3561. "behat/mink-selenium2-driver": "1.3.x-dev",
  3562. "drupal/coder": "^8.3.1",
  3563. "jcalderonzumba/gastonjs": "^1.0.2",
  3564. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3565. "justinrainbow/json-schema": "^5.2",
  3566. "mikey179/vfsstream": "^1.2",
  3567. "phpspec/prophecy": "^1.7",
  3568. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3569. "symfony/css-selector": "^3.4.0",
  3570. "symfony/debug": "^3.4.0",
  3571. "symfony/phpunit-bridge": "^3.4.3"
  3572. },
  3573. "type": "drupal-core",
  3574. "extra": {
  3575. "merge-plugin": {
  3576. "require": [
  3577. "core/lib/Drupal/Component/Annotation/composer.json",
  3578. "core/lib/Drupal/Component/Assertion/composer.json",
  3579. "core/lib/Drupal/Component/Bridge/composer.json",
  3580. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3581. "core/lib/Drupal/Component/Datetime/composer.json",
  3582. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3583. "core/lib/Drupal/Component/Diff/composer.json",
  3584. "core/lib/Drupal/Component/Discovery/composer.json",
  3585. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3586. "core/lib/Drupal/Component/FileCache/composer.json",
  3587. "core/lib/Drupal/Component/FileSystem/composer.json",
  3588. "core/lib/Drupal/Component/Gettext/composer.json",
  3589. "core/lib/Drupal/Component/Graph/composer.json",
  3590. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3591. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3592. "core/lib/Drupal/Component/Plugin/composer.json",
  3593. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3594. "core/lib/Drupal/Component/Render/composer.json",
  3595. "core/lib/Drupal/Component/Serialization/composer.json",
  3596. "core/lib/Drupal/Component/Transliteration/composer.json",
  3597. "core/lib/Drupal/Component/Utility/composer.json",
  3598. "core/lib/Drupal/Component/Uuid/composer.json",
  3599. "core/lib/Drupal/Component/Version/composer.json"
  3600. ],
  3601. "recurse": false,
  3602. "replace": false,
  3603. "merge-extra": false
  3604. }
  3605. },
  3606. "autoload": {
  3607. "psr-4": {
  3608. "Drupal\\Core\\": "lib/Drupal/Core",
  3609. "Drupal\\Component\\": "lib/Drupal/Component",
  3610. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3611. },
  3612. "classmap": [
  3613. "lib/Drupal.php",
  3614. "lib/Drupal/Component/Utility/Timer.php",
  3615. "lib/Drupal/Component/Utility/Unicode.php",
  3616. "lib/Drupal/Core/Database/Database.php",
  3617. "lib/Drupal/Core/DrupalKernel.php",
  3618. "lib/Drupal/Core/DrupalKernelInterface.php",
  3619. "lib/Drupal/Core/Site/Settings.php"
  3620. ]
  3621. },
  3622. "notification-url": "https://packagist.org/downloads/",
  3623. "license": [
  3624. "GPL-2.0-or-later"
  3625. ],
  3626. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3627. "time": "2020-05-20T08:22:34+00:00"
  3628. },
  3629. {
  3630. "name": "drupal/ctools",
  3631. "version": "3.2.0",
  3632. "source": {
  3633. "type": "git",
  3634. "url": "https://git.drupalcode.org/project/ctools.git",
  3635. "reference": "8.x-3.2"
  3636. },
  3637. "dist": {
  3638. "type": "zip",
  3639. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3640. "reference": "8.x-3.2",
  3641. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3642. },
  3643. "require": {
  3644. "drupal/core": "^8.5"
  3645. },
  3646. "type": "drupal-module",
  3647. "extra": {
  3648. "branch-alias": {
  3649. "dev-3.x": "3.x-dev"
  3650. },
  3651. "drupal": {
  3652. "version": "8.x-3.2",
  3653. "datestamp": "1550728386",
  3654. "security-coverage": {
  3655. "status": "covered",
  3656. "message": "Covered by Drupal's security advisory policy"
  3657. }
  3658. }
  3659. },
  3660. "notification-url": "https://packages.drupal.org/8/downloads",
  3661. "license": [
  3662. "GPL-2.0+"
  3663. ],
  3664. "authors": [
  3665. {
  3666. "name": "Kris Vanderwater (EclipseGc)",
  3667. "homepage": "https://www.drupal.org/u/eclipsegc",
  3668. "role": "Maintainer"
  3669. },
  3670. {
  3671. "name": "Jakob Perry (japerry)",
  3672. "homepage": "https://www.drupal.org/u/japerry",
  3673. "role": "Maintainer"
  3674. },
  3675. {
  3676. "name": "Tim Plunkett (tim.plunkett)",
  3677. "homepage": "https://www.drupal.org/u/timplunkett",
  3678. "role": "Maintainer"
  3679. },
  3680. {
  3681. "name": "James Gilliland (neclimdul)",
  3682. "homepage": "https://www.drupal.org/u/neclimdul",
  3683. "role": "Maintainer"
  3684. },
  3685. {
  3686. "name": "Daniel Wehner (dawehner)",
  3687. "homepage": "https://www.drupal.org/u/dawehner",
  3688. "role": "Maintainer"
  3689. },
  3690. {
  3691. "name": "joelpittet",
  3692. "homepage": "https://www.drupal.org/user/160302"
  3693. },
  3694. {
  3695. "name": "merlinofchaos",
  3696. "homepage": "https://www.drupal.org/user/26979"
  3697. },
  3698. {
  3699. "name": "neclimdul",
  3700. "homepage": "https://www.drupal.org/user/48673"
  3701. },
  3702. {
  3703. "name": "sdboyer",
  3704. "homepage": "https://www.drupal.org/user/146719"
  3705. },
  3706. {
  3707. "name": "sun",
  3708. "homepage": "https://www.drupal.org/user/54136"
  3709. },
  3710. {
  3711. "name": "tim.plunkett",
  3712. "homepage": "https://www.drupal.org/user/241634"
  3713. }
  3714. ],
  3715. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3716. "homepage": "https://www.drupal.org/project/ctools",
  3717. "support": {
  3718. "source": "http://cgit.drupalcode.org/ctools",
  3719. "issues": "https://www.drupal.org/project/issues/ctools"
  3720. }
  3721. },
  3722. {
  3723. "name": "drupal/date_range_formatter",
  3724. "version": "3.1.0",
  3725. "source": {
  3726. "type": "git",
  3727. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3728. "reference": "8.x-3.1"
  3729. },
  3730. "dist": {
  3731. "type": "zip",
  3732. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3733. "reference": "8.x-3.1",
  3734. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3735. },
  3736. "require": {
  3737. "drupal/core": "*"
  3738. },
  3739. "type": "drupal-module",
  3740. "extra": {
  3741. "branch-alias": {
  3742. "dev-3.x": "3.x-dev"
  3743. },
  3744. "drupal": {
  3745. "version": "8.x-3.1",
  3746. "datestamp": "1502454544",
  3747. "security-coverage": {
  3748. "status": "covered",
  3749. "message": "Covered by Drupal's security advisory policy"
  3750. }
  3751. }
  3752. },
  3753. "notification-url": "https://packages.drupal.org/8/downloads",
  3754. "license": [
  3755. "GPL-2.0-or-later"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "maximpodorov",
  3760. "homepage": "https://www.drupal.org/user/515310"
  3761. },
  3762. {
  3763. "name": "sudishth",
  3764. "homepage": "https://www.drupal.org/user/1440562"
  3765. }
  3766. ],
  3767. "description": "Formats date ranges.",
  3768. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3769. "support": {
  3770. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3771. }
  3772. },
  3773. {
  3774. "name": "drupal/devel",
  3775. "version": "2.1.0",
  3776. "source": {
  3777. "type": "git",
  3778. "url": "https://git.drupalcode.org/project/devel.git",
  3779. "reference": "8.x-2.1"
  3780. },
  3781. "dist": {
  3782. "type": "zip",
  3783. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3784. "reference": "8.x-2.1",
  3785. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3786. },
  3787. "require": {
  3788. "drupal/core": "~8.0",
  3789. "symfony/var-dumper": "~2.7|^3|^4"
  3790. },
  3791. "type": "drupal-module",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-2.x": "2.x-dev"
  3795. },
  3796. "drupal": {
  3797. "version": "8.x-2.1",
  3798. "datestamp": "1556799496",
  3799. "security-coverage": {
  3800. "status": "covered",
  3801. "message": "Covered by Drupal's security advisory policy"
  3802. }
  3803. },
  3804. "drush": {
  3805. "services": {
  3806. "drush.services.yml": "^9"
  3807. }
  3808. }
  3809. },
  3810. "notification-url": "https://packages.drupal.org/8/downloads",
  3811. "license": [
  3812. "GPL-2.0+"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "Moshe Weitzman",
  3817. "homepage": "https://github.com/weitzman",
  3818. "email": "weitzman@tejasa.com",
  3819. "role": "Maintainer"
  3820. },
  3821. {
  3822. "name": "Hans Salvisberg",
  3823. "homepage": "https://www.drupal.org/u/salvis",
  3824. "email": "drupal@salvisberg.com",
  3825. "role": "Maintainer"
  3826. },
  3827. {
  3828. "name": "Luca Lusso",
  3829. "homepage": "https://www.drupal.org/u/lussoluca",
  3830. "role": "Maintainer"
  3831. },
  3832. {
  3833. "name": "Marco (willzyx)",
  3834. "homepage": "https://www.drupal.org/u/willzyx",
  3835. "role": "Maintainer"
  3836. },
  3837. {
  3838. "name": "See contributors",
  3839. "homepage": "https://www.drupal.org/node/3236/committers"
  3840. },
  3841. {
  3842. "name": "pcambra",
  3843. "homepage": "https://www.drupal.org/user/122101"
  3844. },
  3845. {
  3846. "name": "salvis",
  3847. "homepage": "https://www.drupal.org/user/82964"
  3848. },
  3849. {
  3850. "name": "willzyx",
  3851. "homepage": "https://www.drupal.org/user/1043862"
  3852. }
  3853. ],
  3854. "description": "Various blocks, pages, and functions for developers.",
  3855. "homepage": "http://drupal.org/project/devel",
  3856. "support": {
  3857. "source": "http://cgit.drupalcode.org/devel",
  3858. "issues": "http://drupal.org/project/devel",
  3859. "irc": "irc://irc.freenode.org/drupal-contribute"
  3860. }
  3861. },
  3862. {
  3863. "name": "drupal/domain",
  3864. "version": "1.0.0-alpha16",
  3865. "source": {
  3866. "type": "git",
  3867. "url": "https://git.drupalcode.org/project/domain.git",
  3868. "reference": "8.x-1.0-alpha16"
  3869. },
  3870. "dist": {
  3871. "type": "zip",
  3872. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3873. "reference": "8.x-1.0-alpha16",
  3874. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3875. },
  3876. "require": {
  3877. "drupal/core": "^8.5"
  3878. },
  3879. "require-dev": {
  3880. "drupal/domain_access": "*"
  3881. },
  3882. "type": "drupal-module",
  3883. "extra": {
  3884. "branch-alias": {
  3885. "dev-1.x": "1.x-dev"
  3886. },
  3887. "drupal": {
  3888. "version": "8.x-1.0-alpha16",
  3889. "datestamp": "1561126081",
  3890. "security-coverage": {
  3891. "status": "not-covered",
  3892. "message": "Alpha releases are not covered by Drupal security advisories."
  3893. }
  3894. }
  3895. },
  3896. "notification-url": "https://packages.drupal.org/8/downloads",
  3897. "license": [
  3898. "GPL-2.0-or-later"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "agentrickard",
  3903. "homepage": "https://www.drupal.org/user/20975"
  3904. },
  3905. {
  3906. "name": "nonsie",
  3907. "homepage": "https://www.drupal.org/user/29899"
  3908. }
  3909. ],
  3910. "description": "Creates domain records within a Drupal installation.",
  3911. "homepage": "https://www.drupal.org/project/domain",
  3912. "support": {
  3913. "source": "https://git.drupalcode.org/project/domain"
  3914. }
  3915. },
  3916. {
  3917. "name": "drupal/domain_access",
  3918. "version": "1.0.0-alpha16",
  3919. "require": {
  3920. "drupal/core": "*",
  3921. "drupal/domain": "self.version"
  3922. },
  3923. "type": "metapackage",
  3924. "extra": {
  3925. "branch-alias": {
  3926. "dev-1.x": "1.x-dev"
  3927. },
  3928. "drupal": {
  3929. "version": "8.x-1.0-alpha16",
  3930. "datestamp": "1561126081",
  3931. "security-coverage": {
  3932. "status": "not-covered",
  3933. "message": "Alpha releases are not covered by Drupal security advisories."
  3934. }
  3935. }
  3936. },
  3937. "notification-url": "https://packages.drupal.org/8/downloads",
  3938. "license": [
  3939. "GPL-2.0-or-later"
  3940. ],
  3941. "authors": [
  3942. {
  3943. "name": "agentrickard",
  3944. "homepage": "https://www.drupal.org/user/20975"
  3945. },
  3946. {
  3947. "name": "nonsie",
  3948. "homepage": "https://www.drupal.org/user/29899"
  3949. }
  3950. ],
  3951. "description": "Domain-based access control for content.",
  3952. "homepage": "https://www.drupal.org/project/domain",
  3953. "support": {
  3954. "source": "https://git.drupalcode.org/project/domain"
  3955. }
  3956. },
  3957. {
  3958. "name": "drupal/domain_config",
  3959. "version": "1.0.0-alpha16",
  3960. "require": {
  3961. "drupal/core": "~8.0",
  3962. "drupal/domain": "self.version"
  3963. },
  3964. "type": "metapackage",
  3965. "extra": {
  3966. "branch-alias": {
  3967. "dev-1.x": "1.x-dev"
  3968. },
  3969. "drupal": {
  3970. "version": "8.x-1.0-alpha16",
  3971. "datestamp": "1561126081",
  3972. "security-coverage": {
  3973. "status": "not-covered",
  3974. "message": "Alpha releases are not covered by Drupal security advisories."
  3975. }
  3976. }
  3977. },
  3978. "notification-url": "https://packages.drupal.org/8/downloads",
  3979. "license": [
  3980. "GPL-2.0-or-later"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "agentrickard",
  3985. "homepage": "https://www.drupal.org/user/20975"
  3986. },
  3987. {
  3988. "name": "nonsie",
  3989. "homepage": "https://www.drupal.org/user/29899"
  3990. }
  3991. ],
  3992. "description": "Allows domain specific configuration.",
  3993. "homepage": "https://www.drupal.org/project/domain",
  3994. "support": {
  3995. "source": "https://git.drupalcode.org/project/domain"
  3996. }
  3997. },
  3998. {
  3999. "name": "drupal/domain_menu_access",
  4000. "version": "dev-1.x",
  4001. "source": {
  4002. "type": "git",
  4003. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  4004. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  4005. },
  4006. "require": {
  4007. "drupal/core": "~8.0",
  4008. "drupal/domain": "^1",
  4009. "drupal/domain_access": "^1"
  4010. },
  4011. "type": "drupal-module",
  4012. "extra": {
  4013. "branch-alias": {
  4014. "dev-1.x": "1.x-dev"
  4015. },
  4016. "drupal": {
  4017. "version": "8.x-1.0-alpha2+3-dev",
  4018. "datestamp": "1551553085",
  4019. "security-coverage": {
  4020. "status": "not-covered",
  4021. "message": "Dev releases are not covered by Drupal security advisories."
  4022. }
  4023. }
  4024. },
  4025. "notification-url": "https://packages.drupal.org/8/downloads",
  4026. "license": [
  4027. "GPL-2.0+"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Sebastien @Actualys",
  4032. "homepage": "https://www.drupal.org/user/380104"
  4033. },
  4034. {
  4035. "name": "maciej.zgadzaj",
  4036. "homepage": "https://www.drupal.org/user/271491"
  4037. },
  4038. {
  4039. "name": "pifagor",
  4040. "homepage": "https://www.drupal.org/user/2375692"
  4041. }
  4042. ],
  4043. "description": "Domain-based access control for menu link.",
  4044. "homepage": "https://www.drupal.org/project/domain_menu_access",
  4045. "support": {
  4046. "source": "https://git.drupalcode.org/project/domain_menu_access"
  4047. },
  4048. "time": "2019-04-11T06:07:16+00:00"
  4049. },
  4050. {
  4051. "name": "drupal/domain_site_settings",
  4052. "version": "1.3.0",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4056. "reference": "8.x-1.3"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4061. "reference": "8.x-1.3",
  4062. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4063. },
  4064. "require": {
  4065. "drupal/core": "~8.0",
  4066. "drupal/domain": "*",
  4067. "drupal/domain_config": "*"
  4068. },
  4069. "type": "drupal-module",
  4070. "extra": {
  4071. "branch-alias": {
  4072. "dev-1.x": "1.x-dev"
  4073. },
  4074. "drupal": {
  4075. "version": "8.x-1.3",
  4076. "datestamp": "1537684980",
  4077. "security-coverage": {
  4078. "status": "covered",
  4079. "message": "Covered by Drupal's security advisory policy"
  4080. }
  4081. },
  4082. "patches_applied": {
  4083. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  4084. }
  4085. },
  4086. "notification-url": "https://packages.drupal.org/8/downloads",
  4087. "license": [
  4088. "GPL-2.0+"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "aloknarwaria",
  4093. "homepage": "https://www.drupal.org/user/906640"
  4094. },
  4095. {
  4096. "name": "malaynayak",
  4097. "homepage": "https://www.drupal.org/user/3529755"
  4098. }
  4099. ],
  4100. "description": "Basic Site Setting for Domains.",
  4101. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4102. "keywords": [
  4103. "Drupal"
  4104. ],
  4105. "support": {
  4106. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4107. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4108. }
  4109. },
  4110. {
  4111. "name": "drupal/email_registration",
  4112. "version": "1.0.0",
  4113. "source": {
  4114. "type": "git",
  4115. "url": "https://git.drupalcode.org/project/email_registration.git",
  4116. "reference": "8.x-1.0"
  4117. },
  4118. "dist": {
  4119. "type": "zip",
  4120. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0.zip",
  4121. "reference": "8.x-1.0",
  4122. "shasum": "f960f489f4273212b924a2d54e6cb8e43adb633e"
  4123. },
  4124. "require": {
  4125. "drupal/core": "*"
  4126. },
  4127. "conflict": {
  4128. "drupal/commerce": "<2.12"
  4129. },
  4130. "require-dev": {
  4131. "drupal/commerce": "^2.0"
  4132. },
  4133. "type": "drupal-module",
  4134. "extra": {
  4135. "branch-alias": {
  4136. "dev-1.x": "1.x-dev"
  4137. },
  4138. "drupal": {
  4139. "version": "8.x-1.0",
  4140. "datestamp": "1580243964",
  4141. "security-coverage": {
  4142. "status": "covered",
  4143. "message": "Covered by Drupal's security advisory policy"
  4144. }
  4145. }
  4146. },
  4147. "notification-url": "https://packages.drupal.org/8/downloads",
  4148. "license": [
  4149. "GPL-2.0+"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "Greg Knaddison (greggles)",
  4154. "homepage": "https://www.drupal.org/u/greggles",
  4155. "role": "Maintainer"
  4156. },
  4157. {
  4158. "name": "Andrey Postnikov (andypost)",
  4159. "homepage": "https://www.drupal.org/u/andypost",
  4160. "role": "Maintainer"
  4161. },
  4162. {
  4163. "name": "Chris Herberte",
  4164. "homepage": "https://www.drupal.org/u/chris-herberte",
  4165. "role": "Maintainer"
  4166. },
  4167. {
  4168. "name": "Moshe Weitzman (moshe weitzman)",
  4169. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4170. "role": "Maintainer"
  4171. }
  4172. ],
  4173. "description": "Allows users to register with an email address as their username.",
  4174. "homepage": "https://www.drupal.org/project/email_registration",
  4175. "support": {
  4176. "source": "http://cgit.drupalcode.org/email_registration",
  4177. "issues": "http://drupal.org/project/issues/email_registration"
  4178. }
  4179. },
  4180. {
  4181. "name": "drupal/entity",
  4182. "version": "1.0.0",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://git.drupalcode.org/project/entity.git",
  4186. "reference": "8.x-1.0"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0.zip",
  4191. "reference": "8.x-1.0",
  4192. "shasum": "ac359ada43416ca3a8d0e44f2985b0a9fae07625"
  4193. },
  4194. "require": {
  4195. "drupal/core": "^8.7.7 || ^9"
  4196. },
  4197. "type": "drupal-module",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-1.x": "1.x-dev"
  4201. },
  4202. "drupal": {
  4203. "version": "8.x-1.0",
  4204. "datestamp": "1582735747",
  4205. "security-coverage": {
  4206. "status": "covered",
  4207. "message": "Covered by Drupal's security advisory policy"
  4208. }
  4209. }
  4210. },
  4211. "notification-url": "https://packages.drupal.org/8/downloads",
  4212. "license": [
  4213. "GPL-2.0+"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "Berdir",
  4218. "homepage": "https://www.drupal.org/user/214652"
  4219. },
  4220. {
  4221. "name": "bojanz",
  4222. "homepage": "https://www.drupal.org/user/86106"
  4223. },
  4224. {
  4225. "name": "dawehner",
  4226. "homepage": "https://www.drupal.org/user/99340"
  4227. },
  4228. {
  4229. "name": "dixon_",
  4230. "homepage": "https://www.drupal.org/user/239911"
  4231. },
  4232. {
  4233. "name": "fago",
  4234. "homepage": "https://www.drupal.org/user/16747"
  4235. }
  4236. ],
  4237. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4238. "homepage": "http://drupal.org/project/entity",
  4239. "support": {
  4240. "source": "https://git.drupalcode.org/project/entity"
  4241. }
  4242. },
  4243. {
  4244. "name": "drupal/features",
  4245. "version": "3.8.0",
  4246. "source": {
  4247. "type": "git",
  4248. "url": "https://git.drupalcode.org/project/features.git",
  4249. "reference": "8.x-3.8"
  4250. },
  4251. "dist": {
  4252. "type": "zip",
  4253. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  4254. "reference": "8.x-3.8",
  4255. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  4256. },
  4257. "require": {
  4258. "drupal/config_update": "^1.4",
  4259. "drupal/core": "*"
  4260. },
  4261. "type": "drupal-module",
  4262. "extra": {
  4263. "branch-alias": {
  4264. "dev-3.x": "3.x-dev"
  4265. },
  4266. "drupal": {
  4267. "version": "8.x-3.8",
  4268. "datestamp": "1536512284",
  4269. "security-coverage": {
  4270. "status": "covered",
  4271. "message": "Covered by Drupal's security advisory policy"
  4272. }
  4273. },
  4274. "drush": {
  4275. "services": {
  4276. "drush.services.yml": "^9"
  4277. }
  4278. }
  4279. },
  4280. "notification-url": "https://packages.drupal.org/8/downloads",
  4281. "license": [
  4282. "GPL-2.0+"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "dawehner",
  4287. "homepage": "https://www.drupal.org/user/99340"
  4288. },
  4289. {
  4290. "name": "e2thex",
  4291. "homepage": "https://www.drupal.org/user/189123"
  4292. },
  4293. {
  4294. "name": "febbraro",
  4295. "homepage": "https://www.drupal.org/user/43670"
  4296. },
  4297. {
  4298. "name": "jmiccolis",
  4299. "homepage": "https://www.drupal.org/user/31731"
  4300. },
  4301. {
  4302. "name": "joseph.olstad",
  4303. "homepage": "https://www.drupal.org/user/1321830"
  4304. },
  4305. {
  4306. "name": "mpotter",
  4307. "homepage": "https://www.drupal.org/user/616192"
  4308. },
  4309. {
  4310. "name": "nedjo",
  4311. "homepage": "https://www.drupal.org/user/4481"
  4312. },
  4313. {
  4314. "name": "tim.plunkett",
  4315. "homepage": "https://www.drupal.org/user/241634"
  4316. }
  4317. ],
  4318. "description": "Enables administrators to package configuration into modules",
  4319. "homepage": "https://www.drupal.org/project/features",
  4320. "support": {
  4321. "source": "https://git.drupalcode.org/project/features"
  4322. }
  4323. },
  4324. {
  4325. "name": "drupal/field_group",
  4326. "version": "3.0.0",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://git.drupalcode.org/project/field_group.git",
  4330. "reference": "8.x-3.0"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0.zip",
  4335. "reference": "8.x-3.0",
  4336. "shasum": "8d87cdc4abc417aa4d411bffcaeb0a3ef1afa497"
  4337. },
  4338. "require": {
  4339. "drupal/core": "^8 || ^9"
  4340. },
  4341. "type": "drupal-module",
  4342. "extra": {
  4343. "drupal": {
  4344. "version": "8.x-3.0",
  4345. "datestamp": "1580250787",
  4346. "security-coverage": {
  4347. "status": "covered",
  4348. "message": "Covered by Drupal's security advisory policy"
  4349. }
  4350. }
  4351. },
  4352. "notification-url": "https://packages.drupal.org/8/downloads",
  4353. "license": [
  4354. "GPL-2.0+"
  4355. ],
  4356. "authors": [
  4357. {
  4358. "name": "Hydra",
  4359. "homepage": "https://www.drupal.org/user/647364"
  4360. },
  4361. {
  4362. "name": "Stalski",
  4363. "homepage": "https://www.drupal.org/user/322618"
  4364. },
  4365. {
  4366. "name": "jyve",
  4367. "homepage": "https://www.drupal.org/user/591438"
  4368. },
  4369. {
  4370. "name": "nils.destoop",
  4371. "homepage": "https://www.drupal.org/user/361625"
  4372. },
  4373. {
  4374. "name": "swentel",
  4375. "homepage": "https://www.drupal.org/user/107403"
  4376. }
  4377. ],
  4378. "description": "Provides the field_group module.",
  4379. "homepage": "https://www.drupal.org/project/field_group",
  4380. "support": {
  4381. "source": "https://git.drupalcode.org/project/field_group"
  4382. }
  4383. },
  4384. {
  4385. "name": "drupal/filefield_sources",
  4386. "version": "dev-1.x",
  4387. "source": {
  4388. "type": "git",
  4389. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4390. "reference": "38dfa6622a8876854887feefd3c348583ef0586f"
  4391. },
  4392. "require": {
  4393. "drupal/core": "*"
  4394. },
  4395. "require-dev": {
  4396. "drupal/imce": "*"
  4397. },
  4398. "type": "drupal-module",
  4399. "extra": {
  4400. "branch-alias": {
  4401. "dev-1.x": "1.x-dev"
  4402. },
  4403. "drupal": {
  4404. "version": "8.x-1.0-alpha2+2-dev",
  4405. "datestamp": "1579885386",
  4406. "security-coverage": {
  4407. "status": "not-covered",
  4408. "message": "Dev releases are not covered by Drupal security advisories."
  4409. }
  4410. }
  4411. },
  4412. "notification-url": "https://packages.drupal.org/8/downloads",
  4413. "license": [
  4414. "GPL-2.0-or-later"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "Nate Lampton (quicksketch)",
  4419. "homepage": "https://www.drupal.org/u/quicksketch",
  4420. "role": "Maintainer"
  4421. },
  4422. {
  4423. "name": "Andrey Khromyshev (profak)",
  4424. "homepage": "https://www.drupal.org/u/profak",
  4425. "role": "Maintainer"
  4426. },
  4427. {
  4428. "name": "David Valdez (gnuget)",
  4429. "homepage": "https://www.drupal.org/u/gnuget",
  4430. "role": "Maintainer"
  4431. }
  4432. ],
  4433. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4434. "homepage": "https://www.drupal.org/project/filefield_sources",
  4435. "support": {
  4436. "source": "https://git.drupalcode.org/project/filefield_sources",
  4437. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4438. "irc": "irc://irc.freenode.org/drupal-contribute"
  4439. },
  4440. "time": "2020-01-30T15:32:54+00:00"
  4441. },
  4442. {
  4443. "name": "drupal/filter_perms",
  4444. "version": "dev-1.x",
  4445. "source": {
  4446. "type": "git",
  4447. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4448. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4449. },
  4450. "require": {
  4451. "drupal/core": "*"
  4452. },
  4453. "type": "drupal-module",
  4454. "extra": {
  4455. "branch-alias": {
  4456. "dev-1.x": "1.x-dev"
  4457. },
  4458. "drupal": {
  4459. "version": "8.x-1.x-dev",
  4460. "datestamp": "1469645939",
  4461. "security-coverage": {
  4462. "status": "not-covered",
  4463. "message": "Dev releases are not covered by Drupal security advisories."
  4464. }
  4465. }
  4466. },
  4467. "notification-url": "https://packages.drupal.org/8/downloads",
  4468. "license": [
  4469. "GPL-2.0-or-later"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "cYu",
  4474. "homepage": "https://www.drupal.org/user/202205"
  4475. },
  4476. {
  4477. "name": "deekayen",
  4478. "homepage": "https://www.drupal.org/user/972"
  4479. },
  4480. {
  4481. "name": "willzyx",
  4482. "homepage": "https://www.drupal.org/user/1043862"
  4483. }
  4484. ],
  4485. "description": "Provides role and module filters to simplify the user permissions page.",
  4486. "homepage": "https://www.drupal.org/project/filter_perms",
  4487. "support": {
  4488. "source": "https://git.drupalcode.org/project/filter_perms"
  4489. },
  4490. "time": "2016-07-27T19:01:11+00:00"
  4491. },
  4492. {
  4493. "name": "drupal/honeypot",
  4494. "version": "1.29.0",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://git.drupalcode.org/project/honeypot.git",
  4498. "reference": "8.x-1.29"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4503. "reference": "8.x-1.29",
  4504. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4505. },
  4506. "require": {
  4507. "drupal/core": "~8.0"
  4508. },
  4509. "type": "drupal-module",
  4510. "extra": {
  4511. "branch-alias": {
  4512. "dev-1.x": "1.x-dev"
  4513. },
  4514. "drupal": {
  4515. "version": "8.x-1.29",
  4516. "datestamp": "1536179280",
  4517. "security-coverage": {
  4518. "status": "covered",
  4519. "message": "Covered by Drupal's security advisory policy"
  4520. }
  4521. }
  4522. },
  4523. "notification-url": "https://packages.drupal.org/8/downloads",
  4524. "license": [
  4525. "GPL-2.0+"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "Jeff Geerling",
  4530. "homepage": "https://www.drupal.org/user/213194",
  4531. "email": "geerlingguy@mac.com"
  4532. },
  4533. {
  4534. "name": "geerlingguy",
  4535. "homepage": "https://www.drupal.org/user/389011"
  4536. },
  4537. {
  4538. "name": "vijaycs85",
  4539. "homepage": "https://www.drupal.org/user/93488"
  4540. }
  4541. ],
  4542. "description": "Mitigates spam form submissions using the honeypot method.",
  4543. "homepage": "https://www.drupal.org/project/honeypot",
  4544. "keywords": [
  4545. "deterrent",
  4546. "form",
  4547. "honeypot",
  4548. "honeytrap",
  4549. "php",
  4550. "spam"
  4551. ],
  4552. "support": {
  4553. "source": "https://git.drupalcode.org/project/honeypot"
  4554. }
  4555. },
  4556. {
  4557. "name": "drupal/linkit",
  4558. "version": "5.0.0-beta10",
  4559. "source": {
  4560. "type": "git",
  4561. "url": "https://git.drupalcode.org/project/linkit.git",
  4562. "reference": "8.x-5.0-beta10"
  4563. },
  4564. "dist": {
  4565. "type": "zip",
  4566. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta10.zip",
  4567. "reference": "8.x-5.0-beta10",
  4568. "shasum": "9980707514ec63fd1bdc27eebd4af243efda97a6"
  4569. },
  4570. "require": {
  4571. "drupal/core": "~8.0"
  4572. },
  4573. "require-dev": {
  4574. "drupal/imce": "*"
  4575. },
  4576. "type": "drupal-module",
  4577. "extra": {
  4578. "drupal": {
  4579. "version": "8.x-5.0-beta10",
  4580. "datestamp": "1573783085",
  4581. "security-coverage": {
  4582. "status": "not-covered",
  4583. "message": "Beta releases are not covered by Drupal security advisories."
  4584. }
  4585. }
  4586. },
  4587. "notification-url": "https://packages.drupal.org/8/downloads",
  4588. "license": [
  4589. "GPL-2.0+"
  4590. ],
  4591. "authors": [
  4592. {
  4593. "name": "Emil Stjerneman",
  4594. "homepage": "https://stjerneman.com",
  4595. "email": "emil@stjerneman.com",
  4596. "role": "Maintainer"
  4597. }
  4598. ],
  4599. "description": "Linkit - Enriched linking experience",
  4600. "homepage": "http://drupal.org/project/linkit",
  4601. "support": {
  4602. "source": "http://cgit.drupalcode.org/linkit",
  4603. "issues": "http://drupal.org/project/linkit"
  4604. }
  4605. },
  4606. {
  4607. "name": "drupal/login_emailusername",
  4608. "version": "1.1.0",
  4609. "source": {
  4610. "type": "git",
  4611. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4612. "reference": "8.x-1.1"
  4613. },
  4614. "dist": {
  4615. "type": "zip",
  4616. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  4617. "reference": "8.x-1.1",
  4618. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  4619. },
  4620. "require": {
  4621. "drupal/core": "~8.0"
  4622. },
  4623. "type": "drupal-module",
  4624. "extra": {
  4625. "branch-alias": {
  4626. "dev-1.x": "1.x-dev"
  4627. },
  4628. "drupal": {
  4629. "version": "8.x-1.1",
  4630. "datestamp": "1483456142",
  4631. "security-coverage": {
  4632. "status": "covered",
  4633. "message": "Covered by Drupal's security advisory policy"
  4634. }
  4635. },
  4636. "patches_applied": {
  4637. "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"
  4638. }
  4639. },
  4640. "notification-url": "https://packages.drupal.org/8/downloads",
  4641. "license": [
  4642. "GPL-2.0-or-later"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "rjjakes",
  4647. "homepage": "https://www.drupal.org/user/3457245"
  4648. }
  4649. ],
  4650. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  4651. "homepage": "https://www.drupal.org/project/login_emailusername",
  4652. "support": {
  4653. "source": "https://git.drupalcode.org/project/login_emailusername"
  4654. }
  4655. },
  4656. {
  4657. "name": "drupal/maillog",
  4658. "version": "dev-1.x",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://git.drupalcode.org/project/maillog.git",
  4662. "reference": "3ec675bd7842c04bc01860fa8b3f424f95a17d93"
  4663. },
  4664. "require": {
  4665. "drupal/core": "*"
  4666. },
  4667. "type": "drupal-module",
  4668. "extra": {
  4669. "branch-alias": {
  4670. "dev-1.x": "1.x-dev"
  4671. },
  4672. "drupal": {
  4673. "version": "8.x-1.x-dev",
  4674. "datestamp": "1470431939",
  4675. "security-coverage": {
  4676. "status": "not-covered",
  4677. "message": "Project has not opted into security advisory coverage!"
  4678. }
  4679. }
  4680. },
  4681. "notification-url": "https://packages.drupal.org/8/downloads",
  4682. "license": [
  4683. "GPL-2.0-or-later"
  4684. ],
  4685. "authors": [
  4686. {
  4687. "name": "Berdir",
  4688. "homepage": "https://www.drupal.org/user/214652"
  4689. },
  4690. {
  4691. "name": "DamienMcKenna",
  4692. "homepage": "https://www.drupal.org/user/108450"
  4693. },
  4694. {
  4695. "name": "miro_dietiker",
  4696. "homepage": "https://www.drupal.org/user/227761"
  4697. },
  4698. {
  4699. "name": "pluess",
  4700. "homepage": "https://www.drupal.org/user/84659"
  4701. }
  4702. ],
  4703. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4704. "homepage": "https://www.drupal.org/project/maillog",
  4705. "support": {
  4706. "source": "https://git.drupalcode.org/project/maillog"
  4707. },
  4708. "time": "2020-05-19T01:33:41+00:00"
  4709. },
  4710. {
  4711. "name": "drupal/matomo",
  4712. "version": "1.9.0",
  4713. "source": {
  4714. "type": "git",
  4715. "url": "https://git.drupalcode.org/project/matomo.git",
  4716. "reference": "8.x-1.9"
  4717. },
  4718. "dist": {
  4719. "type": "zip",
  4720. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4721. "reference": "8.x-1.9",
  4722. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4723. },
  4724. "require": {
  4725. "drupal/core": "~8.5"
  4726. },
  4727. "require-dev": {
  4728. "drupal/php": "*",
  4729. "drupal/token": "*"
  4730. },
  4731. "type": "drupal-module",
  4732. "extra": {
  4733. "branch-alias": {
  4734. "dev-1.x": "1.x-dev"
  4735. },
  4736. "drupal": {
  4737. "version": "8.x-1.9",
  4738. "datestamp": "1549615080",
  4739. "security-coverage": {
  4740. "status": "covered",
  4741. "message": "Covered by Drupal's security advisory policy"
  4742. }
  4743. }
  4744. },
  4745. "notification-url": "https://packages.drupal.org/8/downloads",
  4746. "license": [
  4747. "GPL-2.0+"
  4748. ],
  4749. "authors": [
  4750. {
  4751. "name": "hass",
  4752. "homepage": "https://www.drupal.org/u/hass"
  4753. },
  4754. {
  4755. "name": "See other contributors",
  4756. "homepage": "https://www.drupal.org/node/247808/committers"
  4757. }
  4758. ],
  4759. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4760. "homepage": "https://www.drupal.org/project/matomo",
  4761. "support": {
  4762. "source": "https://git.drupal.org/project/matomo.git",
  4763. "issues": "https://www.drupal.org/project/issues/matomo"
  4764. }
  4765. },
  4766. {
  4767. "name": "drupal/menu_admin_per_menu",
  4768. "version": "1.0.0",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4772. "reference": "8.x-1.0"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4777. "reference": "8.x-1.0",
  4778. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4779. },
  4780. "require": {
  4781. "drupal/core": "*"
  4782. },
  4783. "type": "drupal-module",
  4784. "extra": {
  4785. "branch-alias": {
  4786. "dev-1.x": "1.x-dev"
  4787. },
  4788. "drupal": {
  4789. "version": "8.x-1.0",
  4790. "datestamp": "1507184944",
  4791. "security-coverage": {
  4792. "status": "covered",
  4793. "message": "Covered by Drupal's security advisory policy"
  4794. }
  4795. }
  4796. },
  4797. "notification-url": "https://packages.drupal.org/8/downloads",
  4798. "license": [
  4799. "GPL-2.0-or-later"
  4800. ],
  4801. "authors": [
  4802. {
  4803. "name": "anrikun",
  4804. "homepage": "https://www.drupal.org/user/410199"
  4805. },
  4806. {
  4807. "name": "mkdok",
  4808. "homepage": "https://www.drupal.org/user/3308753"
  4809. }
  4810. ],
  4811. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4812. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4813. "support": {
  4814. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4815. }
  4816. },
  4817. {
  4818. "name": "drupal/metatag",
  4819. "version": "1.13.0",
  4820. "source": {
  4821. "type": "git",
  4822. "url": "https://git.drupalcode.org/project/metatag.git",
  4823. "reference": "8.x-1.13"
  4824. },
  4825. "dist": {
  4826. "type": "zip",
  4827. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip",
  4828. "reference": "8.x-1.13",
  4829. "shasum": "c471d9982a6540fd7baccc94572947923634fb6b"
  4830. },
  4831. "require": {
  4832. "drupal/core": "^8 || ^9",
  4833. "drupal/token": "^1.0"
  4834. },
  4835. "require-dev": {
  4836. "drupal/metatag_dc": "*",
  4837. "drupal/metatag_open_graph": "*",
  4838. "drupal/page_manager": "4.x-dev",
  4839. "drupal/redirect": "1.x-dev"
  4840. },
  4841. "type": "drupal-module",
  4842. "extra": {
  4843. "drupal": {
  4844. "version": "8.x-1.13",
  4845. "datestamp": "1587478404",
  4846. "security-coverage": {
  4847. "status": "covered",
  4848. "message": "Covered by Drupal's security advisory policy"
  4849. }
  4850. }
  4851. },
  4852. "notification-url": "https://packages.drupal.org/8/downloads",
  4853. "license": [
  4854. "GPL-2.0+"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "See contributors",
  4859. "homepage": "https://www.drupal.org/node/640498/committers",
  4860. "role": "Developer"
  4861. },
  4862. {
  4863. "name": "Dave Reid",
  4864. "homepage": "https://www.drupal.org/user/53892"
  4865. }
  4866. ],
  4867. "description": "Manage meta tags for all entities.",
  4868. "homepage": "https://www.drupal.org/project/metatag",
  4869. "keywords": [
  4870. "Drupal",
  4871. "seo"
  4872. ],
  4873. "support": {
  4874. "source": "https://git.drupalcode.org/project/metatag",
  4875. "issues": "https://www.drupal.org/project/issues/metatag",
  4876. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4877. }
  4878. },
  4879. {
  4880. "name": "drupal/migrate_plus",
  4881. "version": "5.0.0",
  4882. "source": {
  4883. "type": "git",
  4884. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4885. "reference": "8.x-5.0"
  4886. },
  4887. "dist": {
  4888. "type": "zip",
  4889. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4890. "reference": "8.x-5.0",
  4891. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4892. },
  4893. "require": {
  4894. "drupal/core": "^8 || ^9"
  4895. },
  4896. "require-dev": {
  4897. "drupal/migrate_example_advanced_setup": "*",
  4898. "drupal/migrate_example_setup": "*"
  4899. },
  4900. "suggest": {
  4901. "ext-soap": "*",
  4902. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4903. },
  4904. "type": "drupal-module",
  4905. "extra": {
  4906. "drupal": {
  4907. "version": "8.x-5.0",
  4908. "datestamp": "1586234154",
  4909. "security-coverage": {
  4910. "status": "covered",
  4911. "message": "Covered by Drupal's security advisory policy"
  4912. }
  4913. }
  4914. },
  4915. "notification-url": "https://packages.drupal.org/8/downloads",
  4916. "license": [
  4917. "GPL-2.0+"
  4918. ],
  4919. "authors": [
  4920. {
  4921. "name": "Mike Ryan",
  4922. "homepage": "https://www.drupal.org/u/mikeryan",
  4923. "role": "Maintainer"
  4924. },
  4925. {
  4926. "name": "Lucas Hedding",
  4927. "homepage": "https://www.drupal.org/u/heddn",
  4928. "role": "Maintainer"
  4929. }
  4930. ],
  4931. "description": "Enhancements to core migration support.",
  4932. "homepage": "https://www.drupal.org/project/migrate_plus",
  4933. "support": {
  4934. "source": "https://git.drupalcode.org/project/migrate_plus",
  4935. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4936. "slack": "#migrate"
  4937. }
  4938. },
  4939. {
  4940. "name": "drupal/migrate_tools",
  4941. "version": "4.5.0",
  4942. "source": {
  4943. "type": "git",
  4944. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4945. "reference": "8.x-4.5"
  4946. },
  4947. "dist": {
  4948. "type": "zip",
  4949. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4950. "reference": "8.x-4.5",
  4951. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4952. },
  4953. "require": {
  4954. "drupal/core": "^8 || ^9",
  4955. "drupal/migrate_plus": "^4 || ^5"
  4956. },
  4957. "require-dev": {
  4958. "drupal/migrate_plus": "4.x-dev",
  4959. "drupal/migrate_source_csv": "^2.2",
  4960. "drush/drush": "^10"
  4961. },
  4962. "type": "drupal-module",
  4963. "extra": {
  4964. "drupal": {
  4965. "version": "8.x-4.5",
  4966. "datestamp": "1574693285",
  4967. "security-coverage": {
  4968. "status": "covered",
  4969. "message": "Covered by Drupal's security advisory policy"
  4970. }
  4971. },
  4972. "drush": {
  4973. "services": {
  4974. "drush.services.yml": "^9 || ^10"
  4975. }
  4976. }
  4977. },
  4978. "notification-url": "https://packages.drupal.org/8/downloads",
  4979. "license": [
  4980. "GPL-2.0-or-later"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "heddn",
  4985. "homepage": "https://www.drupal.org/user/1463982"
  4986. },
  4987. {
  4988. "name": "mikeryan",
  4989. "homepage": "https://www.drupal.org/user/4420"
  4990. },
  4991. {
  4992. "name": "moshe weitzman",
  4993. "homepage": "https://www.drupal.org/user/23"
  4994. }
  4995. ],
  4996. "description": "Tools to assist in developing and running migrations.",
  4997. "homepage": "http://drupal.org/project/migrate_tools",
  4998. "support": {
  4999. "source": "http://cgit.drupalcode.org/migrate_tools",
  5000. "issues": "http://drupal.org/project/migrate_tools",
  5001. "irc": "irc://irc.freenode.org/drupal-migrate"
  5002. }
  5003. },
  5004. {
  5005. "name": "drupal/path_alias_xt",
  5006. "version": "dev-1.x",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5010. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  5011. },
  5012. "require": {
  5013. "drupal/core": "^8.7.7 || ^9"
  5014. },
  5015. "type": "drupal-module",
  5016. "extra": {
  5017. "branch-alias": {
  5018. "dev-1.x": "1.x-dev"
  5019. },
  5020. "drupal": {
  5021. "version": "8.x-1.x-dev",
  5022. "datestamp": "1582322571",
  5023. "security-coverage": {
  5024. "status": "not-covered",
  5025. "message": "Dev releases are not covered by Drupal security advisories."
  5026. }
  5027. }
  5028. },
  5029. "notification-url": "https://packages.drupal.org/8/downloads",
  5030. "license": [
  5031. "GPL-2.0-or-later"
  5032. ],
  5033. "authors": [
  5034. {
  5035. "name": "RdeBoer",
  5036. "homepage": "https://www.drupal.org/user/404007"
  5037. },
  5038. {
  5039. "name": "adriancid",
  5040. "homepage": "https://www.drupal.org/user/1962106"
  5041. },
  5042. {
  5043. "name": "sdstyles",
  5044. "homepage": "https://www.drupal.org/user/1420228"
  5045. }
  5046. ],
  5047. "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.",
  5048. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5049. "support": {
  5050. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5051. },
  5052. "time": "2020-05-24T05:57:09+00:00"
  5053. },
  5054. {
  5055. "name": "drupal/pathauto",
  5056. "version": "1.6.0",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://git.drupalcode.org/project/pathauto.git",
  5060. "reference": "8.x-1.6"
  5061. },
  5062. "dist": {
  5063. "type": "zip",
  5064. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.6.zip",
  5065. "reference": "8.x-1.6",
  5066. "shasum": "eb976ae110d73c06fafb1b657adb967dd2cb8246"
  5067. },
  5068. "require": {
  5069. "drupal/core": "^8.6",
  5070. "drupal/ctools": "*",
  5071. "drupal/token": "*"
  5072. },
  5073. "type": "drupal-module",
  5074. "extra": {
  5075. "branch-alias": {
  5076. "dev-1.x": "1.x-dev"
  5077. },
  5078. "drupal": {
  5079. "version": "8.x-1.6",
  5080. "datestamp": "1575467285",
  5081. "security-coverage": {
  5082. "status": "covered",
  5083. "message": "Covered by Drupal's security advisory policy"
  5084. }
  5085. }
  5086. },
  5087. "notification-url": "https://packages.drupal.org/8/downloads",
  5088. "license": [
  5089. "GPL-2.0-or-later"
  5090. ],
  5091. "authors": [
  5092. {
  5093. "name": "Berdir",
  5094. "homepage": "https://www.drupal.org/user/214652"
  5095. },
  5096. {
  5097. "name": "Dave Reid",
  5098. "homepage": "https://www.drupal.org/user/53892"
  5099. },
  5100. {
  5101. "name": "Freso",
  5102. "homepage": "https://www.drupal.org/user/27504"
  5103. },
  5104. {
  5105. "name": "greggles",
  5106. "homepage": "https://www.drupal.org/user/36762"
  5107. }
  5108. ],
  5109. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5110. "homepage": "https://www.drupal.org/project/pathauto",
  5111. "support": {
  5112. "source": "https://git.drupalcode.org/project/pathauto"
  5113. }
  5114. },
  5115. {
  5116. "name": "drupal/piwik",
  5117. "version": "1.4.0",
  5118. "source": {
  5119. "type": "git",
  5120. "url": "https://git.drupalcode.org/project/piwik.git",
  5121. "reference": "8.x-1.4"
  5122. },
  5123. "dist": {
  5124. "type": "zip",
  5125. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  5126. "reference": "8.x-1.4",
  5127. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  5128. },
  5129. "require": {
  5130. "drupal/core": "~8.0",
  5131. "drupal/matomo": "^1.0"
  5132. },
  5133. "require-dev": {
  5134. "drupal/php": "*",
  5135. "drupal/token": "*"
  5136. },
  5137. "type": "drupal-module",
  5138. "extra": {
  5139. "branch-alias": {
  5140. "dev-1.x": "1.x-dev"
  5141. },
  5142. "drupal": {
  5143. "version": "8.x-1.4",
  5144. "datestamp": "1530437786",
  5145. "security-coverage": {
  5146. "status": "covered",
  5147. "message": "Covered by Drupal's security advisory policy"
  5148. }
  5149. }
  5150. },
  5151. "notification-url": "https://packages.drupal.org/8/downloads",
  5152. "license": [
  5153. "GPL-2.0+"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "hass",
  5158. "homepage": "https://www.drupal.org/u/hass"
  5159. },
  5160. {
  5161. "name": "See other contributors",
  5162. "homepage": "https://www.drupal.org/node/247808/committers"
  5163. }
  5164. ],
  5165. "description": "Adds Piwik javascript tracking code to all your site's pages",
  5166. "homepage": "https://www.drupal.org/project/piwik",
  5167. "support": {
  5168. "source": "http://git.drupal.org/project/piwik.git",
  5169. "issues": "https://www.drupal.org/project/issues/piwik"
  5170. }
  5171. },
  5172. {
  5173. "name": "drupal/profile",
  5174. "version": "1.1.0",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://git.drupalcode.org/project/profile.git",
  5178. "reference": "8.x-1.1"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  5183. "reference": "8.x-1.1",
  5184. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  5185. },
  5186. "require": {
  5187. "drupal/core": "^8.7.7 || ^9",
  5188. "drupal/entity": "^1.0-rc2"
  5189. },
  5190. "require-dev": {
  5191. "drupal/token": "^1.0"
  5192. },
  5193. "type": "drupal-module",
  5194. "extra": {
  5195. "branch-alias": {
  5196. "dev-1.x": "1.x-dev"
  5197. },
  5198. "drupal": {
  5199. "version": "8.x-1.1",
  5200. "datestamp": "1582134004",
  5201. "security-coverage": {
  5202. "status": "covered",
  5203. "message": "Covered by Drupal's security advisory policy"
  5204. }
  5205. }
  5206. },
  5207. "notification-url": "https://packages.drupal.org/8/downloads",
  5208. "license": [
  5209. "GPL-2.0+"
  5210. ],
  5211. "authors": [
  5212. {
  5213. "name": "bojanz",
  5214. "homepage": "https://www.drupal.org/user/86106"
  5215. },
  5216. {
  5217. "name": "daggerhart",
  5218. "homepage": "https://www.drupal.org/user/167806"
  5219. },
  5220. {
  5221. "name": "fago",
  5222. "homepage": "https://www.drupal.org/user/16747"
  5223. },
  5224. {
  5225. "name": "jsacksick",
  5226. "homepage": "https://www.drupal.org/user/972218"
  5227. },
  5228. {
  5229. "name": "mglaman",
  5230. "homepage": "https://www.drupal.org/user/2416470"
  5231. },
  5232. {
  5233. "name": "pcambra",
  5234. "homepage": "https://www.drupal.org/user/122101"
  5235. }
  5236. ],
  5237. "description": "Provides configurable user profiles.",
  5238. "homepage": "http://drupal.org/project/profile",
  5239. "support": {
  5240. "source": "https://git.drupalcode.org/project/profile"
  5241. }
  5242. },
  5243. {
  5244. "name": "drupal/redirect",
  5245. "version": "1.5.0",
  5246. "source": {
  5247. "type": "git",
  5248. "url": "https://git.drupalcode.org/project/redirect.git",
  5249. "reference": "8.x-1.5"
  5250. },
  5251. "dist": {
  5252. "type": "zip",
  5253. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.5.zip",
  5254. "reference": "8.x-1.5",
  5255. "shasum": "7940acfb28bd802235d159f1c7a9a58e89dd3d15"
  5256. },
  5257. "require": {
  5258. "drupal/core": "^8.7.7 || ^9"
  5259. },
  5260. "type": "drupal-module",
  5261. "extra": {
  5262. "drupal": {
  5263. "version": "8.x-1.5",
  5264. "datestamp": "1576656784",
  5265. "security-coverage": {
  5266. "status": "covered",
  5267. "message": "Covered by Drupal's security advisory policy"
  5268. }
  5269. }
  5270. },
  5271. "notification-url": "https://packages.drupal.org/8/downloads",
  5272. "license": [
  5273. "GPL-2.0+"
  5274. ],
  5275. "authors": [
  5276. {
  5277. "name": "Berdir",
  5278. "homepage": "https://www.drupal.org/user/214652"
  5279. },
  5280. {
  5281. "name": "Dave Reid",
  5282. "homepage": "https://www.drupal.org/user/53892"
  5283. },
  5284. {
  5285. "name": "pifagor",
  5286. "homepage": "https://www.drupal.org/user/2375692"
  5287. }
  5288. ],
  5289. "description": "Allows users to redirect from old URLs to new URLs.",
  5290. "homepage": "https://www.drupal.org/project/redirect",
  5291. "support": {
  5292. "source": "https://git.drupalcode.org/project/redirect"
  5293. }
  5294. },
  5295. {
  5296. "name": "drupal/redis",
  5297. "version": "1.2.0",
  5298. "source": {
  5299. "type": "git",
  5300. "url": "https://git.drupalcode.org/project/redis.git",
  5301. "reference": "8.x-1.2"
  5302. },
  5303. "dist": {
  5304. "type": "zip",
  5305. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.2.zip",
  5306. "reference": "8.x-1.2",
  5307. "shasum": "6b8847a0816a6e400d495aed1e9dde4c594d6e2b"
  5308. },
  5309. "require": {
  5310. "drupal/core": "~8.0"
  5311. },
  5312. "suggest": {
  5313. "predis/predis": "^1.1.1"
  5314. },
  5315. "type": "drupal-module",
  5316. "extra": {
  5317. "branch-alias": {
  5318. "dev-1.x": "1.x-dev"
  5319. },
  5320. "drupal": {
  5321. "version": "8.x-1.2",
  5322. "datestamp": "1568275684",
  5323. "security-coverage": {
  5324. "status": "covered",
  5325. "message": "Covered by Drupal's security advisory policy"
  5326. }
  5327. }
  5328. },
  5329. "autoload": {
  5330. "psr-4": {
  5331. "Drupal\\redis\\": "src"
  5332. }
  5333. },
  5334. "notification-url": "https://packages.drupal.org/8/downloads",
  5335. "license": [
  5336. "GPL-2.0"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "Berdir",
  5341. "homepage": "https://www.drupal.org/user/214652"
  5342. },
  5343. {
  5344. "name": "pounard",
  5345. "homepage": "https://www.drupal.org/user/240164"
  5346. }
  5347. ],
  5348. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5349. "homepage": "https://www.drupal.org/project/redis",
  5350. "support": {
  5351. "source": "https://git.drupalcode.org/project/redis"
  5352. }
  5353. },
  5354. {
  5355. "name": "drupal/restui",
  5356. "version": "1.18.0",
  5357. "source": {
  5358. "type": "git",
  5359. "url": "https://git.drupalcode.org/project/restui.git",
  5360. "reference": "8.x-1.18"
  5361. },
  5362. "dist": {
  5363. "type": "zip",
  5364. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  5365. "reference": "8.x-1.18",
  5366. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  5367. },
  5368. "require": {
  5369. "drupal/core": "^8.7.7 || ^9"
  5370. },
  5371. "type": "drupal-module",
  5372. "extra": {
  5373. "drupal": {
  5374. "version": "8.x-1.18",
  5375. "datestamp": "1586170645",
  5376. "security-coverage": {
  5377. "status": "covered",
  5378. "message": "Covered by Drupal's security advisory policy"
  5379. }
  5380. }
  5381. },
  5382. "notification-url": "https://packages.drupal.org/8/downloads",
  5383. "license": [
  5384. "GPL-2.0-or-later"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "-enzo-",
  5389. "homepage": "https://www.drupal.org/user/294937"
  5390. },
  5391. {
  5392. "name": "clemens.tolboom",
  5393. "homepage": "https://www.drupal.org/user/125814"
  5394. },
  5395. {
  5396. "name": "juampynr",
  5397. "homepage": "https://www.drupal.org/user/682736"
  5398. },
  5399. {
  5400. "name": "klausi",
  5401. "homepage": "https://www.drupal.org/user/262198"
  5402. }
  5403. ],
  5404. "description": "Provides a user interface to manage REST resources.",
  5405. "homepage": "https://www.drupal.org/project/restui",
  5406. "support": {
  5407. "source": "https://git.drupalcode.org/project/restui"
  5408. }
  5409. },
  5410. {
  5411. "name": "drupal/search_api",
  5412. "version": "1.16.0",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://git.drupalcode.org/project/search_api.git",
  5416. "reference": "8.x-1.16"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.16.zip",
  5421. "reference": "8.x-1.16",
  5422. "shasum": "59bf49fd506d532b0da62e30165d06057ab90013"
  5423. },
  5424. "require": {
  5425. "drupal/core": "^8.7.4"
  5426. },
  5427. "conflict": {
  5428. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5429. },
  5430. "require-dev": {
  5431. "drupal/language_fallback_fix": "@dev",
  5432. "drupal/search_api_autocomplete": "@dev",
  5433. "drupal/search_api_db": "*"
  5434. },
  5435. "suggest": {
  5436. "drupal/facets": "Adds the ability to create faceted searches.",
  5437. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5438. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5439. },
  5440. "type": "drupal-module",
  5441. "extra": {
  5442. "drupal": {
  5443. "version": "8.x-1.16",
  5444. "datestamp": "1588361091",
  5445. "security-coverage": {
  5446. "status": "covered",
  5447. "message": "Covered by Drupal's security advisory policy"
  5448. }
  5449. },
  5450. "drush": {
  5451. "services": {
  5452. "drush.services.yml": "^9"
  5453. }
  5454. }
  5455. },
  5456. "notification-url": "https://packages.drupal.org/8/downloads",
  5457. "license": [
  5458. "GPL-2.0+"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Thomas Seidl",
  5463. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5464. },
  5465. {
  5466. "name": "Nick Veenhof",
  5467. "homepage": "https://www.drupal.org/u/nick_vh"
  5468. },
  5469. {
  5470. "name": "See other contributors",
  5471. "homepage": "https://www.drupal.org/node/790418/committers"
  5472. }
  5473. ],
  5474. "description": "Provides a generic framework for modules offering search capabilities.",
  5475. "homepage": "https://www.drupal.org/project/search_api",
  5476. "support": {
  5477. "source": "https://git.drupalcode.org/project/search_api",
  5478. "issues": "https://www.drupal.org/project/issues/search_api",
  5479. "irc": "irc://irc.freenode.org/drupal-search-api"
  5480. }
  5481. },
  5482. {
  5483. "name": "drupal/simple_sitemap",
  5484. "version": "3.6.0",
  5485. "source": {
  5486. "type": "git",
  5487. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5488. "reference": "8.x-3.6"
  5489. },
  5490. "dist": {
  5491. "type": "zip",
  5492. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.6.zip",
  5493. "reference": "8.x-3.6",
  5494. "shasum": "37fc0ae98a4ccb23316cb089ae4839913e80cbf6"
  5495. },
  5496. "require": {
  5497. "drupal/core": "^8 || ^9",
  5498. "ext-xmlwriter": "*"
  5499. },
  5500. "type": "drupal-module",
  5501. "extra": {
  5502. "drupal": {
  5503. "version": "8.x-3.6",
  5504. "datestamp": "1586469908",
  5505. "security-coverage": {
  5506. "status": "covered",
  5507. "message": "Covered by Drupal's security advisory policy"
  5508. }
  5509. },
  5510. "drush": {
  5511. "services": {
  5512. "drush.services.yml": "^9 || ^10"
  5513. }
  5514. }
  5515. },
  5516. "notification-url": "https://packages.drupal.org/8/downloads",
  5517. "license": [
  5518. "GPL-2.0+"
  5519. ],
  5520. "authors": [
  5521. {
  5522. "name": "Pawel Ginalski (gbyte.co)",
  5523. "homepage": "https://www.drupal.org/u/gbyte.co",
  5524. "email": "contact@gbyte.co",
  5525. "role": "Maintainer"
  5526. }
  5527. ],
  5528. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5529. "homepage": "https://drupal.org/project/simple_sitemap",
  5530. "support": {
  5531. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5532. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5533. "irc": "irc://irc.freenode.org/drupal-contribute"
  5534. }
  5535. },
  5536. {
  5537. "name": "drupal/synonyms",
  5538. "version": "dev-1.x",
  5539. "source": {
  5540. "type": "git",
  5541. "url": "https://git.drupalcode.org/project/synonyms.git",
  5542. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5543. },
  5544. "require": {
  5545. "drupal/core": "^8.2"
  5546. },
  5547. "type": "drupal-module",
  5548. "extra": {
  5549. "branch-alias": {
  5550. "dev-1.x": "1.x-dev"
  5551. },
  5552. "drupal": {
  5553. "version": "8.x-1.0-alpha1+5-dev",
  5554. "datestamp": "1540141681",
  5555. "security-coverage": {
  5556. "status": "not-covered",
  5557. "message": "Dev releases are not covered by Drupal security advisories."
  5558. }
  5559. }
  5560. },
  5561. "notification-url": "https://packages.drupal.org/8/downloads",
  5562. "license": [
  5563. "GPL-2.0-or-later"
  5564. ],
  5565. "authors": [
  5566. {
  5567. "name": "Zen",
  5568. "homepage": "https://www.drupal.org/user/21209"
  5569. },
  5570. {
  5571. "name": "bojanz",
  5572. "homepage": "https://www.drupal.org/user/86106"
  5573. },
  5574. {
  5575. "name": "bucefal91",
  5576. "homepage": "https://www.drupal.org/user/504128"
  5577. }
  5578. ],
  5579. "description": "Provides synonyms feature for content entities.",
  5580. "homepage": "https://www.drupal.org/project/synonyms",
  5581. "support": {
  5582. "source": "https://git.drupalcode.org/project/synonyms"
  5583. },
  5584. "time": "2018-10-21T17:05:25+00:00"
  5585. },
  5586. {
  5587. "name": "drupal/token",
  5588. "version": "1.6.0",
  5589. "source": {
  5590. "type": "git",
  5591. "url": "https://git.drupalcode.org/project/token.git",
  5592. "reference": "8.x-1.6"
  5593. },
  5594. "dist": {
  5595. "type": "zip",
  5596. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.6.zip",
  5597. "reference": "8.x-1.6",
  5598. "shasum": "22039a3d927220609e708932ac5c501b90ca4925"
  5599. },
  5600. "require": {
  5601. "drupal/core": "^8.7.7 || ^9"
  5602. },
  5603. "type": "drupal-module",
  5604. "extra": {
  5605. "drupal": {
  5606. "version": "8.x-1.6",
  5607. "datestamp": "1577708583",
  5608. "security-coverage": {
  5609. "status": "covered",
  5610. "message": "Covered by Drupal's security advisory policy"
  5611. }
  5612. },
  5613. "drush": {
  5614. "services": {
  5615. "drush.services.yml": "^9 || ^10"
  5616. }
  5617. }
  5618. },
  5619. "notification-url": "https://packages.drupal.org/8/downloads",
  5620. "license": [
  5621. "GPL-2.0+"
  5622. ],
  5623. "authors": [
  5624. {
  5625. "name": "Berdir",
  5626. "homepage": "https://www.drupal.org/user/214652"
  5627. },
  5628. {
  5629. "name": "Dave Reid",
  5630. "homepage": "https://www.drupal.org/user/53892"
  5631. },
  5632. {
  5633. "name": "eaton",
  5634. "homepage": "https://www.drupal.org/user/16496"
  5635. },
  5636. {
  5637. "name": "fago",
  5638. "homepage": "https://www.drupal.org/user/16747"
  5639. },
  5640. {
  5641. "name": "greggles",
  5642. "homepage": "https://www.drupal.org/user/36762"
  5643. },
  5644. {
  5645. "name": "mikeryan",
  5646. "homepage": "https://www.drupal.org/user/4420"
  5647. }
  5648. ],
  5649. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5650. "homepage": "https://www.drupal.org/project/token",
  5651. "support": {
  5652. "source": "https://git.drupalcode.org/project/token"
  5653. }
  5654. },
  5655. {
  5656. "name": "drupal/toolbar_themes",
  5657. "version": "dev-1.x",
  5658. "source": {
  5659. "type": "git",
  5660. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5661. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5662. },
  5663. "require": {
  5664. "drupal/core": "*"
  5665. },
  5666. "type": "drupal-module",
  5667. "extra": {
  5668. "branch-alias": {
  5669. "dev-1.x": "1.x-dev"
  5670. },
  5671. "drupal": {
  5672. "version": "8.x-1.0-alpha4+10-dev",
  5673. "datestamp": "1510689485",
  5674. "security-coverage": {
  5675. "status": "not-covered",
  5676. "message": "Project has not opted into security advisory coverage!"
  5677. }
  5678. }
  5679. },
  5680. "notification-url": "https://packages.drupal.org/8/downloads",
  5681. "license": [
  5682. "GPL-2.0-or-later"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "Jeff Burnz",
  5687. "homepage": "https://www.drupal.org/user/61393"
  5688. }
  5689. ],
  5690. "description": "Apply themes to the toolbar.",
  5691. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5692. "support": {
  5693. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5694. },
  5695. "time": "2017-11-14T19:57:02+00:00"
  5696. },
  5697. {
  5698. "name": "drupal/translation_views",
  5699. "version": "1.0.0-alpha9",
  5700. "source": {
  5701. "type": "git",
  5702. "url": "https://git.drupalcode.org/project/translation_views.git",
  5703. "reference": "8.x-1.0-alpha9"
  5704. },
  5705. "dist": {
  5706. "type": "zip",
  5707. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha9.zip",
  5708. "reference": "8.x-1.0-alpha9",
  5709. "shasum": "24c29e82f9f2b9d186709833e2eca8bdced4b9b0"
  5710. },
  5711. "require": {
  5712. "drupal/core": "*"
  5713. },
  5714. "require-dev": {
  5715. "drupal/translators": "*",
  5716. "drupal/translators_content": "*"
  5717. },
  5718. "type": "drupal-module",
  5719. "extra": {
  5720. "drupal": {
  5721. "version": "8.x-1.0-alpha9",
  5722. "datestamp": "1576465685",
  5723. "security-coverage": {
  5724. "status": "not-covered",
  5725. "message": "Project has not opted into security advisory coverage!"
  5726. }
  5727. }
  5728. },
  5729. "notification-url": "https://packages.drupal.org/8/downloads",
  5730. "license": [
  5731. "GPL-2.0-or-later"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "matsbla",
  5736. "homepage": "https://www.drupal.org/user/2325394"
  5737. },
  5738. {
  5739. "name": "vlad.dancer",
  5740. "homepage": "https://www.drupal.org/user/903844"
  5741. }
  5742. ],
  5743. "description": "Create customized lists and queries of translations from your database.",
  5744. "homepage": "https://www.drupal.org/project/translation_views",
  5745. "support": {
  5746. "source": "https://git.drupalcode.org/project/translation_views"
  5747. }
  5748. },
  5749. {
  5750. "name": "drupal/url_to_video_filter",
  5751. "version": "1.3.0",
  5752. "source": {
  5753. "type": "git",
  5754. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5755. "reference": "8.x-1.3"
  5756. },
  5757. "dist": {
  5758. "type": "zip",
  5759. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5760. "reference": "8.x-1.3",
  5761. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5762. },
  5763. "require": {
  5764. "drupal/core": "~8.0"
  5765. },
  5766. "type": "drupal-module",
  5767. "extra": {
  5768. "branch-alias": {
  5769. "dev-1.x": "1.x-dev"
  5770. },
  5771. "drupal": {
  5772. "version": "8.x-1.3",
  5773. "datestamp": "1532695981",
  5774. "security-coverage": {
  5775. "status": "covered",
  5776. "message": "Covered by Drupal's security advisory policy"
  5777. }
  5778. }
  5779. },
  5780. "notification-url": "https://packages.drupal.org/8/downloads",
  5781. "license": [
  5782. "GPL-2.0-or-later"
  5783. ],
  5784. "authors": [
  5785. {
  5786. "name": "Jaypan",
  5787. "homepage": "https://www.drupal.org/user/324696"
  5788. }
  5789. ],
  5790. "description": "Text filter to convert URLs to embedded videos",
  5791. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5792. "support": {
  5793. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5794. }
  5795. },
  5796. {
  5797. "name": "drupal/views_bulk_edit",
  5798. "version": "2.4.0",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5802. "reference": "8.x-2.4"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5807. "reference": "8.x-2.4",
  5808. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5809. },
  5810. "require": {
  5811. "drupal/core": "*",
  5812. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5813. },
  5814. "type": "drupal-module",
  5815. "extra": {
  5816. "branch-alias": {
  5817. "dev-2.x": "2.x-dev"
  5818. },
  5819. "drupal": {
  5820. "version": "8.x-2.4",
  5821. "datestamp": "1570030085",
  5822. "security-coverage": {
  5823. "status": "covered",
  5824. "message": "Covered by Drupal's security advisory policy"
  5825. }
  5826. }
  5827. },
  5828. "notification-url": "https://packages.drupal.org/8/downloads",
  5829. "license": [
  5830. "GPL-2.0+"
  5831. ],
  5832. "authors": [
  5833. {
  5834. "name": "Marcin Grabias",
  5835. "homepage": "https://www.drupal.org/u/graber"
  5836. },
  5837. {
  5838. "name": "benjy",
  5839. "homepage": "https://www.drupal.org/user/1852732"
  5840. }
  5841. ],
  5842. "description": "Allows bulk edition of entity field values.",
  5843. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5844. "support": {
  5845. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5846. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5847. }
  5848. },
  5849. {
  5850. "name": "drupal/views_bulk_operations",
  5851. "version": "3.4.0",
  5852. "source": {
  5853. "type": "git",
  5854. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5855. "reference": "8.x-3.4"
  5856. },
  5857. "dist": {
  5858. "type": "zip",
  5859. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.4.zip",
  5860. "reference": "8.x-3.4",
  5861. "shasum": "549eb149f82fbf30e975155a14cd7a0d4653dfe9"
  5862. },
  5863. "require": {
  5864. "drupal/core": "~8.5"
  5865. },
  5866. "type": "drupal-module",
  5867. "extra": {
  5868. "branch-alias": {
  5869. "dev-3.x": "3.x-dev"
  5870. },
  5871. "drupal": {
  5872. "version": "8.x-3.4",
  5873. "datestamp": "1582575462",
  5874. "security-coverage": {
  5875. "status": "covered",
  5876. "message": "Covered by Drupal's security advisory policy"
  5877. }
  5878. },
  5879. "drush": {
  5880. "services": {
  5881. "drush.services.yml": "^9"
  5882. }
  5883. }
  5884. },
  5885. "notification-url": "https://packages.drupal.org/8/downloads",
  5886. "license": [
  5887. "GPL-2.0+"
  5888. ],
  5889. "authors": [
  5890. {
  5891. "name": "Marcin Grabias",
  5892. "homepage": "https://www.drupal.org/u/graber"
  5893. },
  5894. {
  5895. "name": "Jon Pugh",
  5896. "homepage": "https://www.drupal.org/user/17028"
  5897. },
  5898. {
  5899. "name": "bojanz",
  5900. "homepage": "https://www.drupal.org/user/86106"
  5901. },
  5902. {
  5903. "name": "infojunkie",
  5904. "homepage": "https://www.drupal.org/user/48424"
  5905. },
  5906. {
  5907. "name": "joelpittet",
  5908. "homepage": "https://www.drupal.org/user/160302"
  5909. }
  5910. ],
  5911. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5912. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5913. "support": {
  5914. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5915. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5916. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5917. }
  5918. },
  5919. {
  5920. "name": "drupal/workflow",
  5921. "version": "dev-1.x",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://git.drupalcode.org/project/workflow.git",
  5925. "reference": "91e32308c022537ec7ae8e0118f1afa8a0bde7a4"
  5926. },
  5927. "require": {
  5928. "drupal/core": "^8 || ^9"
  5929. },
  5930. "type": "drupal-module",
  5931. "extra": {
  5932. "branch-alias": {
  5933. "dev-1.x": "1.x-dev"
  5934. },
  5935. "drupal": {
  5936. "version": "8.x-1.1+55-dev",
  5937. "datestamp": "1590411186",
  5938. "security-coverage": {
  5939. "status": "not-covered",
  5940. "message": "Dev releases are not covered by Drupal security advisories."
  5941. }
  5942. }
  5943. },
  5944. "notification-url": "https://packages.drupal.org/8/downloads",
  5945. "license": [
  5946. "GPL-2.0-or-later"
  5947. ],
  5948. "authors": [
  5949. {
  5950. "name": "Bastlynn",
  5951. "homepage": "https://www.drupal.org/user/275249"
  5952. },
  5953. {
  5954. "name": "Heine",
  5955. "homepage": "https://www.drupal.org/user/17943"
  5956. },
  5957. {
  5958. "name": "JacobSingh",
  5959. "homepage": "https://www.drupal.org/user/68912"
  5960. },
  5961. {
  5962. "name": "NancyDru",
  5963. "homepage": "https://www.drupal.org/user/101412"
  5964. },
  5965. {
  5966. "name": "eaton",
  5967. "homepage": "https://www.drupal.org/user/16496"
  5968. },
  5969. {
  5970. "name": "johnv",
  5971. "homepage": "https://www.drupal.org/user/591042"
  5972. },
  5973. {
  5974. "name": "jvandyk",
  5975. "homepage": "https://www.drupal.org/user/2375"
  5976. },
  5977. {
  5978. "name": "mfredrickson",
  5979. "homepage": "https://www.drupal.org/user/31994"
  5980. },
  5981. {
  5982. "name": "q0rban",
  5983. "homepage": "https://www.drupal.org/user/31022"
  5984. }
  5985. ],
  5986. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5987. "homepage": "https://www.drupal.org/project/workflow",
  5988. "support": {
  5989. "source": "https://git.drupalcode.org/project/workflow"
  5990. },
  5991. "time": "2020-05-25T13:34:05+00:00"
  5992. },
  5993. {
  5994. "name": "drush/drush",
  5995. "version": "9.7.2",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/drush-ops/drush.git",
  5999. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa",
  6004. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "chi-teck/drupal-code-generator": "^1.28.1",
  6009. "composer/semver": "^1.4",
  6010. "consolidation/annotated-command": "^2.12",
  6011. "consolidation/config": "^1.2",
  6012. "consolidation/filter-via-dot-access-data": "^1",
  6013. "consolidation/output-formatters": "^3.3.1",
  6014. "consolidation/robo": "^1.4.6",
  6015. "consolidation/site-alias": "^3.0.0@stable",
  6016. "consolidation/site-process": "^2.0.3",
  6017. "ext-dom": "*",
  6018. "grasmash/yaml-expander": "^1.1.1",
  6019. "league/container": "~2",
  6020. "php": ">=5.6.0",
  6021. "psr/log": "~1.0",
  6022. "psy/psysh": "~0.6",
  6023. "symfony/console": "^3.4",
  6024. "symfony/event-dispatcher": "^3.4 || ^4.0",
  6025. "symfony/finder": "^3.4 || ^4.0",
  6026. "symfony/process": "^3.4",
  6027. "symfony/var-dumper": "^3.4 || ^4.0",
  6028. "symfony/yaml": "^3.4",
  6029. "webflo/drupal-finder": "^1.1",
  6030. "webmozart/path-util": "^2.1.0"
  6031. },
  6032. "require-dev": {
  6033. "composer/installers": "^1.2",
  6034. "cweagans/composer-patches": "~1.0",
  6035. "drupal/alinks": "1.0.0",
  6036. "drupal/devel": "^2",
  6037. "drupal/empty_theme": "1.0",
  6038. "g1a/composer-test-scenarios": "^3",
  6039. "lox/xhprof": "dev-master",
  6040. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6041. "squizlabs/php_codesniffer": "^2.7 || ^3",
  6042. "vlucas/phpdotenv": "^2.4",
  6043. "webflo/drupal-core-require-dev": "8.7.x-dev",
  6044. "webflo/drupal-core-strict": "8.7.x-dev"
  6045. },
  6046. "bin": [
  6047. "drush"
  6048. ],
  6049. "type": "library",
  6050. "extra": {
  6051. "installer-paths": {
  6052. "sut/core": [
  6053. "type:drupal-core"
  6054. ],
  6055. "sut/libraries/{$name}": [
  6056. "type:drupal-library"
  6057. ],
  6058. "sut/modules/unish/{$name}": [
  6059. "drupal/devel"
  6060. ],
  6061. "sut/themes/unish/{$name}": [
  6062. "drupal/empty_theme"
  6063. ],
  6064. "sut/modules/contrib/{$name}": [
  6065. "type:drupal-module"
  6066. ],
  6067. "sut/profiles/contrib/{$name}": [
  6068. "type:drupal-profile"
  6069. ],
  6070. "sut/themes/contrib/{$name}": [
  6071. "type:drupal-theme"
  6072. ],
  6073. "sut/drush/contrib/{$name}": [
  6074. "type:drupal-drush"
  6075. ]
  6076. },
  6077. "scenarios": {
  6078. "php5": {
  6079. "config": {
  6080. "platform": {
  6081. "php": "5.6.38"
  6082. }
  6083. },
  6084. "require-dev": {
  6085. "webflo/drupal-core-strict": "8.6.x-dev",
  6086. "webflo/drupal-core-require-dev": "8.6.x-dev"
  6087. }
  6088. }
  6089. },
  6090. "branch-alias": {
  6091. "dev-master": "9.x-dev"
  6092. }
  6093. },
  6094. "autoload": {
  6095. "psr-4": {
  6096. "Drush\\": "src/",
  6097. "Drush\\Internal\\": "src/internal-forks"
  6098. }
  6099. },
  6100. "notification-url": "https://packagist.org/downloads/",
  6101. "license": [
  6102. "GPL-2.0-or-later"
  6103. ],
  6104. "authors": [
  6105. {
  6106. "name": "Moshe Weitzman",
  6107. "email": "weitzman@tejasa.com"
  6108. },
  6109. {
  6110. "name": "Owen Barton",
  6111. "email": "drupal@owenbarton.com"
  6112. },
  6113. {
  6114. "name": "Greg Anderson",
  6115. "email": "greg.1.anderson@greenknowe.org"
  6116. },
  6117. {
  6118. "name": "Jonathan Araña Cruz",
  6119. "email": "jonhattan@faita.net"
  6120. },
  6121. {
  6122. "name": "Jonathan Hedstrom",
  6123. "email": "jhedstrom@gmail.com"
  6124. },
  6125. {
  6126. "name": "Christopher Gervais",
  6127. "email": "chris@ergonlogic.com"
  6128. },
  6129. {
  6130. "name": "Dave Reid",
  6131. "email": "dave@davereid.net"
  6132. },
  6133. {
  6134. "name": "Damian Lee",
  6135. "email": "damiankloip@googlemail.com"
  6136. }
  6137. ],
  6138. "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.",
  6139. "homepage": "http://www.drush.org",
  6140. "time": "2020-02-09T17:29:51+00:00"
  6141. },
  6142. {
  6143. "name": "easyrdf/easyrdf",
  6144. "version": "0.9.1",
  6145. "source": {
  6146. "type": "git",
  6147. "url": "https://github.com/njh/easyrdf.git",
  6148. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6149. },
  6150. "dist": {
  6151. "type": "zip",
  6152. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6153. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6154. "shasum": ""
  6155. },
  6156. "require": {
  6157. "ext-mbstring": "*",
  6158. "ext-pcre": "*",
  6159. "php": ">=5.2.8"
  6160. },
  6161. "require-dev": {
  6162. "phpunit/phpunit": "~3.5",
  6163. "sami/sami": "~1.4",
  6164. "squizlabs/php_codesniffer": "~1.4.3"
  6165. },
  6166. "suggest": {
  6167. "ml/json-ld": "~1.0"
  6168. },
  6169. "type": "library",
  6170. "autoload": {
  6171. "psr-0": {
  6172. "EasyRdf_": "lib/"
  6173. }
  6174. },
  6175. "notification-url": "https://packagist.org/downloads/",
  6176. "license": [
  6177. "BSD-3-Clause"
  6178. ],
  6179. "authors": [
  6180. {
  6181. "name": "Nicholas Humfrey",
  6182. "email": "njh@aelius.com",
  6183. "homepage": "http://www.aelius.com/njh/",
  6184. "role": "Developer"
  6185. },
  6186. {
  6187. "name": "Alexey Zakhlestin",
  6188. "email": "indeyets@gmail.com",
  6189. "role": "Developer"
  6190. }
  6191. ],
  6192. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6193. "homepage": "http://www.easyrdf.org/",
  6194. "keywords": [
  6195. "Linked Data",
  6196. "RDF",
  6197. "Semantic Web",
  6198. "Turtle",
  6199. "rdfa",
  6200. "sparql"
  6201. ],
  6202. "time": "2015-02-27T09:45:49+00:00"
  6203. },
  6204. {
  6205. "name": "egulias/email-validator",
  6206. "version": "2.1.17",
  6207. "source": {
  6208. "type": "git",
  6209. "url": "https://github.com/egulias/EmailValidator.git",
  6210. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  6211. },
  6212. "dist": {
  6213. "type": "zip",
  6214. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  6215. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  6216. "shasum": ""
  6217. },
  6218. "require": {
  6219. "doctrine/lexer": "^1.0.1",
  6220. "php": ">=5.5",
  6221. "symfony/polyfill-intl-idn": "^1.10"
  6222. },
  6223. "require-dev": {
  6224. "dominicsayers/isemail": "^3.0.7",
  6225. "phpunit/phpunit": "^4.8.36|^7.5.15",
  6226. "satooshi/php-coveralls": "^1.0.1"
  6227. },
  6228. "suggest": {
  6229. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  6230. },
  6231. "type": "library",
  6232. "extra": {
  6233. "branch-alias": {
  6234. "dev-master": "2.1.x-dev"
  6235. }
  6236. },
  6237. "autoload": {
  6238. "psr-4": {
  6239. "Egulias\\EmailValidator\\": "EmailValidator"
  6240. }
  6241. },
  6242. "notification-url": "https://packagist.org/downloads/",
  6243. "license": [
  6244. "MIT"
  6245. ],
  6246. "authors": [
  6247. {
  6248. "name": "Eduardo Gulias Davis"
  6249. }
  6250. ],
  6251. "description": "A library for validating emails against several RFCs",
  6252. "homepage": "https://github.com/egulias/EmailValidator",
  6253. "keywords": [
  6254. "email",
  6255. "emailvalidation",
  6256. "emailvalidator",
  6257. "validation",
  6258. "validator"
  6259. ],
  6260. "time": "2020-02-13T22:36:52+00:00"
  6261. },
  6262. {
  6263. "name": "fabpot/goutte",
  6264. "version": "v3.2.3",
  6265. "source": {
  6266. "type": "git",
  6267. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6268. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6269. },
  6270. "dist": {
  6271. "type": "zip",
  6272. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6273. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6274. "shasum": ""
  6275. },
  6276. "require": {
  6277. "guzzlehttp/guzzle": "^6.0",
  6278. "php": ">=5.5.0",
  6279. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6280. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6281. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6282. },
  6283. "require-dev": {
  6284. "symfony/phpunit-bridge": "^3.3 || ^4"
  6285. },
  6286. "type": "application",
  6287. "extra": {
  6288. "branch-alias": {
  6289. "dev-master": "3.2-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Goutte\\": "Goutte"
  6295. },
  6296. "exclude-from-classmap": [
  6297. "Goutte/Tests"
  6298. ]
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Fabien Potencier",
  6307. "email": "fabien@symfony.com"
  6308. }
  6309. ],
  6310. "description": "A simple PHP Web Scraper",
  6311. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6312. "keywords": [
  6313. "scraper"
  6314. ],
  6315. "time": "2018-06-29T15:13:57+00:00"
  6316. },
  6317. {
  6318. "name": "grasmash/expander",
  6319. "version": "1.0.0",
  6320. "source": {
  6321. "type": "git",
  6322. "url": "https://github.com/grasmash/expander.git",
  6323. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6324. },
  6325. "dist": {
  6326. "type": "zip",
  6327. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6328. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6329. "shasum": ""
  6330. },
  6331. "require": {
  6332. "dflydev/dot-access-data": "^1.1.0",
  6333. "php": ">=5.4"
  6334. },
  6335. "require-dev": {
  6336. "greg-1-anderson/composer-test-scenarios": "^1",
  6337. "phpunit/phpunit": "^4|^5.5.4",
  6338. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6339. "squizlabs/php_codesniffer": "^2.7"
  6340. },
  6341. "type": "library",
  6342. "extra": {
  6343. "branch-alias": {
  6344. "dev-master": "1.x-dev"
  6345. }
  6346. },
  6347. "autoload": {
  6348. "psr-4": {
  6349. "Grasmash\\Expander\\": "src/"
  6350. }
  6351. },
  6352. "notification-url": "https://packagist.org/downloads/",
  6353. "license": [
  6354. "MIT"
  6355. ],
  6356. "authors": [
  6357. {
  6358. "name": "Matthew Grasmick"
  6359. }
  6360. ],
  6361. "description": "Expands internal property references in PHP arrays file.",
  6362. "time": "2017-12-21T22:14:55+00:00"
  6363. },
  6364. {
  6365. "name": "grasmash/yaml-expander",
  6366. "version": "1.4.0",
  6367. "source": {
  6368. "type": "git",
  6369. "url": "https://github.com/grasmash/yaml-expander.git",
  6370. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6371. },
  6372. "dist": {
  6373. "type": "zip",
  6374. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6375. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6376. "shasum": ""
  6377. },
  6378. "require": {
  6379. "dflydev/dot-access-data": "^1.1.0",
  6380. "php": ">=5.4",
  6381. "symfony/yaml": "^2.8.11|^3|^4"
  6382. },
  6383. "require-dev": {
  6384. "greg-1-anderson/composer-test-scenarios": "^1",
  6385. "phpunit/phpunit": "^4.8|^5.5.4",
  6386. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6387. "squizlabs/php_codesniffer": "^2.7"
  6388. },
  6389. "type": "library",
  6390. "extra": {
  6391. "branch-alias": {
  6392. "dev-master": "1.x-dev"
  6393. }
  6394. },
  6395. "autoload": {
  6396. "psr-4": {
  6397. "Grasmash\\YamlExpander\\": "src/"
  6398. }
  6399. },
  6400. "notification-url": "https://packagist.org/downloads/",
  6401. "license": [
  6402. "MIT"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Matthew Grasmick"
  6407. }
  6408. ],
  6409. "description": "Expands internal property references in a yaml file.",
  6410. "time": "2017-12-16T16:06:03+00:00"
  6411. },
  6412. {
  6413. "name": "guzzlehttp/guzzle",
  6414. "version": "6.5.4",
  6415. "source": {
  6416. "type": "git",
  6417. "url": "https://github.com/guzzle/guzzle.git",
  6418. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  6419. },
  6420. "dist": {
  6421. "type": "zip",
  6422. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6423. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6424. "shasum": ""
  6425. },
  6426. "require": {
  6427. "ext-json": "*",
  6428. "guzzlehttp/promises": "^1.0",
  6429. "guzzlehttp/psr7": "^1.6.1",
  6430. "php": ">=5.5",
  6431. "symfony/polyfill-intl-idn": "1.17.0"
  6432. },
  6433. "require-dev": {
  6434. "ext-curl": "*",
  6435. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6436. "psr/log": "^1.1"
  6437. },
  6438. "suggest": {
  6439. "psr/log": "Required for using the Log middleware"
  6440. },
  6441. "type": "library",
  6442. "extra": {
  6443. "branch-alias": {
  6444. "dev-master": "6.5-dev"
  6445. }
  6446. },
  6447. "autoload": {
  6448. "psr-4": {
  6449. "GuzzleHttp\\": "src/"
  6450. },
  6451. "files": [
  6452. "src/functions_include.php"
  6453. ]
  6454. },
  6455. "notification-url": "https://packagist.org/downloads/",
  6456. "license": [
  6457. "MIT"
  6458. ],
  6459. "authors": [
  6460. {
  6461. "name": "Michael Dowling",
  6462. "email": "mtdowling@gmail.com",
  6463. "homepage": "https://github.com/mtdowling"
  6464. }
  6465. ],
  6466. "description": "Guzzle is a PHP HTTP client library",
  6467. "homepage": "http://guzzlephp.org/",
  6468. "keywords": [
  6469. "client",
  6470. "curl",
  6471. "framework",
  6472. "http",
  6473. "http client",
  6474. "rest",
  6475. "web service"
  6476. ],
  6477. "time": "2020-05-25T19:35:05+00:00"
  6478. },
  6479. {
  6480. "name": "guzzlehttp/promises",
  6481. "version": "v1.3.1",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/guzzle/promises.git",
  6485. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6490. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": ">=5.5.0"
  6495. },
  6496. "require-dev": {
  6497. "phpunit/phpunit": "^4.0"
  6498. },
  6499. "type": "library",
  6500. "extra": {
  6501. "branch-alias": {
  6502. "dev-master": "1.4-dev"
  6503. }
  6504. },
  6505. "autoload": {
  6506. "psr-4": {
  6507. "GuzzleHttp\\Promise\\": "src/"
  6508. },
  6509. "files": [
  6510. "src/functions_include.php"
  6511. ]
  6512. },
  6513. "notification-url": "https://packagist.org/downloads/",
  6514. "license": [
  6515. "MIT"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "Michael Dowling",
  6520. "email": "mtdowling@gmail.com",
  6521. "homepage": "https://github.com/mtdowling"
  6522. }
  6523. ],
  6524. "description": "Guzzle promises library",
  6525. "keywords": [
  6526. "promise"
  6527. ],
  6528. "time": "2016-12-20T10:07:11+00:00"
  6529. },
  6530. {
  6531. "name": "guzzlehttp/psr7",
  6532. "version": "1.6.1",
  6533. "source": {
  6534. "type": "git",
  6535. "url": "https://github.com/guzzle/psr7.git",
  6536. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6537. },
  6538. "dist": {
  6539. "type": "zip",
  6540. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6541. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6542. "shasum": ""
  6543. },
  6544. "require": {
  6545. "php": ">=5.4.0",
  6546. "psr/http-message": "~1.0",
  6547. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6548. },
  6549. "provide": {
  6550. "psr/http-message-implementation": "1.0"
  6551. },
  6552. "require-dev": {
  6553. "ext-zlib": "*",
  6554. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6555. },
  6556. "suggest": {
  6557. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6558. },
  6559. "type": "library",
  6560. "extra": {
  6561. "branch-alias": {
  6562. "dev-master": "1.6-dev"
  6563. }
  6564. },
  6565. "autoload": {
  6566. "psr-4": {
  6567. "GuzzleHttp\\Psr7\\": "src/"
  6568. },
  6569. "files": [
  6570. "src/functions_include.php"
  6571. ]
  6572. },
  6573. "notification-url": "https://packagist.org/downloads/",
  6574. "license": [
  6575. "MIT"
  6576. ],
  6577. "authors": [
  6578. {
  6579. "name": "Michael Dowling",
  6580. "email": "mtdowling@gmail.com",
  6581. "homepage": "https://github.com/mtdowling"
  6582. },
  6583. {
  6584. "name": "Tobias Schultze",
  6585. "homepage": "https://github.com/Tobion"
  6586. }
  6587. ],
  6588. "description": "PSR-7 message implementation that also provides common utility methods",
  6589. "keywords": [
  6590. "http",
  6591. "message",
  6592. "psr-7",
  6593. "request",
  6594. "response",
  6595. "stream",
  6596. "uri",
  6597. "url"
  6598. ],
  6599. "time": "2019-07-01T23:21:34+00:00"
  6600. },
  6601. {
  6602. "name": "instaclick/php-webdriver",
  6603. "version": "1.4.7",
  6604. "source": {
  6605. "type": "git",
  6606. "url": "https://github.com/instaclick/php-webdriver.git",
  6607. "reference": "b5f330e900e9b3edfc18024a5ec8c07136075712"
  6608. },
  6609. "dist": {
  6610. "type": "zip",
  6611. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/b5f330e900e9b3edfc18024a5ec8c07136075712",
  6612. "reference": "b5f330e900e9b3edfc18024a5ec8c07136075712",
  6613. "shasum": ""
  6614. },
  6615. "require": {
  6616. "ext-curl": "*",
  6617. "php": ">=5.3.2"
  6618. },
  6619. "require-dev": {
  6620. "phpunit/phpunit": "^4.8",
  6621. "satooshi/php-coveralls": "^1.0||^2.0"
  6622. },
  6623. "type": "library",
  6624. "extra": {
  6625. "branch-alias": {
  6626. "dev-master": "1.4.x-dev"
  6627. }
  6628. },
  6629. "autoload": {
  6630. "psr-0": {
  6631. "WebDriver": "lib/"
  6632. }
  6633. },
  6634. "notification-url": "https://packagist.org/downloads/",
  6635. "license": [
  6636. "Apache-2.0"
  6637. ],
  6638. "authors": [
  6639. {
  6640. "name": "Justin Bishop",
  6641. "email": "jubishop@gmail.com",
  6642. "role": "Developer"
  6643. },
  6644. {
  6645. "name": "Anthon Pang",
  6646. "email": "apang@softwaredevelopment.ca",
  6647. "role": "Fork Maintainer"
  6648. }
  6649. ],
  6650. "description": "PHP WebDriver for Selenium 2",
  6651. "homepage": "http://instaclick.com/",
  6652. "keywords": [
  6653. "browser",
  6654. "selenium",
  6655. "webdriver",
  6656. "webtest"
  6657. ],
  6658. "time": "2019-09-25T09:05:11+00:00"
  6659. },
  6660. {
  6661. "name": "jcalderonzumba/gastonjs",
  6662. "version": "v1.2.0",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6666. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6671. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "guzzlehttp/guzzle": "~5.0|~6.0",
  6676. "php": ">=5.4"
  6677. },
  6678. "require-dev": {
  6679. "phpunit/phpunit": "~4.6",
  6680. "silex/silex": "~1.2",
  6681. "symfony/phpunit-bridge": "~2.7",
  6682. "symfony/process": "~2.1"
  6683. },
  6684. "type": "phantomjs-api",
  6685. "extra": {
  6686. "branch-alias": {
  6687. "dev-master": "1.1.x-dev"
  6688. }
  6689. },
  6690. "autoload": {
  6691. "psr-4": {
  6692. "Zumba\\GastonJS\\": "src"
  6693. }
  6694. },
  6695. "notification-url": "https://packagist.org/downloads/",
  6696. "license": [
  6697. "MIT"
  6698. ],
  6699. "authors": [
  6700. {
  6701. "name": "Juan Francisco Calderón Zumba",
  6702. "email": "juanfcz@gmail.com",
  6703. "homepage": "http://github.com/jcalderonzumba"
  6704. }
  6705. ],
  6706. "description": "PhantomJS API based server for webpage automation",
  6707. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6708. "keywords": [
  6709. "api",
  6710. "automation",
  6711. "browser",
  6712. "headless",
  6713. "phantomjs"
  6714. ],
  6715. "time": "2017-03-31T07:31:47+00:00"
  6716. },
  6717. {
  6718. "name": "jcalderonzumba/mink-phantomjs-driver",
  6719. "version": "v0.3.3",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6723. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6728. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6729. "shasum": ""
  6730. },
  6731. "require": {
  6732. "behat/mink": "~1.7",
  6733. "jcalderonzumba/gastonjs": "~1.0",
  6734. "php": ">=5.4",
  6735. "twig/twig": "~1.20|~2.0"
  6736. },
  6737. "require-dev": {
  6738. "mink/driver-testsuite": "dev-master",
  6739. "phpunit/phpunit": "~4.6"
  6740. },
  6741. "type": "mink-driver",
  6742. "extra": {
  6743. "branch-alias": {
  6744. "dev-master": "0.4.x-dev"
  6745. }
  6746. },
  6747. "autoload": {
  6748. "psr-4": {
  6749. "Zumba\\Mink\\Driver\\": "src"
  6750. }
  6751. },
  6752. "notification-url": "https://packagist.org/downloads/",
  6753. "license": [
  6754. "MIT"
  6755. ],
  6756. "authors": [
  6757. {
  6758. "name": "Juan Francisco Calderón Zumba",
  6759. "email": "juanfcz@gmail.com",
  6760. "homepage": "http://github.com/jcalderonzumba"
  6761. }
  6762. ],
  6763. "description": "PhantomJS driver for Mink framework",
  6764. "homepage": "http://mink.behat.org/",
  6765. "keywords": [
  6766. "ajax",
  6767. "browser",
  6768. "headless",
  6769. "javascript",
  6770. "phantomjs",
  6771. "testing"
  6772. ],
  6773. "time": "2016-12-01T10:57:30+00:00"
  6774. },
  6775. {
  6776. "name": "justinrainbow/json-schema",
  6777. "version": "5.2.9",
  6778. "source": {
  6779. "type": "git",
  6780. "url": "https://github.com/justinrainbow/json-schema.git",
  6781. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  6782. },
  6783. "dist": {
  6784. "type": "zip",
  6785. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  6786. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  6787. "shasum": ""
  6788. },
  6789. "require": {
  6790. "php": ">=5.3.3"
  6791. },
  6792. "require-dev": {
  6793. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  6794. "json-schema/json-schema-test-suite": "1.2.0",
  6795. "phpunit/phpunit": "^4.8.35"
  6796. },
  6797. "bin": [
  6798. "bin/validate-json"
  6799. ],
  6800. "type": "library",
  6801. "extra": {
  6802. "branch-alias": {
  6803. "dev-master": "5.0.x-dev"
  6804. }
  6805. },
  6806. "autoload": {
  6807. "psr-4": {
  6808. "JsonSchema\\": "src/JsonSchema/"
  6809. }
  6810. },
  6811. "notification-url": "https://packagist.org/downloads/",
  6812. "license": [
  6813. "MIT"
  6814. ],
  6815. "authors": [
  6816. {
  6817. "name": "Bruno Prieto Reis",
  6818. "email": "bruno.p.reis@gmail.com"
  6819. },
  6820. {
  6821. "name": "Justin Rainbow",
  6822. "email": "justin.rainbow@gmail.com"
  6823. },
  6824. {
  6825. "name": "Igor Wiedler",
  6826. "email": "igor@wiedler.ch"
  6827. },
  6828. {
  6829. "name": "Robert Schönthal",
  6830. "email": "seroscho@googlemail.com"
  6831. }
  6832. ],
  6833. "description": "A library to validate a json schema.",
  6834. "homepage": "https://github.com/justinrainbow/json-schema",
  6835. "keywords": [
  6836. "json",
  6837. "schema"
  6838. ],
  6839. "time": "2019-09-25T14:49:45+00:00"
  6840. },
  6841. {
  6842. "name": "league/container",
  6843. "version": "2.4.1",
  6844. "source": {
  6845. "type": "git",
  6846. "url": "https://github.com/thephpleague/container.git",
  6847. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6848. },
  6849. "dist": {
  6850. "type": "zip",
  6851. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6852. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6853. "shasum": ""
  6854. },
  6855. "require": {
  6856. "container-interop/container-interop": "^1.2",
  6857. "php": "^5.4.0 || ^7.0"
  6858. },
  6859. "provide": {
  6860. "container-interop/container-interop-implementation": "^1.2",
  6861. "psr/container-implementation": "^1.0"
  6862. },
  6863. "replace": {
  6864. "orno/di": "~2.0"
  6865. },
  6866. "require-dev": {
  6867. "phpunit/phpunit": "4.*"
  6868. },
  6869. "type": "library",
  6870. "extra": {
  6871. "branch-alias": {
  6872. "dev-2.x": "2.x-dev",
  6873. "dev-1.x": "1.x-dev"
  6874. }
  6875. },
  6876. "autoload": {
  6877. "psr-4": {
  6878. "League\\Container\\": "src"
  6879. }
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Phil Bennett",
  6888. "email": "philipobenito@gmail.com",
  6889. "homepage": "http://www.philipobenito.com",
  6890. "role": "Developer"
  6891. }
  6892. ],
  6893. "description": "A fast and intuitive dependency injection container.",
  6894. "homepage": "https://github.com/thephpleague/container",
  6895. "keywords": [
  6896. "container",
  6897. "dependency",
  6898. "di",
  6899. "injection",
  6900. "league",
  6901. "provider",
  6902. "service"
  6903. ],
  6904. "time": "2017-05-10T09:20:27+00:00"
  6905. },
  6906. {
  6907. "name": "masterminds/html5",
  6908. "version": "2.7.0",
  6909. "source": {
  6910. "type": "git",
  6911. "url": "https://github.com/Masterminds/html5-php.git",
  6912. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
  6913. },
  6914. "dist": {
  6915. "type": "zip",
  6916. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
  6917. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
  6918. "shasum": ""
  6919. },
  6920. "require": {
  6921. "ext-ctype": "*",
  6922. "ext-dom": "*",
  6923. "ext-libxml": "*",
  6924. "php": ">=5.3.0"
  6925. },
  6926. "require-dev": {
  6927. "phpunit/phpunit": "^4.8.35",
  6928. "sami/sami": "~2.0",
  6929. "satooshi/php-coveralls": "1.0.*"
  6930. },
  6931. "type": "library",
  6932. "extra": {
  6933. "branch-alias": {
  6934. "dev-master": "2.7-dev"
  6935. }
  6936. },
  6937. "autoload": {
  6938. "psr-4": {
  6939. "Masterminds\\": "src"
  6940. }
  6941. },
  6942. "notification-url": "https://packagist.org/downloads/",
  6943. "license": [
  6944. "MIT"
  6945. ],
  6946. "authors": [
  6947. {
  6948. "name": "Matt Butcher",
  6949. "email": "technosophos@gmail.com"
  6950. },
  6951. {
  6952. "name": "Matt Farina",
  6953. "email": "matt@mattfarina.com"
  6954. },
  6955. {
  6956. "name": "Asmir Mustafic",
  6957. "email": "goetas@gmail.com"
  6958. }
  6959. ],
  6960. "description": "An HTML5 parser and serializer.",
  6961. "homepage": "http://masterminds.github.io/html5-php",
  6962. "keywords": [
  6963. "HTML5",
  6964. "dom",
  6965. "html",
  6966. "parser",
  6967. "querypath",
  6968. "serializer",
  6969. "xml"
  6970. ],
  6971. "time": "2019-07-25T07:03:26+00:00"
  6972. },
  6973. {
  6974. "name": "mikey179/vfsstream",
  6975. "version": "v1.6.8",
  6976. "source": {
  6977. "type": "git",
  6978. "url": "https://github.com/bovigo/vfsStream.git",
  6979. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe"
  6980. },
  6981. "dist": {
  6982. "type": "zip",
  6983. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6984. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6985. "shasum": ""
  6986. },
  6987. "require": {
  6988. "php": ">=5.3.0"
  6989. },
  6990. "require-dev": {
  6991. "phpunit/phpunit": "^4.5|^5.0"
  6992. },
  6993. "type": "library",
  6994. "extra": {
  6995. "branch-alias": {
  6996. "dev-master": "1.6.x-dev"
  6997. }
  6998. },
  6999. "autoload": {
  7000. "psr-0": {
  7001. "org\\bovigo\\vfs\\": "src/main/php"
  7002. }
  7003. },
  7004. "notification-url": "https://packagist.org/downloads/",
  7005. "license": [
  7006. "BSD-3-Clause"
  7007. ],
  7008. "authors": [
  7009. {
  7010. "name": "Frank Kleine",
  7011. "homepage": "http://frankkleine.de/",
  7012. "role": "Developer"
  7013. }
  7014. ],
  7015. "description": "Virtual file system to mock the real file system in unit tests.",
  7016. "homepage": "http://vfs.bovigo.org/",
  7017. "time": "2019-10-30T15:31:00+00:00"
  7018. },
  7019. {
  7020. "name": "myclabs/deep-copy",
  7021. "version": "1.7.0",
  7022. "source": {
  7023. "type": "git",
  7024. "url": "https://github.com/myclabs/DeepCopy.git",
  7025. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  7026. },
  7027. "dist": {
  7028. "type": "zip",
  7029. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7030. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7031. "shasum": ""
  7032. },
  7033. "require": {
  7034. "php": "^5.6 || ^7.0"
  7035. },
  7036. "require-dev": {
  7037. "doctrine/collections": "^1.0",
  7038. "doctrine/common": "^2.6",
  7039. "phpunit/phpunit": "^4.1"
  7040. },
  7041. "type": "library",
  7042. "autoload": {
  7043. "psr-4": {
  7044. "DeepCopy\\": "src/DeepCopy/"
  7045. },
  7046. "files": [
  7047. "src/DeepCopy/deep_copy.php"
  7048. ]
  7049. },
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "MIT"
  7053. ],
  7054. "description": "Create deep copies (clones) of your objects",
  7055. "keywords": [
  7056. "clone",
  7057. "copy",
  7058. "duplicate",
  7059. "object",
  7060. "object graph"
  7061. ],
  7062. "time": "2017-10-19T19:58:43+00:00"
  7063. },
  7064. {
  7065. "name": "nikic/php-parser",
  7066. "version": "v4.4.0",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://github.com/nikic/PHP-Parser.git",
  7070. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7075. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7076. "shasum": ""
  7077. },
  7078. "require": {
  7079. "ext-tokenizer": "*",
  7080. "php": ">=7.0"
  7081. },
  7082. "require-dev": {
  7083. "ircmaxell/php-yacc": "0.0.5",
  7084. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7085. },
  7086. "bin": [
  7087. "bin/php-parse"
  7088. ],
  7089. "type": "library",
  7090. "extra": {
  7091. "branch-alias": {
  7092. "dev-master": "4.3-dev"
  7093. }
  7094. },
  7095. "autoload": {
  7096. "psr-4": {
  7097. "PhpParser\\": "lib/PhpParser"
  7098. }
  7099. },
  7100. "notification-url": "https://packagist.org/downloads/",
  7101. "license": [
  7102. "BSD-3-Clause"
  7103. ],
  7104. "authors": [
  7105. {
  7106. "name": "Nikita Popov"
  7107. }
  7108. ],
  7109. "description": "A PHP parser written in PHP",
  7110. "keywords": [
  7111. "parser",
  7112. "php"
  7113. ],
  7114. "time": "2020-04-10T16:34:50+00:00"
  7115. },
  7116. {
  7117. "name": "oomphinc/composer-installers-extender",
  7118. "version": "v1.1.2",
  7119. "source": {
  7120. "type": "git",
  7121. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  7122. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  7123. },
  7124. "dist": {
  7125. "type": "zip",
  7126. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7127. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7128. "shasum": ""
  7129. },
  7130. "require": {
  7131. "composer-plugin-api": "^1.0",
  7132. "composer/installers": "^1.0"
  7133. },
  7134. "type": "composer-plugin",
  7135. "extra": {
  7136. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  7137. },
  7138. "autoload": {
  7139. "psr-4": {
  7140. "OomphInc\\ComposerInstallersExtender\\": "src/"
  7141. }
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "license": [
  7145. "MIT"
  7146. ],
  7147. "authors": [
  7148. {
  7149. "name": "Stephen Beemsterboer",
  7150. "email": "stephen@oomphinc.com",
  7151. "homepage": "https://github.com/balbuf"
  7152. }
  7153. ],
  7154. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  7155. "homepage": "http://www.oomphinc.com/",
  7156. "time": "2017-03-31T16:57:39+00:00"
  7157. },
  7158. {
  7159. "name": "paragonie/random_compat",
  7160. "version": "v9.99.99",
  7161. "source": {
  7162. "type": "git",
  7163. "url": "https://github.com/paragonie/random_compat.git",
  7164. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7165. },
  7166. "dist": {
  7167. "type": "zip",
  7168. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7169. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7170. "shasum": ""
  7171. },
  7172. "require": {
  7173. "php": "^7"
  7174. },
  7175. "require-dev": {
  7176. "phpunit/phpunit": "4.*|5.*",
  7177. "vimeo/psalm": "^1"
  7178. },
  7179. "suggest": {
  7180. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7181. },
  7182. "type": "library",
  7183. "notification-url": "https://packagist.org/downloads/",
  7184. "license": [
  7185. "MIT"
  7186. ],
  7187. "authors": [
  7188. {
  7189. "name": "Paragon Initiative Enterprises",
  7190. "email": "security@paragonie.com",
  7191. "homepage": "https://paragonie.com"
  7192. }
  7193. ],
  7194. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7195. "keywords": [
  7196. "csprng",
  7197. "polyfill",
  7198. "pseudorandom",
  7199. "random"
  7200. ],
  7201. "time": "2018-07-02T15:55:56+00:00"
  7202. },
  7203. {
  7204. "name": "pear/archive_tar",
  7205. "version": "1.4.9",
  7206. "source": {
  7207. "type": "git",
  7208. "url": "https://github.com/pear/Archive_Tar.git",
  7209. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  7210. },
  7211. "dist": {
  7212. "type": "zip",
  7213. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  7214. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  7215. "shasum": ""
  7216. },
  7217. "require": {
  7218. "pear/pear-core-minimal": "^1.10.0alpha2",
  7219. "php": ">=5.2.0"
  7220. },
  7221. "require-dev": {
  7222. "phpunit/phpunit": "*"
  7223. },
  7224. "suggest": {
  7225. "ext-bz2": "Bz2 compression support.",
  7226. "ext-xz": "Lzma2 compression support.",
  7227. "ext-zlib": "Gzip compression support."
  7228. },
  7229. "type": "library",
  7230. "extra": {
  7231. "branch-alias": {
  7232. "dev-master": "1.4.x-dev"
  7233. }
  7234. },
  7235. "autoload": {
  7236. "psr-0": {
  7237. "Archive_Tar": ""
  7238. }
  7239. },
  7240. "notification-url": "https://packagist.org/downloads/",
  7241. "include-path": [
  7242. "./"
  7243. ],
  7244. "license": [
  7245. "BSD-3-Clause"
  7246. ],
  7247. "authors": [
  7248. {
  7249. "name": "Vincent Blavet",
  7250. "email": "vincent@phpconcept.net"
  7251. },
  7252. {
  7253. "name": "Greg Beaver",
  7254. "email": "greg@chiaraquartet.net"
  7255. },
  7256. {
  7257. "name": "Michiel Rook",
  7258. "email": "mrook@php.net"
  7259. }
  7260. ],
  7261. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7262. "homepage": "https://github.com/pear/Archive_Tar",
  7263. "keywords": [
  7264. "archive",
  7265. "tar"
  7266. ],
  7267. "time": "2019-12-04T10:17:28+00:00"
  7268. },
  7269. {
  7270. "name": "pear/console_getopt",
  7271. "version": "v1.4.3",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/pear/Console_Getopt.git",
  7275. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7280. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7281. "shasum": ""
  7282. },
  7283. "type": "library",
  7284. "autoload": {
  7285. "psr-0": {
  7286. "Console": "./"
  7287. }
  7288. },
  7289. "notification-url": "https://packagist.org/downloads/",
  7290. "include-path": [
  7291. "./"
  7292. ],
  7293. "license": [
  7294. "BSD-2-Clause"
  7295. ],
  7296. "authors": [
  7297. {
  7298. "name": "Andrei Zmievski",
  7299. "email": "andrei@php.net",
  7300. "role": "Lead"
  7301. },
  7302. {
  7303. "name": "Stig Bakken",
  7304. "email": "stig@php.net",
  7305. "role": "Developer"
  7306. },
  7307. {
  7308. "name": "Greg Beaver",
  7309. "email": "cellog@php.net",
  7310. "role": "Helper"
  7311. }
  7312. ],
  7313. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7314. "time": "2019-11-20T18:27:48+00:00"
  7315. },
  7316. {
  7317. "name": "pear/pear-core-minimal",
  7318. "version": "v1.10.10",
  7319. "source": {
  7320. "type": "git",
  7321. "url": "https://github.com/pear/pear-core-minimal.git",
  7322. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7323. },
  7324. "dist": {
  7325. "type": "zip",
  7326. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7327. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7328. "shasum": ""
  7329. },
  7330. "require": {
  7331. "pear/console_getopt": "~1.4",
  7332. "pear/pear_exception": "~1.0"
  7333. },
  7334. "replace": {
  7335. "rsky/pear-core-min": "self.version"
  7336. },
  7337. "type": "library",
  7338. "autoload": {
  7339. "psr-0": {
  7340. "": "src/"
  7341. }
  7342. },
  7343. "notification-url": "https://packagist.org/downloads/",
  7344. "include-path": [
  7345. "src/"
  7346. ],
  7347. "license": [
  7348. "BSD-3-Clause"
  7349. ],
  7350. "authors": [
  7351. {
  7352. "name": "Christian Weiske",
  7353. "email": "cweiske@php.net",
  7354. "role": "Lead"
  7355. }
  7356. ],
  7357. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7358. "time": "2019-11-19T19:00:24+00:00"
  7359. },
  7360. {
  7361. "name": "pear/pear_exception",
  7362. "version": "v1.0.1",
  7363. "source": {
  7364. "type": "git",
  7365. "url": "https://github.com/pear/PEAR_Exception.git",
  7366. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7367. },
  7368. "dist": {
  7369. "type": "zip",
  7370. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7371. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7372. "shasum": ""
  7373. },
  7374. "require": {
  7375. "php": ">=4.4.0"
  7376. },
  7377. "require-dev": {
  7378. "phpunit/phpunit": "*"
  7379. },
  7380. "type": "class",
  7381. "extra": {
  7382. "branch-alias": {
  7383. "dev-master": "1.0.x-dev"
  7384. }
  7385. },
  7386. "autoload": {
  7387. "classmap": [
  7388. "PEAR/"
  7389. ]
  7390. },
  7391. "notification-url": "https://packagist.org/downloads/",
  7392. "include-path": [
  7393. "."
  7394. ],
  7395. "license": [
  7396. "BSD-2-Clause"
  7397. ],
  7398. "authors": [
  7399. {
  7400. "name": "Helgi Thormar",
  7401. "email": "dufuz@php.net"
  7402. },
  7403. {
  7404. "name": "Greg Beaver",
  7405. "email": "cellog@php.net"
  7406. }
  7407. ],
  7408. "description": "The PEAR Exception base class.",
  7409. "homepage": "https://github.com/pear/PEAR_Exception",
  7410. "keywords": [
  7411. "exception"
  7412. ],
  7413. "time": "2019-12-10T10:24:42+00:00"
  7414. },
  7415. {
  7416. "name": "phar-io/manifest",
  7417. "version": "1.0.1",
  7418. "source": {
  7419. "type": "git",
  7420. "url": "https://github.com/phar-io/manifest.git",
  7421. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  7422. },
  7423. "dist": {
  7424. "type": "zip",
  7425. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7426. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7427. "shasum": ""
  7428. },
  7429. "require": {
  7430. "ext-dom": "*",
  7431. "ext-phar": "*",
  7432. "phar-io/version": "^1.0.1",
  7433. "php": "^5.6 || ^7.0"
  7434. },
  7435. "type": "library",
  7436. "extra": {
  7437. "branch-alias": {
  7438. "dev-master": "1.0.x-dev"
  7439. }
  7440. },
  7441. "autoload": {
  7442. "classmap": [
  7443. "src/"
  7444. ]
  7445. },
  7446. "notification-url": "https://packagist.org/downloads/",
  7447. "license": [
  7448. "BSD-3-Clause"
  7449. ],
  7450. "authors": [
  7451. {
  7452. "name": "Arne Blankerts",
  7453. "email": "arne@blankerts.de",
  7454. "role": "Developer"
  7455. },
  7456. {
  7457. "name": "Sebastian Heuer",
  7458. "email": "sebastian@phpeople.de",
  7459. "role": "Developer"
  7460. },
  7461. {
  7462. "name": "Sebastian Bergmann",
  7463. "email": "sebastian@phpunit.de",
  7464. "role": "Developer"
  7465. }
  7466. ],
  7467. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7468. "time": "2017-03-05T18:14:27+00:00"
  7469. },
  7470. {
  7471. "name": "phar-io/version",
  7472. "version": "1.0.1",
  7473. "source": {
  7474. "type": "git",
  7475. "url": "https://github.com/phar-io/version.git",
  7476. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  7477. },
  7478. "dist": {
  7479. "type": "zip",
  7480. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  7481. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  7482. "shasum": ""
  7483. },
  7484. "require": {
  7485. "php": "^5.6 || ^7.0"
  7486. },
  7487. "type": "library",
  7488. "autoload": {
  7489. "classmap": [
  7490. "src/"
  7491. ]
  7492. },
  7493. "notification-url": "https://packagist.org/downloads/",
  7494. "license": [
  7495. "BSD-3-Clause"
  7496. ],
  7497. "authors": [
  7498. {
  7499. "name": "Arne Blankerts",
  7500. "email": "arne@blankerts.de",
  7501. "role": "Developer"
  7502. },
  7503. {
  7504. "name": "Sebastian Heuer",
  7505. "email": "sebastian@phpeople.de",
  7506. "role": "Developer"
  7507. },
  7508. {
  7509. "name": "Sebastian Bergmann",
  7510. "email": "sebastian@phpunit.de",
  7511. "role": "Developer"
  7512. }
  7513. ],
  7514. "description": "Library for handling version information and constraints",
  7515. "time": "2017-03-05T17:38:23+00:00"
  7516. },
  7517. {
  7518. "name": "phpdocumentor/reflection-common",
  7519. "version": "1.0.1",
  7520. "source": {
  7521. "type": "git",
  7522. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7523. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  7524. },
  7525. "dist": {
  7526. "type": "zip",
  7527. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7528. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7529. "shasum": ""
  7530. },
  7531. "require": {
  7532. "php": ">=5.5"
  7533. },
  7534. "require-dev": {
  7535. "phpunit/phpunit": "^4.6"
  7536. },
  7537. "type": "library",
  7538. "extra": {
  7539. "branch-alias": {
  7540. "dev-master": "1.0.x-dev"
  7541. }
  7542. },
  7543. "autoload": {
  7544. "psr-4": {
  7545. "phpDocumentor\\Reflection\\": [
  7546. "src"
  7547. ]
  7548. }
  7549. },
  7550. "notification-url": "https://packagist.org/downloads/",
  7551. "license": [
  7552. "MIT"
  7553. ],
  7554. "authors": [
  7555. {
  7556. "name": "Jaap van Otterdijk",
  7557. "email": "opensource@ijaap.nl"
  7558. }
  7559. ],
  7560. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7561. "homepage": "http://www.phpdoc.org",
  7562. "keywords": [
  7563. "FQSEN",
  7564. "phpDocumentor",
  7565. "phpdoc",
  7566. "reflection",
  7567. "static analysis"
  7568. ],
  7569. "time": "2017-09-11T18:02:19+00:00"
  7570. },
  7571. {
  7572. "name": "phpdocumentor/reflection-docblock",
  7573. "version": "4.3.4",
  7574. "source": {
  7575. "type": "git",
  7576. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7577. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  7578. },
  7579. "dist": {
  7580. "type": "zip",
  7581. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  7582. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  7583. "shasum": ""
  7584. },
  7585. "require": {
  7586. "php": "^7.0",
  7587. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  7588. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  7589. "webmozart/assert": "^1.0"
  7590. },
  7591. "require-dev": {
  7592. "doctrine/instantiator": "^1.0.5",
  7593. "mockery/mockery": "^1.0",
  7594. "phpdocumentor/type-resolver": "0.4.*",
  7595. "phpunit/phpunit": "^6.4"
  7596. },
  7597. "type": "library",
  7598. "extra": {
  7599. "branch-alias": {
  7600. "dev-master": "4.x-dev"
  7601. }
  7602. },
  7603. "autoload": {
  7604. "psr-4": {
  7605. "phpDocumentor\\Reflection\\": [
  7606. "src/"
  7607. ]
  7608. }
  7609. },
  7610. "notification-url": "https://packagist.org/downloads/",
  7611. "license": [
  7612. "MIT"
  7613. ],
  7614. "authors": [
  7615. {
  7616. "name": "Mike van Riel",
  7617. "email": "me@mikevanriel.com"
  7618. }
  7619. ],
  7620. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7621. "time": "2019-12-28T18:55:12+00:00"
  7622. },
  7623. {
  7624. "name": "phpdocumentor/type-resolver",
  7625. "version": "0.5.1",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7629. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  7634. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  7635. "shasum": ""
  7636. },
  7637. "require": {
  7638. "php": "^7.0",
  7639. "phpdocumentor/reflection-common": "^1.0"
  7640. },
  7641. "require-dev": {
  7642. "mockery/mockery": "^1.0",
  7643. "phpunit/phpunit": "^6.4"
  7644. },
  7645. "type": "library",
  7646. "extra": {
  7647. "branch-alias": {
  7648. "dev-master": "1.0.x-dev"
  7649. }
  7650. },
  7651. "autoload": {
  7652. "psr-4": {
  7653. "phpDocumentor\\Reflection\\": "src"
  7654. }
  7655. },
  7656. "notification-url": "https://packagist.org/downloads/",
  7657. "license": [
  7658. "MIT"
  7659. ],
  7660. "authors": [
  7661. {
  7662. "name": "Mike van Riel",
  7663. "email": "me@mikevanriel.com"
  7664. }
  7665. ],
  7666. "time": "2017-12-30T13:23:38+00:00"
  7667. },
  7668. {
  7669. "name": "phpspec/prophecy",
  7670. "version": "v1.10.3",
  7671. "source": {
  7672. "type": "git",
  7673. "url": "https://github.com/phpspec/prophecy.git",
  7674. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  7675. },
  7676. "dist": {
  7677. "type": "zip",
  7678. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  7679. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  7680. "shasum": ""
  7681. },
  7682. "require": {
  7683. "doctrine/instantiator": "^1.0.2",
  7684. "php": "^5.3|^7.0",
  7685. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7686. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  7687. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  7688. },
  7689. "require-dev": {
  7690. "phpspec/phpspec": "^2.5 || ^3.2",
  7691. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7692. },
  7693. "type": "library",
  7694. "extra": {
  7695. "branch-alias": {
  7696. "dev-master": "1.10.x-dev"
  7697. }
  7698. },
  7699. "autoload": {
  7700. "psr-4": {
  7701. "Prophecy\\": "src/Prophecy"
  7702. }
  7703. },
  7704. "notification-url": "https://packagist.org/downloads/",
  7705. "license": [
  7706. "MIT"
  7707. ],
  7708. "authors": [
  7709. {
  7710. "name": "Konstantin Kudryashov",
  7711. "email": "ever.zet@gmail.com",
  7712. "homepage": "http://everzet.com"
  7713. },
  7714. {
  7715. "name": "Marcello Duarte",
  7716. "email": "marcello.duarte@gmail.com"
  7717. }
  7718. ],
  7719. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7720. "homepage": "https://github.com/phpspec/prophecy",
  7721. "keywords": [
  7722. "Double",
  7723. "Dummy",
  7724. "fake",
  7725. "mock",
  7726. "spy",
  7727. "stub"
  7728. ],
  7729. "time": "2020-03-05T15:02:03+00:00"
  7730. },
  7731. {
  7732. "name": "phpunit/php-code-coverage",
  7733. "version": "5.3.2",
  7734. "source": {
  7735. "type": "git",
  7736. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7737. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7738. },
  7739. "dist": {
  7740. "type": "zip",
  7741. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7742. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7743. "shasum": ""
  7744. },
  7745. "require": {
  7746. "ext-dom": "*",
  7747. "ext-xmlwriter": "*",
  7748. "php": "^7.0",
  7749. "phpunit/php-file-iterator": "^1.4.2",
  7750. "phpunit/php-text-template": "^1.2.1",
  7751. "phpunit/php-token-stream": "^2.0.1",
  7752. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7753. "sebastian/environment": "^3.0",
  7754. "sebastian/version": "^2.0.1",
  7755. "theseer/tokenizer": "^1.1"
  7756. },
  7757. "require-dev": {
  7758. "phpunit/phpunit": "^6.0"
  7759. },
  7760. "suggest": {
  7761. "ext-xdebug": "^2.5.5"
  7762. },
  7763. "type": "library",
  7764. "extra": {
  7765. "branch-alias": {
  7766. "dev-master": "5.3.x-dev"
  7767. }
  7768. },
  7769. "autoload": {
  7770. "classmap": [
  7771. "src/"
  7772. ]
  7773. },
  7774. "notification-url": "https://packagist.org/downloads/",
  7775. "license": [
  7776. "BSD-3-Clause"
  7777. ],
  7778. "authors": [
  7779. {
  7780. "name": "Sebastian Bergmann",
  7781. "email": "sebastian@phpunit.de",
  7782. "role": "lead"
  7783. }
  7784. ],
  7785. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7786. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7787. "keywords": [
  7788. "coverage",
  7789. "testing",
  7790. "xunit"
  7791. ],
  7792. "time": "2018-04-06T15:36:58+00:00"
  7793. },
  7794. {
  7795. "name": "phpunit/php-file-iterator",
  7796. "version": "1.4.5",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7800. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7805. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "php": ">=5.3.3"
  7810. },
  7811. "type": "library",
  7812. "extra": {
  7813. "branch-alias": {
  7814. "dev-master": "1.4.x-dev"
  7815. }
  7816. },
  7817. "autoload": {
  7818. "classmap": [
  7819. "src/"
  7820. ]
  7821. },
  7822. "notification-url": "https://packagist.org/downloads/",
  7823. "license": [
  7824. "BSD-3-Clause"
  7825. ],
  7826. "authors": [
  7827. {
  7828. "name": "Sebastian Bergmann",
  7829. "email": "sb@sebastian-bergmann.de",
  7830. "role": "lead"
  7831. }
  7832. ],
  7833. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7834. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7835. "keywords": [
  7836. "filesystem",
  7837. "iterator"
  7838. ],
  7839. "time": "2017-11-27T13:52:08+00:00"
  7840. },
  7841. {
  7842. "name": "phpunit/php-text-template",
  7843. "version": "1.2.1",
  7844. "source": {
  7845. "type": "git",
  7846. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7847. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7848. },
  7849. "dist": {
  7850. "type": "zip",
  7851. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7852. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7853. "shasum": ""
  7854. },
  7855. "require": {
  7856. "php": ">=5.3.3"
  7857. },
  7858. "type": "library",
  7859. "autoload": {
  7860. "classmap": [
  7861. "src/"
  7862. ]
  7863. },
  7864. "notification-url": "https://packagist.org/downloads/",
  7865. "license": [
  7866. "BSD-3-Clause"
  7867. ],
  7868. "authors": [
  7869. {
  7870. "name": "Sebastian Bergmann",
  7871. "email": "sebastian@phpunit.de",
  7872. "role": "lead"
  7873. }
  7874. ],
  7875. "description": "Simple template engine.",
  7876. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7877. "keywords": [
  7878. "template"
  7879. ],
  7880. "time": "2015-06-21T13:50:34+00:00"
  7881. },
  7882. {
  7883. "name": "phpunit/php-timer",
  7884. "version": "1.0.9",
  7885. "source": {
  7886. "type": "git",
  7887. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7888. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  7889. },
  7890. "dist": {
  7891. "type": "zip",
  7892. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7893. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7894. "shasum": ""
  7895. },
  7896. "require": {
  7897. "php": "^5.3.3 || ^7.0"
  7898. },
  7899. "require-dev": {
  7900. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7901. },
  7902. "type": "library",
  7903. "extra": {
  7904. "branch-alias": {
  7905. "dev-master": "1.0-dev"
  7906. }
  7907. },
  7908. "autoload": {
  7909. "classmap": [
  7910. "src/"
  7911. ]
  7912. },
  7913. "notification-url": "https://packagist.org/downloads/",
  7914. "license": [
  7915. "BSD-3-Clause"
  7916. ],
  7917. "authors": [
  7918. {
  7919. "name": "Sebastian Bergmann",
  7920. "email": "sb@sebastian-bergmann.de",
  7921. "role": "lead"
  7922. }
  7923. ],
  7924. "description": "Utility class for timing",
  7925. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7926. "keywords": [
  7927. "timer"
  7928. ],
  7929. "time": "2017-02-26T11:10:40+00:00"
  7930. },
  7931. {
  7932. "name": "phpunit/php-token-stream",
  7933. "version": "2.0.2",
  7934. "source": {
  7935. "type": "git",
  7936. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7937. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  7938. },
  7939. "dist": {
  7940. "type": "zip",
  7941. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  7942. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  7943. "shasum": ""
  7944. },
  7945. "require": {
  7946. "ext-tokenizer": "*",
  7947. "php": "^7.0"
  7948. },
  7949. "require-dev": {
  7950. "phpunit/phpunit": "^6.2.4"
  7951. },
  7952. "type": "library",
  7953. "extra": {
  7954. "branch-alias": {
  7955. "dev-master": "2.0-dev"
  7956. }
  7957. },
  7958. "autoload": {
  7959. "classmap": [
  7960. "src/"
  7961. ]
  7962. },
  7963. "notification-url": "https://packagist.org/downloads/",
  7964. "license": [
  7965. "BSD-3-Clause"
  7966. ],
  7967. "authors": [
  7968. {
  7969. "name": "Sebastian Bergmann",
  7970. "email": "sebastian@phpunit.de"
  7971. }
  7972. ],
  7973. "description": "Wrapper around PHP's tokenizer extension.",
  7974. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7975. "keywords": [
  7976. "tokenizer"
  7977. ],
  7978. "time": "2017-11-27T05:48:46+00:00"
  7979. },
  7980. {
  7981. "name": "phpunit/phpunit",
  7982. "version": "6.5.14",
  7983. "source": {
  7984. "type": "git",
  7985. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7986. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  7987. },
  7988. "dist": {
  7989. "type": "zip",
  7990. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7991. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7992. "shasum": ""
  7993. },
  7994. "require": {
  7995. "ext-dom": "*",
  7996. "ext-json": "*",
  7997. "ext-libxml": "*",
  7998. "ext-mbstring": "*",
  7999. "ext-xml": "*",
  8000. "myclabs/deep-copy": "^1.6.1",
  8001. "phar-io/manifest": "^1.0.1",
  8002. "phar-io/version": "^1.0",
  8003. "php": "^7.0",
  8004. "phpspec/prophecy": "^1.7",
  8005. "phpunit/php-code-coverage": "^5.3",
  8006. "phpunit/php-file-iterator": "^1.4.3",
  8007. "phpunit/php-text-template": "^1.2.1",
  8008. "phpunit/php-timer": "^1.0.9",
  8009. "phpunit/phpunit-mock-objects": "^5.0.9",
  8010. "sebastian/comparator": "^2.1",
  8011. "sebastian/diff": "^2.0",
  8012. "sebastian/environment": "^3.1",
  8013. "sebastian/exporter": "^3.1",
  8014. "sebastian/global-state": "^2.0",
  8015. "sebastian/object-enumerator": "^3.0.3",
  8016. "sebastian/resource-operations": "^1.0",
  8017. "sebastian/version": "^2.0.1"
  8018. },
  8019. "conflict": {
  8020. "phpdocumentor/reflection-docblock": "3.0.2",
  8021. "phpunit/dbunit": "<3.0"
  8022. },
  8023. "require-dev": {
  8024. "ext-pdo": "*"
  8025. },
  8026. "suggest": {
  8027. "ext-xdebug": "*",
  8028. "phpunit/php-invoker": "^1.1"
  8029. },
  8030. "bin": [
  8031. "phpunit"
  8032. ],
  8033. "type": "library",
  8034. "extra": {
  8035. "branch-alias": {
  8036. "dev-master": "6.5.x-dev"
  8037. }
  8038. },
  8039. "autoload": {
  8040. "classmap": [
  8041. "src/"
  8042. ]
  8043. },
  8044. "notification-url": "https://packagist.org/downloads/",
  8045. "license": [
  8046. "BSD-3-Clause"
  8047. ],
  8048. "authors": [
  8049. {
  8050. "name": "Sebastian Bergmann",
  8051. "email": "sebastian@phpunit.de",
  8052. "role": "lead"
  8053. }
  8054. ],
  8055. "description": "The PHP Unit Testing framework.",
  8056. "homepage": "https://phpunit.de/",
  8057. "keywords": [
  8058. "phpunit",
  8059. "testing",
  8060. "xunit"
  8061. ],
  8062. "time": "2019-02-01T05:22:47+00:00"
  8063. },
  8064. {
  8065. "name": "phpunit/phpunit-mock-objects",
  8066. "version": "5.0.10",
  8067. "source": {
  8068. "type": "git",
  8069. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  8070. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  8071. },
  8072. "dist": {
  8073. "type": "zip",
  8074. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8075. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8076. "shasum": ""
  8077. },
  8078. "require": {
  8079. "doctrine/instantiator": "^1.0.5",
  8080. "php": "^7.0",
  8081. "phpunit/php-text-template": "^1.2.1",
  8082. "sebastian/exporter": "^3.1"
  8083. },
  8084. "conflict": {
  8085. "phpunit/phpunit": "<6.0"
  8086. },
  8087. "require-dev": {
  8088. "phpunit/phpunit": "^6.5.11"
  8089. },
  8090. "suggest": {
  8091. "ext-soap": "*"
  8092. },
  8093. "type": "library",
  8094. "extra": {
  8095. "branch-alias": {
  8096. "dev-master": "5.0.x-dev"
  8097. }
  8098. },
  8099. "autoload": {
  8100. "classmap": [
  8101. "src/"
  8102. ]
  8103. },
  8104. "notification-url": "https://packagist.org/downloads/",
  8105. "license": [
  8106. "BSD-3-Clause"
  8107. ],
  8108. "authors": [
  8109. {
  8110. "name": "Sebastian Bergmann",
  8111. "email": "sebastian@phpunit.de",
  8112. "role": "lead"
  8113. }
  8114. ],
  8115. "description": "Mock Object library for PHPUnit",
  8116. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  8117. "keywords": [
  8118. "mock",
  8119. "xunit"
  8120. ],
  8121. "abandoned": true,
  8122. "time": "2018-08-09T05:50:03+00:00"
  8123. },
  8124. {
  8125. "name": "psr/container",
  8126. "version": "1.0.0",
  8127. "source": {
  8128. "type": "git",
  8129. "url": "https://github.com/php-fig/container.git",
  8130. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8131. },
  8132. "dist": {
  8133. "type": "zip",
  8134. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8135. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8136. "shasum": ""
  8137. },
  8138. "require": {
  8139. "php": ">=5.3.0"
  8140. },
  8141. "type": "library",
  8142. "extra": {
  8143. "branch-alias": {
  8144. "dev-master": "1.0.x-dev"
  8145. }
  8146. },
  8147. "autoload": {
  8148. "psr-4": {
  8149. "Psr\\Container\\": "src/"
  8150. }
  8151. },
  8152. "notification-url": "https://packagist.org/downloads/",
  8153. "license": [
  8154. "MIT"
  8155. ],
  8156. "authors": [
  8157. {
  8158. "name": "PHP-FIG",
  8159. "homepage": "http://www.php-fig.org/"
  8160. }
  8161. ],
  8162. "description": "Common Container Interface (PHP FIG PSR-11)",
  8163. "homepage": "https://github.com/php-fig/container",
  8164. "keywords": [
  8165. "PSR-11",
  8166. "container",
  8167. "container-interface",
  8168. "container-interop",
  8169. "psr"
  8170. ],
  8171. "time": "2017-02-14T16:28:37+00:00"
  8172. },
  8173. {
  8174. "name": "psr/http-message",
  8175. "version": "1.0.1",
  8176. "source": {
  8177. "type": "git",
  8178. "url": "https://github.com/php-fig/http-message.git",
  8179. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8180. },
  8181. "dist": {
  8182. "type": "zip",
  8183. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8184. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8185. "shasum": ""
  8186. },
  8187. "require": {
  8188. "php": ">=5.3.0"
  8189. },
  8190. "type": "library",
  8191. "extra": {
  8192. "branch-alias": {
  8193. "dev-master": "1.0.x-dev"
  8194. }
  8195. },
  8196. "autoload": {
  8197. "psr-4": {
  8198. "Psr\\Http\\Message\\": "src/"
  8199. }
  8200. },
  8201. "notification-url": "https://packagist.org/downloads/",
  8202. "license": [
  8203. "MIT"
  8204. ],
  8205. "authors": [
  8206. {
  8207. "name": "PHP-FIG",
  8208. "homepage": "http://www.php-fig.org/"
  8209. }
  8210. ],
  8211. "description": "Common interface for HTTP messages",
  8212. "homepage": "https://github.com/php-fig/http-message",
  8213. "keywords": [
  8214. "http",
  8215. "http-message",
  8216. "psr",
  8217. "psr-7",
  8218. "request",
  8219. "response"
  8220. ],
  8221. "time": "2016-08-06T14:39:51+00:00"
  8222. },
  8223. {
  8224. "name": "psr/log",
  8225. "version": "1.1.3",
  8226. "source": {
  8227. "type": "git",
  8228. "url": "https://github.com/php-fig/log.git",
  8229. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  8230. },
  8231. "dist": {
  8232. "type": "zip",
  8233. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  8234. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  8235. "shasum": ""
  8236. },
  8237. "require": {
  8238. "php": ">=5.3.0"
  8239. },
  8240. "type": "library",
  8241. "extra": {
  8242. "branch-alias": {
  8243. "dev-master": "1.1.x-dev"
  8244. }
  8245. },
  8246. "autoload": {
  8247. "psr-4": {
  8248. "Psr\\Log\\": "Psr/Log/"
  8249. }
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "MIT"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "PHP-FIG",
  8258. "homepage": "http://www.php-fig.org/"
  8259. }
  8260. ],
  8261. "description": "Common interface for logging libraries",
  8262. "homepage": "https://github.com/php-fig/log",
  8263. "keywords": [
  8264. "log",
  8265. "psr",
  8266. "psr-3"
  8267. ],
  8268. "time": "2020-03-23T09:12:05+00:00"
  8269. },
  8270. {
  8271. "name": "psy/psysh",
  8272. "version": "v0.10.4",
  8273. "source": {
  8274. "type": "git",
  8275. "url": "https://github.com/bobthecow/psysh.git",
  8276. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  8277. },
  8278. "dist": {
  8279. "type": "zip",
  8280. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  8281. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  8282. "shasum": ""
  8283. },
  8284. "require": {
  8285. "dnoegel/php-xdg-base-dir": "0.1.*",
  8286. "ext-json": "*",
  8287. "ext-tokenizer": "*",
  8288. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  8289. "php": "^8.0 || ^7.0 || ^5.5.9",
  8290. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  8291. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  8292. },
  8293. "require-dev": {
  8294. "bamarni/composer-bin-plugin": "^1.2",
  8295. "hoa/console": "3.17.*"
  8296. },
  8297. "suggest": {
  8298. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8299. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8300. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8301. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8302. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8303. },
  8304. "bin": [
  8305. "bin/psysh"
  8306. ],
  8307. "type": "library",
  8308. "extra": {
  8309. "branch-alias": {
  8310. "dev-master": "0.10.x-dev"
  8311. }
  8312. },
  8313. "autoload": {
  8314. "files": [
  8315. "src/functions.php"
  8316. ],
  8317. "psr-4": {
  8318. "Psy\\": "src/"
  8319. }
  8320. },
  8321. "notification-url": "https://packagist.org/downloads/",
  8322. "license": [
  8323. "MIT"
  8324. ],
  8325. "authors": [
  8326. {
  8327. "name": "Justin Hileman",
  8328. "email": "justin@justinhileman.info",
  8329. "homepage": "http://justinhileman.com"
  8330. }
  8331. ],
  8332. "description": "An interactive shell for modern PHP.",
  8333. "homepage": "http://psysh.org",
  8334. "keywords": [
  8335. "REPL",
  8336. "console",
  8337. "interactive",
  8338. "shell"
  8339. ],
  8340. "time": "2020-05-03T19:32:03+00:00"
  8341. },
  8342. {
  8343. "name": "ralouphie/getallheaders",
  8344. "version": "3.0.3",
  8345. "source": {
  8346. "type": "git",
  8347. "url": "https://github.com/ralouphie/getallheaders.git",
  8348. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8349. },
  8350. "dist": {
  8351. "type": "zip",
  8352. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8353. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8354. "shasum": ""
  8355. },
  8356. "require": {
  8357. "php": ">=5.6"
  8358. },
  8359. "require-dev": {
  8360. "php-coveralls/php-coveralls": "^2.1",
  8361. "phpunit/phpunit": "^5 || ^6.5"
  8362. },
  8363. "type": "library",
  8364. "autoload": {
  8365. "files": [
  8366. "src/getallheaders.php"
  8367. ]
  8368. },
  8369. "notification-url": "https://packagist.org/downloads/",
  8370. "license": [
  8371. "MIT"
  8372. ],
  8373. "authors": [
  8374. {
  8375. "name": "Ralph Khattar",
  8376. "email": "ralph.khattar@gmail.com"
  8377. }
  8378. ],
  8379. "description": "A polyfill for getallheaders.",
  8380. "time": "2019-03-08T08:55:37+00:00"
  8381. },
  8382. {
  8383. "name": "sebastian/code-unit-reverse-lookup",
  8384. "version": "1.0.1",
  8385. "source": {
  8386. "type": "git",
  8387. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8388. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8389. },
  8390. "dist": {
  8391. "type": "zip",
  8392. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8393. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8394. "shasum": ""
  8395. },
  8396. "require": {
  8397. "php": "^5.6 || ^7.0"
  8398. },
  8399. "require-dev": {
  8400. "phpunit/phpunit": "^5.7 || ^6.0"
  8401. },
  8402. "type": "library",
  8403. "extra": {
  8404. "branch-alias": {
  8405. "dev-master": "1.0.x-dev"
  8406. }
  8407. },
  8408. "autoload": {
  8409. "classmap": [
  8410. "src/"
  8411. ]
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "BSD-3-Clause"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Sebastian Bergmann",
  8420. "email": "sebastian@phpunit.de"
  8421. }
  8422. ],
  8423. "description": "Looks up which function or method a line of code belongs to",
  8424. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8425. "time": "2017-03-04T06:30:41+00:00"
  8426. },
  8427. {
  8428. "name": "sebastian/comparator",
  8429. "version": "2.1.3",
  8430. "source": {
  8431. "type": "git",
  8432. "url": "https://github.com/sebastianbergmann/comparator.git",
  8433. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  8434. },
  8435. "dist": {
  8436. "type": "zip",
  8437. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  8438. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  8439. "shasum": ""
  8440. },
  8441. "require": {
  8442. "php": "^7.0",
  8443. "sebastian/diff": "^2.0 || ^3.0",
  8444. "sebastian/exporter": "^3.1"
  8445. },
  8446. "require-dev": {
  8447. "phpunit/phpunit": "^6.4"
  8448. },
  8449. "type": "library",
  8450. "extra": {
  8451. "branch-alias": {
  8452. "dev-master": "2.1.x-dev"
  8453. }
  8454. },
  8455. "autoload": {
  8456. "classmap": [
  8457. "src/"
  8458. ]
  8459. },
  8460. "notification-url": "https://packagist.org/downloads/",
  8461. "license": [
  8462. "BSD-3-Clause"
  8463. ],
  8464. "authors": [
  8465. {
  8466. "name": "Jeff Welch",
  8467. "email": "whatthejeff@gmail.com"
  8468. },
  8469. {
  8470. "name": "Volker Dusch",
  8471. "email": "github@wallbash.com"
  8472. },
  8473. {
  8474. "name": "Bernhard Schussek",
  8475. "email": "bschussek@2bepublished.at"
  8476. },
  8477. {
  8478. "name": "Sebastian Bergmann",
  8479. "email": "sebastian@phpunit.de"
  8480. }
  8481. ],
  8482. "description": "Provides the functionality to compare PHP values for equality",
  8483. "homepage": "https://github.com/sebastianbergmann/comparator",
  8484. "keywords": [
  8485. "comparator",
  8486. "compare",
  8487. "equality"
  8488. ],
  8489. "time": "2018-02-01T13:46:46+00:00"
  8490. },
  8491. {
  8492. "name": "sebastian/diff",
  8493. "version": "2.0.1",
  8494. "source": {
  8495. "type": "git",
  8496. "url": "https://github.com/sebastianbergmann/diff.git",
  8497. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  8498. },
  8499. "dist": {
  8500. "type": "zip",
  8501. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8502. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8503. "shasum": ""
  8504. },
  8505. "require": {
  8506. "php": "^7.0"
  8507. },
  8508. "require-dev": {
  8509. "phpunit/phpunit": "^6.2"
  8510. },
  8511. "type": "library",
  8512. "extra": {
  8513. "branch-alias": {
  8514. "dev-master": "2.0-dev"
  8515. }
  8516. },
  8517. "autoload": {
  8518. "classmap": [
  8519. "src/"
  8520. ]
  8521. },
  8522. "notification-url": "https://packagist.org/downloads/",
  8523. "license": [
  8524. "BSD-3-Clause"
  8525. ],
  8526. "authors": [
  8527. {
  8528. "name": "Kore Nordmann",
  8529. "email": "mail@kore-nordmann.de"
  8530. },
  8531. {
  8532. "name": "Sebastian Bergmann",
  8533. "email": "sebastian@phpunit.de"
  8534. }
  8535. ],
  8536. "description": "Diff implementation",
  8537. "homepage": "https://github.com/sebastianbergmann/diff",
  8538. "keywords": [
  8539. "diff"
  8540. ],
  8541. "time": "2017-08-03T08:09:46+00:00"
  8542. },
  8543. {
  8544. "name": "sebastian/environment",
  8545. "version": "3.1.0",
  8546. "source": {
  8547. "type": "git",
  8548. "url": "https://github.com/sebastianbergmann/environment.git",
  8549. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  8550. },
  8551. "dist": {
  8552. "type": "zip",
  8553. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8554. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8555. "shasum": ""
  8556. },
  8557. "require": {
  8558. "php": "^7.0"
  8559. },
  8560. "require-dev": {
  8561. "phpunit/phpunit": "^6.1"
  8562. },
  8563. "type": "library",
  8564. "extra": {
  8565. "branch-alias": {
  8566. "dev-master": "3.1.x-dev"
  8567. }
  8568. },
  8569. "autoload": {
  8570. "classmap": [
  8571. "src/"
  8572. ]
  8573. },
  8574. "notification-url": "https://packagist.org/downloads/",
  8575. "license": [
  8576. "BSD-3-Clause"
  8577. ],
  8578. "authors": [
  8579. {
  8580. "name": "Sebastian Bergmann",
  8581. "email": "sebastian@phpunit.de"
  8582. }
  8583. ],
  8584. "description": "Provides functionality to handle HHVM/PHP environments",
  8585. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8586. "keywords": [
  8587. "Xdebug",
  8588. "environment",
  8589. "hhvm"
  8590. ],
  8591. "time": "2017-07-01T08:51:00+00:00"
  8592. },
  8593. {
  8594. "name": "sebastian/exporter",
  8595. "version": "3.1.2",
  8596. "source": {
  8597. "type": "git",
  8598. "url": "https://github.com/sebastianbergmann/exporter.git",
  8599. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8600. },
  8601. "dist": {
  8602. "type": "zip",
  8603. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8604. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8605. "shasum": ""
  8606. },
  8607. "require": {
  8608. "php": "^7.0",
  8609. "sebastian/recursion-context": "^3.0"
  8610. },
  8611. "require-dev": {
  8612. "ext-mbstring": "*",
  8613. "phpunit/phpunit": "^6.0"
  8614. },
  8615. "type": "library",
  8616. "extra": {
  8617. "branch-alias": {
  8618. "dev-master": "3.1.x-dev"
  8619. }
  8620. },
  8621. "autoload": {
  8622. "classmap": [
  8623. "src/"
  8624. ]
  8625. },
  8626. "notification-url": "https://packagist.org/downloads/",
  8627. "license": [
  8628. "BSD-3-Clause"
  8629. ],
  8630. "authors": [
  8631. {
  8632. "name": "Sebastian Bergmann",
  8633. "email": "sebastian@phpunit.de"
  8634. },
  8635. {
  8636. "name": "Jeff Welch",
  8637. "email": "whatthejeff@gmail.com"
  8638. },
  8639. {
  8640. "name": "Volker Dusch",
  8641. "email": "github@wallbash.com"
  8642. },
  8643. {
  8644. "name": "Adam Harvey",
  8645. "email": "aharvey@php.net"
  8646. },
  8647. {
  8648. "name": "Bernhard Schussek",
  8649. "email": "bschussek@gmail.com"
  8650. }
  8651. ],
  8652. "description": "Provides the functionality to export PHP variables for visualization",
  8653. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8654. "keywords": [
  8655. "export",
  8656. "exporter"
  8657. ],
  8658. "time": "2019-09-14T09:02:43+00:00"
  8659. },
  8660. {
  8661. "name": "sebastian/global-state",
  8662. "version": "2.0.0",
  8663. "source": {
  8664. "type": "git",
  8665. "url": "https://github.com/sebastianbergmann/global-state.git",
  8666. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8667. },
  8668. "dist": {
  8669. "type": "zip",
  8670. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8671. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8672. "shasum": ""
  8673. },
  8674. "require": {
  8675. "php": "^7.0"
  8676. },
  8677. "require-dev": {
  8678. "phpunit/phpunit": "^6.0"
  8679. },
  8680. "suggest": {
  8681. "ext-uopz": "*"
  8682. },
  8683. "type": "library",
  8684. "extra": {
  8685. "branch-alias": {
  8686. "dev-master": "2.0-dev"
  8687. }
  8688. },
  8689. "autoload": {
  8690. "classmap": [
  8691. "src/"
  8692. ]
  8693. },
  8694. "notification-url": "https://packagist.org/downloads/",
  8695. "license": [
  8696. "BSD-3-Clause"
  8697. ],
  8698. "authors": [
  8699. {
  8700. "name": "Sebastian Bergmann",
  8701. "email": "sebastian@phpunit.de"
  8702. }
  8703. ],
  8704. "description": "Snapshotting of global state",
  8705. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8706. "keywords": [
  8707. "global state"
  8708. ],
  8709. "time": "2017-04-27T15:39:26+00:00"
  8710. },
  8711. {
  8712. "name": "sebastian/object-enumerator",
  8713. "version": "3.0.3",
  8714. "source": {
  8715. "type": "git",
  8716. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8717. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8718. },
  8719. "dist": {
  8720. "type": "zip",
  8721. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8722. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8723. "shasum": ""
  8724. },
  8725. "require": {
  8726. "php": "^7.0",
  8727. "sebastian/object-reflector": "^1.1.1",
  8728. "sebastian/recursion-context": "^3.0"
  8729. },
  8730. "require-dev": {
  8731. "phpunit/phpunit": "^6.0"
  8732. },
  8733. "type": "library",
  8734. "extra": {
  8735. "branch-alias": {
  8736. "dev-master": "3.0.x-dev"
  8737. }
  8738. },
  8739. "autoload": {
  8740. "classmap": [
  8741. "src/"
  8742. ]
  8743. },
  8744. "notification-url": "https://packagist.org/downloads/",
  8745. "license": [
  8746. "BSD-3-Clause"
  8747. ],
  8748. "authors": [
  8749. {
  8750. "name": "Sebastian Bergmann",
  8751. "email": "sebastian@phpunit.de"
  8752. }
  8753. ],
  8754. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8755. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8756. "time": "2017-08-03T12:35:26+00:00"
  8757. },
  8758. {
  8759. "name": "sebastian/object-reflector",
  8760. "version": "1.1.1",
  8761. "source": {
  8762. "type": "git",
  8763. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8764. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8765. },
  8766. "dist": {
  8767. "type": "zip",
  8768. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8769. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8770. "shasum": ""
  8771. },
  8772. "require": {
  8773. "php": "^7.0"
  8774. },
  8775. "require-dev": {
  8776. "phpunit/phpunit": "^6.0"
  8777. },
  8778. "type": "library",
  8779. "extra": {
  8780. "branch-alias": {
  8781. "dev-master": "1.1-dev"
  8782. }
  8783. },
  8784. "autoload": {
  8785. "classmap": [
  8786. "src/"
  8787. ]
  8788. },
  8789. "notification-url": "https://packagist.org/downloads/",
  8790. "license": [
  8791. "BSD-3-Clause"
  8792. ],
  8793. "authors": [
  8794. {
  8795. "name": "Sebastian Bergmann",
  8796. "email": "sebastian@phpunit.de"
  8797. }
  8798. ],
  8799. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8800. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8801. "time": "2017-03-29T09:07:27+00:00"
  8802. },
  8803. {
  8804. "name": "sebastian/recursion-context",
  8805. "version": "3.0.0",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8809. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8814. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8815. "shasum": ""
  8816. },
  8817. "require": {
  8818. "php": "^7.0"
  8819. },
  8820. "require-dev": {
  8821. "phpunit/phpunit": "^6.0"
  8822. },
  8823. "type": "library",
  8824. "extra": {
  8825. "branch-alias": {
  8826. "dev-master": "3.0.x-dev"
  8827. }
  8828. },
  8829. "autoload": {
  8830. "classmap": [
  8831. "src/"
  8832. ]
  8833. },
  8834. "notification-url": "https://packagist.org/downloads/",
  8835. "license": [
  8836. "BSD-3-Clause"
  8837. ],
  8838. "authors": [
  8839. {
  8840. "name": "Jeff Welch",
  8841. "email": "whatthejeff@gmail.com"
  8842. },
  8843. {
  8844. "name": "Sebastian Bergmann",
  8845. "email": "sebastian@phpunit.de"
  8846. },
  8847. {
  8848. "name": "Adam Harvey",
  8849. "email": "aharvey@php.net"
  8850. }
  8851. ],
  8852. "description": "Provides functionality to recursively process PHP variables",
  8853. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8854. "time": "2017-03-03T06:23:57+00:00"
  8855. },
  8856. {
  8857. "name": "sebastian/resource-operations",
  8858. "version": "1.0.0",
  8859. "source": {
  8860. "type": "git",
  8861. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8862. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8863. },
  8864. "dist": {
  8865. "type": "zip",
  8866. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8867. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8868. "shasum": ""
  8869. },
  8870. "require": {
  8871. "php": ">=5.6.0"
  8872. },
  8873. "type": "library",
  8874. "extra": {
  8875. "branch-alias": {
  8876. "dev-master": "1.0.x-dev"
  8877. }
  8878. },
  8879. "autoload": {
  8880. "classmap": [
  8881. "src/"
  8882. ]
  8883. },
  8884. "notification-url": "https://packagist.org/downloads/",
  8885. "license": [
  8886. "BSD-3-Clause"
  8887. ],
  8888. "authors": [
  8889. {
  8890. "name": "Sebastian Bergmann",
  8891. "email": "sebastian@phpunit.de"
  8892. }
  8893. ],
  8894. "description": "Provides a list of PHP built-in functions that operate on resources",
  8895. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8896. "time": "2015-07-28T20:34:47+00:00"
  8897. },
  8898. {
  8899. "name": "sebastian/version",
  8900. "version": "2.0.1",
  8901. "source": {
  8902. "type": "git",
  8903. "url": "https://github.com/sebastianbergmann/version.git",
  8904. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8905. },
  8906. "dist": {
  8907. "type": "zip",
  8908. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8909. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8910. "shasum": ""
  8911. },
  8912. "require": {
  8913. "php": ">=5.6"
  8914. },
  8915. "type": "library",
  8916. "extra": {
  8917. "branch-alias": {
  8918. "dev-master": "2.0.x-dev"
  8919. }
  8920. },
  8921. "autoload": {
  8922. "classmap": [
  8923. "src/"
  8924. ]
  8925. },
  8926. "notification-url": "https://packagist.org/downloads/",
  8927. "license": [
  8928. "BSD-3-Clause"
  8929. ],
  8930. "authors": [
  8931. {
  8932. "name": "Sebastian Bergmann",
  8933. "email": "sebastian@phpunit.de",
  8934. "role": "lead"
  8935. }
  8936. ],
  8937. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8938. "homepage": "https://github.com/sebastianbergmann/version",
  8939. "time": "2016-10-03T07:35:21+00:00"
  8940. },
  8941. {
  8942. "name": "squizlabs/php_codesniffer",
  8943. "version": "3.5.5",
  8944. "source": {
  8945. "type": "git",
  8946. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  8947. "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6"
  8948. },
  8949. "dist": {
  8950. "type": "zip",
  8951. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6",
  8952. "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6",
  8953. "shasum": ""
  8954. },
  8955. "require": {
  8956. "ext-simplexml": "*",
  8957. "ext-tokenizer": "*",
  8958. "ext-xmlwriter": "*",
  8959. "php": ">=5.4.0"
  8960. },
  8961. "require-dev": {
  8962. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  8963. },
  8964. "bin": [
  8965. "bin/phpcs",
  8966. "bin/phpcbf"
  8967. ],
  8968. "type": "library",
  8969. "extra": {
  8970. "branch-alias": {
  8971. "dev-master": "3.x-dev"
  8972. }
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "BSD-3-Clause"
  8977. ],
  8978. "authors": [
  8979. {
  8980. "name": "Greg Sherwood",
  8981. "role": "lead"
  8982. }
  8983. ],
  8984. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8985. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  8986. "keywords": [
  8987. "phpcs",
  8988. "standards"
  8989. ],
  8990. "time": "2020-04-17T01:09:41+00:00"
  8991. },
  8992. {
  8993. "name": "stack/builder",
  8994. "version": "v1.0.5",
  8995. "source": {
  8996. "type": "git",
  8997. "url": "https://github.com/stackphp/builder.git",
  8998. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8999. },
  9000. "dist": {
  9001. "type": "zip",
  9002. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9003. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9004. "shasum": ""
  9005. },
  9006. "require": {
  9007. "php": ">=5.3.0",
  9008. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  9009. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  9010. },
  9011. "require-dev": {
  9012. "silex/silex": "~1.0"
  9013. },
  9014. "type": "library",
  9015. "extra": {
  9016. "branch-alias": {
  9017. "dev-master": "1.0-dev"
  9018. }
  9019. },
  9020. "autoload": {
  9021. "psr-0": {
  9022. "Stack": "src"
  9023. }
  9024. },
  9025. "notification-url": "https://packagist.org/downloads/",
  9026. "license": [
  9027. "MIT"
  9028. ],
  9029. "authors": [
  9030. {
  9031. "name": "Igor Wiedler",
  9032. "email": "igor@wiedler.ch"
  9033. }
  9034. ],
  9035. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  9036. "keywords": [
  9037. "stack"
  9038. ],
  9039. "time": "2017-11-18T14:57:29+00:00"
  9040. },
  9041. {
  9042. "name": "stecman/symfony-console-completion",
  9043. "version": "0.11.0",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/stecman/symfony-console-completion.git",
  9047. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  9052. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  9053. "shasum": ""
  9054. },
  9055. "require": {
  9056. "php": ">=5.3.2",
  9057. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  9058. },
  9059. "require-dev": {
  9060. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9061. },
  9062. "type": "library",
  9063. "extra": {
  9064. "branch-alias": {
  9065. "dev-master": "0.10.x-dev"
  9066. }
  9067. },
  9068. "autoload": {
  9069. "psr-4": {
  9070. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9071. }
  9072. },
  9073. "notification-url": "https://packagist.org/downloads/",
  9074. "license": [
  9075. "MIT"
  9076. ],
  9077. "authors": [
  9078. {
  9079. "name": "Stephen Holdaway",
  9080. "email": "stephen@stecman.co.nz"
  9081. }
  9082. ],
  9083. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9084. "time": "2019-11-24T17:03:06+00:00"
  9085. },
  9086. {
  9087. "name": "symfony-cmf/routing",
  9088. "version": "1.4.1",
  9089. "source": {
  9090. "type": "git",
  9091. "url": "https://github.com/symfony-cmf/routing.git",
  9092. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  9093. },
  9094. "dist": {
  9095. "type": "zip",
  9096. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9097. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9098. "shasum": ""
  9099. },
  9100. "require": {
  9101. "php": "^5.3.9|^7.0",
  9102. "psr/log": "1.*",
  9103. "symfony/http-kernel": "^2.2|3.*",
  9104. "symfony/routing": "^2.2|3.*"
  9105. },
  9106. "require-dev": {
  9107. "friendsofsymfony/jsrouting-bundle": "^1.1",
  9108. "symfony-cmf/testing": "^1.3",
  9109. "symfony/config": "^2.2|3.*",
  9110. "symfony/dependency-injection": "^2.0.5|3.*",
  9111. "symfony/event-dispatcher": "^2.1|3.*"
  9112. },
  9113. "suggest": {
  9114. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  9115. },
  9116. "type": "library",
  9117. "extra": {
  9118. "branch-alias": {
  9119. "dev-master": "1.4-dev"
  9120. }
  9121. },
  9122. "autoload": {
  9123. "psr-4": {
  9124. "Symfony\\Cmf\\Component\\Routing\\": ""
  9125. }
  9126. },
  9127. "notification-url": "https://packagist.org/downloads/",
  9128. "license": [
  9129. "MIT"
  9130. ],
  9131. "authors": [
  9132. {
  9133. "name": "Symfony CMF Community",
  9134. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9135. }
  9136. ],
  9137. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  9138. "homepage": "http://cmf.symfony.com",
  9139. "keywords": [
  9140. "database",
  9141. "routing"
  9142. ],
  9143. "time": "2017-05-09T08:10:41+00:00"
  9144. },
  9145. {
  9146. "name": "symfony/browser-kit",
  9147. "version": "v3.4.40",
  9148. "source": {
  9149. "type": "git",
  9150. "url": "https://github.com/symfony/browser-kit.git",
  9151. "reference": "1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367"
  9152. },
  9153. "dist": {
  9154. "type": "zip",
  9155. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367",
  9156. "reference": "1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367",
  9157. "shasum": ""
  9158. },
  9159. "require": {
  9160. "php": "^5.5.9|>=7.0.8",
  9161. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  9162. },
  9163. "require-dev": {
  9164. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9165. "symfony/process": "~2.8|~3.0|~4.0"
  9166. },
  9167. "suggest": {
  9168. "symfony/process": ""
  9169. },
  9170. "type": "library",
  9171. "extra": {
  9172. "branch-alias": {
  9173. "dev-master": "3.4-dev"
  9174. }
  9175. },
  9176. "autoload": {
  9177. "psr-4": {
  9178. "Symfony\\Component\\BrowserKit\\": ""
  9179. },
  9180. "exclude-from-classmap": [
  9181. "/Tests/"
  9182. ]
  9183. },
  9184. "notification-url": "https://packagist.org/downloads/",
  9185. "license": [
  9186. "MIT"
  9187. ],
  9188. "authors": [
  9189. {
  9190. "name": "Fabien Potencier",
  9191. "email": "fabien@symfony.com"
  9192. },
  9193. {
  9194. "name": "Symfony Community",
  9195. "homepage": "https://symfony.com/contributors"
  9196. }
  9197. ],
  9198. "description": "Symfony BrowserKit Component",
  9199. "homepage": "https://symfony.com",
  9200. "time": "2020-03-15T09:38:08+00:00"
  9201. },
  9202. {
  9203. "name": "symfony/class-loader",
  9204. "version": "v3.4.40",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/symfony/class-loader.git",
  9208. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  9213. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "php": "^5.5.9|>=7.0.8"
  9218. },
  9219. "require-dev": {
  9220. "symfony/finder": "~2.8|~3.0|~4.0",
  9221. "symfony/polyfill-apcu": "~1.1"
  9222. },
  9223. "suggest": {
  9224. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  9225. },
  9226. "type": "library",
  9227. "extra": {
  9228. "branch-alias": {
  9229. "dev-master": "3.4-dev"
  9230. }
  9231. },
  9232. "autoload": {
  9233. "psr-4": {
  9234. "Symfony\\Component\\ClassLoader\\": ""
  9235. },
  9236. "exclude-from-classmap": [
  9237. "/Tests/"
  9238. ]
  9239. },
  9240. "notification-url": "https://packagist.org/downloads/",
  9241. "license": [
  9242. "MIT"
  9243. ],
  9244. "authors": [
  9245. {
  9246. "name": "Fabien Potencier",
  9247. "email": "fabien@symfony.com"
  9248. },
  9249. {
  9250. "name": "Symfony Community",
  9251. "homepage": "https://symfony.com/contributors"
  9252. }
  9253. ],
  9254. "description": "Symfony ClassLoader Component",
  9255. "homepage": "https://symfony.com",
  9256. "time": "2020-03-15T09:38:08+00:00"
  9257. },
  9258. {
  9259. "name": "symfony/config",
  9260. "version": "v3.4.40",
  9261. "source": {
  9262. "type": "git",
  9263. "url": "https://github.com/symfony/config.git",
  9264. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877"
  9265. },
  9266. "dist": {
  9267. "type": "zip",
  9268. "url": "https://api.github.com/repos/symfony/config/zipball/3634991bea549e73c45a964c38f30ceeae6ed877",
  9269. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877",
  9270. "shasum": ""
  9271. },
  9272. "require": {
  9273. "php": "^5.5.9|>=7.0.8",
  9274. "symfony/filesystem": "~2.8|~3.0|~4.0",
  9275. "symfony/polyfill-ctype": "~1.8"
  9276. },
  9277. "conflict": {
  9278. "symfony/dependency-injection": "<3.3",
  9279. "symfony/finder": "<3.3"
  9280. },
  9281. "require-dev": {
  9282. "symfony/dependency-injection": "~3.3|~4.0",
  9283. "symfony/event-dispatcher": "~3.3|~4.0",
  9284. "symfony/finder": "~3.3|~4.0",
  9285. "symfony/yaml": "~3.0|~4.0"
  9286. },
  9287. "suggest": {
  9288. "symfony/yaml": "To use the yaml reference dumper"
  9289. },
  9290. "type": "library",
  9291. "extra": {
  9292. "branch-alias": {
  9293. "dev-master": "3.4-dev"
  9294. }
  9295. },
  9296. "autoload": {
  9297. "psr-4": {
  9298. "Symfony\\Component\\Config\\": ""
  9299. },
  9300. "exclude-from-classmap": [
  9301. "/Tests/"
  9302. ]
  9303. },
  9304. "notification-url": "https://packagist.org/downloads/",
  9305. "license": [
  9306. "MIT"
  9307. ],
  9308. "authors": [
  9309. {
  9310. "name": "Fabien Potencier",
  9311. "email": "fabien@symfony.com"
  9312. },
  9313. {
  9314. "name": "Symfony Community",
  9315. "homepage": "https://symfony.com/contributors"
  9316. }
  9317. ],
  9318. "description": "Symfony Config Component",
  9319. "homepage": "https://symfony.com",
  9320. "time": "2020-04-12T14:33:46+00:00"
  9321. },
  9322. {
  9323. "name": "symfony/console",
  9324. "version": "v3.4.40",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/symfony/console.git",
  9328. "reference": "bf60d5e606cd595391c5f82bf6b570d9573fa120"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/symfony/console/zipball/bf60d5e606cd595391c5f82bf6b570d9573fa120",
  9333. "reference": "bf60d5e606cd595391c5f82bf6b570d9573fa120",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "php": "^5.5.9|>=7.0.8",
  9338. "symfony/debug": "~2.8|~3.0|~4.0",
  9339. "symfony/polyfill-mbstring": "~1.0"
  9340. },
  9341. "conflict": {
  9342. "symfony/dependency-injection": "<3.4",
  9343. "symfony/process": "<3.3"
  9344. },
  9345. "provide": {
  9346. "psr/log-implementation": "1.0"
  9347. },
  9348. "require-dev": {
  9349. "psr/log": "~1.0",
  9350. "symfony/config": "~3.3|~4.0",
  9351. "symfony/dependency-injection": "~3.4|~4.0",
  9352. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9353. "symfony/lock": "~3.4|~4.0",
  9354. "symfony/process": "~3.3|~4.0"
  9355. },
  9356. "suggest": {
  9357. "psr/log": "For using the console logger",
  9358. "symfony/event-dispatcher": "",
  9359. "symfony/lock": "",
  9360. "symfony/process": ""
  9361. },
  9362. "type": "library",
  9363. "extra": {
  9364. "branch-alias": {
  9365. "dev-master": "3.4-dev"
  9366. }
  9367. },
  9368. "autoload": {
  9369. "psr-4": {
  9370. "Symfony\\Component\\Console\\": ""
  9371. },
  9372. "exclude-from-classmap": [
  9373. "/Tests/"
  9374. ]
  9375. },
  9376. "notification-url": "https://packagist.org/downloads/",
  9377. "license": [
  9378. "MIT"
  9379. ],
  9380. "authors": [
  9381. {
  9382. "name": "Fabien Potencier",
  9383. "email": "fabien@symfony.com"
  9384. },
  9385. {
  9386. "name": "Symfony Community",
  9387. "homepage": "https://symfony.com/contributors"
  9388. }
  9389. ],
  9390. "description": "Symfony Console Component",
  9391. "homepage": "https://symfony.com",
  9392. "time": "2020-03-27T17:07:22+00:00"
  9393. },
  9394. {
  9395. "name": "symfony/css-selector",
  9396. "version": "v3.4.40",
  9397. "source": {
  9398. "type": "git",
  9399. "url": "https://github.com/symfony/css-selector.git",
  9400. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518"
  9401. },
  9402. "dist": {
  9403. "type": "zip",
  9404. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518",
  9405. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518",
  9406. "shasum": ""
  9407. },
  9408. "require": {
  9409. "php": "^5.5.9|>=7.0.8"
  9410. },
  9411. "type": "library",
  9412. "extra": {
  9413. "branch-alias": {
  9414. "dev-master": "3.4-dev"
  9415. }
  9416. },
  9417. "autoload": {
  9418. "psr-4": {
  9419. "Symfony\\Component\\CssSelector\\": ""
  9420. },
  9421. "exclude-from-classmap": [
  9422. "/Tests/"
  9423. ]
  9424. },
  9425. "notification-url": "https://packagist.org/downloads/",
  9426. "license": [
  9427. "MIT"
  9428. ],
  9429. "authors": [
  9430. {
  9431. "name": "Fabien Potencier",
  9432. "email": "fabien@symfony.com"
  9433. },
  9434. {
  9435. "name": "Jean-François Simon",
  9436. "email": "jeanfrancois.simon@sensiolabs.com"
  9437. },
  9438. {
  9439. "name": "Symfony Community",
  9440. "homepage": "https://symfony.com/contributors"
  9441. }
  9442. ],
  9443. "description": "Symfony CssSelector Component",
  9444. "homepage": "https://symfony.com",
  9445. "time": "2020-03-16T08:31:04+00:00"
  9446. },
  9447. {
  9448. "name": "symfony/debug",
  9449. "version": "v3.4.40",
  9450. "source": {
  9451. "type": "git",
  9452. "url": "https://github.com/symfony/debug.git",
  9453. "reference": "ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29"
  9454. },
  9455. "dist": {
  9456. "type": "zip",
  9457. "url": "https://api.github.com/repos/symfony/debug/zipball/ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29",
  9458. "reference": "ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29",
  9459. "shasum": ""
  9460. },
  9461. "require": {
  9462. "php": "^5.5.9|>=7.0.8",
  9463. "psr/log": "~1.0"
  9464. },
  9465. "conflict": {
  9466. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9467. },
  9468. "require-dev": {
  9469. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9470. },
  9471. "type": "library",
  9472. "extra": {
  9473. "branch-alias": {
  9474. "dev-master": "3.4-dev"
  9475. }
  9476. },
  9477. "autoload": {
  9478. "psr-4": {
  9479. "Symfony\\Component\\Debug\\": ""
  9480. },
  9481. "exclude-from-classmap": [
  9482. "/Tests/"
  9483. ]
  9484. },
  9485. "notification-url": "https://packagist.org/downloads/",
  9486. "license": [
  9487. "MIT"
  9488. ],
  9489. "authors": [
  9490. {
  9491. "name": "Fabien Potencier",
  9492. "email": "fabien@symfony.com"
  9493. },
  9494. {
  9495. "name": "Symfony Community",
  9496. "homepage": "https://symfony.com/contributors"
  9497. }
  9498. ],
  9499. "description": "Symfony Debug Component",
  9500. "homepage": "https://symfony.com",
  9501. "time": "2020-03-23T10:22:40+00:00"
  9502. },
  9503. {
  9504. "name": "symfony/dependency-injection",
  9505. "version": "v3.4.40",
  9506. "source": {
  9507. "type": "git",
  9508. "url": "https://github.com/symfony/dependency-injection.git",
  9509. "reference": "d10ff5503b0b27711087eef4ac7835a752fe42fd"
  9510. },
  9511. "dist": {
  9512. "type": "zip",
  9513. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d10ff5503b0b27711087eef4ac7835a752fe42fd",
  9514. "reference": "d10ff5503b0b27711087eef4ac7835a752fe42fd",
  9515. "shasum": ""
  9516. },
  9517. "require": {
  9518. "php": "^5.5.9|>=7.0.8",
  9519. "psr/container": "^1.0"
  9520. },
  9521. "conflict": {
  9522. "symfony/config": "<3.3.7",
  9523. "symfony/finder": "<3.3",
  9524. "symfony/proxy-manager-bridge": "<3.4",
  9525. "symfony/yaml": "<3.4"
  9526. },
  9527. "provide": {
  9528. "psr/container-implementation": "1.0"
  9529. },
  9530. "require-dev": {
  9531. "symfony/config": "~3.3|~4.0",
  9532. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9533. "symfony/yaml": "~3.4|~4.0"
  9534. },
  9535. "suggest": {
  9536. "symfony/config": "",
  9537. "symfony/expression-language": "For using expressions in service container configuration",
  9538. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9539. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9540. "symfony/yaml": ""
  9541. },
  9542. "type": "library",
  9543. "extra": {
  9544. "branch-alias": {
  9545. "dev-master": "3.4-dev"
  9546. }
  9547. },
  9548. "autoload": {
  9549. "psr-4": {
  9550. "Symfony\\Component\\DependencyInjection\\": ""
  9551. },
  9552. "exclude-from-classmap": [
  9553. "/Tests/"
  9554. ]
  9555. },
  9556. "notification-url": "https://packagist.org/downloads/",
  9557. "license": [
  9558. "MIT"
  9559. ],
  9560. "authors": [
  9561. {
  9562. "name": "Fabien Potencier",
  9563. "email": "fabien@symfony.com"
  9564. },
  9565. {
  9566. "name": "Symfony Community",
  9567. "homepage": "https://symfony.com/contributors"
  9568. }
  9569. ],
  9570. "description": "Symfony DependencyInjection Component",
  9571. "homepage": "https://symfony.com",
  9572. "time": "2020-04-13T09:33:40+00:00"
  9573. },
  9574. {
  9575. "name": "symfony/dom-crawler",
  9576. "version": "v3.4.40",
  9577. "source": {
  9578. "type": "git",
  9579. "url": "https://github.com/symfony/dom-crawler.git",
  9580. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358"
  9581. },
  9582. "dist": {
  9583. "type": "zip",
  9584. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  9585. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  9586. "shasum": ""
  9587. },
  9588. "require": {
  9589. "php": "^5.5.9|>=7.0.8",
  9590. "symfony/polyfill-ctype": "~1.8",
  9591. "symfony/polyfill-mbstring": "~1.0"
  9592. },
  9593. "require-dev": {
  9594. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9595. },
  9596. "suggest": {
  9597. "symfony/css-selector": ""
  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\\DomCrawler\\": ""
  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 DomCrawler Component",
  9628. "homepage": "https://symfony.com",
  9629. "time": "2020-03-16T08:31:04+00:00"
  9630. },
  9631. {
  9632. "name": "symfony/event-dispatcher",
  9633. "version": "v3.4.40",
  9634. "source": {
  9635. "type": "git",
  9636. "url": "https://github.com/symfony/event-dispatcher.git",
  9637. "reference": "9d4e22943b73acc1ba50595b7de1a01fe9dbad48"
  9638. },
  9639. "dist": {
  9640. "type": "zip",
  9641. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9d4e22943b73acc1ba50595b7de1a01fe9dbad48",
  9642. "reference": "9d4e22943b73acc1ba50595b7de1a01fe9dbad48",
  9643. "shasum": ""
  9644. },
  9645. "require": {
  9646. "php": "^5.5.9|>=7.0.8"
  9647. },
  9648. "conflict": {
  9649. "symfony/dependency-injection": "<3.3"
  9650. },
  9651. "require-dev": {
  9652. "psr/log": "~1.0",
  9653. "symfony/config": "~2.8|~3.0|~4.0",
  9654. "symfony/dependency-injection": "~3.3|~4.0",
  9655. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9656. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9657. },
  9658. "suggest": {
  9659. "symfony/dependency-injection": "",
  9660. "symfony/http-kernel": ""
  9661. },
  9662. "type": "library",
  9663. "extra": {
  9664. "branch-alias": {
  9665. "dev-master": "3.4-dev"
  9666. }
  9667. },
  9668. "autoload": {
  9669. "psr-4": {
  9670. "Symfony\\Component\\EventDispatcher\\": ""
  9671. },
  9672. "exclude-from-classmap": [
  9673. "/Tests/"
  9674. ]
  9675. },
  9676. "notification-url": "https://packagist.org/downloads/",
  9677. "license": [
  9678. "MIT"
  9679. ],
  9680. "authors": [
  9681. {
  9682. "name": "Fabien Potencier",
  9683. "email": "fabien@symfony.com"
  9684. },
  9685. {
  9686. "name": "Symfony Community",
  9687. "homepage": "https://symfony.com/contributors"
  9688. }
  9689. ],
  9690. "description": "Symfony EventDispatcher Component",
  9691. "homepage": "https://symfony.com",
  9692. "time": "2020-03-15T09:38:08+00:00"
  9693. },
  9694. {
  9695. "name": "symfony/filesystem",
  9696. "version": "v3.4.40",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/symfony/filesystem.git",
  9700. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/symfony/filesystem/zipball/78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  9705. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  9706. "shasum": ""
  9707. },
  9708. "require": {
  9709. "php": "^5.5.9|>=7.0.8",
  9710. "symfony/polyfill-ctype": "~1.8"
  9711. },
  9712. "type": "library",
  9713. "extra": {
  9714. "branch-alias": {
  9715. "dev-master": "3.4-dev"
  9716. }
  9717. },
  9718. "autoload": {
  9719. "psr-4": {
  9720. "Symfony\\Component\\Filesystem\\": ""
  9721. },
  9722. "exclude-from-classmap": [
  9723. "/Tests/"
  9724. ]
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "MIT"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Fabien Potencier",
  9733. "email": "fabien@symfony.com"
  9734. },
  9735. {
  9736. "name": "Symfony Community",
  9737. "homepage": "https://symfony.com/contributors"
  9738. }
  9739. ],
  9740. "description": "Symfony Filesystem Component",
  9741. "homepage": "https://symfony.com",
  9742. "time": "2020-04-12T16:54:01+00:00"
  9743. },
  9744. {
  9745. "name": "symfony/finder",
  9746. "version": "v3.4.40",
  9747. "source": {
  9748. "type": "git",
  9749. "url": "https://github.com/symfony/finder.git",
  9750. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200"
  9751. },
  9752. "dist": {
  9753. "type": "zip",
  9754. "url": "https://api.github.com/repos/symfony/finder/zipball/5ec813ccafa8164ef21757e8c725d3a57da59200",
  9755. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200",
  9756. "shasum": ""
  9757. },
  9758. "require": {
  9759. "php": "^5.5.9|>=7.0.8"
  9760. },
  9761. "type": "library",
  9762. "extra": {
  9763. "branch-alias": {
  9764. "dev-master": "3.4-dev"
  9765. }
  9766. },
  9767. "autoload": {
  9768. "psr-4": {
  9769. "Symfony\\Component\\Finder\\": ""
  9770. },
  9771. "exclude-from-classmap": [
  9772. "/Tests/"
  9773. ]
  9774. },
  9775. "notification-url": "https://packagist.org/downloads/",
  9776. "license": [
  9777. "MIT"
  9778. ],
  9779. "authors": [
  9780. {
  9781. "name": "Fabien Potencier",
  9782. "email": "fabien@symfony.com"
  9783. },
  9784. {
  9785. "name": "Symfony Community",
  9786. "homepage": "https://symfony.com/contributors"
  9787. }
  9788. ],
  9789. "description": "Symfony Finder Component",
  9790. "homepage": "https://symfony.com",
  9791. "time": "2020-02-14T07:34:21+00:00"
  9792. },
  9793. {
  9794. "name": "symfony/http-foundation",
  9795. "version": "v3.4.40",
  9796. "source": {
  9797. "type": "git",
  9798. "url": "https://github.com/symfony/http-foundation.git",
  9799. "reference": "eded33daef1147be7ff1249706be9a49fe2c7a44"
  9800. },
  9801. "dist": {
  9802. "type": "zip",
  9803. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/eded33daef1147be7ff1249706be9a49fe2c7a44",
  9804. "reference": "eded33daef1147be7ff1249706be9a49fe2c7a44",
  9805. "shasum": ""
  9806. },
  9807. "require": {
  9808. "php": "^5.5.9|>=7.0.8",
  9809. "symfony/polyfill-mbstring": "~1.1",
  9810. "symfony/polyfill-php70": "~1.6"
  9811. },
  9812. "require-dev": {
  9813. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9814. },
  9815. "type": "library",
  9816. "extra": {
  9817. "branch-alias": {
  9818. "dev-master": "3.4-dev"
  9819. }
  9820. },
  9821. "autoload": {
  9822. "psr-4": {
  9823. "Symfony\\Component\\HttpFoundation\\": ""
  9824. },
  9825. "exclude-from-classmap": [
  9826. "/Tests/"
  9827. ]
  9828. },
  9829. "notification-url": "https://packagist.org/downloads/",
  9830. "license": [
  9831. "MIT"
  9832. ],
  9833. "authors": [
  9834. {
  9835. "name": "Fabien Potencier",
  9836. "email": "fabien@symfony.com"
  9837. },
  9838. {
  9839. "name": "Symfony Community",
  9840. "homepage": "https://symfony.com/contributors"
  9841. }
  9842. ],
  9843. "description": "Symfony HttpFoundation Component",
  9844. "homepage": "https://symfony.com",
  9845. "time": "2020-04-18T20:23:17+00:00"
  9846. },
  9847. {
  9848. "name": "symfony/http-kernel",
  9849. "version": "v3.4.40",
  9850. "source": {
  9851. "type": "git",
  9852. "url": "https://github.com/symfony/http-kernel.git",
  9853. "reference": "139d477cc926de9ca03c3d59b51ab6e22450c6df"
  9854. },
  9855. "dist": {
  9856. "type": "zip",
  9857. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/139d477cc926de9ca03c3d59b51ab6e22450c6df",
  9858. "reference": "139d477cc926de9ca03c3d59b51ab6e22450c6df",
  9859. "shasum": ""
  9860. },
  9861. "require": {
  9862. "php": "^5.5.9|>=7.0.8",
  9863. "psr/log": "~1.0",
  9864. "symfony/debug": "^3.3.3|~4.0",
  9865. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9866. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9867. "symfony/polyfill-ctype": "~1.8",
  9868. "symfony/polyfill-php56": "~1.8"
  9869. },
  9870. "conflict": {
  9871. "symfony/config": "<2.8",
  9872. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9873. "symfony/var-dumper": "<3.3",
  9874. "twig/twig": "<1.34|<2.4,>=2"
  9875. },
  9876. "provide": {
  9877. "psr/log-implementation": "1.0"
  9878. },
  9879. "require-dev": {
  9880. "psr/cache": "~1.0",
  9881. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9882. "symfony/class-loader": "~2.8|~3.0",
  9883. "symfony/config": "~2.8|~3.0|~4.0",
  9884. "symfony/console": "~2.8|~3.0|~4.0",
  9885. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9886. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9887. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9888. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9889. "symfony/finder": "~2.8|~3.0|~4.0",
  9890. "symfony/process": "~2.8|~3.0|~4.0",
  9891. "symfony/routing": "~3.4|~4.0",
  9892. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9893. "symfony/templating": "~2.8|~3.0|~4.0",
  9894. "symfony/translation": "~2.8|~3.0|~4.0",
  9895. "symfony/var-dumper": "~3.3|~4.0"
  9896. },
  9897. "suggest": {
  9898. "symfony/browser-kit": "",
  9899. "symfony/config": "",
  9900. "symfony/console": "",
  9901. "symfony/dependency-injection": "",
  9902. "symfony/finder": "",
  9903. "symfony/var-dumper": ""
  9904. },
  9905. "type": "library",
  9906. "extra": {
  9907. "branch-alias": {
  9908. "dev-master": "3.4-dev"
  9909. }
  9910. },
  9911. "autoload": {
  9912. "psr-4": {
  9913. "Symfony\\Component\\HttpKernel\\": ""
  9914. },
  9915. "exclude-from-classmap": [
  9916. "/Tests/"
  9917. ]
  9918. },
  9919. "notification-url": "https://packagist.org/downloads/",
  9920. "license": [
  9921. "MIT"
  9922. ],
  9923. "authors": [
  9924. {
  9925. "name": "Fabien Potencier",
  9926. "email": "fabien@symfony.com"
  9927. },
  9928. {
  9929. "name": "Symfony Community",
  9930. "homepage": "https://symfony.com/contributors"
  9931. }
  9932. ],
  9933. "description": "Symfony HttpKernel Component",
  9934. "homepage": "https://symfony.com",
  9935. "time": "2020-04-28T17:41:38+00:00"
  9936. },
  9937. {
  9938. "name": "symfony/phpunit-bridge",
  9939. "version": "v3.4.40",
  9940. "source": {
  9941. "type": "git",
  9942. "url": "https://github.com/symfony/phpunit-bridge.git",
  9943. "reference": "58c7de42b8b13c3bec82dbb8a87d00e4d83dd7c2"
  9944. },
  9945. "dist": {
  9946. "type": "zip",
  9947. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/58c7de42b8b13c3bec82dbb8a87d00e4d83dd7c2",
  9948. "reference": "58c7de42b8b13c3bec82dbb8a87d00e4d83dd7c2",
  9949. "shasum": ""
  9950. },
  9951. "require": {
  9952. "php": ">=5.3.3"
  9953. },
  9954. "conflict": {
  9955. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  9956. },
  9957. "suggest": {
  9958. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9959. },
  9960. "bin": [
  9961. "bin/simple-phpunit"
  9962. ],
  9963. "type": "symfony-bridge",
  9964. "extra": {
  9965. "branch-alias": {
  9966. "dev-master": "3.4-dev"
  9967. },
  9968. "thanks": {
  9969. "name": "phpunit/phpunit",
  9970. "url": "https://github.com/sebastianbergmann/phpunit"
  9971. }
  9972. },
  9973. "autoload": {
  9974. "files": [
  9975. "bootstrap.php"
  9976. ],
  9977. "psr-4": {
  9978. "Symfony\\Bridge\\PhpUnit\\": ""
  9979. },
  9980. "exclude-from-classmap": [
  9981. "/Tests/"
  9982. ]
  9983. },
  9984. "notification-url": "https://packagist.org/downloads/",
  9985. "license": [
  9986. "MIT"
  9987. ],
  9988. "authors": [
  9989. {
  9990. "name": "Nicolas Grekas",
  9991. "email": "p@tchwork.com"
  9992. },
  9993. {
  9994. "name": "Symfony Community",
  9995. "homepage": "https://symfony.com/contributors"
  9996. }
  9997. ],
  9998. "description": "Symfony PHPUnit Bridge",
  9999. "homepage": "https://symfony.com",
  10000. "time": "2020-04-25T12:18:34+00:00"
  10001. },
  10002. {
  10003. "name": "symfony/polyfill-ctype",
  10004. "version": "v1.17.0",
  10005. "source": {
  10006. "type": "git",
  10007. "url": "https://github.com/symfony/polyfill-ctype.git",
  10008. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  10009. },
  10010. "dist": {
  10011. "type": "zip",
  10012. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  10013. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  10014. "shasum": ""
  10015. },
  10016. "require": {
  10017. "php": ">=5.3.3"
  10018. },
  10019. "suggest": {
  10020. "ext-ctype": "For best performance"
  10021. },
  10022. "type": "library",
  10023. "extra": {
  10024. "branch-alias": {
  10025. "dev-master": "1.17-dev"
  10026. }
  10027. },
  10028. "autoload": {
  10029. "psr-4": {
  10030. "Symfony\\Polyfill\\Ctype\\": ""
  10031. },
  10032. "files": [
  10033. "bootstrap.php"
  10034. ]
  10035. },
  10036. "notification-url": "https://packagist.org/downloads/",
  10037. "license": [
  10038. "MIT"
  10039. ],
  10040. "authors": [
  10041. {
  10042. "name": "Gert de Pagter",
  10043. "email": "BackEndTea@gmail.com"
  10044. },
  10045. {
  10046. "name": "Symfony Community",
  10047. "homepage": "https://symfony.com/contributors"
  10048. }
  10049. ],
  10050. "description": "Symfony polyfill for ctype functions",
  10051. "homepage": "https://symfony.com",
  10052. "keywords": [
  10053. "compatibility",
  10054. "ctype",
  10055. "polyfill",
  10056. "portable"
  10057. ],
  10058. "time": "2020-05-12T16:14:59+00:00"
  10059. },
  10060. {
  10061. "name": "symfony/polyfill-iconv",
  10062. "version": "v1.17.0",
  10063. "source": {
  10064. "type": "git",
  10065. "url": "https://github.com/symfony/polyfill-iconv.git",
  10066. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  10067. },
  10068. "dist": {
  10069. "type": "zip",
  10070. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  10071. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  10072. "shasum": ""
  10073. },
  10074. "require": {
  10075. "php": ">=5.3.3"
  10076. },
  10077. "suggest": {
  10078. "ext-iconv": "For best performance"
  10079. },
  10080. "type": "library",
  10081. "extra": {
  10082. "branch-alias": {
  10083. "dev-master": "1.17-dev"
  10084. }
  10085. },
  10086. "autoload": {
  10087. "psr-4": {
  10088. "Symfony\\Polyfill\\Iconv\\": ""
  10089. },
  10090. "files": [
  10091. "bootstrap.php"
  10092. ]
  10093. },
  10094. "notification-url": "https://packagist.org/downloads/",
  10095. "license": [
  10096. "MIT"
  10097. ],
  10098. "authors": [
  10099. {
  10100. "name": "Nicolas Grekas",
  10101. "email": "p@tchwork.com"
  10102. },
  10103. {
  10104. "name": "Symfony Community",
  10105. "homepage": "https://symfony.com/contributors"
  10106. }
  10107. ],
  10108. "description": "Symfony polyfill for the Iconv extension",
  10109. "homepage": "https://symfony.com",
  10110. "keywords": [
  10111. "compatibility",
  10112. "iconv",
  10113. "polyfill",
  10114. "portable",
  10115. "shim"
  10116. ],
  10117. "time": "2020-05-12T16:47:27+00:00"
  10118. },
  10119. {
  10120. "name": "symfony/polyfill-intl-idn",
  10121. "version": "v1.17.0",
  10122. "source": {
  10123. "type": "git",
  10124. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10125. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  10126. },
  10127. "dist": {
  10128. "type": "zip",
  10129. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  10130. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  10131. "shasum": ""
  10132. },
  10133. "require": {
  10134. "php": ">=5.3.3",
  10135. "symfony/polyfill-mbstring": "^1.3",
  10136. "symfony/polyfill-php72": "^1.10"
  10137. },
  10138. "suggest": {
  10139. "ext-intl": "For best performance"
  10140. },
  10141. "type": "library",
  10142. "extra": {
  10143. "branch-alias": {
  10144. "dev-master": "1.17-dev"
  10145. }
  10146. },
  10147. "autoload": {
  10148. "psr-4": {
  10149. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10150. },
  10151. "files": [
  10152. "bootstrap.php"
  10153. ]
  10154. },
  10155. "notification-url": "https://packagist.org/downloads/",
  10156. "license": [
  10157. "MIT"
  10158. ],
  10159. "authors": [
  10160. {
  10161. "name": "Laurent Bassin",
  10162. "email": "laurent@bassin.info"
  10163. },
  10164. {
  10165. "name": "Symfony Community",
  10166. "homepage": "https://symfony.com/contributors"
  10167. }
  10168. ],
  10169. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10170. "homepage": "https://symfony.com",
  10171. "keywords": [
  10172. "compatibility",
  10173. "idn",
  10174. "intl",
  10175. "polyfill",
  10176. "portable",
  10177. "shim"
  10178. ],
  10179. "time": "2020-05-12T16:47:27+00:00"
  10180. },
  10181. {
  10182. "name": "symfony/polyfill-mbstring",
  10183. "version": "v1.17.0",
  10184. "source": {
  10185. "type": "git",
  10186. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10187. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  10188. },
  10189. "dist": {
  10190. "type": "zip",
  10191. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  10192. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  10193. "shasum": ""
  10194. },
  10195. "require": {
  10196. "php": ">=5.3.3"
  10197. },
  10198. "suggest": {
  10199. "ext-mbstring": "For best performance"
  10200. },
  10201. "type": "library",
  10202. "extra": {
  10203. "branch-alias": {
  10204. "dev-master": "1.17-dev"
  10205. }
  10206. },
  10207. "autoload": {
  10208. "psr-4": {
  10209. "Symfony\\Polyfill\\Mbstring\\": ""
  10210. },
  10211. "files": [
  10212. "bootstrap.php"
  10213. ]
  10214. },
  10215. "notification-url": "https://packagist.org/downloads/",
  10216. "license": [
  10217. "MIT"
  10218. ],
  10219. "authors": [
  10220. {
  10221. "name": "Nicolas Grekas",
  10222. "email": "p@tchwork.com"
  10223. },
  10224. {
  10225. "name": "Symfony Community",
  10226. "homepage": "https://symfony.com/contributors"
  10227. }
  10228. ],
  10229. "description": "Symfony polyfill for the Mbstring extension",
  10230. "homepage": "https://symfony.com",
  10231. "keywords": [
  10232. "compatibility",
  10233. "mbstring",
  10234. "polyfill",
  10235. "portable",
  10236. "shim"
  10237. ],
  10238. "time": "2020-05-12T16:47:27+00:00"
  10239. },
  10240. {
  10241. "name": "symfony/polyfill-php56",
  10242. "version": "v1.17.0",
  10243. "source": {
  10244. "type": "git",
  10245. "url": "https://github.com/symfony/polyfill-php56.git",
  10246. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  10247. },
  10248. "dist": {
  10249. "type": "zip",
  10250. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  10251. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  10252. "shasum": ""
  10253. },
  10254. "require": {
  10255. "php": ">=5.3.3",
  10256. "symfony/polyfill-util": "~1.0"
  10257. },
  10258. "type": "library",
  10259. "extra": {
  10260. "branch-alias": {
  10261. "dev-master": "1.17-dev"
  10262. }
  10263. },
  10264. "autoload": {
  10265. "psr-4": {
  10266. "Symfony\\Polyfill\\Php56\\": ""
  10267. },
  10268. "files": [
  10269. "bootstrap.php"
  10270. ]
  10271. },
  10272. "notification-url": "https://packagist.org/downloads/",
  10273. "license": [
  10274. "MIT"
  10275. ],
  10276. "authors": [
  10277. {
  10278. "name": "Nicolas Grekas",
  10279. "email": "p@tchwork.com"
  10280. },
  10281. {
  10282. "name": "Symfony Community",
  10283. "homepage": "https://symfony.com/contributors"
  10284. }
  10285. ],
  10286. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  10287. "homepage": "https://symfony.com",
  10288. "keywords": [
  10289. "compatibility",
  10290. "polyfill",
  10291. "portable",
  10292. "shim"
  10293. ],
  10294. "time": "2020-05-12T16:47:27+00:00"
  10295. },
  10296. {
  10297. "name": "symfony/polyfill-php70",
  10298. "version": "v1.17.0",
  10299. "source": {
  10300. "type": "git",
  10301. "url": "https://github.com/symfony/polyfill-php70.git",
  10302. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  10303. },
  10304. "dist": {
  10305. "type": "zip",
  10306. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  10307. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  10308. "shasum": ""
  10309. },
  10310. "require": {
  10311. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  10312. "php": ">=5.3.3"
  10313. },
  10314. "type": "library",
  10315. "extra": {
  10316. "branch-alias": {
  10317. "dev-master": "1.17-dev"
  10318. }
  10319. },
  10320. "autoload": {
  10321. "psr-4": {
  10322. "Symfony\\Polyfill\\Php70\\": ""
  10323. },
  10324. "files": [
  10325. "bootstrap.php"
  10326. ],
  10327. "classmap": [
  10328. "Resources/stubs"
  10329. ]
  10330. },
  10331. "notification-url": "https://packagist.org/downloads/",
  10332. "license": [
  10333. "MIT"
  10334. ],
  10335. "authors": [
  10336. {
  10337. "name": "Nicolas Grekas",
  10338. "email": "p@tchwork.com"
  10339. },
  10340. {
  10341. "name": "Symfony Community",
  10342. "homepage": "https://symfony.com/contributors"
  10343. }
  10344. ],
  10345. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  10346. "homepage": "https://symfony.com",
  10347. "keywords": [
  10348. "compatibility",
  10349. "polyfill",
  10350. "portable",
  10351. "shim"
  10352. ],
  10353. "time": "2020-05-12T16:47:27+00:00"
  10354. },
  10355. {
  10356. "name": "symfony/polyfill-php72",
  10357. "version": "v1.17.0",
  10358. "source": {
  10359. "type": "git",
  10360. "url": "https://github.com/symfony/polyfill-php72.git",
  10361. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  10362. },
  10363. "dist": {
  10364. "type": "zip",
  10365. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  10366. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  10367. "shasum": ""
  10368. },
  10369. "require": {
  10370. "php": ">=5.3.3"
  10371. },
  10372. "type": "library",
  10373. "extra": {
  10374. "branch-alias": {
  10375. "dev-master": "1.17-dev"
  10376. }
  10377. },
  10378. "autoload": {
  10379. "psr-4": {
  10380. "Symfony\\Polyfill\\Php72\\": ""
  10381. },
  10382. "files": [
  10383. "bootstrap.php"
  10384. ]
  10385. },
  10386. "notification-url": "https://packagist.org/downloads/",
  10387. "license": [
  10388. "MIT"
  10389. ],
  10390. "authors": [
  10391. {
  10392. "name": "Nicolas Grekas",
  10393. "email": "p@tchwork.com"
  10394. },
  10395. {
  10396. "name": "Symfony Community",
  10397. "homepage": "https://symfony.com/contributors"
  10398. }
  10399. ],
  10400. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  10401. "homepage": "https://symfony.com",
  10402. "keywords": [
  10403. "compatibility",
  10404. "polyfill",
  10405. "portable",
  10406. "shim"
  10407. ],
  10408. "time": "2020-05-12T16:47:27+00:00"
  10409. },
  10410. {
  10411. "name": "symfony/polyfill-util",
  10412. "version": "v1.17.0",
  10413. "source": {
  10414. "type": "git",
  10415. "url": "https://github.com/symfony/polyfill-util.git",
  10416. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  10417. },
  10418. "dist": {
  10419. "type": "zip",
  10420. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  10421. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  10422. "shasum": ""
  10423. },
  10424. "require": {
  10425. "php": ">=5.3.3"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "branch-alias": {
  10430. "dev-master": "1.17-dev"
  10431. }
  10432. },
  10433. "autoload": {
  10434. "psr-4": {
  10435. "Symfony\\Polyfill\\Util\\": ""
  10436. }
  10437. },
  10438. "notification-url": "https://packagist.org/downloads/",
  10439. "license": [
  10440. "MIT"
  10441. ],
  10442. "authors": [
  10443. {
  10444. "name": "Nicolas Grekas",
  10445. "email": "p@tchwork.com"
  10446. },
  10447. {
  10448. "name": "Symfony Community",
  10449. "homepage": "https://symfony.com/contributors"
  10450. }
  10451. ],
  10452. "description": "Symfony utilities for portability of PHP codes",
  10453. "homepage": "https://symfony.com",
  10454. "keywords": [
  10455. "compat",
  10456. "compatibility",
  10457. "polyfill",
  10458. "shim"
  10459. ],
  10460. "time": "2020-05-12T16:14:59+00:00"
  10461. },
  10462. {
  10463. "name": "symfony/process",
  10464. "version": "v3.4.40",
  10465. "source": {
  10466. "type": "git",
  10467. "url": "https://github.com/symfony/process.git",
  10468. "reference": "f5104c9dcbc2cfad45d01d5150c1da9836967271"
  10469. },
  10470. "dist": {
  10471. "type": "zip",
  10472. "url": "https://api.github.com/repos/symfony/process/zipball/f5104c9dcbc2cfad45d01d5150c1da9836967271",
  10473. "reference": "f5104c9dcbc2cfad45d01d5150c1da9836967271",
  10474. "shasum": ""
  10475. },
  10476. "require": {
  10477. "php": "^5.5.9|>=7.0.8"
  10478. },
  10479. "type": "library",
  10480. "extra": {
  10481. "branch-alias": {
  10482. "dev-master": "3.4-dev"
  10483. }
  10484. },
  10485. "autoload": {
  10486. "psr-4": {
  10487. "Symfony\\Component\\Process\\": ""
  10488. },
  10489. "exclude-from-classmap": [
  10490. "/Tests/"
  10491. ]
  10492. },
  10493. "notification-url": "https://packagist.org/downloads/",
  10494. "license": [
  10495. "MIT"
  10496. ],
  10497. "authors": [
  10498. {
  10499. "name": "Fabien Potencier",
  10500. "email": "fabien@symfony.com"
  10501. },
  10502. {
  10503. "name": "Symfony Community",
  10504. "homepage": "https://symfony.com/contributors"
  10505. }
  10506. ],
  10507. "description": "Symfony Process Component",
  10508. "homepage": "https://symfony.com",
  10509. "time": "2020-04-12T14:33:46+00:00"
  10510. },
  10511. {
  10512. "name": "symfony/psr-http-message-bridge",
  10513. "version": "v1.1.2",
  10514. "source": {
  10515. "type": "git",
  10516. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10517. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  10518. },
  10519. "dist": {
  10520. "type": "zip",
  10521. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  10522. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  10523. "shasum": ""
  10524. },
  10525. "require": {
  10526. "php": "^5.3.3 || ^7.0",
  10527. "psr/http-message": "^1.0",
  10528. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  10529. },
  10530. "require-dev": {
  10531. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  10532. },
  10533. "suggest": {
  10534. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10535. },
  10536. "type": "symfony-bridge",
  10537. "extra": {
  10538. "branch-alias": {
  10539. "dev-master": "1.1-dev"
  10540. }
  10541. },
  10542. "autoload": {
  10543. "psr-4": {
  10544. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10545. },
  10546. "exclude-from-classmap": [
  10547. "/Tests/"
  10548. ]
  10549. },
  10550. "notification-url": "https://packagist.org/downloads/",
  10551. "license": [
  10552. "MIT"
  10553. ],
  10554. "authors": [
  10555. {
  10556. "name": "Symfony Community",
  10557. "homepage": "http://symfony.com/contributors"
  10558. },
  10559. {
  10560. "name": "Fabien Potencier",
  10561. "email": "fabien@symfony.com"
  10562. }
  10563. ],
  10564. "description": "PSR HTTP message bridge",
  10565. "homepage": "http://symfony.com",
  10566. "keywords": [
  10567. "http",
  10568. "http-message",
  10569. "psr-17",
  10570. "psr-7"
  10571. ],
  10572. "time": "2019-04-03T17:09:40+00:00"
  10573. },
  10574. {
  10575. "name": "symfony/routing",
  10576. "version": "v3.4.40",
  10577. "source": {
  10578. "type": "git",
  10579. "url": "https://github.com/symfony/routing.git",
  10580. "reference": "53b432fde8eea7dab820e75abda5b97fdaa829b4"
  10581. },
  10582. "dist": {
  10583. "type": "zip",
  10584. "url": "https://api.github.com/repos/symfony/routing/zipball/53b432fde8eea7dab820e75abda5b97fdaa829b4",
  10585. "reference": "53b432fde8eea7dab820e75abda5b97fdaa829b4",
  10586. "shasum": ""
  10587. },
  10588. "require": {
  10589. "php": "^5.5.9|>=7.0.8"
  10590. },
  10591. "conflict": {
  10592. "symfony/config": "<3.3.1",
  10593. "symfony/dependency-injection": "<3.3",
  10594. "symfony/yaml": "<3.4"
  10595. },
  10596. "require-dev": {
  10597. "doctrine/annotations": "~1.0",
  10598. "psr/log": "~1.0",
  10599. "symfony/config": "^3.3.1|~4.0",
  10600. "symfony/dependency-injection": "~3.3|~4.0",
  10601. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10602. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10603. "symfony/yaml": "~3.4|~4.0"
  10604. },
  10605. "suggest": {
  10606. "doctrine/annotations": "For using the annotation loader",
  10607. "symfony/config": "For using the all-in-one router or any loader",
  10608. "symfony/expression-language": "For using expression matching",
  10609. "symfony/http-foundation": "For using a Symfony Request object",
  10610. "symfony/yaml": "For using the YAML loader"
  10611. },
  10612. "type": "library",
  10613. "extra": {
  10614. "branch-alias": {
  10615. "dev-master": "3.4-dev"
  10616. }
  10617. },
  10618. "autoload": {
  10619. "psr-4": {
  10620. "Symfony\\Component\\Routing\\": ""
  10621. },
  10622. "exclude-from-classmap": [
  10623. "/Tests/"
  10624. ]
  10625. },
  10626. "notification-url": "https://packagist.org/downloads/",
  10627. "license": [
  10628. "MIT"
  10629. ],
  10630. "authors": [
  10631. {
  10632. "name": "Fabien Potencier",
  10633. "email": "fabien@symfony.com"
  10634. },
  10635. {
  10636. "name": "Symfony Community",
  10637. "homepage": "https://symfony.com/contributors"
  10638. }
  10639. ],
  10640. "description": "Symfony Routing Component",
  10641. "homepage": "https://symfony.com",
  10642. "keywords": [
  10643. "router",
  10644. "routing",
  10645. "uri",
  10646. "url"
  10647. ],
  10648. "time": "2020-04-12T09:58:27+00:00"
  10649. },
  10650. {
  10651. "name": "symfony/serializer",
  10652. "version": "v3.4.40",
  10653. "source": {
  10654. "type": "git",
  10655. "url": "https://github.com/symfony/serializer.git",
  10656. "reference": "2e1bdec403d8e7a350884cbbe4807ab7c2a843d4"
  10657. },
  10658. "dist": {
  10659. "type": "zip",
  10660. "url": "https://api.github.com/repos/symfony/serializer/zipball/2e1bdec403d8e7a350884cbbe4807ab7c2a843d4",
  10661. "reference": "2e1bdec403d8e7a350884cbbe4807ab7c2a843d4",
  10662. "shasum": ""
  10663. },
  10664. "require": {
  10665. "php": "^5.5.9|>=7.0.8",
  10666. "symfony/polyfill-ctype": "~1.8"
  10667. },
  10668. "conflict": {
  10669. "phpdocumentor/type-resolver": "<0.2.1",
  10670. "symfony/dependency-injection": "<3.2",
  10671. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10672. "symfony/property-info": "<3.1",
  10673. "symfony/yaml": "<3.4"
  10674. },
  10675. "require-dev": {
  10676. "doctrine/annotations": "~1.0",
  10677. "doctrine/cache": "~1.0",
  10678. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10679. "symfony/cache": "~3.1|~4.0",
  10680. "symfony/config": "~2.8|~3.0|~4.0",
  10681. "symfony/dependency-injection": "~3.2|~4.0",
  10682. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10683. "symfony/property-access": "~2.8|~3.0|~4.0",
  10684. "symfony/property-info": "^3.4.13|~4.0",
  10685. "symfony/yaml": "~3.4|~4.0"
  10686. },
  10687. "suggest": {
  10688. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10689. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10690. "psr/cache-implementation": "For using the metadata cache.",
  10691. "symfony/config": "For using the XML mapping loader.",
  10692. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10693. "symfony/property-access": "For using the ObjectNormalizer.",
  10694. "symfony/property-info": "To deserialize relations.",
  10695. "symfony/yaml": "For using the default YAML mapping loader."
  10696. },
  10697. "type": "library",
  10698. "extra": {
  10699. "branch-alias": {
  10700. "dev-master": "3.4-dev"
  10701. }
  10702. },
  10703. "autoload": {
  10704. "psr-4": {
  10705. "Symfony\\Component\\Serializer\\": ""
  10706. },
  10707. "exclude-from-classmap": [
  10708. "/Tests/"
  10709. ]
  10710. },
  10711. "notification-url": "https://packagist.org/downloads/",
  10712. "license": [
  10713. "MIT"
  10714. ],
  10715. "authors": [
  10716. {
  10717. "name": "Fabien Potencier",
  10718. "email": "fabien@symfony.com"
  10719. },
  10720. {
  10721. "name": "Symfony Community",
  10722. "homepage": "https://symfony.com/contributors"
  10723. }
  10724. ],
  10725. "description": "Symfony Serializer Component",
  10726. "homepage": "https://symfony.com",
  10727. "time": "2020-04-12T14:33:46+00:00"
  10728. },
  10729. {
  10730. "name": "symfony/translation",
  10731. "version": "v3.4.40",
  10732. "source": {
  10733. "type": "git",
  10734. "url": "https://github.com/symfony/translation.git",
  10735. "reference": "4e844362f573713e6d45949795c95a4cb6cf760d"
  10736. },
  10737. "dist": {
  10738. "type": "zip",
  10739. "url": "https://api.github.com/repos/symfony/translation/zipball/4e844362f573713e6d45949795c95a4cb6cf760d",
  10740. "reference": "4e844362f573713e6d45949795c95a4cb6cf760d",
  10741. "shasum": ""
  10742. },
  10743. "require": {
  10744. "php": "^5.5.9|>=7.0.8",
  10745. "symfony/polyfill-mbstring": "~1.0"
  10746. },
  10747. "conflict": {
  10748. "symfony/config": "<2.8",
  10749. "symfony/dependency-injection": "<3.4",
  10750. "symfony/yaml": "<3.4"
  10751. },
  10752. "require-dev": {
  10753. "psr/log": "~1.0",
  10754. "symfony/config": "~2.8|~3.0|~4.0",
  10755. "symfony/dependency-injection": "~3.4|~4.0",
  10756. "symfony/finder": "~2.8|~3.0|~4.0",
  10757. "symfony/http-kernel": "~3.4|~4.0",
  10758. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10759. "symfony/var-dumper": "~3.4|~4.0",
  10760. "symfony/yaml": "~3.4|~4.0"
  10761. },
  10762. "suggest": {
  10763. "psr/log-implementation": "To use logging capability in translator",
  10764. "symfony/config": "",
  10765. "symfony/yaml": ""
  10766. },
  10767. "type": "library",
  10768. "extra": {
  10769. "branch-alias": {
  10770. "dev-master": "3.4-dev"
  10771. }
  10772. },
  10773. "autoload": {
  10774. "psr-4": {
  10775. "Symfony\\Component\\Translation\\": ""
  10776. },
  10777. "exclude-from-classmap": [
  10778. "/Tests/"
  10779. ]
  10780. },
  10781. "notification-url": "https://packagist.org/downloads/",
  10782. "license": [
  10783. "MIT"
  10784. ],
  10785. "authors": [
  10786. {
  10787. "name": "Fabien Potencier",
  10788. "email": "fabien@symfony.com"
  10789. },
  10790. {
  10791. "name": "Symfony Community",
  10792. "homepage": "https://symfony.com/contributors"
  10793. }
  10794. ],
  10795. "description": "Symfony Translation Component",
  10796. "homepage": "https://symfony.com",
  10797. "time": "2020-04-12T16:39:58+00:00"
  10798. },
  10799. {
  10800. "name": "symfony/validator",
  10801. "version": "v3.4.40",
  10802. "source": {
  10803. "type": "git",
  10804. "url": "https://github.com/symfony/validator.git",
  10805. "reference": "0d4d26bacafdead3b73586302fc5019efdfbdb2e"
  10806. },
  10807. "dist": {
  10808. "type": "zip",
  10809. "url": "https://api.github.com/repos/symfony/validator/zipball/0d4d26bacafdead3b73586302fc5019efdfbdb2e",
  10810. "reference": "0d4d26bacafdead3b73586302fc5019efdfbdb2e",
  10811. "shasum": ""
  10812. },
  10813. "require": {
  10814. "php": "^5.5.9|>=7.0.8",
  10815. "symfony/polyfill-ctype": "~1.8",
  10816. "symfony/polyfill-mbstring": "~1.0",
  10817. "symfony/translation": "~2.8|~3.0|~4.0"
  10818. },
  10819. "conflict": {
  10820. "doctrine/lexer": "<1.0.2",
  10821. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10822. "symfony/dependency-injection": "<3.3",
  10823. "symfony/http-kernel": "<3.3.5",
  10824. "symfony/yaml": "<3.4"
  10825. },
  10826. "require-dev": {
  10827. "doctrine/annotations": "~1.7",
  10828. "doctrine/cache": "~1.0",
  10829. "egulias/email-validator": "^2.1.10",
  10830. "symfony/cache": "~3.1|~4.0",
  10831. "symfony/config": "~2.8|~3.0|~4.0",
  10832. "symfony/dependency-injection": "~3.3|~4.0",
  10833. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10834. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10835. "symfony/http-kernel": "^3.3.5|~4.0",
  10836. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10837. "symfony/property-access": "~2.8|~3.0|~4.0",
  10838. "symfony/var-dumper": "~3.3|~4.0",
  10839. "symfony/yaml": "~3.4|~4.0"
  10840. },
  10841. "suggest": {
  10842. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10843. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10844. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10845. "psr/cache-implementation": "For using the metadata cache.",
  10846. "symfony/config": "",
  10847. "symfony/expression-language": "For using the Expression validator",
  10848. "symfony/http-foundation": "",
  10849. "symfony/intl": "",
  10850. "symfony/property-access": "For accessing properties within comparison constraints",
  10851. "symfony/yaml": ""
  10852. },
  10853. "type": "library",
  10854. "extra": {
  10855. "branch-alias": {
  10856. "dev-master": "3.4-dev"
  10857. }
  10858. },
  10859. "autoload": {
  10860. "psr-4": {
  10861. "Symfony\\Component\\Validator\\": ""
  10862. },
  10863. "exclude-from-classmap": [
  10864. "/Tests/"
  10865. ]
  10866. },
  10867. "notification-url": "https://packagist.org/downloads/",
  10868. "license": [
  10869. "MIT"
  10870. ],
  10871. "authors": [
  10872. {
  10873. "name": "Fabien Potencier",
  10874. "email": "fabien@symfony.com"
  10875. },
  10876. {
  10877. "name": "Symfony Community",
  10878. "homepage": "https://symfony.com/contributors"
  10879. }
  10880. ],
  10881. "description": "Symfony Validator Component",
  10882. "homepage": "https://symfony.com",
  10883. "time": "2020-04-26T08:10:12+00:00"
  10884. },
  10885. {
  10886. "name": "symfony/var-dumper",
  10887. "version": "v3.4.40",
  10888. "source": {
  10889. "type": "git",
  10890. "url": "https://github.com/symfony/var-dumper.git",
  10891. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb"
  10892. },
  10893. "dist": {
  10894. "type": "zip",
  10895. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  10896. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  10897. "shasum": ""
  10898. },
  10899. "require": {
  10900. "php": "^5.5.9|>=7.0.8",
  10901. "symfony/polyfill-mbstring": "~1.0"
  10902. },
  10903. "conflict": {
  10904. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10905. },
  10906. "require-dev": {
  10907. "ext-iconv": "*",
  10908. "twig/twig": "~1.34|~2.4"
  10909. },
  10910. "suggest": {
  10911. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10912. "ext-intl": "To show region name in time zone dump",
  10913. "ext-symfony_debug": ""
  10914. },
  10915. "type": "library",
  10916. "extra": {
  10917. "branch-alias": {
  10918. "dev-master": "3.4-dev"
  10919. }
  10920. },
  10921. "autoload": {
  10922. "files": [
  10923. "Resources/functions/dump.php"
  10924. ],
  10925. "psr-4": {
  10926. "Symfony\\Component\\VarDumper\\": ""
  10927. },
  10928. "exclude-from-classmap": [
  10929. "/Tests/"
  10930. ]
  10931. },
  10932. "notification-url": "https://packagist.org/downloads/",
  10933. "license": [
  10934. "MIT"
  10935. ],
  10936. "authors": [
  10937. {
  10938. "name": "Nicolas Grekas",
  10939. "email": "p@tchwork.com"
  10940. },
  10941. {
  10942. "name": "Symfony Community",
  10943. "homepage": "https://symfony.com/contributors"
  10944. }
  10945. ],
  10946. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10947. "homepage": "https://symfony.com",
  10948. "keywords": [
  10949. "debug",
  10950. "dump"
  10951. ],
  10952. "time": "2020-03-17T22:27:36+00:00"
  10953. },
  10954. {
  10955. "name": "symfony/yaml",
  10956. "version": "v3.4.40",
  10957. "source": {
  10958. "type": "git",
  10959. "url": "https://github.com/symfony/yaml.git",
  10960. "reference": "8fef49ac1357f4e05c997a1f139467ccb186bffa"
  10961. },
  10962. "dist": {
  10963. "type": "zip",
  10964. "url": "https://api.github.com/repos/symfony/yaml/zipball/8fef49ac1357f4e05c997a1f139467ccb186bffa",
  10965. "reference": "8fef49ac1357f4e05c997a1f139467ccb186bffa",
  10966. "shasum": ""
  10967. },
  10968. "require": {
  10969. "php": "^5.5.9|>=7.0.8",
  10970. "symfony/polyfill-ctype": "~1.8"
  10971. },
  10972. "conflict": {
  10973. "symfony/console": "<3.4"
  10974. },
  10975. "require-dev": {
  10976. "symfony/console": "~3.4|~4.0"
  10977. },
  10978. "suggest": {
  10979. "symfony/console": "For validating YAML files using the lint command"
  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\\Yaml\\": ""
  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 Yaml Component",
  11010. "homepage": "https://symfony.com",
  11011. "time": "2020-04-24T10:16:04+00:00"
  11012. },
  11013. {
  11014. "name": "theseer/tokenizer",
  11015. "version": "1.1.3",
  11016. "source": {
  11017. "type": "git",
  11018. "url": "https://github.com/theseer/tokenizer.git",
  11019. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  11020. },
  11021. "dist": {
  11022. "type": "zip",
  11023. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  11024. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  11025. "shasum": ""
  11026. },
  11027. "require": {
  11028. "ext-dom": "*",
  11029. "ext-tokenizer": "*",
  11030. "ext-xmlwriter": "*",
  11031. "php": "^7.0"
  11032. },
  11033. "type": "library",
  11034. "autoload": {
  11035. "classmap": [
  11036. "src/"
  11037. ]
  11038. },
  11039. "notification-url": "https://packagist.org/downloads/",
  11040. "license": [
  11041. "BSD-3-Clause"
  11042. ],
  11043. "authors": [
  11044. {
  11045. "name": "Arne Blankerts",
  11046. "email": "arne@blankerts.de",
  11047. "role": "Developer"
  11048. }
  11049. ],
  11050. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11051. "time": "2019-06-13T22:48:21+00:00"
  11052. },
  11053. {
  11054. "name": "twig/twig",
  11055. "version": "v1.42.5",
  11056. "source": {
  11057. "type": "git",
  11058. "url": "https://github.com/twigphp/Twig.git",
  11059. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  11060. },
  11061. "dist": {
  11062. "type": "zip",
  11063. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  11064. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  11065. "shasum": ""
  11066. },
  11067. "require": {
  11068. "php": ">=5.5.0",
  11069. "symfony/polyfill-ctype": "^1.8"
  11070. },
  11071. "require-dev": {
  11072. "psr/container": "^1.0",
  11073. "symfony/phpunit-bridge": "^4.4|^5.0"
  11074. },
  11075. "type": "library",
  11076. "extra": {
  11077. "branch-alias": {
  11078. "dev-master": "1.42-dev"
  11079. }
  11080. },
  11081. "autoload": {
  11082. "psr-0": {
  11083. "Twig_": "lib/"
  11084. },
  11085. "psr-4": {
  11086. "Twig\\": "src/"
  11087. }
  11088. },
  11089. "notification-url": "https://packagist.org/downloads/",
  11090. "license": [
  11091. "BSD-3-Clause"
  11092. ],
  11093. "authors": [
  11094. {
  11095. "name": "Fabien Potencier",
  11096. "email": "fabien@symfony.com",
  11097. "homepage": "http://fabien.potencier.org",
  11098. "role": "Lead Developer"
  11099. },
  11100. {
  11101. "name": "Twig Team",
  11102. "role": "Contributors"
  11103. },
  11104. {
  11105. "name": "Armin Ronacher",
  11106. "email": "armin.ronacher@active-4.com",
  11107. "role": "Project Founder"
  11108. }
  11109. ],
  11110. "description": "Twig, the flexible, fast, and secure template language for PHP",
  11111. "homepage": "https://twig.symfony.com",
  11112. "keywords": [
  11113. "templating"
  11114. ],
  11115. "time": "2020-02-11T05:59:23+00:00"
  11116. },
  11117. {
  11118. "name": "typo3/phar-stream-wrapper",
  11119. "version": "v2.1.4",
  11120. "source": {
  11121. "type": "git",
  11122. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  11123. "reference": "ade693720ad562224281f8984319b7337cfae99e"
  11124. },
  11125. "dist": {
  11126. "type": "zip",
  11127. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/ade693720ad562224281f8984319b7337cfae99e",
  11128. "reference": "ade693720ad562224281f8984319b7337cfae99e",
  11129. "shasum": ""
  11130. },
  11131. "require": {
  11132. "brumann/polyfill-unserialize": "^1.0",
  11133. "ext-json": "*",
  11134. "php": "^5.3.3|^7.0"
  11135. },
  11136. "require-dev": {
  11137. "ext-xdebug": "*",
  11138. "phpunit/phpunit": "^4.8.36"
  11139. },
  11140. "suggest": {
  11141. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  11142. },
  11143. "type": "library",
  11144. "autoload": {
  11145. "psr-4": {
  11146. "TYPO3\\PharStreamWrapper\\": "src/"
  11147. }
  11148. },
  11149. "notification-url": "https://packagist.org/downloads/",
  11150. "license": [
  11151. "MIT"
  11152. ],
  11153. "description": "Interceptors for PHP's native phar:// stream handling",
  11154. "homepage": "https://typo3.org/",
  11155. "keywords": [
  11156. "phar",
  11157. "php",
  11158. "security",
  11159. "stream-wrapper"
  11160. ],
  11161. "time": "2019-12-10T11:53:54+00:00"
  11162. },
  11163. {
  11164. "name": "vlucas/phpdotenv",
  11165. "version": "v2.6.4",
  11166. "source": {
  11167. "type": "git",
  11168. "url": "https://github.com/vlucas/phpdotenv.git",
  11169. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  11170. },
  11171. "dist": {
  11172. "type": "zip",
  11173. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  11174. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  11175. "shasum": ""
  11176. },
  11177. "require": {
  11178. "php": "^5.3.9 || ^7.0 || ^8.0",
  11179. "symfony/polyfill-ctype": "^1.9"
  11180. },
  11181. "require-dev": {
  11182. "ext-filter": "*",
  11183. "ext-pcre": "*",
  11184. "phpunit/phpunit": "^4.8.35 || ^5.0"
  11185. },
  11186. "suggest": {
  11187. "ext-filter": "Required to use the boolean validator.",
  11188. "ext-pcre": "Required to use most of the library."
  11189. },
  11190. "type": "library",
  11191. "extra": {
  11192. "branch-alias": {
  11193. "dev-master": "2.6-dev"
  11194. }
  11195. },
  11196. "autoload": {
  11197. "psr-4": {
  11198. "Dotenv\\": "src/"
  11199. }
  11200. },
  11201. "notification-url": "https://packagist.org/downloads/",
  11202. "license": [
  11203. "BSD-3-Clause"
  11204. ],
  11205. "authors": [
  11206. {
  11207. "name": "Graham Campbell",
  11208. "email": "graham@alt-three.com",
  11209. "homepage": "https://gjcampbell.co.uk/"
  11210. },
  11211. {
  11212. "name": "Vance Lucas",
  11213. "email": "vance@vancelucas.com",
  11214. "homepage": "https://vancelucas.com/"
  11215. }
  11216. ],
  11217. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  11218. "keywords": [
  11219. "dotenv",
  11220. "env",
  11221. "environment"
  11222. ],
  11223. "time": "2020-05-02T13:38:00+00:00"
  11224. },
  11225. {
  11226. "name": "webflo/drupal-core-require-dev",
  11227. "version": "8.7.14",
  11228. "source": {
  11229. "type": "git",
  11230. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11231. "reference": "7ad955c04cfccbcd84b64239b7ed057c50a0a90b"
  11232. },
  11233. "dist": {
  11234. "type": "zip",
  11235. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/7ad955c04cfccbcd84b64239b7ed057c50a0a90b",
  11236. "reference": "7ad955c04cfccbcd84b64239b7ed057c50a0a90b",
  11237. "shasum": ""
  11238. },
  11239. "require": {
  11240. "behat/mink": "1.7.x-dev",
  11241. "behat/mink-goutte-driver": "^1.2",
  11242. "behat/mink-selenium2-driver": "1.3.x-dev",
  11243. "drupal/coder": "^8.3.1",
  11244. "drupal/core": "8.7.14",
  11245. "jcalderonzumba/gastonjs": "^1.0.2",
  11246. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11247. "justinrainbow/json-schema": "^5.2",
  11248. "mikey179/vfsstream": "^1.2",
  11249. "phpspec/prophecy": "^1.7",
  11250. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11251. "symfony/css-selector": "^3.4.0",
  11252. "symfony/debug": "^3.4.0",
  11253. "symfony/phpunit-bridge": "^3.4.3"
  11254. },
  11255. "type": "metapackage",
  11256. "notification-url": "https://packagist.org/downloads/",
  11257. "license": [
  11258. "GPL-2.0-or-later"
  11259. ],
  11260. "description": "require-dev dependencies from drupal/core",
  11261. "abandoned": "drupal/core-dev",
  11262. "time": "2020-05-20T15:32:09+00:00"
  11263. },
  11264. {
  11265. "name": "webflo/drupal-core-strict",
  11266. "version": "8.0.0-beta15",
  11267. "source": {
  11268. "type": "git",
  11269. "url": "https://github.com/webflo/drupal-core-strict.git",
  11270. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  11271. },
  11272. "dist": {
  11273. "type": "zip",
  11274. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  11275. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  11276. "shasum": ""
  11277. },
  11278. "type": "metapackage",
  11279. "notification-url": "https://packagist.org/downloads/",
  11280. "license": [
  11281. "GPL-2.0-or-later"
  11282. ],
  11283. "description": "Locked core dependencies",
  11284. "abandoned": "drupal/core-recommended",
  11285. "time": "2018-01-30T18:48:19+00:00"
  11286. },
  11287. {
  11288. "name": "webflo/drupal-finder",
  11289. "version": "1.2.0",
  11290. "source": {
  11291. "type": "git",
  11292. "url": "https://github.com/webflo/drupal-finder.git",
  11293. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  11294. },
  11295. "dist": {
  11296. "type": "zip",
  11297. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11298. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11299. "shasum": ""
  11300. },
  11301. "require": {
  11302. "ext-json": "*"
  11303. },
  11304. "require-dev": {
  11305. "mikey179/vfsstream": "^1.6",
  11306. "phpunit/phpunit": "^4.8"
  11307. },
  11308. "type": "library",
  11309. "autoload": {
  11310. "classmap": [
  11311. "src/DrupalFinder.php"
  11312. ]
  11313. },
  11314. "notification-url": "https://packagist.org/downloads/",
  11315. "license": [
  11316. "GPL-2.0+"
  11317. ],
  11318. "authors": [
  11319. {
  11320. "name": "Florian Weber",
  11321. "email": "florian@webflo.org"
  11322. }
  11323. ],
  11324. "description": "Helper class to locate a Drupal installation from a given path.",
  11325. "time": "2019-08-02T08:06:18+00:00"
  11326. },
  11327. {
  11328. "name": "webmozart/assert",
  11329. "version": "1.8.0",
  11330. "source": {
  11331. "type": "git",
  11332. "url": "https://github.com/webmozart/assert.git",
  11333. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  11334. },
  11335. "dist": {
  11336. "type": "zip",
  11337. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  11338. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  11339. "shasum": ""
  11340. },
  11341. "require": {
  11342. "php": "^5.3.3 || ^7.0",
  11343. "symfony/polyfill-ctype": "^1.8"
  11344. },
  11345. "conflict": {
  11346. "vimeo/psalm": "<3.9.1"
  11347. },
  11348. "require-dev": {
  11349. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11350. },
  11351. "type": "library",
  11352. "autoload": {
  11353. "psr-4": {
  11354. "Webmozart\\Assert\\": "src/"
  11355. }
  11356. },
  11357. "notification-url": "https://packagist.org/downloads/",
  11358. "license": [
  11359. "MIT"
  11360. ],
  11361. "authors": [
  11362. {
  11363. "name": "Bernhard Schussek",
  11364. "email": "bschussek@gmail.com"
  11365. }
  11366. ],
  11367. "description": "Assertions to validate method input/output with nice error messages.",
  11368. "keywords": [
  11369. "assert",
  11370. "check",
  11371. "validate"
  11372. ],
  11373. "time": "2020-04-18T12:12:48+00:00"
  11374. },
  11375. {
  11376. "name": "webmozart/path-util",
  11377. "version": "2.3.0",
  11378. "source": {
  11379. "type": "git",
  11380. "url": "https://github.com/webmozart/path-util.git",
  11381. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  11382. },
  11383. "dist": {
  11384. "type": "zip",
  11385. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11386. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11387. "shasum": ""
  11388. },
  11389. "require": {
  11390. "php": ">=5.3.3",
  11391. "webmozart/assert": "~1.0"
  11392. },
  11393. "require-dev": {
  11394. "phpunit/phpunit": "^4.6",
  11395. "sebastian/version": "^1.0.1"
  11396. },
  11397. "type": "library",
  11398. "extra": {
  11399. "branch-alias": {
  11400. "dev-master": "2.3-dev"
  11401. }
  11402. },
  11403. "autoload": {
  11404. "psr-4": {
  11405. "Webmozart\\PathUtil\\": "src/"
  11406. }
  11407. },
  11408. "notification-url": "https://packagist.org/downloads/",
  11409. "license": [
  11410. "MIT"
  11411. ],
  11412. "authors": [
  11413. {
  11414. "name": "Bernhard Schussek",
  11415. "email": "bschussek@gmail.com"
  11416. }
  11417. ],
  11418. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  11419. "time": "2015-12-17T08:42:14+00:00"
  11420. },
  11421. {
  11422. "name": "zaporylie/composer-drupal-optimizations",
  11423. "version": "1.1.1",
  11424. "source": {
  11425. "type": "git",
  11426. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  11427. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  11428. },
  11429. "dist": {
  11430. "type": "zip",
  11431. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  11432. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  11433. "shasum": ""
  11434. },
  11435. "require": {
  11436. "composer-plugin-api": "^1.1"
  11437. },
  11438. "require-dev": {
  11439. "composer/composer": "^1.6",
  11440. "phpunit/phpunit": "^6"
  11441. },
  11442. "type": "composer-plugin",
  11443. "extra": {
  11444. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  11445. },
  11446. "autoload": {
  11447. "psr-4": {
  11448. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  11449. }
  11450. },
  11451. "notification-url": "https://packagist.org/downloads/",
  11452. "license": [
  11453. "GPL-2.0-or-later"
  11454. ],
  11455. "authors": [
  11456. {
  11457. "name": "Jakub Piasecki",
  11458. "email": "jakub@piaseccy.pl"
  11459. }
  11460. ],
  11461. "description": "Composer plugin to improve composer performance for Drupal projects",
  11462. "time": "2019-10-02T17:01:11+00:00"
  11463. },
  11464. {
  11465. "name": "zendframework/zend-diactoros",
  11466. "version": "1.8.7",
  11467. "source": {
  11468. "type": "git",
  11469. "url": "https://github.com/zendframework/zend-diactoros.git",
  11470. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  11471. },
  11472. "dist": {
  11473. "type": "zip",
  11474. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11475. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11476. "shasum": ""
  11477. },
  11478. "require": {
  11479. "php": "^5.6 || ^7.0",
  11480. "psr/http-message": "^1.0"
  11481. },
  11482. "provide": {
  11483. "psr/http-message-implementation": "1.0"
  11484. },
  11485. "require-dev": {
  11486. "ext-dom": "*",
  11487. "ext-libxml": "*",
  11488. "php-http/psr7-integration-tests": "dev-master",
  11489. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  11490. "zendframework/zend-coding-standard": "~1.0"
  11491. },
  11492. "type": "library",
  11493. "extra": {
  11494. "branch-alias": {
  11495. "dev-release-1.8": "1.8.x-dev"
  11496. }
  11497. },
  11498. "autoload": {
  11499. "files": [
  11500. "src/functions/create_uploaded_file.php",
  11501. "src/functions/marshal_headers_from_sapi.php",
  11502. "src/functions/marshal_method_from_sapi.php",
  11503. "src/functions/marshal_protocol_version_from_sapi.php",
  11504. "src/functions/marshal_uri_from_sapi.php",
  11505. "src/functions/normalize_server.php",
  11506. "src/functions/normalize_uploaded_files.php",
  11507. "src/functions/parse_cookie_header.php"
  11508. ],
  11509. "psr-4": {
  11510. "Zend\\Diactoros\\": "src/"
  11511. }
  11512. },
  11513. "notification-url": "https://packagist.org/downloads/",
  11514. "license": [
  11515. "BSD-2-Clause"
  11516. ],
  11517. "description": "PSR HTTP Message implementations",
  11518. "homepage": "https://github.com/zendframework/zend-diactoros",
  11519. "keywords": [
  11520. "http",
  11521. "psr",
  11522. "psr-7"
  11523. ],
  11524. "abandoned": "laminas/laminas-diactoros",
  11525. "time": "2019-08-06T17:53:53+00:00"
  11526. },
  11527. {
  11528. "name": "zendframework/zend-escaper",
  11529. "version": "2.6.1",
  11530. "source": {
  11531. "type": "git",
  11532. "url": "https://github.com/zendframework/zend-escaper.git",
  11533. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  11534. },
  11535. "dist": {
  11536. "type": "zip",
  11537. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11538. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11539. "shasum": ""
  11540. },
  11541. "require": {
  11542. "php": "^5.6 || ^7.0"
  11543. },
  11544. "require-dev": {
  11545. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11546. "zendframework/zend-coding-standard": "~1.0.0"
  11547. },
  11548. "type": "library",
  11549. "extra": {
  11550. "branch-alias": {
  11551. "dev-master": "2.6.x-dev",
  11552. "dev-develop": "2.7.x-dev"
  11553. }
  11554. },
  11555. "autoload": {
  11556. "psr-4": {
  11557. "Zend\\Escaper\\": "src/"
  11558. }
  11559. },
  11560. "notification-url": "https://packagist.org/downloads/",
  11561. "license": [
  11562. "BSD-3-Clause"
  11563. ],
  11564. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  11565. "keywords": [
  11566. "ZendFramework",
  11567. "escaper",
  11568. "zf"
  11569. ],
  11570. "abandoned": "laminas/laminas-escaper",
  11571. "time": "2019-09-05T20:03:20+00:00"
  11572. },
  11573. {
  11574. "name": "zendframework/zend-feed",
  11575. "version": "2.12.0",
  11576. "source": {
  11577. "type": "git",
  11578. "url": "https://github.com/zendframework/zend-feed.git",
  11579. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  11580. },
  11581. "dist": {
  11582. "type": "zip",
  11583. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  11584. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  11585. "shasum": ""
  11586. },
  11587. "require": {
  11588. "ext-dom": "*",
  11589. "ext-libxml": "*",
  11590. "php": "^5.6 || ^7.0",
  11591. "zendframework/zend-escaper": "^2.5.2",
  11592. "zendframework/zend-stdlib": "^3.2.1"
  11593. },
  11594. "require-dev": {
  11595. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  11596. "psr/http-message": "^1.0.1",
  11597. "zendframework/zend-cache": "^2.7.2",
  11598. "zendframework/zend-coding-standard": "~1.0.0",
  11599. "zendframework/zend-db": "^2.8.2",
  11600. "zendframework/zend-http": "^2.7",
  11601. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  11602. "zendframework/zend-validator": "^2.10.1"
  11603. },
  11604. "suggest": {
  11605. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11606. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11607. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11608. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11609. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11610. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  11611. },
  11612. "type": "library",
  11613. "extra": {
  11614. "branch-alias": {
  11615. "dev-master": "2.12.x-dev",
  11616. "dev-develop": "2.13.x-dev"
  11617. }
  11618. },
  11619. "autoload": {
  11620. "psr-4": {
  11621. "Zend\\Feed\\": "src/"
  11622. }
  11623. },
  11624. "notification-url": "https://packagist.org/downloads/",
  11625. "license": [
  11626. "BSD-3-Clause"
  11627. ],
  11628. "description": "provides functionality for consuming RSS and Atom feeds",
  11629. "keywords": [
  11630. "ZendFramework",
  11631. "feed",
  11632. "zf"
  11633. ],
  11634. "abandoned": "laminas/laminas-feed",
  11635. "time": "2019-03-05T20:08:49+00:00"
  11636. },
  11637. {
  11638. "name": "zendframework/zend-stdlib",
  11639. "version": "3.2.1",
  11640. "source": {
  11641. "type": "git",
  11642. "url": "https://github.com/zendframework/zend-stdlib.git",
  11643. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  11644. },
  11645. "dist": {
  11646. "type": "zip",
  11647. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11648. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11649. "shasum": ""
  11650. },
  11651. "require": {
  11652. "php": "^5.6 || ^7.0"
  11653. },
  11654. "require-dev": {
  11655. "phpbench/phpbench": "^0.13",
  11656. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11657. "zendframework/zend-coding-standard": "~1.0.0"
  11658. },
  11659. "type": "library",
  11660. "extra": {
  11661. "branch-alias": {
  11662. "dev-master": "3.2.x-dev",
  11663. "dev-develop": "3.3.x-dev"
  11664. }
  11665. },
  11666. "autoload": {
  11667. "psr-4": {
  11668. "Zend\\Stdlib\\": "src/"
  11669. }
  11670. },
  11671. "notification-url": "https://packagist.org/downloads/",
  11672. "license": [
  11673. "BSD-3-Clause"
  11674. ],
  11675. "description": "SPL extensions, array utilities, error handlers, and more",
  11676. "keywords": [
  11677. "ZendFramework",
  11678. "stdlib",
  11679. "zf"
  11680. ],
  11681. "abandoned": "laminas/laminas-stdlib",
  11682. "time": "2018-08-28T21:34:05+00:00"
  11683. }
  11684. ],
  11685. "packages-dev": [],
  11686. "aliases": [],
  11687. "minimum-stability": "dev",
  11688. "stability-flags": {
  11689. "drupal/bulkdelete": 20,
  11690. "drupal/domain_menu_access": 20,
  11691. "drupal/filefield_sources": 20,
  11692. "drupal/filter_perms": 20,
  11693. "drupal/maillog": 20,
  11694. "drupal/path_alias_xt": 20,
  11695. "drupal/synonyms": 20,
  11696. "drupal/toolbar_themes": 20,
  11697. "drupal/workflow": 20
  11698. },
  11699. "prefer-stable": true,
  11700. "prefer-lowest": false,
  11701. "platform": {
  11702. "php": ">=5.6"
  11703. },
  11704. "platform-dev": []
  11705. }