composer.lock 412 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474
  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": "97b07470d0cf59969ae5d03c2a5e5c26",
  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.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.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": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "behat/mink",
  127. "version": "dev-master",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/minkphp/Mink.git",
  131. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/minkphp/Mink/zipball/a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  136. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  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": "2019-07-15T12:45:29+00:00"
  183. },
  184. {
  185. "name": "behat/mink-browserkit-driver",
  186. "version": "1.3.3",
  187. "source": {
  188. "type": "git",
  189. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  190. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  191. },
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  195. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  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/http-kernel": "~2.3|~3.0|~4.0"
  207. },
  208. "type": "mink-driver",
  209. "extra": {
  210. "branch-alias": {
  211. "dev-master": "1.3.x-dev"
  212. }
  213. },
  214. "autoload": {
  215. "psr-4": {
  216. "Behat\\Mink\\Driver\\": "src/"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "MIT"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Konstantin Kudryashov",
  226. "email": "ever.zet@gmail.com",
  227. "homepage": "http://everzet.com"
  228. }
  229. ],
  230. "description": "Symfony2 BrowserKit driver for Mink framework",
  231. "homepage": "http://mink.behat.org/",
  232. "keywords": [
  233. "Mink",
  234. "Symfony2",
  235. "browser",
  236. "testing"
  237. ],
  238. "time": "2018-05-02T09:25:31+00:00"
  239. },
  240. {
  241. "name": "behat/mink-goutte-driver",
  242. "version": "v1.2.1",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  246. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  251. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "behat/mink": "~1.6@dev",
  256. "behat/mink-browserkit-driver": "~1.2@dev",
  257. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  258. "php": ">=5.3.1"
  259. },
  260. "require-dev": {
  261. "symfony/phpunit-bridge": "~2.7|~3.0"
  262. },
  263. "type": "mink-driver",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.2.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Behat\\Mink\\Driver\\": "src/"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Konstantin Kudryashov",
  281. "email": "ever.zet@gmail.com",
  282. "homepage": "http://everzet.com"
  283. }
  284. ],
  285. "description": "Goutte driver for Mink framework",
  286. "homepage": "http://mink.behat.org/",
  287. "keywords": [
  288. "browser",
  289. "goutte",
  290. "headless",
  291. "testing"
  292. ],
  293. "time": "2016-03-05T09:04:22+00:00"
  294. },
  295. {
  296. "name": "behat/mink-selenium2-driver",
  297. "version": "dev-master",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  301. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  306. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "behat/mink": "~1.7@dev",
  311. "instaclick/php-webdriver": "~1.1",
  312. "php": ">=5.4"
  313. },
  314. "require-dev": {
  315. "mink/driver-testsuite": "dev-master"
  316. },
  317. "type": "mink-driver",
  318. "extra": {
  319. "branch-alias": {
  320. "dev-master": "1.3.x-dev"
  321. }
  322. },
  323. "autoload": {
  324. "psr-4": {
  325. "Behat\\Mink\\Driver\\": "src/"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "MIT"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Konstantin Kudryashov",
  335. "email": "ever.zet@gmail.com",
  336. "homepage": "http://everzet.com"
  337. },
  338. {
  339. "name": "Pete Otaqui",
  340. "email": "pete@otaqui.com",
  341. "homepage": "https://github.com/pete-otaqui"
  342. }
  343. ],
  344. "description": "Selenium2 (WebDriver) driver for Mink framework",
  345. "homepage": "http://mink.behat.org/",
  346. "keywords": [
  347. "ajax",
  348. "browser",
  349. "javascript",
  350. "selenium",
  351. "testing",
  352. "webdriver"
  353. ],
  354. "time": "2018-10-10T12:39:06+00:00"
  355. },
  356. {
  357. "name": "brumann/polyfill-unserialize",
  358. "version": "v1.0.4",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  362. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  367. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  368. "shasum": ""
  369. },
  370. "require": {
  371. "php": "^5.3|^7.0"
  372. },
  373. "type": "library",
  374. "autoload": {
  375. "psr-4": {
  376. "Brumann\\Polyfill\\": "src/"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Denis Brumann",
  386. "email": "denis.brumann@sensiolabs.de"
  387. }
  388. ],
  389. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  390. "time": "2019-07-14T23:16:24+00:00"
  391. },
  392. {
  393. "name": "chi-teck/drupal-code-generator",
  394. "version": "1.30.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  398. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  403. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "ext-json": "*",
  408. "php": ">=5.5.9",
  409. "symfony/console": "^3.4 || ^4.0",
  410. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  411. "twig/twig": "^1.38.2 || ^2.10"
  412. },
  413. "bin": [
  414. "bin/dcg"
  415. ],
  416. "type": "library",
  417. "extra": {
  418. "branch-alias": {
  419. "dev-master": "1.x-dev"
  420. }
  421. },
  422. "autoload": {
  423. "files": [
  424. "src/bootstrap.php"
  425. ],
  426. "psr-4": {
  427. "DrupalCodeGenerator\\": "src"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "GPL-2.0-or-later"
  433. ],
  434. "description": "Drupal code generator",
  435. "time": "2019-10-27T14:27:26+00:00"
  436. },
  437. {
  438. "name": "composer/installers",
  439. "version": "v1.7.0",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/composer/installers.git",
  443. "reference": "141b272484481432cda342727a427dc1e206bfa0"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
  448. "reference": "141b272484481432cda342727a427dc1e206bfa0",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "composer-plugin-api": "^1.0"
  453. },
  454. "replace": {
  455. "roundcube/plugin-installer": "*",
  456. "shama/baton": "*"
  457. },
  458. "require-dev": {
  459. "composer/composer": "1.0.*@dev",
  460. "phpunit/phpunit": "^4.8.36"
  461. },
  462. "type": "composer-plugin",
  463. "extra": {
  464. "class": "Composer\\Installers\\Plugin",
  465. "branch-alias": {
  466. "dev-master": "1.0-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-4": {
  471. "Composer\\Installers\\": "src/Composer/Installers"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Kyle Robinson Young",
  481. "email": "kyle@dontkry.com",
  482. "homepage": "https://github.com/shama"
  483. }
  484. ],
  485. "description": "A multi-framework Composer library installer",
  486. "homepage": "https://composer.github.io/installers/",
  487. "keywords": [
  488. "Craft",
  489. "Dolibarr",
  490. "Eliasis",
  491. "Hurad",
  492. "ImageCMS",
  493. "Kanboard",
  494. "Lan Management System",
  495. "MODX Evo",
  496. "Mautic",
  497. "Maya",
  498. "OXID",
  499. "Plentymarkets",
  500. "Porto",
  501. "RadPHP",
  502. "SMF",
  503. "Thelia",
  504. "Whmcs",
  505. "WolfCMS",
  506. "agl",
  507. "aimeos",
  508. "annotatecms",
  509. "attogram",
  510. "bitrix",
  511. "cakephp",
  512. "chef",
  513. "cockpit",
  514. "codeigniter",
  515. "concrete5",
  516. "croogo",
  517. "dokuwiki",
  518. "drupal",
  519. "eZ Platform",
  520. "elgg",
  521. "expressionengine",
  522. "fuelphp",
  523. "grav",
  524. "installer",
  525. "itop",
  526. "joomla",
  527. "known",
  528. "kohana",
  529. "laravel",
  530. "lavalite",
  531. "lithium",
  532. "magento",
  533. "majima",
  534. "mako",
  535. "mediawiki",
  536. "modulework",
  537. "modx",
  538. "moodle",
  539. "osclass",
  540. "phpbb",
  541. "piwik",
  542. "ppi",
  543. "puppet",
  544. "pxcms",
  545. "reindex",
  546. "roundcube",
  547. "shopware",
  548. "silverstripe",
  549. "sydes",
  550. "symfony",
  551. "typo3",
  552. "wordpress",
  553. "yawik",
  554. "zend",
  555. "zikula"
  556. ],
  557. "time": "2019-08-12T15:00:31+00:00"
  558. },
  559. {
  560. "name": "composer/semver",
  561. "version": "1.5.0",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/composer/semver.git",
  565. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  570. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  571. "shasum": ""
  572. },
  573. "require": {
  574. "php": "^5.3.2 || ^7.0"
  575. },
  576. "require-dev": {
  577. "phpunit/phpunit": "^4.5 || ^5.0.5",
  578. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "1.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Composer\\Semver\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Nils Adermann",
  598. "email": "naderman@naderman.de",
  599. "homepage": "http://www.naderman.de"
  600. },
  601. {
  602. "name": "Jordi Boggiano",
  603. "email": "j.boggiano@seld.be",
  604. "homepage": "http://seld.be"
  605. },
  606. {
  607. "name": "Rob Bast",
  608. "email": "rob.bast@gmail.com",
  609. "homepage": "http://robbast.nl"
  610. }
  611. ],
  612. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  613. "keywords": [
  614. "semantic",
  615. "semver",
  616. "validation",
  617. "versioning"
  618. ],
  619. "time": "2019-03-19T17:25:45+00:00"
  620. },
  621. {
  622. "name": "consolidation/annotated-command",
  623. "version": "2.12.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/consolidation/annotated-command.git",
  627. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  632. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "consolidation/output-formatters": "^3.4",
  637. "php": ">=5.4.5",
  638. "psr/log": "^1",
  639. "symfony/console": "^2.8|^3|^4",
  640. "symfony/event-dispatcher": "^2.5|^3|^4",
  641. "symfony/finder": "^2.5|^3|^4"
  642. },
  643. "require-dev": {
  644. "g1a/composer-test-scenarios": "^3",
  645. "php-coveralls/php-coveralls": "^1",
  646. "phpunit/phpunit": "^6",
  647. "squizlabs/php_codesniffer": "^2.7"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "scenarios": {
  652. "symfony4": {
  653. "require": {
  654. "symfony/console": "^4.0"
  655. },
  656. "config": {
  657. "platform": {
  658. "php": "7.1.3"
  659. }
  660. }
  661. },
  662. "symfony2": {
  663. "require": {
  664. "symfony/console": "^2.8"
  665. },
  666. "require-dev": {
  667. "phpunit/phpunit": "^4.8.36"
  668. },
  669. "remove": [
  670. "php-coveralls/php-coveralls"
  671. ],
  672. "config": {
  673. "platform": {
  674. "php": "5.4.8"
  675. }
  676. },
  677. "scenario-options": {
  678. "create-lockfile": "false"
  679. }
  680. },
  681. "phpunit4": {
  682. "require-dev": {
  683. "phpunit/phpunit": "^4.8.36"
  684. },
  685. "remove": [
  686. "php-coveralls/php-coveralls"
  687. ],
  688. "config": {
  689. "platform": {
  690. "php": "5.4.8"
  691. }
  692. }
  693. }
  694. },
  695. "branch-alias": {
  696. "dev-master": "2.x-dev"
  697. }
  698. },
  699. "autoload": {
  700. "psr-4": {
  701. "Consolidation\\AnnotatedCommand\\": "src"
  702. }
  703. },
  704. "notification-url": "https://packagist.org/downloads/",
  705. "license": [
  706. "MIT"
  707. ],
  708. "authors": [
  709. {
  710. "name": "Greg Anderson",
  711. "email": "greg.1.anderson@greenknowe.org"
  712. }
  713. ],
  714. "description": "Initialize Symfony Console commands from annotated command class methods.",
  715. "time": "2019-03-08T16:55:03+00:00"
  716. },
  717. {
  718. "name": "consolidation/config",
  719. "version": "1.2.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/consolidation/config.git",
  723. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  728. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  729. "shasum": ""
  730. },
  731. "require": {
  732. "dflydev/dot-access-data": "^1.1.0",
  733. "grasmash/expander": "^1",
  734. "php": ">=5.4.0"
  735. },
  736. "require-dev": {
  737. "g1a/composer-test-scenarios": "^3",
  738. "php-coveralls/php-coveralls": "^1",
  739. "phpunit/phpunit": "^5",
  740. "squizlabs/php_codesniffer": "2.*",
  741. "symfony/console": "^2.5|^3|^4",
  742. "symfony/yaml": "^2.8.11|^3|^4"
  743. },
  744. "suggest": {
  745. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "scenarios": {
  750. "symfony4": {
  751. "require-dev": {
  752. "symfony/console": "^4.0"
  753. },
  754. "config": {
  755. "platform": {
  756. "php": "7.1.3"
  757. }
  758. }
  759. },
  760. "symfony2": {
  761. "require-dev": {
  762. "symfony/console": "^2.8",
  763. "symfony/event-dispatcher": "^2.8",
  764. "phpunit/phpunit": "^4.8.36"
  765. },
  766. "remove": [
  767. "php-coveralls/php-coveralls"
  768. ],
  769. "config": {
  770. "platform": {
  771. "php": "5.4.8"
  772. }
  773. }
  774. }
  775. },
  776. "branch-alias": {
  777. "dev-master": "1.x-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "Consolidation\\Config\\": "src"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Greg Anderson",
  792. "email": "greg.1.anderson@greenknowe.org"
  793. }
  794. ],
  795. "description": "Provide configuration services for a commandline tool.",
  796. "time": "2019-03-03T19:37:04+00:00"
  797. },
  798. {
  799. "name": "consolidation/filter-via-dot-access-data",
  800. "version": "1.0.0",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  804. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  809. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "dflydev/dot-access-data": "^1.1.0",
  814. "php": ">=5.5.0"
  815. },
  816. "require-dev": {
  817. "consolidation/robo": "^1.2.3",
  818. "g1a/composer-test-scenarios": "^3",
  819. "knplabs/github-api": "^2.7",
  820. "php-coveralls/php-coveralls": "^1",
  821. "php-http/guzzle6-adapter": "^1.1",
  822. "phpunit/phpunit": "^5",
  823. "squizlabs/php_codesniffer": "^2.8",
  824. "symfony/console": "^2.8|^3|^4"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "scenarios": {
  829. "phpunit5": {
  830. "require-dev": {
  831. "phpunit/phpunit": "^5.7.27"
  832. },
  833. "remove": [
  834. "php-coveralls/php-coveralls"
  835. ],
  836. "config": {
  837. "platform": {
  838. "php": "5.6.33"
  839. }
  840. }
  841. }
  842. },
  843. "branch-alias": {
  844. "dev-master": "1.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Consolidation\\Filter\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Greg Anderson",
  859. "email": "greg.1.anderson@greenknowe.org"
  860. }
  861. ],
  862. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  863. "time": "2019-01-18T06:05:07+00:00"
  864. },
  865. {
  866. "name": "consolidation/log",
  867. "version": "1.1.1",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/consolidation/log.git",
  871. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  876. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": ">=5.4.5",
  881. "psr/log": "^1.0",
  882. "symfony/console": "^2.8|^3|^4"
  883. },
  884. "require-dev": {
  885. "g1a/composer-test-scenarios": "^3",
  886. "php-coveralls/php-coveralls": "^1",
  887. "phpunit/phpunit": "^6",
  888. "squizlabs/php_codesniffer": "^2"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "scenarios": {
  893. "symfony4": {
  894. "require": {
  895. "symfony/console": "^4.0"
  896. },
  897. "config": {
  898. "platform": {
  899. "php": "7.1.3"
  900. }
  901. }
  902. },
  903. "symfony2": {
  904. "require": {
  905. "symfony/console": "^2.8"
  906. },
  907. "require-dev": {
  908. "phpunit/phpunit": "^4.8.36"
  909. },
  910. "remove": [
  911. "php-coveralls/php-coveralls"
  912. ],
  913. "config": {
  914. "platform": {
  915. "php": "5.4.8"
  916. }
  917. }
  918. },
  919. "phpunit4": {
  920. "require-dev": {
  921. "phpunit/phpunit": "^4.8.36"
  922. },
  923. "remove": [
  924. "php-coveralls/php-coveralls"
  925. ],
  926. "config": {
  927. "platform": {
  928. "php": "5.4.8"
  929. }
  930. }
  931. }
  932. },
  933. "branch-alias": {
  934. "dev-master": "1.x-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "Consolidation\\Log\\": "src"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Greg Anderson",
  949. "email": "greg.1.anderson@greenknowe.org"
  950. }
  951. ],
  952. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  953. "time": "2019-01-01T17:30:51+00:00"
  954. },
  955. {
  956. "name": "consolidation/output-formatters",
  957. "version": "3.5.0",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/consolidation/output-formatters.git",
  961. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  966. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "dflydev/dot-access-data": "^1.1.0",
  971. "php": ">=5.4.0",
  972. "symfony/console": "^2.8|^3|^4",
  973. "symfony/finder": "^2.5|^3|^4"
  974. },
  975. "require-dev": {
  976. "g1a/composer-test-scenarios": "^3",
  977. "php-coveralls/php-coveralls": "^1",
  978. "phpunit/phpunit": "^5.7.27",
  979. "squizlabs/php_codesniffer": "^2.7",
  980. "symfony/var-dumper": "^2.8|^3|^4",
  981. "victorjonsson/markdowndocs": "^1.3"
  982. },
  983. "suggest": {
  984. "symfony/var-dumper": "For using the var_dump formatter"
  985. },
  986. "type": "library",
  987. "extra": {
  988. "scenarios": {
  989. "symfony4": {
  990. "require": {
  991. "symfony/console": "^4.0"
  992. },
  993. "require-dev": {
  994. "phpunit/phpunit": "^6"
  995. },
  996. "config": {
  997. "platform": {
  998. "php": "7.1.3"
  999. }
  1000. }
  1001. },
  1002. "symfony3": {
  1003. "require": {
  1004. "symfony/console": "^3.4",
  1005. "symfony/finder": "^3.4",
  1006. "symfony/var-dumper": "^3.4"
  1007. },
  1008. "config": {
  1009. "platform": {
  1010. "php": "5.6.32"
  1011. }
  1012. }
  1013. },
  1014. "symfony2": {
  1015. "require": {
  1016. "symfony/console": "^2.8"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "^4.8.36"
  1020. },
  1021. "remove": [
  1022. "php-coveralls/php-coveralls"
  1023. ],
  1024. "config": {
  1025. "platform": {
  1026. "php": "5.4.8"
  1027. }
  1028. },
  1029. "scenario-options": {
  1030. "create-lockfile": "false"
  1031. }
  1032. }
  1033. },
  1034. "branch-alias": {
  1035. "dev-master": "3.x-dev"
  1036. }
  1037. },
  1038. "autoload": {
  1039. "psr-4": {
  1040. "Consolidation\\OutputFormatters\\": "src"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Greg Anderson",
  1050. "email": "greg.1.anderson@greenknowe.org"
  1051. }
  1052. ],
  1053. "description": "Format text by applying transformations provided by plug-in formatters.",
  1054. "time": "2019-05-30T23:16:01+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/robo",
  1058. "version": "1.4.11",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/Robo.git",
  1062. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5fa1d901776a628167a325baa9db95d8edf13a80",
  1067. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/annotated-command": "^2.11.0",
  1072. "consolidation/config": "^1.2",
  1073. "consolidation/log": "~1",
  1074. "consolidation/output-formatters": "^3.1.13",
  1075. "consolidation/self-update": "^1",
  1076. "grasmash/yaml-expander": "^1.3",
  1077. "league/container": "^2.2",
  1078. "php": ">=5.5.0",
  1079. "symfony/console": "^2.8|^3|^4",
  1080. "symfony/event-dispatcher": "^2.5|^3|^4",
  1081. "symfony/filesystem": "^2.5|^3|^4",
  1082. "symfony/finder": "^2.5|^3|^4",
  1083. "symfony/process": "^2.5|^3|^4"
  1084. },
  1085. "replace": {
  1086. "codegyre/robo": "< 1.0"
  1087. },
  1088. "require-dev": {
  1089. "codeception/aspect-mock": "^1|^2.1.1",
  1090. "codeception/base": "^2.3.7",
  1091. "codeception/verify": "^0.3.2",
  1092. "g1a/composer-test-scenarios": "^3",
  1093. "goaop/framework": "~2.1.2",
  1094. "goaop/parser-reflection": "^1.1.0",
  1095. "natxet/cssmin": "3.0.4",
  1096. "nikic/php-parser": "^3.1.5",
  1097. "patchwork/jsqueeze": "~2",
  1098. "pear/archive_tar": "^1.4.4",
  1099. "php-coveralls/php-coveralls": "^1",
  1100. "phpunit/php-code-coverage": "~2|~4",
  1101. "sebastian/comparator": "^1.2.4",
  1102. "squizlabs/php_codesniffer": "^2.8"
  1103. },
  1104. "suggest": {
  1105. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  1106. "natxet/CssMin": "For minifying CSS files in taskMinify",
  1107. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  1108. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  1109. },
  1110. "bin": [
  1111. "robo"
  1112. ],
  1113. "type": "library",
  1114. "extra": {
  1115. "scenarios": {
  1116. "symfony4": {
  1117. "require": {
  1118. "symfony/console": "^4"
  1119. },
  1120. "config": {
  1121. "platform": {
  1122. "php": "7.1.3"
  1123. }
  1124. }
  1125. },
  1126. "symfony2": {
  1127. "require": {
  1128. "symfony/console": "^2.8"
  1129. },
  1130. "remove": [
  1131. "goaop/framework"
  1132. ],
  1133. "config": {
  1134. "platform": {
  1135. "php": "5.5.9"
  1136. }
  1137. },
  1138. "scenario-options": {
  1139. "create-lockfile": "false"
  1140. }
  1141. }
  1142. },
  1143. "branch-alias": {
  1144. "dev-master": "2.x-dev"
  1145. }
  1146. },
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Robo\\": "src"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Davert",
  1159. "email": "davert.php@resend.cc"
  1160. }
  1161. ],
  1162. "description": "Modern task runner",
  1163. "time": "2019-10-29T15:50:02+00:00"
  1164. },
  1165. {
  1166. "name": "consolidation/self-update",
  1167. "version": "1.1.5",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/consolidation/self-update.git",
  1171. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1176. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1177. "shasum": ""
  1178. },
  1179. "require": {
  1180. "php": ">=5.5.0",
  1181. "symfony/console": "^2.8|^3|^4",
  1182. "symfony/filesystem": "^2.5|^3|^4"
  1183. },
  1184. "bin": [
  1185. "scripts/release"
  1186. ],
  1187. "type": "library",
  1188. "extra": {
  1189. "branch-alias": {
  1190. "dev-master": "1.x-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "psr-4": {
  1195. "SelfUpdate\\": "src"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "MIT"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Greg Anderson",
  1205. "email": "greg.1.anderson@greenknowe.org"
  1206. },
  1207. {
  1208. "name": "Alexander Menk",
  1209. "email": "menk@mestrona.net"
  1210. }
  1211. ],
  1212. "description": "Provides a self:update command for Symfony Console applications.",
  1213. "time": "2018-10-28T01:52:03+00:00"
  1214. },
  1215. {
  1216. "name": "consolidation/site-alias",
  1217. "version": "3.0.0",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/consolidation/site-alias.git",
  1221. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1226. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "consolidation/config": "^1.2.1",
  1231. "php": ">=5.5.0"
  1232. },
  1233. "require-dev": {
  1234. "consolidation/robo": "^1.2.3",
  1235. "g1a/composer-test-scenarios": "^3",
  1236. "knplabs/github-api": "^2.7",
  1237. "php-coveralls/php-coveralls": "^1",
  1238. "php-http/guzzle6-adapter": "^1.1",
  1239. "phpunit/phpunit": "^6",
  1240. "squizlabs/php_codesniffer": "^2.8",
  1241. "symfony/console": "^2.8|^3|^4",
  1242. "symfony/yaml": "~2.3|^3"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "scenarios": {
  1247. "phpunit5": {
  1248. "require-dev": {
  1249. "phpunit/phpunit": "^5.7.27"
  1250. },
  1251. "remove": [
  1252. "php-coveralls/php-coveralls"
  1253. ],
  1254. "config": {
  1255. "platform": {
  1256. "php": "5.6.33"
  1257. }
  1258. }
  1259. }
  1260. },
  1261. "branch-alias": {
  1262. "dev-master": "3.x-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Consolidation\\SiteAlias\\": "src"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Moshe Weitzman",
  1277. "email": "weitzman@tejasa.com"
  1278. },
  1279. {
  1280. "name": "Greg Anderson",
  1281. "email": "greg.1.anderson@greenknowe.org"
  1282. }
  1283. ],
  1284. "description": "Manage alias records for local and remote sites.",
  1285. "time": "2019-03-12T17:31:48+00:00"
  1286. },
  1287. {
  1288. "name": "consolidation/site-process",
  1289. "version": "2.1.0",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/consolidation/site-process.git",
  1293. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1298. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "consolidation/config": "^1.2.1",
  1303. "consolidation/site-alias": "^3",
  1304. "php": ">=5.6.0",
  1305. "symfony/process": "^3.4"
  1306. },
  1307. "require-dev": {
  1308. "consolidation/robo": "^1.3",
  1309. "g1a/composer-test-scenarios": "^3",
  1310. "knplabs/github-api": "^2.7",
  1311. "php-coveralls/php-coveralls": "^1",
  1312. "php-http/guzzle6-adapter": "^1.1",
  1313. "phpunit/phpunit": "^6",
  1314. "squizlabs/php_codesniffer": "^2.8"
  1315. },
  1316. "type": "library",
  1317. "extra": {
  1318. "scenarios": {
  1319. "phpunit5": {
  1320. "require-dev": {
  1321. "phpunit/phpunit": "^5.7.27"
  1322. },
  1323. "remove": [
  1324. "php-coveralls/php-coveralls"
  1325. ],
  1326. "config": {
  1327. "platform": {
  1328. "php": "5.6.33"
  1329. }
  1330. }
  1331. }
  1332. },
  1333. "branch-alias": {
  1334. "dev-master": "0.x-dev"
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Consolidation\\SiteProcess\\": "src"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Greg Anderson",
  1349. "email": "greg.1.anderson@greenknowe.org"
  1350. },
  1351. {
  1352. "name": "Moshe Weitzman",
  1353. "email": "weitzman@tejasa.com"
  1354. }
  1355. ],
  1356. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1357. "time": "2019-09-10T17:56:24+00:00"
  1358. },
  1359. {
  1360. "name": "container-interop/container-interop",
  1361. "version": "1.2.0",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/container-interop/container-interop.git",
  1365. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1370. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "psr/container": "^1.0"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Interop\\Container\\": "src/Interop/Container/"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1387. "homepage": "https://github.com/container-interop/container-interop",
  1388. "time": "2017-02-14T19:40:03+00:00"
  1389. },
  1390. {
  1391. "name": "cweagans/composer-patches",
  1392. "version": "1.6.7",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/cweagans/composer-patches.git",
  1396. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1401. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "composer-plugin-api": "^1.0",
  1406. "php": ">=5.3.0"
  1407. },
  1408. "require-dev": {
  1409. "composer/composer": "~1.0",
  1410. "phpunit/phpunit": "~4.6"
  1411. },
  1412. "type": "composer-plugin",
  1413. "extra": {
  1414. "class": "cweagans\\Composer\\Patches"
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "cweagans\\Composer\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "BSD-3-Clause"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Cameron Eagans",
  1428. "email": "me@cweagans.net"
  1429. }
  1430. ],
  1431. "description": "Provides a way to patch Composer packages.",
  1432. "time": "2019-08-29T20:11:49+00:00"
  1433. },
  1434. {
  1435. "name": "dflydev/dot-access-configuration",
  1436. "version": "v1.0.3",
  1437. "source": {
  1438. "type": "git",
  1439. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1440. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1441. },
  1442. "dist": {
  1443. "type": "zip",
  1444. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1445. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1446. "shasum": ""
  1447. },
  1448. "require": {
  1449. "dflydev/dot-access-data": "1.*",
  1450. "dflydev/placeholder-resolver": "1.*",
  1451. "php": ">=5.3.2"
  1452. },
  1453. "require-dev": {
  1454. "symfony/yaml": "~2.1"
  1455. },
  1456. "suggest": {
  1457. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1458. },
  1459. "type": "library",
  1460. "extra": {
  1461. "branch-alias": {
  1462. "dev-master": "1.0-dev"
  1463. }
  1464. },
  1465. "autoload": {
  1466. "psr-0": {
  1467. "Dflydev\\DotAccessConfiguration": "src"
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "MIT"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Dragonfly Development Inc.",
  1477. "email": "info@dflydev.com",
  1478. "homepage": "http://dflydev.com"
  1479. },
  1480. {
  1481. "name": "Beau Simensen",
  1482. "email": "beau@dflydev.com",
  1483. "homepage": "http://beausimensen.com"
  1484. }
  1485. ],
  1486. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1487. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1488. "keywords": [
  1489. "config",
  1490. "configuration"
  1491. ],
  1492. "time": "2018-09-08T23:00:17+00:00"
  1493. },
  1494. {
  1495. "name": "dflydev/dot-access-data",
  1496. "version": "v1.1.0",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1500. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1505. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "php": ">=5.3.2"
  1510. },
  1511. "type": "library",
  1512. "extra": {
  1513. "branch-alias": {
  1514. "dev-master": "1.0-dev"
  1515. }
  1516. },
  1517. "autoload": {
  1518. "psr-0": {
  1519. "Dflydev\\DotAccessData": "src"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Dragonfly Development Inc.",
  1529. "email": "info@dflydev.com",
  1530. "homepage": "http://dflydev.com"
  1531. },
  1532. {
  1533. "name": "Beau Simensen",
  1534. "email": "beau@dflydev.com",
  1535. "homepage": "http://beausimensen.com"
  1536. },
  1537. {
  1538. "name": "Carlos Frutos",
  1539. "email": "carlos@kiwing.it",
  1540. "homepage": "https://github.com/cfrutos"
  1541. }
  1542. ],
  1543. "description": "Given a deep data structure, access data by dot notation.",
  1544. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1545. "keywords": [
  1546. "access",
  1547. "data",
  1548. "dot",
  1549. "notation"
  1550. ],
  1551. "time": "2017-01-20T21:14:22+00:00"
  1552. },
  1553. {
  1554. "name": "dflydev/placeholder-resolver",
  1555. "version": "v1.0.2",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1559. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1564. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": ">=5.3.2"
  1569. },
  1570. "type": "library",
  1571. "extra": {
  1572. "branch-alias": {
  1573. "dev-master": "1.0-dev"
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-0": {
  1578. "Dflydev\\PlaceholderResolver": "src"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Dragonfly Development Inc.",
  1588. "email": "info@dflydev.com",
  1589. "homepage": "http://dflydev.com"
  1590. },
  1591. {
  1592. "name": "Beau Simensen",
  1593. "email": "beau@dflydev.com",
  1594. "homepage": "http://beausimensen.com"
  1595. }
  1596. ],
  1597. "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.",
  1598. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1599. "keywords": [
  1600. "placeholder",
  1601. "resolver"
  1602. ],
  1603. "time": "2012-10-28T21:08:28+00:00"
  1604. },
  1605. {
  1606. "name": "dnoegel/php-xdg-base-dir",
  1607. "version": "0.1",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1611. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1616. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": ">=5.3.2"
  1621. },
  1622. "require-dev": {
  1623. "phpunit/phpunit": "@stable"
  1624. },
  1625. "type": "project",
  1626. "autoload": {
  1627. "psr-4": {
  1628. "XdgBaseDir\\": "src/"
  1629. }
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "description": "implementation of xdg base directory specification for php",
  1636. "time": "2014-10-24T07:27:01+00:00"
  1637. },
  1638. {
  1639. "name": "doctrine/annotations",
  1640. "version": "v1.4.0",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/doctrine/annotations.git",
  1644. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1649. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "doctrine/lexer": "1.*",
  1654. "php": "^5.6 || ^7.0"
  1655. },
  1656. "require-dev": {
  1657. "doctrine/cache": "1.*",
  1658. "phpunit/phpunit": "^5.7"
  1659. },
  1660. "type": "library",
  1661. "extra": {
  1662. "branch-alias": {
  1663. "dev-master": "1.4.x-dev"
  1664. }
  1665. },
  1666. "autoload": {
  1667. "psr-4": {
  1668. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1669. }
  1670. },
  1671. "notification-url": "https://packagist.org/downloads/",
  1672. "license": [
  1673. "MIT"
  1674. ],
  1675. "authors": [
  1676. {
  1677. "name": "Roman Borschel",
  1678. "email": "roman@code-factory.org"
  1679. },
  1680. {
  1681. "name": "Benjamin Eberlei",
  1682. "email": "kontakt@beberlei.de"
  1683. },
  1684. {
  1685. "name": "Guilherme Blanco",
  1686. "email": "guilhermeblanco@gmail.com"
  1687. },
  1688. {
  1689. "name": "Jonathan Wage",
  1690. "email": "jonwage@gmail.com"
  1691. },
  1692. {
  1693. "name": "Johannes Schmitt",
  1694. "email": "schmittjoh@gmail.com"
  1695. }
  1696. ],
  1697. "description": "Docblock Annotations Parser",
  1698. "homepage": "http://www.doctrine-project.org",
  1699. "keywords": [
  1700. "annotations",
  1701. "docblock",
  1702. "parser"
  1703. ],
  1704. "time": "2017-02-24T16:22:25+00:00"
  1705. },
  1706. {
  1707. "name": "doctrine/cache",
  1708. "version": "v1.6.2",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/doctrine/cache.git",
  1712. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1717. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1718. "shasum": ""
  1719. },
  1720. "require": {
  1721. "php": "~5.5|~7.0"
  1722. },
  1723. "conflict": {
  1724. "doctrine/common": ">2.2,<2.4"
  1725. },
  1726. "require-dev": {
  1727. "phpunit/phpunit": "~4.8|~5.0",
  1728. "predis/predis": "~1.0",
  1729. "satooshi/php-coveralls": "~0.6"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "branch-alias": {
  1734. "dev-master": "1.6.x-dev"
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Roman Borschel",
  1749. "email": "roman@code-factory.org"
  1750. },
  1751. {
  1752. "name": "Benjamin Eberlei",
  1753. "email": "kontakt@beberlei.de"
  1754. },
  1755. {
  1756. "name": "Guilherme Blanco",
  1757. "email": "guilhermeblanco@gmail.com"
  1758. },
  1759. {
  1760. "name": "Jonathan Wage",
  1761. "email": "jonwage@gmail.com"
  1762. },
  1763. {
  1764. "name": "Johannes Schmitt",
  1765. "email": "schmittjoh@gmail.com"
  1766. }
  1767. ],
  1768. "description": "Caching library offering an object-oriented API for many cache backends",
  1769. "homepage": "http://www.doctrine-project.org",
  1770. "keywords": [
  1771. "cache",
  1772. "caching"
  1773. ],
  1774. "time": "2017-07-22T12:49:21+00:00"
  1775. },
  1776. {
  1777. "name": "doctrine/collections",
  1778. "version": "v1.4.0",
  1779. "source": {
  1780. "type": "git",
  1781. "url": "https://github.com/doctrine/collections.git",
  1782. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1783. },
  1784. "dist": {
  1785. "type": "zip",
  1786. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1787. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1788. "shasum": ""
  1789. },
  1790. "require": {
  1791. "php": "^5.6 || ^7.0"
  1792. },
  1793. "require-dev": {
  1794. "doctrine/coding-standard": "~0.1@dev",
  1795. "phpunit/phpunit": "^5.7"
  1796. },
  1797. "type": "library",
  1798. "extra": {
  1799. "branch-alias": {
  1800. "dev-master": "1.3.x-dev"
  1801. }
  1802. },
  1803. "autoload": {
  1804. "psr-0": {
  1805. "Doctrine\\Common\\Collections\\": "lib/"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Roman Borschel",
  1815. "email": "roman@code-factory.org"
  1816. },
  1817. {
  1818. "name": "Benjamin Eberlei",
  1819. "email": "kontakt@beberlei.de"
  1820. },
  1821. {
  1822. "name": "Guilherme Blanco",
  1823. "email": "guilhermeblanco@gmail.com"
  1824. },
  1825. {
  1826. "name": "Jonathan Wage",
  1827. "email": "jonwage@gmail.com"
  1828. },
  1829. {
  1830. "name": "Johannes Schmitt",
  1831. "email": "schmittjoh@gmail.com"
  1832. }
  1833. ],
  1834. "description": "Collections Abstraction library",
  1835. "homepage": "http://www.doctrine-project.org",
  1836. "keywords": [
  1837. "array",
  1838. "collections",
  1839. "iterator"
  1840. ],
  1841. "time": "2017-01-03T10:49:41+00:00"
  1842. },
  1843. {
  1844. "name": "doctrine/common",
  1845. "version": "v2.7.3",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/doctrine/common.git",
  1849. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1854. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1855. "shasum": ""
  1856. },
  1857. "require": {
  1858. "doctrine/annotations": "1.*",
  1859. "doctrine/cache": "1.*",
  1860. "doctrine/collections": "1.*",
  1861. "doctrine/inflector": "1.*",
  1862. "doctrine/lexer": "1.*",
  1863. "php": "~5.6|~7.0"
  1864. },
  1865. "require-dev": {
  1866. "phpunit/phpunit": "^5.4.6"
  1867. },
  1868. "type": "library",
  1869. "extra": {
  1870. "branch-alias": {
  1871. "dev-master": "2.7.x-dev"
  1872. }
  1873. },
  1874. "autoload": {
  1875. "psr-4": {
  1876. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1877. }
  1878. },
  1879. "notification-url": "https://packagist.org/downloads/",
  1880. "license": [
  1881. "MIT"
  1882. ],
  1883. "authors": [
  1884. {
  1885. "name": "Roman Borschel",
  1886. "email": "roman@code-factory.org"
  1887. },
  1888. {
  1889. "name": "Benjamin Eberlei",
  1890. "email": "kontakt@beberlei.de"
  1891. },
  1892. {
  1893. "name": "Guilherme Blanco",
  1894. "email": "guilhermeblanco@gmail.com"
  1895. },
  1896. {
  1897. "name": "Jonathan Wage",
  1898. "email": "jonwage@gmail.com"
  1899. },
  1900. {
  1901. "name": "Johannes Schmitt",
  1902. "email": "schmittjoh@gmail.com"
  1903. }
  1904. ],
  1905. "description": "Common Library for Doctrine projects",
  1906. "homepage": "http://www.doctrine-project.org",
  1907. "keywords": [
  1908. "annotations",
  1909. "collections",
  1910. "eventmanager",
  1911. "persistence",
  1912. "spl"
  1913. ],
  1914. "time": "2017-07-22T08:35:12+00:00"
  1915. },
  1916. {
  1917. "name": "doctrine/inflector",
  1918. "version": "v1.2.0",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/doctrine/inflector.git",
  1922. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1927. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "php": "^7.0"
  1932. },
  1933. "require-dev": {
  1934. "phpunit/phpunit": "^6.2"
  1935. },
  1936. "type": "library",
  1937. "extra": {
  1938. "branch-alias": {
  1939. "dev-master": "1.2.x-dev"
  1940. }
  1941. },
  1942. "autoload": {
  1943. "psr-4": {
  1944. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1945. }
  1946. },
  1947. "notification-url": "https://packagist.org/downloads/",
  1948. "license": [
  1949. "MIT"
  1950. ],
  1951. "authors": [
  1952. {
  1953. "name": "Roman Borschel",
  1954. "email": "roman@code-factory.org"
  1955. },
  1956. {
  1957. "name": "Benjamin Eberlei",
  1958. "email": "kontakt@beberlei.de"
  1959. },
  1960. {
  1961. "name": "Guilherme Blanco",
  1962. "email": "guilhermeblanco@gmail.com"
  1963. },
  1964. {
  1965. "name": "Jonathan Wage",
  1966. "email": "jonwage@gmail.com"
  1967. },
  1968. {
  1969. "name": "Johannes Schmitt",
  1970. "email": "schmittjoh@gmail.com"
  1971. }
  1972. ],
  1973. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1974. "homepage": "http://www.doctrine-project.org",
  1975. "keywords": [
  1976. "inflection",
  1977. "pluralize",
  1978. "singularize",
  1979. "string"
  1980. ],
  1981. "time": "2017-07-22T12:18:28+00:00"
  1982. },
  1983. {
  1984. "name": "doctrine/instantiator",
  1985. "version": "1.0.5",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/doctrine/instantiator.git",
  1989. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1994. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "php": ">=5.3,<8.0-DEV"
  1999. },
  2000. "require-dev": {
  2001. "athletic/athletic": "~0.1.8",
  2002. "ext-pdo": "*",
  2003. "ext-phar": "*",
  2004. "phpunit/phpunit": "~4.0",
  2005. "squizlabs/php_codesniffer": "~2.0"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "1.0.x-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "MIT"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "Marco Pivetta",
  2025. "email": "ocramius@gmail.com",
  2026. "homepage": "http://ocramius.github.com/"
  2027. }
  2028. ],
  2029. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2030. "homepage": "https://github.com/doctrine/instantiator",
  2031. "keywords": [
  2032. "constructor",
  2033. "instantiate"
  2034. ],
  2035. "time": "2015-06-14T21:17:01+00:00"
  2036. },
  2037. {
  2038. "name": "doctrine/lexer",
  2039. "version": "1.0.2",
  2040. "source": {
  2041. "type": "git",
  2042. "url": "https://github.com/doctrine/lexer.git",
  2043. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  2044. },
  2045. "dist": {
  2046. "type": "zip",
  2047. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2048. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2049. "shasum": ""
  2050. },
  2051. "require": {
  2052. "php": ">=5.3.2"
  2053. },
  2054. "require-dev": {
  2055. "phpunit/phpunit": "^4.5"
  2056. },
  2057. "type": "library",
  2058. "extra": {
  2059. "branch-alias": {
  2060. "dev-master": "1.0.x-dev"
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Roman Borschel",
  2075. "email": "roman@code-factory.org"
  2076. },
  2077. {
  2078. "name": "Guilherme Blanco",
  2079. "email": "guilhermeblanco@gmail.com"
  2080. },
  2081. {
  2082. "name": "Johannes Schmitt",
  2083. "email": "schmittjoh@gmail.com"
  2084. }
  2085. ],
  2086. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  2087. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  2088. "keywords": [
  2089. "annotations",
  2090. "docblock",
  2091. "lexer",
  2092. "parser",
  2093. "php"
  2094. ],
  2095. "time": "2019-06-08T11:03:04+00:00"
  2096. },
  2097. {
  2098. "name": "drupal-composer/drupal-scaffold",
  2099. "version": "2.6.1",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2103. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2108. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "composer-plugin-api": "^1.0.0",
  2113. "composer/semver": "^1.4",
  2114. "php": "^5.5.9|>=7.0.8"
  2115. },
  2116. "require-dev": {
  2117. "composer/composer": "dev-master",
  2118. "g1a/composer-test-scenarios": "^2.1.0",
  2119. "phpunit/phpunit": "^6",
  2120. "squizlabs/php_codesniffer": "^2.8"
  2121. },
  2122. "type": "composer-plugin",
  2123. "extra": {
  2124. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2125. "branch-alias": {
  2126. "dev-master": "2.0.x-dev"
  2127. }
  2128. },
  2129. "autoload": {
  2130. "psr-4": {
  2131. "DrupalComposer\\DrupalScaffold\\": "src/"
  2132. }
  2133. },
  2134. "notification-url": "https://packagist.org/downloads/",
  2135. "license": [
  2136. "GPL-2.0-or-later"
  2137. ],
  2138. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  2139. "time": "2019-03-30T10:41:38+00:00"
  2140. },
  2141. {
  2142. "name": "drupal/addtoany",
  2143. "version": "1.12.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://git.drupalcode.org/project/addtoany.git",
  2147. "reference": "8.x-1.12"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  2152. "reference": "8.x-1.12",
  2153. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  2154. },
  2155. "require": {
  2156. "drupal/core": "*"
  2157. },
  2158. "type": "drupal-module",
  2159. "extra": {
  2160. "branch-alias": {
  2161. "dev-1.x": "1.x-dev"
  2162. },
  2163. "drupal": {
  2164. "version": "8.x-1.12",
  2165. "datestamp": "1554702781",
  2166. "security-coverage": {
  2167. "status": "covered",
  2168. "message": "Covered by Drupal's security advisory policy"
  2169. }
  2170. }
  2171. },
  2172. "notification-url": "https://packages.drupal.org/8/downloads",
  2173. "license": [
  2174. "GPL-2.0-or-later"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "AddToAny",
  2179. "homepage": "https://www.drupal.org/user/2640913"
  2180. },
  2181. {
  2182. "name": "micropat",
  2183. "homepage": "https://www.drupal.org/user/260224"
  2184. }
  2185. ],
  2186. "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.",
  2187. "homepage": "https://www.drupal.org/project/addtoany",
  2188. "support": {
  2189. "source": "https://git.drupalcode.org/project/addtoany"
  2190. }
  2191. },
  2192. {
  2193. "name": "drupal/admin_toolbar",
  2194. "version": "2.0.0",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2198. "reference": "8.x-2.0"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  2203. "reference": "8.x-2.0",
  2204. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  2205. },
  2206. "require": {
  2207. "drupal/core": "*"
  2208. },
  2209. "type": "drupal-module",
  2210. "extra": {
  2211. "branch-alias": {
  2212. "dev-2.x": "2.x-dev"
  2213. },
  2214. "drupal": {
  2215. "version": "8.x-2.0",
  2216. "datestamp": "1572370984",
  2217. "security-coverage": {
  2218. "status": "covered",
  2219. "message": "Covered by Drupal's security advisory policy"
  2220. }
  2221. }
  2222. },
  2223. "notification-url": "https://packages.drupal.org/8/downloads",
  2224. "license": [
  2225. "GPL-2.0+"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Wilfrid Roze (eme)",
  2230. "homepage": "https://www.drupal.org/u/eme",
  2231. "role": "Maintainer"
  2232. },
  2233. {
  2234. "name": "Romain Jarraud (romainj)",
  2235. "homepage": "https://www.drupal.org/u/romainj",
  2236. "role": "Maintainer"
  2237. },
  2238. {
  2239. "name": "Adrian Cid Almaguer (adriancid)",
  2240. "homepage": "https://www.drupal.org/u/adriancid",
  2241. "email": "adriancid@gmail.com",
  2242. "role": "Maintainer"
  2243. },
  2244. {
  2245. "name": "Mohamed Anis Taktak (matio89)",
  2246. "homepage": "https://www.drupal.org/u/matio89",
  2247. "role": "Maintainer"
  2248. },
  2249. {
  2250. "name": "fethi.krout",
  2251. "homepage": "https://www.drupal.org/user/3206765"
  2252. },
  2253. {
  2254. "name": "matio89",
  2255. "homepage": "https://www.drupal.org/user/2320090"
  2256. },
  2257. {
  2258. "name": "romainj",
  2259. "homepage": "https://www.drupal.org/user/370706"
  2260. }
  2261. ],
  2262. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2263. "homepage": "http://drupal.org/project/admin_toolbar",
  2264. "keywords": [
  2265. "Drupal",
  2266. "Toolbar"
  2267. ],
  2268. "support": {
  2269. "source": "http://cgit.drupalcode.org/admin_toolbar",
  2270. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2271. }
  2272. },
  2273. {
  2274. "name": "drupal/adminimal_theme",
  2275. "version": "1.5.0",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2279. "reference": "8.x-1.5"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  2284. "reference": "8.x-1.5",
  2285. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  2286. },
  2287. "require": {
  2288. "drupal/core": "~8.0"
  2289. },
  2290. "type": "drupal-theme",
  2291. "extra": {
  2292. "branch-alias": {
  2293. "dev-1.x": "1.x-dev"
  2294. },
  2295. "drupal": {
  2296. "version": "8.x-1.5",
  2297. "datestamp": "1558584484",
  2298. "security-coverage": {
  2299. "status": "covered",
  2300. "message": "Covered by Drupal's security advisory policy"
  2301. }
  2302. }
  2303. },
  2304. "notification-url": "https://packages.drupal.org/8/downloads",
  2305. "license": [
  2306. "GPL-2.0+"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "ANDiTKO",
  2311. "homepage": "https://www.drupal.org/user/1428124"
  2312. },
  2313. {
  2314. "name": "andrey.troeglazov",
  2315. "homepage": "https://www.drupal.org/user/3145389"
  2316. },
  2317. {
  2318. "name": "realityloop",
  2319. "homepage": "https://www.drupal.org/user/139189"
  2320. }
  2321. ],
  2322. "description": "Drupal administration theme with modern minimalist design.",
  2323. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2324. "support": {
  2325. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2326. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2327. }
  2328. },
  2329. {
  2330. "name": "drupal/audiofield",
  2331. "version": "1.9.0",
  2332. "source": {
  2333. "type": "git",
  2334. "url": "https://git.drupalcode.org/project/audiofield.git",
  2335. "reference": "8.x-1.9"
  2336. },
  2337. "dist": {
  2338. "type": "zip",
  2339. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2340. "reference": "8.x-1.9",
  2341. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2342. },
  2343. "require": {
  2344. "drupal/core": "~8.0"
  2345. },
  2346. "type": "drupal-module",
  2347. "extra": {
  2348. "branch-alias": {
  2349. "dev-1.x": "1.x-dev"
  2350. },
  2351. "drupal": {
  2352. "version": "8.x-1.9",
  2353. "datestamp": "1553712781",
  2354. "security-coverage": {
  2355. "status": "covered",
  2356. "message": "Covered by Drupal's security advisory policy"
  2357. }
  2358. },
  2359. "drush": {
  2360. "services": {
  2361. "drush.services.yml": "^9"
  2362. }
  2363. }
  2364. },
  2365. "notification-url": "https://packages.drupal.org/8/downloads",
  2366. "license": [
  2367. "GPL-2.0+"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Daniel Moberly",
  2372. "homepage": "https://www.drupal.org/u/danielmoberly",
  2373. "role": "Maintainer"
  2374. },
  2375. {
  2376. "name": "josipsaric",
  2377. "homepage": "https://www.drupal.org/user/3063287"
  2378. },
  2379. {
  2380. "name": "tamerzg",
  2381. "homepage": "https://www.drupal.org/user/464564"
  2382. }
  2383. ],
  2384. "description": "AudioField Module",
  2385. "homepage": "https://www.drupal.org/project/audiofield",
  2386. "support": {
  2387. "source": "https://git.drupalcode.org/project/audiofield",
  2388. "issues": "https://www.drupal.org/project/issues/audiofield"
  2389. }
  2390. },
  2391. {
  2392. "name": "drupal/autologout",
  2393. "version": "1.0.0",
  2394. "source": {
  2395. "type": "git",
  2396. "url": "https://git.drupalcode.org/project/autologout.git",
  2397. "reference": "8.x-1.0"
  2398. },
  2399. "dist": {
  2400. "type": "zip",
  2401. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2402. "reference": "8.x-1.0",
  2403. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2404. },
  2405. "require": {
  2406. "drupal/core": "~8.0"
  2407. },
  2408. "type": "drupal-module",
  2409. "extra": {
  2410. "branch-alias": {
  2411. "dev-1.x": "1.x-dev"
  2412. },
  2413. "drupal": {
  2414. "version": "8.x-1.0",
  2415. "datestamp": "1494237185",
  2416. "security-coverage": {
  2417. "status": "covered",
  2418. "message": "Covered by Drupal's security advisory policy"
  2419. }
  2420. }
  2421. },
  2422. "notification-url": "https://packages.drupal.org/8/downloads",
  2423. "license": [
  2424. "GPL-2.0+"
  2425. ],
  2426. "authors": [
  2427. {
  2428. "name": "AjK",
  2429. "homepage": "https://www.drupal.org/user/39030"
  2430. },
  2431. {
  2432. "name": "AjitS",
  2433. "homepage": "https://www.drupal.org/user/981944"
  2434. },
  2435. {
  2436. "name": "boshtian",
  2437. "homepage": "https://www.drupal.org/user/1773456"
  2438. },
  2439. {
  2440. "name": "dandrews",
  2441. "homepage": "https://www.drupal.org/user/2014490"
  2442. },
  2443. {
  2444. "name": "darksnow",
  2445. "homepage": "https://www.drupal.org/user/391915"
  2446. },
  2447. {
  2448. "name": "johnennew",
  2449. "homepage": "https://www.drupal.org/user/1150042"
  2450. },
  2451. {
  2452. "name": "jrglasgow",
  2453. "homepage": "https://www.drupal.org/user/36590"
  2454. },
  2455. {
  2456. "name": "kmasood",
  2457. "homepage": "https://www.drupal.org/user/1262860"
  2458. },
  2459. {
  2460. "name": "levelos",
  2461. "homepage": "https://www.drupal.org/user/54135"
  2462. },
  2463. {
  2464. "name": "prabeen.giri",
  2465. "homepage": "https://www.drupal.org/user/913078"
  2466. },
  2467. {
  2468. "name": "str8",
  2469. "homepage": "https://www.drupal.org/user/2865063"
  2470. }
  2471. ],
  2472. "description": "Adds automated timed logout.",
  2473. "homepage": "http://drupal.org/project/autologout",
  2474. "support": {
  2475. "source": "https://git.drupalcode.org/project/autologout"
  2476. }
  2477. },
  2478. {
  2479. "name": "drupal/basic",
  2480. "version": "1.3.0",
  2481. "source": {
  2482. "type": "git",
  2483. "url": "https://git.drupalcode.org/project/basic.git",
  2484. "reference": "8.x-1.3"
  2485. },
  2486. "dist": {
  2487. "type": "zip",
  2488. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2489. "reference": "8.x-1.3",
  2490. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2491. },
  2492. "require": {
  2493. "drupal/core": "~8.0"
  2494. },
  2495. "type": "drupal-theme",
  2496. "extra": {
  2497. "branch-alias": {
  2498. "dev-1.x": "1.x-dev"
  2499. },
  2500. "drupal": {
  2501. "version": "8.x-1.3",
  2502. "datestamp": "1508096944",
  2503. "security-coverage": {
  2504. "status": "covered",
  2505. "message": "Covered by Drupal's security advisory policy"
  2506. }
  2507. }
  2508. },
  2509. "notification-url": "https://packages.drupal.org/8/downloads",
  2510. "license": [
  2511. "GPL-2.0+"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Steve Krueger",
  2516. "homepage": "http://thejibe.com",
  2517. "email": "steve@thejibe.com",
  2518. "role": "Maintainer"
  2519. },
  2520. {
  2521. "name": "Joël Pittet",
  2522. "homepage": "https://www.drupal.org/u/joelpittet",
  2523. "email": "joel@pittet.ca",
  2524. "role": "Maintainer"
  2525. },
  2526. {
  2527. "name": "Leah Wagner",
  2528. "homepage": "http://thejibe.com",
  2529. "email": "leah@thejibe.com",
  2530. "role": "Maintainer"
  2531. },
  2532. {
  2533. "name": "Catherine Winters",
  2534. "homepage": "http://www.catherinewinters.com",
  2535. "email": "catherine@catherinewinters.com",
  2536. "role": "Maintainer"
  2537. },
  2538. {
  2539. "name": "Johannes Schmidt",
  2540. "homepage": "http://2tabs.com",
  2541. "email": "mail@2tabs.com",
  2542. "role": "Maintainer"
  2543. },
  2544. {
  2545. "name": "johannez",
  2546. "homepage": "https://www.drupal.org/user/670988"
  2547. },
  2548. {
  2549. "name": "leahtard",
  2550. "homepage": "https://www.drupal.org/user/683812"
  2551. }
  2552. ],
  2553. "description": "HTML5, SASS, Responsive grid starter theme.",
  2554. "homepage": "http://drupal.org/project/basic",
  2555. "support": {
  2556. "source": "http://cgit.drupalcode.org/basic",
  2557. "issues": "https://www.drupal.org/project/issues/basic",
  2558. "irc": "irc://irc.freenode.org/drupal-contribute"
  2559. }
  2560. },
  2561. {
  2562. "name": "drupal/better_messages",
  2563. "version": "1.0.0-alpha2",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://git.drupalcode.org/project/better_messages.git",
  2567. "reference": "8.x-1.0-alpha2"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2572. "reference": "8.x-1.0-alpha2",
  2573. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2574. },
  2575. "require": {
  2576. "drupal/core": "~8.0"
  2577. },
  2578. "type": "drupal-module",
  2579. "extra": {
  2580. "branch-alias": {
  2581. "dev-1.x": "1.x-dev"
  2582. },
  2583. "drupal": {
  2584. "version": "8.x-1.0-alpha2",
  2585. "datestamp": "1517663880",
  2586. "security-coverage": {
  2587. "status": "not-covered",
  2588. "message": "Alpha releases are not covered by Drupal security advisories."
  2589. }
  2590. }
  2591. },
  2592. "notification-url": "https://packages.drupal.org/8/downloads",
  2593. "license": [
  2594. "GPL-2.0-or-later"
  2595. ],
  2596. "authors": [
  2597. {
  2598. "name": "Mohammed J. Razem",
  2599. "homepage": "https://www.drupal.org/user/255384"
  2600. },
  2601. {
  2602. "name": "bucefal91",
  2603. "homepage": "https://www.drupal.org/user/504128"
  2604. },
  2605. {
  2606. "name": "le72",
  2607. "homepage": "https://www.drupal.org/user/1866896"
  2608. }
  2609. ],
  2610. "description": "Better Messages module for Drupal 8.",
  2611. "homepage": "https://www.drupal.org/project/better_messages",
  2612. "support": {
  2613. "source": "https://git.drupalcode.org/project/better_messages"
  2614. }
  2615. },
  2616. {
  2617. "name": "drupal/bulkdelete",
  2618. "version": "dev-1.x",
  2619. "source": {
  2620. "type": "git",
  2621. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2622. "reference": "22e6ff410cf345609e83605d086cf7885bf4e865"
  2623. },
  2624. "require": {
  2625. "drupal/core": "~8.0"
  2626. },
  2627. "type": "drupal-module",
  2628. "extra": {
  2629. "branch-alias": {
  2630. "dev-1.x": "1.x-dev"
  2631. },
  2632. "drupal": {
  2633. "version": "8.x-1.x-dev",
  2634. "datestamp": "1495565583",
  2635. "security-coverage": {
  2636. "status": "not-covered",
  2637. "message": "Dev releases are not covered by Drupal security advisories."
  2638. }
  2639. }
  2640. },
  2641. "notification-url": "https://packages.drupal.org/8/downloads",
  2642. "license": [
  2643. "GPL-2.0-or-later"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "Kars-T",
  2648. "homepage": "https://www.drupal.org/user/224499"
  2649. },
  2650. {
  2651. "name": "Rahul Seth",
  2652. "homepage": "https://www.drupal.org/user/2694359"
  2653. },
  2654. {
  2655. "name": "adriancid",
  2656. "homepage": "https://www.drupal.org/user/1962106"
  2657. },
  2658. {
  2659. "name": "robertDouglass",
  2660. "homepage": "https://www.drupal.org/user/5449"
  2661. }
  2662. ],
  2663. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2664. "homepage": "https://www.drupal.org/project/bulkdelete",
  2665. "support": {
  2666. "source": "https://git.drupalcode.org/project/bulkdelete"
  2667. },
  2668. "time": "2019-09-27T12:11:08+00:00"
  2669. },
  2670. {
  2671. "name": "drupal/coder",
  2672. "version": "8.3.6",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://git.drupalcode.org/project/coder.git",
  2676. "reference": "4337ddf58d28dbdee4e1367bf71ee13393ab9820"
  2677. },
  2678. "require": {
  2679. "ext-mbstring": "*",
  2680. "php": ">=5.5.9",
  2681. "squizlabs/php_codesniffer": "^3.4.1",
  2682. "symfony/yaml": ">=2.0.5"
  2683. },
  2684. "require-dev": {
  2685. "phpunit/phpunit": ">=3.7 <6"
  2686. },
  2687. "type": "phpcodesniffer-standard",
  2688. "autoload": {
  2689. "psr-0": {
  2690. "Drupal\\": "coder_sniffer/Drupal/",
  2691. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  2692. }
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "GPL-2.0+"
  2697. ],
  2698. "description": "Coder is a library to review Drupal code.",
  2699. "homepage": "https://www.drupal.org/project/coder",
  2700. "keywords": [
  2701. "code review",
  2702. "phpcs",
  2703. "standards"
  2704. ],
  2705. "time": "2019-08-09T09:27:26+00:00"
  2706. },
  2707. {
  2708. "name": "drupal/color_field",
  2709. "version": "2.0.0",
  2710. "source": {
  2711. "type": "git",
  2712. "url": "https://git.drupalcode.org/project/color_field.git",
  2713. "reference": "8.x-2.0"
  2714. },
  2715. "dist": {
  2716. "type": "zip",
  2717. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2718. "reference": "8.x-2.0",
  2719. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2720. },
  2721. "require": {
  2722. "drupal/core": "*"
  2723. },
  2724. "require-dev": {
  2725. "drupal/token": "~1.3"
  2726. },
  2727. "suggest": {
  2728. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2729. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2730. },
  2731. "type": "drupal-module",
  2732. "extra": {
  2733. "branch-alias": {
  2734. "dev-2.x": "2.x-dev"
  2735. },
  2736. "drupal": {
  2737. "version": "8.x-2.0",
  2738. "datestamp": "1536168780",
  2739. "security-coverage": {
  2740. "status": "covered",
  2741. "message": "Covered by Drupal's security advisory policy"
  2742. }
  2743. }
  2744. },
  2745. "notification-url": "https://packages.drupal.org/8/downloads",
  2746. "license": [
  2747. "GPL-2.0-or-later"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "targoo",
  2752. "homepage": "https://www.drupal.org/user/431910",
  2753. "role": "Maintainer"
  2754. },
  2755. {
  2756. "name": "Nick Wilde",
  2757. "homepage": "https://www.drupal.org/user/nickwilde",
  2758. "role": "Maintainer"
  2759. }
  2760. ],
  2761. "description": "Provides a color field type to store the color value and opacity",
  2762. "homepage": "https://www.drupal.org/project/color_field",
  2763. "support": {
  2764. "source": "http://cgit.drupalcode.org/color_field",
  2765. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2766. }
  2767. },
  2768. {
  2769. "name": "drupal/config_devel",
  2770. "version": "1.4.0",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://git.drupalcode.org/project/config_devel.git",
  2774. "reference": "8.x-1.4"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.4.zip",
  2779. "reference": "8.x-1.4",
  2780. "shasum": "93cbecd4811cbf357cd0a8be19e480f7af32f756"
  2781. },
  2782. "require": {
  2783. "drupal/core": "~8.0"
  2784. },
  2785. "type": "drupal-module",
  2786. "extra": {
  2787. "branch-alias": {
  2788. "dev-1.x": "1.x-dev"
  2789. },
  2790. "drupal": {
  2791. "version": "8.x-1.4",
  2792. "datestamp": "1569934685",
  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.0"
  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.6.0",
  2968. "source": {
  2969. "type": "git",
  2970. "url": "https://git.drupalcode.org/project/config_update.git",
  2971. "reference": "8.x-1.6"
  2972. },
  2973. "dist": {
  2974. "type": "zip",
  2975. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2976. "reference": "8.x-1.6",
  2977. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2978. },
  2979. "require": {
  2980. "drupal/core": "*"
  2981. },
  2982. "type": "drupal-module",
  2983. "extra": {
  2984. "branch-alias": {
  2985. "dev-1.x": "1.x-dev"
  2986. },
  2987. "drupal": {
  2988. "version": "8.x-1.6",
  2989. "datestamp": "1545090480",
  2990. "security-coverage": {
  2991. "status": "covered",
  2992. "message": "Covered by Drupal's security advisory policy"
  2993. }
  2994. }
  2995. },
  2996. "notification-url": "https://packages.drupal.org/8/downloads",
  2997. "license": [
  2998. "GPL-2.0-or-later"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "jhodgdon",
  3003. "homepage": "https://www.drupal.org/user/155601"
  3004. },
  3005. {
  3006. "name": "nedjo",
  3007. "homepage": "https://www.drupal.org/user/4481"
  3008. }
  3009. ],
  3010. "description": "Provides basic revert and update functionality for other modules",
  3011. "homepage": "https://www.drupal.org/project/config_update",
  3012. "support": {
  3013. "source": "https://git.drupalcode.org/project/config_update"
  3014. }
  3015. },
  3016. {
  3017. "name": "drupal/console",
  3018. "version": "1.9.4",
  3019. "source": {
  3020. "type": "git",
  3021. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3022. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  3023. },
  3024. "dist": {
  3025. "type": "zip",
  3026. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  3027. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  3028. "shasum": ""
  3029. },
  3030. "require": {
  3031. "alchemy/zippy": "~0.4",
  3032. "composer/installers": "~1.0",
  3033. "doctrine/annotations": "^1.2",
  3034. "doctrine/collections": "^1.3",
  3035. "drupal/console-core": "1.9.4",
  3036. "drupal/console-extend-plugin": "~0",
  3037. "php": "^5.5.9 || ^7.0",
  3038. "psy/psysh": "0.6.* || ~0.8",
  3039. "symfony/css-selector": "~2.8|~3.0",
  3040. "symfony/dom-crawler": "~2.8|~3.0",
  3041. "symfony/http-foundation": "~2.8|~3.0"
  3042. },
  3043. "suggest": {
  3044. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3045. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3046. },
  3047. "bin": [
  3048. "bin/drupal"
  3049. ],
  3050. "type": "library",
  3051. "autoload": {
  3052. "psr-4": {
  3053. "Drupal\\Console\\": "src"
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "GPL-2.0-or-later"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "David Flores",
  3063. "email": "dmousex@gmail.com",
  3064. "homepage": "http://dmouse.net"
  3065. },
  3066. {
  3067. "name": "Jesus Manuel Olivas",
  3068. "email": "jesus.olivas@gmail.com",
  3069. "homepage": "http://jmolivas.com"
  3070. },
  3071. {
  3072. "name": "Eduardo Garcia",
  3073. "email": "enzo@enzolutions.com",
  3074. "homepage": "http://enzolutions.com/"
  3075. },
  3076. {
  3077. "name": "Omar Aguirre",
  3078. "email": "omersguchigu@gmail.com"
  3079. },
  3080. {
  3081. "name": "Drupal Console Contributors",
  3082. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3083. }
  3084. ],
  3085. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3086. "homepage": "http://drupalconsole.com/",
  3087. "keywords": [
  3088. "console",
  3089. "development",
  3090. "drupal",
  3091. "symfony"
  3092. ],
  3093. "time": "2019-11-11T19:35:01+00:00"
  3094. },
  3095. {
  3096. "name": "drupal/console-core",
  3097. "version": "1.9.4",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3101. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3106. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "dflydev/dot-access-configuration": "^1.0",
  3111. "drupal/console-en": "1.9.4",
  3112. "guzzlehttp/guzzle": "~6.1",
  3113. "php": "^5.5.9 || ^7.0",
  3114. "stecman/symfony-console-completion": "~0.7",
  3115. "symfony/config": "~2.8|~3.0",
  3116. "symfony/console": "~2.8|~3.0",
  3117. "symfony/debug": "~2.8|~3.0",
  3118. "symfony/dependency-injection": "~2.8|~3.0",
  3119. "symfony/event-dispatcher": "~2.8|~3.0",
  3120. "symfony/filesystem": "~2.8|~3.0",
  3121. "symfony/finder": "~2.8|~3.0",
  3122. "symfony/process": "~2.8|~3.0",
  3123. "symfony/translation": "~2.8|~3.0",
  3124. "symfony/yaml": "~2.8|~3.0",
  3125. "twig/twig": "^1.23.1",
  3126. "webflo/drupal-finder": "^1.0",
  3127. "webmozart/path-util": "^2.3"
  3128. },
  3129. "type": "library",
  3130. "autoload": {
  3131. "files": [
  3132. "src/functions.php"
  3133. ],
  3134. "psr-4": {
  3135. "Drupal\\Console\\Core\\": "src"
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "GPL-2.0-or-later"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "David Flores",
  3145. "email": "dmousex@gmail.com",
  3146. "homepage": "http://dmouse.net"
  3147. },
  3148. {
  3149. "name": "Jesus Manuel Olivas",
  3150. "email": "jesus.olivas@gmail.com",
  3151. "homepage": "http://jmolivas.com"
  3152. },
  3153. {
  3154. "name": "Eduardo Garcia",
  3155. "email": "enzo@enzolutions.com",
  3156. "homepage": "http://enzolutions.com/"
  3157. },
  3158. {
  3159. "name": "Omar Aguirre",
  3160. "email": "omersguchigu@gmail.com"
  3161. },
  3162. {
  3163. "name": "Drupal Console Contributors",
  3164. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3165. }
  3166. ],
  3167. "description": "Drupal Console Core",
  3168. "homepage": "http://drupalconsole.com/",
  3169. "keywords": [
  3170. "console",
  3171. "development",
  3172. "drupal",
  3173. "symfony"
  3174. ],
  3175. "time": "2019-11-11T19:26:28+00:00"
  3176. },
  3177. {
  3178. "name": "drupal/console-en",
  3179. "version": "1.9.4",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3183. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3188. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3189. "shasum": ""
  3190. },
  3191. "type": "library",
  3192. "notification-url": "https://packagist.org/downloads/",
  3193. "license": [
  3194. "GPL-2.0-or-later"
  3195. ],
  3196. "authors": [
  3197. {
  3198. "name": "David Flores",
  3199. "email": "dmousex@gmail.com",
  3200. "homepage": "http://dmouse.net"
  3201. },
  3202. {
  3203. "name": "Jesus Manuel Olivas",
  3204. "email": "jesus.olivas@gmail.com",
  3205. "homepage": "http://jmolivas.com"
  3206. },
  3207. {
  3208. "name": "Eduardo Garcia",
  3209. "email": "enzo@enzolutions.com",
  3210. "homepage": "http://enzolutions.com/"
  3211. },
  3212. {
  3213. "name": "Omar Aguirre",
  3214. "email": "omersguchigu@gmail.com"
  3215. },
  3216. {
  3217. "name": "Drupal Console Contributors",
  3218. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3219. }
  3220. ],
  3221. "description": "Drupal Console English Language",
  3222. "homepage": "http://drupalconsole.com/",
  3223. "keywords": [
  3224. "console",
  3225. "development",
  3226. "drupal",
  3227. "symfony"
  3228. ],
  3229. "time": "2019-10-07T23:45:30+00:00"
  3230. },
  3231. {
  3232. "name": "drupal/console-extend-plugin",
  3233. "version": "0.9.3",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3237. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3242. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3243. "shasum": ""
  3244. },
  3245. "require": {
  3246. "composer-plugin-api": "^1.0",
  3247. "composer/installers": "^1.2",
  3248. "symfony/finder": "~2.7|~3.0",
  3249. "symfony/yaml": "~2.7|~3.0"
  3250. },
  3251. "type": "composer-plugin",
  3252. "extra": {
  3253. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3254. },
  3255. "autoload": {
  3256. "psr-4": {
  3257. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3258. }
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "GPL-2.0+"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Jesus Manuel Olivas",
  3267. "email": "jesus.olivas@gmail.com"
  3268. }
  3269. ],
  3270. "description": "Drupal Console Extend Plugin",
  3271. "time": "2019-11-07T20:15:27+00:00"
  3272. },
  3273. {
  3274. "name": "drupal/context",
  3275. "version": "4.0.0-beta2",
  3276. "source": {
  3277. "type": "git",
  3278. "url": "https://git.drupalcode.org/project/context.git",
  3279. "reference": "8.x-4.0-beta2"
  3280. },
  3281. "dist": {
  3282. "type": "zip",
  3283. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3284. "reference": "8.x-4.0-beta2",
  3285. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3286. },
  3287. "require": {
  3288. "drupal/core": "~8.0"
  3289. },
  3290. "type": "drupal-module",
  3291. "extra": {
  3292. "branch-alias": {
  3293. "dev-4.x": "4.x-dev"
  3294. },
  3295. "drupal": {
  3296. "version": "8.x-4.0-beta2",
  3297. "datestamp": "1505378944",
  3298. "security-coverage": {
  3299. "status": "not-covered",
  3300. "message": "Beta releases are not covered by Drupal security advisories."
  3301. }
  3302. }
  3303. },
  3304. "notification-url": "https://packages.drupal.org/8/downloads",
  3305. "license": [
  3306. "MIT"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "Christoffer Palm",
  3311. "homepage": "http://www.oddhill.se/",
  3312. "email": "christoffer.palm@oddhill.se",
  3313. "role": "Developer"
  3314. },
  3315. {
  3316. "name": "Steven Jones",
  3317. "homepage": "https://www.drupal.org/user/99644"
  3318. },
  3319. {
  3320. "name": "alex_b",
  3321. "homepage": "https://www.drupal.org/user/53995"
  3322. },
  3323. {
  3324. "name": "boshtian",
  3325. "homepage": "https://www.drupal.org/user/1773456"
  3326. },
  3327. {
  3328. "name": "colan",
  3329. "homepage": "https://www.drupal.org/user/58704"
  3330. },
  3331. {
  3332. "name": "emanaton",
  3333. "homepage": "https://www.drupal.org/user/120853"
  3334. },
  3335. {
  3336. "name": "febbraro",
  3337. "homepage": "https://www.drupal.org/user/43670"
  3338. },
  3339. {
  3340. "name": "fizk",
  3341. "homepage": "https://www.drupal.org/user/473174"
  3342. },
  3343. {
  3344. "name": "hass",
  3345. "homepage": "https://www.drupal.org/user/85918"
  3346. },
  3347. {
  3348. "name": "hefox",
  3349. "homepage": "https://www.drupal.org/user/426416"
  3350. },
  3351. {
  3352. "name": "hyrcan",
  3353. "homepage": "https://www.drupal.org/user/26618"
  3354. },
  3355. {
  3356. "name": "jmiccolis",
  3357. "homepage": "https://www.drupal.org/user/31731"
  3358. },
  3359. {
  3360. "name": "nedjo",
  3361. "homepage": "https://www.drupal.org/user/4481"
  3362. },
  3363. {
  3364. "name": "tekante",
  3365. "homepage": "https://www.drupal.org/user/640024"
  3366. },
  3367. {
  3368. "name": "yhahn",
  3369. "homepage": "https://www.drupal.org/user/264833"
  3370. }
  3371. ],
  3372. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3373. "homepage": "https://github.com/oddhill/context",
  3374. "keywords": [
  3375. "Drupal",
  3376. "block",
  3377. "conditions",
  3378. "context",
  3379. "visibility"
  3380. ],
  3381. "support": {
  3382. "source": "https://github.com/oddhill/context",
  3383. "issues": "https://github.com/oddhill/context/issues",
  3384. "docs": "https://github.com/oddhill/context"
  3385. }
  3386. },
  3387. {
  3388. "name": "drupal/core",
  3389. "version": "8.7.0",
  3390. "source": {
  3391. "type": "git",
  3392. "url": "https://github.com/drupal/core.git",
  3393. "reference": "5da135abcf5dbc0204e9a75c87381c7553a74d5e"
  3394. },
  3395. "dist": {
  3396. "type": "zip",
  3397. "url": "https://api.github.com/repos/drupal/core/zipball/5da135abcf5dbc0204e9a75c87381c7553a74d5e",
  3398. "reference": "5da135abcf5dbc0204e9a75c87381c7553a74d5e",
  3399. "shasum": ""
  3400. },
  3401. "require": {
  3402. "asm89/stack-cors": "^1.1",
  3403. "composer/semver": "^1.0",
  3404. "doctrine/annotations": "^1.2",
  3405. "doctrine/common": "^2.5",
  3406. "easyrdf/easyrdf": "^0.9",
  3407. "egulias/email-validator": "^2.0",
  3408. "ext-date": "*",
  3409. "ext-dom": "*",
  3410. "ext-filter": "*",
  3411. "ext-gd": "*",
  3412. "ext-hash": "*",
  3413. "ext-json": "*",
  3414. "ext-pcre": "*",
  3415. "ext-pdo": "*",
  3416. "ext-session": "*",
  3417. "ext-simplexml": "*",
  3418. "ext-spl": "*",
  3419. "ext-tokenizer": "*",
  3420. "ext-xml": "*",
  3421. "guzzlehttp/guzzle": "^6.2.1",
  3422. "masterminds/html5": "^2.1",
  3423. "paragonie/random_compat": "^1.0|^2.0",
  3424. "pear/archive_tar": "^1.4",
  3425. "php": "^5.5.9|>=7.0.8",
  3426. "stack/builder": "^1.0",
  3427. "symfony-cmf/routing": "^1.4",
  3428. "symfony/class-loader": "~3.4.0",
  3429. "symfony/console": "~3.4.0",
  3430. "symfony/dependency-injection": "~3.4.26",
  3431. "symfony/event-dispatcher": "~3.4.0",
  3432. "symfony/http-foundation": "~3.4.27",
  3433. "symfony/http-kernel": "~3.4.14",
  3434. "symfony/polyfill-iconv": "^1.0",
  3435. "symfony/process": "~3.4.0",
  3436. "symfony/psr-http-message-bridge": "^1.0",
  3437. "symfony/routing": "~3.4.0",
  3438. "symfony/serializer": "~3.4.0",
  3439. "symfony/translation": "~3.4.0",
  3440. "symfony/validator": "~3.4.0",
  3441. "symfony/yaml": "~3.4.5",
  3442. "twig/twig": "^1.38.2",
  3443. "typo3/phar-stream-wrapper": "^2.0.1",
  3444. "zendframework/zend-diactoros": "^1.1",
  3445. "zendframework/zend-feed": "^2.4"
  3446. },
  3447. "conflict": {
  3448. "drush/drush": "<8.1.10"
  3449. },
  3450. "replace": {
  3451. "drupal/action": "self.version",
  3452. "drupal/aggregator": "self.version",
  3453. "drupal/automated_cron": "self.version",
  3454. "drupal/ban": "self.version",
  3455. "drupal/bartik": "self.version",
  3456. "drupal/basic_auth": "self.version",
  3457. "drupal/big_pipe": "self.version",
  3458. "drupal/block": "self.version",
  3459. "drupal/block_content": "self.version",
  3460. "drupal/block_place": "self.version",
  3461. "drupal/book": "self.version",
  3462. "drupal/breakpoint": "self.version",
  3463. "drupal/ckeditor": "self.version",
  3464. "drupal/classy": "self.version",
  3465. "drupal/color": "self.version",
  3466. "drupal/comment": "self.version",
  3467. "drupal/config": "self.version",
  3468. "drupal/config_translation": "self.version",
  3469. "drupal/contact": "self.version",
  3470. "drupal/content_moderation": "self.version",
  3471. "drupal/content_translation": "self.version",
  3472. "drupal/contextual": "self.version",
  3473. "drupal/core-annotation": "self.version",
  3474. "drupal/core-assertion": "self.version",
  3475. "drupal/core-bridge": "self.version",
  3476. "drupal/core-class-finder": "self.version",
  3477. "drupal/core-datetime": "self.version",
  3478. "drupal/core-dependency-injection": "self.version",
  3479. "drupal/core-diff": "self.version",
  3480. "drupal/core-discovery": "self.version",
  3481. "drupal/core-event-dispatcher": "self.version",
  3482. "drupal/core-file-cache": "self.version",
  3483. "drupal/core-filesystem": "self.version",
  3484. "drupal/core-gettext": "self.version",
  3485. "drupal/core-graph": "self.version",
  3486. "drupal/core-http-foundation": "self.version",
  3487. "drupal/core-php-storage": "self.version",
  3488. "drupal/core-plugin": "self.version",
  3489. "drupal/core-proxy-builder": "self.version",
  3490. "drupal/core-render": "self.version",
  3491. "drupal/core-serialization": "self.version",
  3492. "drupal/core-transliteration": "self.version",
  3493. "drupal/core-utility": "self.version",
  3494. "drupal/core-uuid": "self.version",
  3495. "drupal/core-version": "self.version",
  3496. "drupal/datetime": "self.version",
  3497. "drupal/datetime_range": "self.version",
  3498. "drupal/dblog": "self.version",
  3499. "drupal/dynamic_page_cache": "self.version",
  3500. "drupal/editor": "self.version",
  3501. "drupal/entity_reference": "self.version",
  3502. "drupal/field": "self.version",
  3503. "drupal/field_layout": "self.version",
  3504. "drupal/field_ui": "self.version",
  3505. "drupal/file": "self.version",
  3506. "drupal/filter": "self.version",
  3507. "drupal/forum": "self.version",
  3508. "drupal/hal": "self.version",
  3509. "drupal/help": "self.version",
  3510. "drupal/history": "self.version",
  3511. "drupal/image": "self.version",
  3512. "drupal/inline_form_errors": "self.version",
  3513. "drupal/jsonapi": "self.version",
  3514. "drupal/language": "self.version",
  3515. "drupal/layout_builder": "self.version",
  3516. "drupal/layout_discovery": "self.version",
  3517. "drupal/link": "self.version",
  3518. "drupal/locale": "self.version",
  3519. "drupal/media": "self.version",
  3520. "drupal/media_library": "self.version",
  3521. "drupal/menu_link_content": "self.version",
  3522. "drupal/menu_ui": "self.version",
  3523. "drupal/migrate": "self.version",
  3524. "drupal/migrate_drupal": "self.version",
  3525. "drupal/migrate_drupal_multilingual": "self.version",
  3526. "drupal/migrate_drupal_ui": "self.version",
  3527. "drupal/minimal": "self.version",
  3528. "drupal/node": "self.version",
  3529. "drupal/options": "self.version",
  3530. "drupal/page_cache": "self.version",
  3531. "drupal/path": "self.version",
  3532. "drupal/quickedit": "self.version",
  3533. "drupal/rdf": "self.version",
  3534. "drupal/responsive_image": "self.version",
  3535. "drupal/rest": "self.version",
  3536. "drupal/search": "self.version",
  3537. "drupal/serialization": "self.version",
  3538. "drupal/settings_tray": "self.version",
  3539. "drupal/seven": "self.version",
  3540. "drupal/shortcut": "self.version",
  3541. "drupal/simpletest": "self.version",
  3542. "drupal/standard": "self.version",
  3543. "drupal/stark": "self.version",
  3544. "drupal/statistics": "self.version",
  3545. "drupal/syslog": "self.version",
  3546. "drupal/system": "self.version",
  3547. "drupal/taxonomy": "self.version",
  3548. "drupal/telephone": "self.version",
  3549. "drupal/text": "self.version",
  3550. "drupal/toolbar": "self.version",
  3551. "drupal/tour": "self.version",
  3552. "drupal/tracker": "self.version",
  3553. "drupal/update": "self.version",
  3554. "drupal/user": "self.version",
  3555. "drupal/views": "self.version",
  3556. "drupal/views_ui": "self.version",
  3557. "drupal/workflows": "self.version",
  3558. "drupal/workspaces": "self.version"
  3559. },
  3560. "require-dev": {
  3561. "behat/mink": "1.7.x-dev",
  3562. "behat/mink-goutte-driver": "^1.2",
  3563. "behat/mink-selenium2-driver": "1.3.x-dev",
  3564. "drupal/coder": "^8.3.1",
  3565. "jcalderonzumba/gastonjs": "^1.0.2",
  3566. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3567. "justinrainbow/json-schema": "^5.2",
  3568. "mikey179/vfsstream": "^1.2",
  3569. "phpspec/prophecy": "^1.7",
  3570. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3571. "symfony/css-selector": "^3.4.0",
  3572. "symfony/debug": "^3.4.0",
  3573. "symfony/phpunit-bridge": "^3.4.3"
  3574. },
  3575. "type": "drupal-core",
  3576. "extra": {
  3577. "merge-plugin": {
  3578. "require": [
  3579. "core/lib/Drupal/Component/Annotation/composer.json",
  3580. "core/lib/Drupal/Component/Assertion/composer.json",
  3581. "core/lib/Drupal/Component/Bridge/composer.json",
  3582. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3583. "core/lib/Drupal/Component/Datetime/composer.json",
  3584. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3585. "core/lib/Drupal/Component/Diff/composer.json",
  3586. "core/lib/Drupal/Component/Discovery/composer.json",
  3587. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3588. "core/lib/Drupal/Component/FileCache/composer.json",
  3589. "core/lib/Drupal/Component/FileSystem/composer.json",
  3590. "core/lib/Drupal/Component/Gettext/composer.json",
  3591. "core/lib/Drupal/Component/Graph/composer.json",
  3592. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3593. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3594. "core/lib/Drupal/Component/Plugin/composer.json",
  3595. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3596. "core/lib/Drupal/Component/Render/composer.json",
  3597. "core/lib/Drupal/Component/Serialization/composer.json",
  3598. "core/lib/Drupal/Component/Transliteration/composer.json",
  3599. "core/lib/Drupal/Component/Utility/composer.json",
  3600. "core/lib/Drupal/Component/Uuid/composer.json",
  3601. "core/lib/Drupal/Component/Version/composer.json"
  3602. ],
  3603. "recurse": false,
  3604. "replace": false,
  3605. "merge-extra": false
  3606. }
  3607. },
  3608. "autoload": {
  3609. "psr-4": {
  3610. "Drupal\\Core\\": "lib/Drupal/Core",
  3611. "Drupal\\Component\\": "lib/Drupal/Component",
  3612. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3613. },
  3614. "classmap": [
  3615. "lib/Drupal.php",
  3616. "lib/Drupal/Component/Utility/Timer.php",
  3617. "lib/Drupal/Component/Utility/Unicode.php",
  3618. "lib/Drupal/Core/Database/Database.php",
  3619. "lib/Drupal/Core/DrupalKernel.php",
  3620. "lib/Drupal/Core/DrupalKernelInterface.php",
  3621. "lib/Drupal/Core/Site/Settings.php"
  3622. ]
  3623. },
  3624. "notification-url": "https://packagist.org/downloads/",
  3625. "license": [
  3626. "GPL-2.0-or-later"
  3627. ],
  3628. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3629. "time": "2019-05-01T18:39:15+00:00"
  3630. },
  3631. {
  3632. "name": "drupal/ctools",
  3633. "version": "3.2.0",
  3634. "source": {
  3635. "type": "git",
  3636. "url": "https://git.drupalcode.org/project/ctools.git",
  3637. "reference": "8.x-3.2"
  3638. },
  3639. "dist": {
  3640. "type": "zip",
  3641. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3642. "reference": "8.x-3.2",
  3643. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3644. },
  3645. "require": {
  3646. "drupal/core": "^8.5"
  3647. },
  3648. "type": "drupal-module",
  3649. "extra": {
  3650. "branch-alias": {
  3651. "dev-3.x": "3.x-dev"
  3652. },
  3653. "drupal": {
  3654. "version": "8.x-3.2",
  3655. "datestamp": "1550728386",
  3656. "security-coverage": {
  3657. "status": "covered",
  3658. "message": "Covered by Drupal's security advisory policy"
  3659. }
  3660. }
  3661. },
  3662. "notification-url": "https://packages.drupal.org/8/downloads",
  3663. "license": [
  3664. "GPL-2.0+"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "Kris Vanderwater (EclipseGc)",
  3669. "homepage": "https://www.drupal.org/u/eclipsegc",
  3670. "role": "Maintainer"
  3671. },
  3672. {
  3673. "name": "Jakob Perry (japerry)",
  3674. "homepage": "https://www.drupal.org/u/japerry",
  3675. "role": "Maintainer"
  3676. },
  3677. {
  3678. "name": "Tim Plunkett (tim.plunkett)",
  3679. "homepage": "https://www.drupal.org/u/timplunkett",
  3680. "role": "Maintainer"
  3681. },
  3682. {
  3683. "name": "James Gilliland (neclimdul)",
  3684. "homepage": "https://www.drupal.org/u/neclimdul",
  3685. "role": "Maintainer"
  3686. },
  3687. {
  3688. "name": "Daniel Wehner (dawehner)",
  3689. "homepage": "https://www.drupal.org/u/dawehner",
  3690. "role": "Maintainer"
  3691. },
  3692. {
  3693. "name": "joelpittet",
  3694. "homepage": "https://www.drupal.org/user/160302"
  3695. },
  3696. {
  3697. "name": "merlinofchaos",
  3698. "homepage": "https://www.drupal.org/user/26979"
  3699. },
  3700. {
  3701. "name": "neclimdul",
  3702. "homepage": "https://www.drupal.org/user/48673"
  3703. },
  3704. {
  3705. "name": "sdboyer",
  3706. "homepage": "https://www.drupal.org/user/146719"
  3707. },
  3708. {
  3709. "name": "sun",
  3710. "homepage": "https://www.drupal.org/user/54136"
  3711. },
  3712. {
  3713. "name": "tim.plunkett",
  3714. "homepage": "https://www.drupal.org/user/241634"
  3715. }
  3716. ],
  3717. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3718. "homepage": "https://www.drupal.org/project/ctools",
  3719. "support": {
  3720. "source": "http://cgit.drupalcode.org/ctools",
  3721. "issues": "https://www.drupal.org/project/issues/ctools"
  3722. }
  3723. },
  3724. {
  3725. "name": "drupal/date_range_formatter",
  3726. "version": "3.1.0",
  3727. "source": {
  3728. "type": "git",
  3729. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3730. "reference": "8.x-3.1"
  3731. },
  3732. "dist": {
  3733. "type": "zip",
  3734. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3735. "reference": "8.x-3.1",
  3736. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3737. },
  3738. "require": {
  3739. "drupal/core": "*"
  3740. },
  3741. "type": "drupal-module",
  3742. "extra": {
  3743. "branch-alias": {
  3744. "dev-3.x": "3.x-dev"
  3745. },
  3746. "drupal": {
  3747. "version": "8.x-3.1",
  3748. "datestamp": "1502454544",
  3749. "security-coverage": {
  3750. "status": "covered",
  3751. "message": "Covered by Drupal's security advisory policy"
  3752. }
  3753. }
  3754. },
  3755. "notification-url": "https://packages.drupal.org/8/downloads",
  3756. "license": [
  3757. "GPL-2.0-or-later"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "maximpodorov",
  3762. "homepage": "https://www.drupal.org/user/515310"
  3763. },
  3764. {
  3765. "name": "sudishth",
  3766. "homepage": "https://www.drupal.org/user/1440562"
  3767. }
  3768. ],
  3769. "description": "Formats date ranges.",
  3770. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3771. "support": {
  3772. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3773. }
  3774. },
  3775. {
  3776. "name": "drupal/devel",
  3777. "version": "2.1.0",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://git.drupalcode.org/project/devel.git",
  3781. "reference": "8.x-2.1"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3786. "reference": "8.x-2.1",
  3787. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3788. },
  3789. "require": {
  3790. "drupal/core": "~8.0",
  3791. "symfony/var-dumper": "~2.7|^3|^4"
  3792. },
  3793. "type": "drupal-module",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-2.x": "2.x-dev"
  3797. },
  3798. "drupal": {
  3799. "version": "8.x-2.1",
  3800. "datestamp": "1556799496",
  3801. "security-coverage": {
  3802. "status": "covered",
  3803. "message": "Covered by Drupal's security advisory policy"
  3804. }
  3805. },
  3806. "drush": {
  3807. "services": {
  3808. "drush.services.yml": "^9"
  3809. }
  3810. }
  3811. },
  3812. "notification-url": "https://packages.drupal.org/8/downloads",
  3813. "license": [
  3814. "GPL-2.0+"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "Moshe Weitzman",
  3819. "homepage": "https://github.com/weitzman",
  3820. "email": "weitzman@tejasa.com",
  3821. "role": "Maintainer"
  3822. },
  3823. {
  3824. "name": "Hans Salvisberg",
  3825. "homepage": "https://www.drupal.org/u/salvis",
  3826. "email": "drupal@salvisberg.com",
  3827. "role": "Maintainer"
  3828. },
  3829. {
  3830. "name": "Luca Lusso",
  3831. "homepage": "https://www.drupal.org/u/lussoluca",
  3832. "role": "Maintainer"
  3833. },
  3834. {
  3835. "name": "Marco (willzyx)",
  3836. "homepage": "https://www.drupal.org/u/willzyx",
  3837. "role": "Maintainer"
  3838. },
  3839. {
  3840. "name": "See contributors",
  3841. "homepage": "https://www.drupal.org/node/3236/committers"
  3842. },
  3843. {
  3844. "name": "salvis",
  3845. "homepage": "https://www.drupal.org/user/82964"
  3846. },
  3847. {
  3848. "name": "willzyx",
  3849. "homepage": "https://www.drupal.org/user/1043862"
  3850. }
  3851. ],
  3852. "description": "Various blocks, pages, and functions for developers.",
  3853. "homepage": "http://drupal.org/project/devel",
  3854. "support": {
  3855. "source": "http://cgit.drupalcode.org/devel",
  3856. "issues": "http://drupal.org/project/devel",
  3857. "irc": "irc://irc.freenode.org/drupal-contribute"
  3858. }
  3859. },
  3860. {
  3861. "name": "drupal/domain",
  3862. "version": "1.0.0-alpha16",
  3863. "source": {
  3864. "type": "git",
  3865. "url": "https://git.drupalcode.org/project/domain.git",
  3866. "reference": "8.x-1.0-alpha16"
  3867. },
  3868. "dist": {
  3869. "type": "zip",
  3870. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3871. "reference": "8.x-1.0-alpha16",
  3872. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3873. },
  3874. "require": {
  3875. "drupal/core": "^8.5"
  3876. },
  3877. "require-dev": {
  3878. "drupal/domain_access": "*"
  3879. },
  3880. "type": "drupal-module",
  3881. "extra": {
  3882. "branch-alias": {
  3883. "dev-1.x": "1.x-dev"
  3884. },
  3885. "drupal": {
  3886. "version": "8.x-1.0-alpha16",
  3887. "datestamp": "1561126081",
  3888. "security-coverage": {
  3889. "status": "not-covered",
  3890. "message": "Alpha releases are not covered by Drupal security advisories."
  3891. }
  3892. }
  3893. },
  3894. "notification-url": "https://packages.drupal.org/8/downloads",
  3895. "license": [
  3896. "GPL-2.0-or-later"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "agentrickard",
  3901. "homepage": "https://www.drupal.org/user/20975"
  3902. },
  3903. {
  3904. "name": "nonsie",
  3905. "homepage": "https://www.drupal.org/user/29899"
  3906. }
  3907. ],
  3908. "description": "Creates domain records within a Drupal installation.",
  3909. "homepage": "https://www.drupal.org/project/domain",
  3910. "support": {
  3911. "source": "https://git.drupalcode.org/project/domain"
  3912. }
  3913. },
  3914. {
  3915. "name": "drupal/domain_access",
  3916. "version": "1.0.0-alpha16",
  3917. "require": {
  3918. "drupal/core": "*",
  3919. "drupal/domain": "self.version"
  3920. },
  3921. "type": "metapackage",
  3922. "extra": {
  3923. "branch-alias": {
  3924. "dev-1.x": "1.x-dev"
  3925. },
  3926. "drupal": {
  3927. "version": "8.x-1.0-alpha16",
  3928. "datestamp": "1561126081",
  3929. "security-coverage": {
  3930. "status": "not-covered",
  3931. "message": "Alpha releases are not covered by Drupal security advisories."
  3932. }
  3933. }
  3934. },
  3935. "notification-url": "https://packages.drupal.org/8/downloads",
  3936. "license": [
  3937. "GPL-2.0-or-later"
  3938. ],
  3939. "authors": [
  3940. {
  3941. "name": "agentrickard",
  3942. "homepage": "https://www.drupal.org/user/20975"
  3943. },
  3944. {
  3945. "name": "nonsie",
  3946. "homepage": "https://www.drupal.org/user/29899"
  3947. }
  3948. ],
  3949. "description": "Domain-based access control for content.",
  3950. "homepage": "https://www.drupal.org/project/domain",
  3951. "support": {
  3952. "source": "https://git.drupalcode.org/project/domain"
  3953. }
  3954. },
  3955. {
  3956. "name": "drupal/domain_config",
  3957. "version": "1.0.0-alpha16",
  3958. "require": {
  3959. "drupal/core": "~8.0",
  3960. "drupal/domain": "self.version"
  3961. },
  3962. "type": "metapackage",
  3963. "extra": {
  3964. "branch-alias": {
  3965. "dev-1.x": "1.x-dev"
  3966. },
  3967. "drupal": {
  3968. "version": "8.x-1.0-alpha16",
  3969. "datestamp": "1561126081",
  3970. "security-coverage": {
  3971. "status": "not-covered",
  3972. "message": "Alpha releases are not covered by Drupal security advisories."
  3973. }
  3974. }
  3975. },
  3976. "notification-url": "https://packages.drupal.org/8/downloads",
  3977. "license": [
  3978. "GPL-2.0-or-later"
  3979. ],
  3980. "authors": [
  3981. {
  3982. "name": "agentrickard",
  3983. "homepage": "https://www.drupal.org/user/20975"
  3984. },
  3985. {
  3986. "name": "nonsie",
  3987. "homepage": "https://www.drupal.org/user/29899"
  3988. }
  3989. ],
  3990. "description": "Allows domain specific configuration.",
  3991. "homepage": "https://www.drupal.org/project/domain",
  3992. "support": {
  3993. "source": "https://git.drupalcode.org/project/domain"
  3994. }
  3995. },
  3996. {
  3997. "name": "drupal/domain_menu_access",
  3998. "version": "dev-1.x",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  4002. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  4003. },
  4004. "require": {
  4005. "drupal/core": "~8.0",
  4006. "drupal/domain": "^1",
  4007. "drupal/domain_access": "^1"
  4008. },
  4009. "type": "drupal-module",
  4010. "extra": {
  4011. "branch-alias": {
  4012. "dev-1.x": "1.x-dev"
  4013. },
  4014. "drupal": {
  4015. "version": "8.x-1.0-alpha2+3-dev",
  4016. "datestamp": "1551553085",
  4017. "security-coverage": {
  4018. "status": "not-covered",
  4019. "message": "Dev releases are not covered by Drupal security advisories."
  4020. }
  4021. }
  4022. },
  4023. "notification-url": "https://packages.drupal.org/8/downloads",
  4024. "license": [
  4025. "GPL-2.0+"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "Sebastien @Actualys",
  4030. "homepage": "https://www.drupal.org/user/380104"
  4031. },
  4032. {
  4033. "name": "maciej.zgadzaj",
  4034. "homepage": "https://www.drupal.org/user/271491"
  4035. },
  4036. {
  4037. "name": "pifagor",
  4038. "homepage": "https://www.drupal.org/user/2375692"
  4039. }
  4040. ],
  4041. "description": "Domain-based access control for menu link.",
  4042. "homepage": "https://www.drupal.org/project/domain_menu_access",
  4043. "support": {
  4044. "source": "https://git.drupalcode.org/project/domain_menu_access"
  4045. },
  4046. "time": "2019-04-11T06:07:16+00:00"
  4047. },
  4048. {
  4049. "name": "drupal/domain_site_settings",
  4050. "version": "1.3.0",
  4051. "source": {
  4052. "type": "git",
  4053. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4054. "reference": "8.x-1.3"
  4055. },
  4056. "dist": {
  4057. "type": "zip",
  4058. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4059. "reference": "8.x-1.3",
  4060. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4061. },
  4062. "require": {
  4063. "drupal/core": "~8.0",
  4064. "drupal/domain": "*",
  4065. "drupal/domain_config": "*"
  4066. },
  4067. "type": "drupal-module",
  4068. "extra": {
  4069. "branch-alias": {
  4070. "dev-1.x": "1.x-dev"
  4071. },
  4072. "drupal": {
  4073. "version": "8.x-1.3",
  4074. "datestamp": "1537684980",
  4075. "security-coverage": {
  4076. "status": "covered",
  4077. "message": "Covered by Drupal's security advisory policy"
  4078. }
  4079. },
  4080. "patches_applied": {
  4081. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  4082. }
  4083. },
  4084. "notification-url": "https://packages.drupal.org/8/downloads",
  4085. "license": [
  4086. "GPL-2.0+"
  4087. ],
  4088. "authors": [
  4089. {
  4090. "name": "aloknarwaria",
  4091. "homepage": "https://www.drupal.org/user/906640"
  4092. }
  4093. ],
  4094. "description": "Basic Site Setting for Domains.",
  4095. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4096. "keywords": [
  4097. "Drupal"
  4098. ],
  4099. "support": {
  4100. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4101. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4102. }
  4103. },
  4104. {
  4105. "name": "drupal/email_registration",
  4106. "version": "1.0.0-rc7",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://git.drupalcode.org/project/email_registration.git",
  4110. "reference": "8.x-1.0-rc7"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc7.zip",
  4115. "reference": "8.x-1.0-rc7",
  4116. "shasum": "a3ebc1e38539e7916f48e827d5bd7b1abeef0011"
  4117. },
  4118. "require": {
  4119. "drupal/core": "*"
  4120. },
  4121. "type": "drupal-module",
  4122. "extra": {
  4123. "branch-alias": {
  4124. "dev-1.x": "1.x-dev"
  4125. },
  4126. "drupal": {
  4127. "version": "8.x-1.0-rc7",
  4128. "datestamp": "1557344281",
  4129. "security-coverage": {
  4130. "status": "not-covered",
  4131. "message": "RC releases are not covered by Drupal security advisories."
  4132. }
  4133. }
  4134. },
  4135. "notification-url": "https://packages.drupal.org/8/downloads",
  4136. "license": [
  4137. "GPL-2.0+"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Greg Knaddison (greggles)",
  4142. "homepage": "https://www.drupal.org/u/greggles",
  4143. "role": "Maintainer"
  4144. },
  4145. {
  4146. "name": "Andrey Postnikov (andypost)",
  4147. "homepage": "https://www.drupal.org/u/andypost",
  4148. "role": "Maintainer"
  4149. },
  4150. {
  4151. "name": "Chris Herberte",
  4152. "homepage": "https://www.drupal.org/u/chris-herberte",
  4153. "role": "Maintainer"
  4154. },
  4155. {
  4156. "name": "Moshe Weitzman (moshe weitzman)",
  4157. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4158. "role": "Maintainer"
  4159. }
  4160. ],
  4161. "description": "Allows users to register with an email address as their username.",
  4162. "homepage": "https://www.drupal.org/project/email_registration",
  4163. "support": {
  4164. "source": "http://cgit.drupalcode.org/email_registration",
  4165. "issues": "http://drupal.org/project/issues/email_registration"
  4166. }
  4167. },
  4168. {
  4169. "name": "drupal/entity",
  4170. "version": "1.0.0-rc3",
  4171. "source": {
  4172. "type": "git",
  4173. "url": "https://git.drupalcode.org/project/entity.git",
  4174. "reference": "8.x-1.0-rc3"
  4175. },
  4176. "dist": {
  4177. "type": "zip",
  4178. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc3.zip",
  4179. "reference": "8.x-1.0-rc3",
  4180. "shasum": "6b4ccc0231c52ed9594502a0718057f53d98404d"
  4181. },
  4182. "require": {
  4183. "drupal/core": "^8.6"
  4184. },
  4185. "type": "drupal-module",
  4186. "extra": {
  4187. "branch-alias": {
  4188. "dev-1.x": "1.x-dev"
  4189. },
  4190. "drupal": {
  4191. "version": "8.x-1.0-rc3",
  4192. "datestamp": "1559579884",
  4193. "security-coverage": {
  4194. "status": "not-covered",
  4195. "message": "RC releases are not covered by Drupal security advisories."
  4196. }
  4197. }
  4198. },
  4199. "notification-url": "https://packages.drupal.org/8/downloads",
  4200. "license": [
  4201. "GPL-2.0+"
  4202. ],
  4203. "authors": [
  4204. {
  4205. "name": "Berdir",
  4206. "homepage": "https://www.drupal.org/user/214652"
  4207. },
  4208. {
  4209. "name": "bojanz",
  4210. "homepage": "https://www.drupal.org/user/86106"
  4211. },
  4212. {
  4213. "name": "dawehner",
  4214. "homepage": "https://www.drupal.org/user/99340"
  4215. },
  4216. {
  4217. "name": "dixon_",
  4218. "homepage": "https://www.drupal.org/user/239911"
  4219. },
  4220. {
  4221. "name": "fago",
  4222. "homepage": "https://www.drupal.org/user/16747"
  4223. }
  4224. ],
  4225. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4226. "homepage": "http://drupal.org/project/entity",
  4227. "support": {
  4228. "source": "https://git.drupalcode.org/project/entity"
  4229. }
  4230. },
  4231. {
  4232. "name": "drupal/features",
  4233. "version": "3.8.0",
  4234. "source": {
  4235. "type": "git",
  4236. "url": "https://git.drupalcode.org/project/features.git",
  4237. "reference": "8.x-3.8"
  4238. },
  4239. "dist": {
  4240. "type": "zip",
  4241. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  4242. "reference": "8.x-3.8",
  4243. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  4244. },
  4245. "require": {
  4246. "drupal/config_update": "^1.4",
  4247. "drupal/core": "*"
  4248. },
  4249. "type": "drupal-module",
  4250. "extra": {
  4251. "branch-alias": {
  4252. "dev-3.x": "3.x-dev"
  4253. },
  4254. "drupal": {
  4255. "version": "8.x-3.8",
  4256. "datestamp": "1536512284",
  4257. "security-coverage": {
  4258. "status": "covered",
  4259. "message": "Covered by Drupal's security advisory policy"
  4260. }
  4261. },
  4262. "drush": {
  4263. "services": {
  4264. "drush.services.yml": "^9"
  4265. }
  4266. }
  4267. },
  4268. "notification-url": "https://packages.drupal.org/8/downloads",
  4269. "license": [
  4270. "GPL-2.0+"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "dawehner",
  4275. "homepage": "https://www.drupal.org/user/99340"
  4276. },
  4277. {
  4278. "name": "e2thex",
  4279. "homepage": "https://www.drupal.org/user/189123"
  4280. },
  4281. {
  4282. "name": "febbraro",
  4283. "homepage": "https://www.drupal.org/user/43670"
  4284. },
  4285. {
  4286. "name": "jmiccolis",
  4287. "homepage": "https://www.drupal.org/user/31731"
  4288. },
  4289. {
  4290. "name": "joseph.olstad",
  4291. "homepage": "https://www.drupal.org/user/1321830"
  4292. },
  4293. {
  4294. "name": "mpotter",
  4295. "homepage": "https://www.drupal.org/user/616192"
  4296. },
  4297. {
  4298. "name": "nedjo",
  4299. "homepage": "https://www.drupal.org/user/4481"
  4300. },
  4301. {
  4302. "name": "tim.plunkett",
  4303. "homepage": "https://www.drupal.org/user/241634"
  4304. }
  4305. ],
  4306. "description": "Enables administrators to package configuration into modules",
  4307. "homepage": "https://www.drupal.org/project/features",
  4308. "support": {
  4309. "source": "https://git.drupalcode.org/project/features"
  4310. }
  4311. },
  4312. {
  4313. "name": "drupal/field_group",
  4314. "version": "3.0.0-rc1",
  4315. "source": {
  4316. "type": "git",
  4317. "url": "https://git.drupalcode.org/project/field_group.git",
  4318. "reference": "8.x-3.0-rc1"
  4319. },
  4320. "dist": {
  4321. "type": "zip",
  4322. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip",
  4323. "reference": "8.x-3.0-rc1",
  4324. "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22"
  4325. },
  4326. "require": {
  4327. "drupal/core": "*"
  4328. },
  4329. "type": "drupal-module",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-3.x": "3.x-dev"
  4333. },
  4334. "drupal": {
  4335. "version": "8.x-3.0-rc1",
  4336. "datestamp": "1558678323",
  4337. "security-coverage": {
  4338. "status": "not-covered",
  4339. "message": "RC releases are not covered by Drupal security advisories."
  4340. }
  4341. }
  4342. },
  4343. "notification-url": "https://packages.drupal.org/8/downloads",
  4344. "license": [
  4345. "GPL-2.0+"
  4346. ],
  4347. "authors": [
  4348. {
  4349. "name": "Hydra",
  4350. "homepage": "https://www.drupal.org/user/647364"
  4351. },
  4352. {
  4353. "name": "Stalski",
  4354. "homepage": "https://www.drupal.org/user/322618"
  4355. },
  4356. {
  4357. "name": "jyve",
  4358. "homepage": "https://www.drupal.org/user/591438"
  4359. },
  4360. {
  4361. "name": "swentel",
  4362. "homepage": "https://www.drupal.org/user/107403"
  4363. },
  4364. {
  4365. "name": "zuuperman",
  4366. "homepage": "https://www.drupal.org/user/361625"
  4367. }
  4368. ],
  4369. "description": "Provides the field_group module.",
  4370. "homepage": "https://www.drupal.org/project/field_group",
  4371. "support": {
  4372. "source": "https://git.drupalcode.org/project/field_group"
  4373. }
  4374. },
  4375. {
  4376. "name": "drupal/filefield_sources",
  4377. "version": "dev-1.x",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4381. "reference": "6da74b585fcdc66bf5b1f5b3d9c6985df137fa2a"
  4382. },
  4383. "require": {
  4384. "drupal/core": "*"
  4385. },
  4386. "require-dev": {
  4387. "drupal/imce": "*"
  4388. },
  4389. "type": "drupal-module",
  4390. "extra": {
  4391. "branch-alias": {
  4392. "dev-1.x": "1.x-dev"
  4393. },
  4394. "drupal": {
  4395. "version": "8.x-1.0-alpha1+5-dev",
  4396. "datestamp": "1556769786",
  4397. "security-coverage": {
  4398. "status": "not-covered",
  4399. "message": "Dev releases are not covered by Drupal security advisories."
  4400. }
  4401. }
  4402. },
  4403. "notification-url": "https://packages.drupal.org/8/downloads",
  4404. "license": [
  4405. "GPL-2.0-or-later"
  4406. ],
  4407. "authors": [
  4408. {
  4409. "name": "Nate Lampton (quicksketch)",
  4410. "homepage": "https://www.drupal.org/u/quicksketch",
  4411. "role": "Maintainer"
  4412. },
  4413. {
  4414. "name": "Andrey Khromyshev (profak)",
  4415. "homepage": "https://www.drupal.org/u/profak",
  4416. "role": "Maintainer"
  4417. },
  4418. {
  4419. "name": "David Valdez (gnuget)",
  4420. "homepage": "https://www.drupal.org/u/gnuget",
  4421. "role": "Maintainer"
  4422. }
  4423. ],
  4424. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4425. "homepage": "https://www.drupal.org/project/filefield_sources",
  4426. "support": {
  4427. "source": "https://git.drupalcode.org/project/filefield_sources",
  4428. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4429. "irc": "irc://irc.freenode.org/drupal-contribute"
  4430. },
  4431. "time": "2019-05-03T18:32:19+00:00"
  4432. },
  4433. {
  4434. "name": "drupal/filter_perms",
  4435. "version": "dev-1.x",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4439. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4440. },
  4441. "require": {
  4442. "drupal/core": "*"
  4443. },
  4444. "type": "drupal-module",
  4445. "extra": {
  4446. "branch-alias": {
  4447. "dev-1.x": "1.x-dev"
  4448. },
  4449. "drupal": {
  4450. "version": "8.x-1.x-dev",
  4451. "datestamp": "1469645939",
  4452. "security-coverage": {
  4453. "status": "not-covered",
  4454. "message": "Dev releases are not covered by Drupal security advisories."
  4455. }
  4456. }
  4457. },
  4458. "notification-url": "https://packages.drupal.org/8/downloads",
  4459. "license": [
  4460. "GPL-2.0-or-later"
  4461. ],
  4462. "authors": [
  4463. {
  4464. "name": "cYu",
  4465. "homepage": "https://www.drupal.org/user/202205"
  4466. },
  4467. {
  4468. "name": "deekayen",
  4469. "homepage": "https://www.drupal.org/user/972"
  4470. },
  4471. {
  4472. "name": "willzyx",
  4473. "homepage": "https://www.drupal.org/user/1043862"
  4474. }
  4475. ],
  4476. "description": "Provides role and module filters to simplify the user permissions page.",
  4477. "homepage": "https://www.drupal.org/project/filter_perms",
  4478. "support": {
  4479. "source": "https://git.drupalcode.org/project/filter_perms"
  4480. },
  4481. "time": "2016-07-27T19:01:11+00:00"
  4482. },
  4483. {
  4484. "name": "drupal/honeypot",
  4485. "version": "1.29.0",
  4486. "source": {
  4487. "type": "git",
  4488. "url": "https://git.drupalcode.org/project/honeypot.git",
  4489. "reference": "8.x-1.29"
  4490. },
  4491. "dist": {
  4492. "type": "zip",
  4493. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4494. "reference": "8.x-1.29",
  4495. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4496. },
  4497. "require": {
  4498. "drupal/core": "~8.0"
  4499. },
  4500. "type": "drupal-module",
  4501. "extra": {
  4502. "branch-alias": {
  4503. "dev-1.x": "1.x-dev"
  4504. },
  4505. "drupal": {
  4506. "version": "8.x-1.29",
  4507. "datestamp": "1536179280",
  4508. "security-coverage": {
  4509. "status": "covered",
  4510. "message": "Covered by Drupal's security advisory policy"
  4511. }
  4512. }
  4513. },
  4514. "notification-url": "https://packages.drupal.org/8/downloads",
  4515. "license": [
  4516. "GPL-2.0+"
  4517. ],
  4518. "authors": [
  4519. {
  4520. "name": "Jeff Geerling",
  4521. "homepage": "https://www.drupal.org/user/213194",
  4522. "email": "geerlingguy@mac.com"
  4523. },
  4524. {
  4525. "name": "geerlingguy",
  4526. "homepage": "https://www.drupal.org/user/389011"
  4527. },
  4528. {
  4529. "name": "vijaycs85",
  4530. "homepage": "https://www.drupal.org/user/93488"
  4531. }
  4532. ],
  4533. "description": "Mitigates spam form submissions using the honeypot method.",
  4534. "homepage": "https://www.drupal.org/project/honeypot",
  4535. "keywords": [
  4536. "deterrent",
  4537. "form",
  4538. "honeypot",
  4539. "honeytrap",
  4540. "php",
  4541. "spam"
  4542. ],
  4543. "support": {
  4544. "source": "https://git.drupalcode.org/project/honeypot"
  4545. }
  4546. },
  4547. {
  4548. "name": "drupal/linkit",
  4549. "version": "5.0.0-beta9",
  4550. "source": {
  4551. "type": "git",
  4552. "url": "https://git.drupalcode.org/project/linkit.git",
  4553. "reference": "8.x-5.0-beta9"
  4554. },
  4555. "dist": {
  4556. "type": "zip",
  4557. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta9.zip",
  4558. "reference": "8.x-5.0-beta9",
  4559. "shasum": "150291dd87a4f65027492020c28635e2b5249d1a"
  4560. },
  4561. "require": {
  4562. "drupal/core": "~8.0"
  4563. },
  4564. "require-dev": {
  4565. "drupal/imce": "*"
  4566. },
  4567. "type": "drupal-module",
  4568. "extra": {
  4569. "branch-alias": {
  4570. "dev-5.x": "5.x-dev"
  4571. },
  4572. "drupal": {
  4573. "version": "8.x-5.0-beta9",
  4574. "datestamp": "1562194985",
  4575. "security-coverage": {
  4576. "status": "not-covered",
  4577. "message": "Beta releases are not covered by Drupal security advisories."
  4578. }
  4579. }
  4580. },
  4581. "notification-url": "https://packages.drupal.org/8/downloads",
  4582. "license": [
  4583. "GPL-2.0+"
  4584. ],
  4585. "authors": [
  4586. {
  4587. "name": "Emil Stjerneman",
  4588. "homepage": "https://stjerneman.com",
  4589. "email": "emil@stjerneman.com",
  4590. "role": "Maintainer"
  4591. }
  4592. ],
  4593. "description": "Linkit - Enriched linking experience",
  4594. "homepage": "http://drupal.org/project/linkit",
  4595. "support": {
  4596. "source": "http://cgit.drupalcode.org/linkit",
  4597. "issues": "http://drupal.org/project/linkit"
  4598. }
  4599. },
  4600. {
  4601. "name": "drupal/maillog",
  4602. "version": "dev-1.x",
  4603. "source": {
  4604. "type": "git",
  4605. "url": "https://git.drupalcode.org/project/maillog.git",
  4606. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4607. },
  4608. "require": {
  4609. "drupal/core": "*"
  4610. },
  4611. "type": "drupal-module",
  4612. "extra": {
  4613. "branch-alias": {
  4614. "dev-1.x": "1.x-dev"
  4615. },
  4616. "drupal": {
  4617. "version": "8.x-1.x-dev",
  4618. "datestamp": "1470431939",
  4619. "security-coverage": {
  4620. "status": "not-covered",
  4621. "message": "Project has not opted into security advisory coverage!"
  4622. }
  4623. }
  4624. },
  4625. "notification-url": "https://packages.drupal.org/8/downloads",
  4626. "license": [
  4627. "GPL-2.0-or-later"
  4628. ],
  4629. "authors": [
  4630. {
  4631. "name": "Berdir",
  4632. "homepage": "https://www.drupal.org/user/214652"
  4633. },
  4634. {
  4635. "name": "DamienMcKenna",
  4636. "homepage": "https://www.drupal.org/user/108450"
  4637. },
  4638. {
  4639. "name": "miro_dietiker",
  4640. "homepage": "https://www.drupal.org/user/227761"
  4641. },
  4642. {
  4643. "name": "pluess",
  4644. "homepage": "https://www.drupal.org/user/84659"
  4645. }
  4646. ],
  4647. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4648. "homepage": "https://www.drupal.org/project/maillog",
  4649. "support": {
  4650. "source": "https://git.drupalcode.org/project/maillog"
  4651. },
  4652. "time": "2016-08-05T21:18:07+00:00"
  4653. },
  4654. {
  4655. "name": "drupal/matomo",
  4656. "version": "1.9.0",
  4657. "source": {
  4658. "type": "git",
  4659. "url": "https://git.drupalcode.org/project/matomo.git",
  4660. "reference": "8.x-1.9"
  4661. },
  4662. "dist": {
  4663. "type": "zip",
  4664. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4665. "reference": "8.x-1.9",
  4666. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4667. },
  4668. "require": {
  4669. "drupal/core": "~8.5"
  4670. },
  4671. "require-dev": {
  4672. "drupal/php": "*",
  4673. "drupal/token": "*"
  4674. },
  4675. "type": "drupal-module",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-1.x": "1.x-dev"
  4679. },
  4680. "drupal": {
  4681. "version": "8.x-1.9",
  4682. "datestamp": "1549615080",
  4683. "security-coverage": {
  4684. "status": "covered",
  4685. "message": "Covered by Drupal's security advisory policy"
  4686. }
  4687. }
  4688. },
  4689. "notification-url": "https://packages.drupal.org/8/downloads",
  4690. "license": [
  4691. "GPL-2.0+"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "hass",
  4696. "homepage": "https://www.drupal.org/u/hass"
  4697. },
  4698. {
  4699. "name": "See other contributors",
  4700. "homepage": "https://www.drupal.org/node/247808/committers"
  4701. }
  4702. ],
  4703. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4704. "homepage": "https://www.drupal.org/project/matomo",
  4705. "support": {
  4706. "source": "https://git.drupal.org/project/matomo.git",
  4707. "issues": "https://www.drupal.org/project/issues/matomo"
  4708. }
  4709. },
  4710. {
  4711. "name": "drupal/menu_admin_per_menu",
  4712. "version": "1.0.0",
  4713. "source": {
  4714. "type": "git",
  4715. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4716. "reference": "8.x-1.0"
  4717. },
  4718. "dist": {
  4719. "type": "zip",
  4720. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4721. "reference": "8.x-1.0",
  4722. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4723. },
  4724. "require": {
  4725. "drupal/core": "*"
  4726. },
  4727. "type": "drupal-module",
  4728. "extra": {
  4729. "branch-alias": {
  4730. "dev-1.x": "1.x-dev"
  4731. },
  4732. "drupal": {
  4733. "version": "8.x-1.0",
  4734. "datestamp": "1507184944",
  4735. "security-coverage": {
  4736. "status": "covered",
  4737. "message": "Covered by Drupal's security advisory policy"
  4738. }
  4739. }
  4740. },
  4741. "notification-url": "https://packages.drupal.org/8/downloads",
  4742. "license": [
  4743. "GPL-2.0-or-later"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "anrikun",
  4748. "homepage": "https://www.drupal.org/user/410199"
  4749. },
  4750. {
  4751. "name": "mkdok",
  4752. "homepage": "https://www.drupal.org/user/3308753"
  4753. }
  4754. ],
  4755. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4756. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4757. "support": {
  4758. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4759. }
  4760. },
  4761. {
  4762. "name": "drupal/metatag",
  4763. "version": "1.10.0",
  4764. "source": {
  4765. "type": "git",
  4766. "url": "https://git.drupalcode.org/project/metatag.git",
  4767. "reference": "8.x-1.10"
  4768. },
  4769. "dist": {
  4770. "type": "zip",
  4771. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip",
  4772. "reference": "8.x-1.10",
  4773. "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc"
  4774. },
  4775. "require": {
  4776. "drupal/core": "*",
  4777. "drupal/token": "^1.0"
  4778. },
  4779. "require-dev": {
  4780. "drupal/devel": "^2.0",
  4781. "drupal/metatag_dc": "*",
  4782. "drupal/metatag_open_graph": "*",
  4783. "drupal/page_manager": "^4.0",
  4784. "drupal/redirect": "^1.0",
  4785. "drupal/restui": "^1.0",
  4786. "drupal/schema_metatag": "^1.0",
  4787. "drupal/schema_web_page": "*"
  4788. },
  4789. "type": "drupal-module",
  4790. "extra": {
  4791. "branch-alias": {
  4792. "dev-1.x": "1.x-dev"
  4793. },
  4794. "drupal": {
  4795. "version": "8.x-1.10",
  4796. "datestamp": "1567099985",
  4797. "security-coverage": {
  4798. "status": "covered",
  4799. "message": "Covered by Drupal's security advisory policy"
  4800. }
  4801. }
  4802. },
  4803. "notification-url": "https://packages.drupal.org/8/downloads",
  4804. "license": [
  4805. "GPL-2.0+"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "See contributors",
  4810. "homepage": "https://www.drupal.org/node/640498/committers",
  4811. "role": "Developer"
  4812. },
  4813. {
  4814. "name": "Dave Reid",
  4815. "homepage": "https://www.drupal.org/user/53892"
  4816. }
  4817. ],
  4818. "description": "Manage meta tags for all entities.",
  4819. "homepage": "https://www.drupal.org/project/metatag",
  4820. "keywords": [
  4821. "Drupal",
  4822. "seo"
  4823. ],
  4824. "support": {
  4825. "source": "http://cgit.drupalcode.org/metatag",
  4826. "issues": "http://drupal.org/project/issues/metatag"
  4827. }
  4828. },
  4829. {
  4830. "name": "drupal/migrate_plus",
  4831. "version": "4.2.0",
  4832. "source": {
  4833. "type": "git",
  4834. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4835. "reference": "8.x-4.2"
  4836. },
  4837. "dist": {
  4838. "type": "zip",
  4839. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4840. "reference": "8.x-4.2",
  4841. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4842. },
  4843. "require": {
  4844. "drupal/core": "^8.3"
  4845. },
  4846. "require-dev": {
  4847. "drupal/entity": "*",
  4848. "drupal/migrate_example_advanced_setup": "*",
  4849. "drupal/migrate_example_setup": "*",
  4850. "drupal/migrate_tools": "*",
  4851. "drupal/profile": "*"
  4852. },
  4853. "suggest": {
  4854. "ext-soap": "*",
  4855. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4856. },
  4857. "type": "drupal-module",
  4858. "extra": {
  4859. "branch-alias": {
  4860. "dev-4.x": "4.x-dev"
  4861. },
  4862. "drupal": {
  4863. "version": "8.x-4.2",
  4864. "datestamp": "1555683487",
  4865. "security-coverage": {
  4866. "status": "covered",
  4867. "message": "Covered by Drupal's security advisory policy"
  4868. }
  4869. }
  4870. },
  4871. "notification-url": "https://packages.drupal.org/8/downloads",
  4872. "license": [
  4873. "GPL-2.0+"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "Mike Ryan",
  4878. "homepage": "https://www.drupal.org/u/mikeryan",
  4879. "role": "Maintainer"
  4880. },
  4881. {
  4882. "name": "mikeryan",
  4883. "homepage": "https://www.drupal.org/user/4420"
  4884. }
  4885. ],
  4886. "description": "Enhancements to core migration support.",
  4887. "homepage": "https://www.drupal.org/project/migrate_plus",
  4888. "support": {
  4889. "source": "https://cgit.drupalcode.org/migrate_plus",
  4890. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4891. "irc": "irc://irc.freenode.org/drupal-migrate"
  4892. }
  4893. },
  4894. {
  4895. "name": "drupal/migrate_tools",
  4896. "version": "4.4.0",
  4897. "source": {
  4898. "type": "git",
  4899. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4900. "reference": "8.x-4.4"
  4901. },
  4902. "dist": {
  4903. "type": "zip",
  4904. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.4.zip",
  4905. "reference": "8.x-4.4",
  4906. "shasum": "54a9f138809564c7e89d0e37e9fbb2ed57b562e2"
  4907. },
  4908. "require": {
  4909. "drupal/core": "^8.3",
  4910. "drupal/migrate_plus": "^4 || ^5"
  4911. },
  4912. "require-dev": {
  4913. "drupal/migrate_plus": "4.x-dev",
  4914. "drupal/migrate_source_csv": "^2.2",
  4915. "drush/drush": "^10"
  4916. },
  4917. "type": "drupal-module",
  4918. "extra": {
  4919. "branch-alias": {
  4920. "dev-4.x": "4.x-dev"
  4921. },
  4922. "drupal": {
  4923. "version": "8.x-4.4",
  4924. "datestamp": "1570477985",
  4925. "security-coverage": {
  4926. "status": "covered",
  4927. "message": "Covered by Drupal's security advisory policy"
  4928. }
  4929. },
  4930. "drush": {
  4931. "services": {
  4932. "drush.services.yml": "^9 || ^10"
  4933. }
  4934. }
  4935. },
  4936. "notification-url": "https://packages.drupal.org/8/downloads",
  4937. "license": [
  4938. "GPL-2.0-or-later"
  4939. ],
  4940. "authors": [
  4941. {
  4942. "name": "heddn",
  4943. "homepage": "https://www.drupal.org/user/1463982"
  4944. },
  4945. {
  4946. "name": "mikeryan",
  4947. "homepage": "https://www.drupal.org/user/4420"
  4948. },
  4949. {
  4950. "name": "moshe weitzman",
  4951. "homepage": "https://www.drupal.org/user/23"
  4952. }
  4953. ],
  4954. "description": "Tools to assist in developing and running migrations.",
  4955. "homepage": "http://drupal.org/project/migrate_tools",
  4956. "support": {
  4957. "source": "http://cgit.drupalcode.org/migrate_tools",
  4958. "issues": "http://drupal.org/project/migrate_tools",
  4959. "irc": "irc://irc.freenode.org/drupal-migrate"
  4960. }
  4961. },
  4962. {
  4963. "name": "drupal/path_alias_xt",
  4964. "version": "dev-1.x",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4968. "reference": "30e7fc03f4f8572516160ea3a7d7282653e71818"
  4969. },
  4970. "require": {
  4971. "drupal/core": "*"
  4972. },
  4973. "type": "drupal-module",
  4974. "extra": {
  4975. "branch-alias": {
  4976. "dev-1.x": "1.x-dev"
  4977. },
  4978. "drupal": {
  4979. "version": "8.x-1.x-dev",
  4980. "datestamp": "1557514381",
  4981. "security-coverage": {
  4982. "status": "not-covered",
  4983. "message": "Dev releases are not covered by Drupal security advisories."
  4984. }
  4985. }
  4986. },
  4987. "notification-url": "https://packages.drupal.org/8/downloads",
  4988. "license": [
  4989. "GPL-2.0-or-later"
  4990. ],
  4991. "authors": [
  4992. {
  4993. "name": "RdeBoer",
  4994. "homepage": "https://www.drupal.org/user/404007"
  4995. },
  4996. {
  4997. "name": "adriancid",
  4998. "homepage": "https://www.drupal.org/user/1962106"
  4999. },
  5000. {
  5001. "name": "sdstyles",
  5002. "homepage": "https://www.drupal.org/user/1420228"
  5003. }
  5004. ],
  5005. "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.",
  5006. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5007. "support": {
  5008. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5009. },
  5010. "time": "2019-05-28T17:44:23+00:00"
  5011. },
  5012. {
  5013. "name": "drupal/pathauto",
  5014. "version": "1.5.0",
  5015. "source": {
  5016. "type": "git",
  5017. "url": "https://git.drupalcode.org/project/pathauto.git",
  5018. "reference": "8.x-1.5"
  5019. },
  5020. "dist": {
  5021. "type": "zip",
  5022. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.5.zip",
  5023. "reference": "8.x-1.5",
  5024. "shasum": "ae3c13f26d625e63da3b13dc64016888eca519c7"
  5025. },
  5026. "require": {
  5027. "drupal/core": "^8.6",
  5028. "drupal/ctools": "*",
  5029. "drupal/token": "*"
  5030. },
  5031. "type": "drupal-module",
  5032. "extra": {
  5033. "branch-alias": {
  5034. "dev-1.x": "1.x-dev"
  5035. },
  5036. "drupal": {
  5037. "version": "8.x-1.5",
  5038. "datestamp": "1570828084",
  5039. "security-coverage": {
  5040. "status": "covered",
  5041. "message": "Covered by Drupal's security advisory policy"
  5042. }
  5043. }
  5044. },
  5045. "notification-url": "https://packages.drupal.org/8/downloads",
  5046. "license": [
  5047. "GPL-2.0-or-later"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Berdir",
  5052. "homepage": "https://www.drupal.org/user/214652"
  5053. },
  5054. {
  5055. "name": "Dave Reid",
  5056. "homepage": "https://www.drupal.org/user/53892"
  5057. },
  5058. {
  5059. "name": "Freso",
  5060. "homepage": "https://www.drupal.org/user/27504"
  5061. },
  5062. {
  5063. "name": "greggles",
  5064. "homepage": "https://www.drupal.org/user/36762"
  5065. }
  5066. ],
  5067. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5068. "homepage": "https://www.drupal.org/project/pathauto",
  5069. "support": {
  5070. "source": "https://git.drupalcode.org/project/pathauto"
  5071. }
  5072. },
  5073. {
  5074. "name": "drupal/piwik",
  5075. "version": "1.4.0",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://git.drupalcode.org/project/piwik.git",
  5079. "reference": "8.x-1.4"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  5084. "reference": "8.x-1.4",
  5085. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  5086. },
  5087. "require": {
  5088. "drupal/core": "~8.0",
  5089. "drupal/matomo": "^1.0"
  5090. },
  5091. "require-dev": {
  5092. "drupal/php": "*",
  5093. "drupal/token": "*"
  5094. },
  5095. "type": "drupal-module",
  5096. "extra": {
  5097. "branch-alias": {
  5098. "dev-1.x": "1.x-dev"
  5099. },
  5100. "drupal": {
  5101. "version": "8.x-1.4",
  5102. "datestamp": "1530437786",
  5103. "security-coverage": {
  5104. "status": "covered",
  5105. "message": "Covered by Drupal's security advisory policy"
  5106. }
  5107. }
  5108. },
  5109. "notification-url": "https://packages.drupal.org/8/downloads",
  5110. "license": [
  5111. "GPL-2.0+"
  5112. ],
  5113. "authors": [
  5114. {
  5115. "name": "hass",
  5116. "homepage": "https://www.drupal.org/u/hass"
  5117. },
  5118. {
  5119. "name": "See other contributors",
  5120. "homepage": "https://www.drupal.org/node/247808/committers"
  5121. }
  5122. ],
  5123. "description": "Adds Piwik javascript tracking code to all your site's pages",
  5124. "homepage": "https://www.drupal.org/project/piwik",
  5125. "support": {
  5126. "source": "http://git.drupal.org/project/piwik.git",
  5127. "issues": "https://www.drupal.org/project/issues/piwik"
  5128. }
  5129. },
  5130. {
  5131. "name": "drupal/profile",
  5132. "version": "1.0.0",
  5133. "source": {
  5134. "type": "git",
  5135. "url": "https://git.drupalcode.org/project/profile.git",
  5136. "reference": "8.x-1.0"
  5137. },
  5138. "dist": {
  5139. "type": "zip",
  5140. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0.zip",
  5141. "reference": "8.x-1.0",
  5142. "shasum": "45f5ad7f274d5e1e7ec8b72d98f9a20136073112"
  5143. },
  5144. "require": {
  5145. "drupal/core": "^8.6",
  5146. "drupal/entity": "^1.0-rc2"
  5147. },
  5148. "require-dev": {
  5149. "drupal/token": "^1.0"
  5150. },
  5151. "type": "drupal-module",
  5152. "extra": {
  5153. "branch-alias": {
  5154. "dev-1.x": "1.x-dev"
  5155. },
  5156. "drupal": {
  5157. "version": "8.x-1.0",
  5158. "datestamp": "1567007888",
  5159. "security-coverage": {
  5160. "status": "covered",
  5161. "message": "Covered by Drupal's security advisory policy"
  5162. }
  5163. }
  5164. },
  5165. "notification-url": "https://packages.drupal.org/8/downloads",
  5166. "license": [
  5167. "GPL-2.0+"
  5168. ],
  5169. "authors": [
  5170. {
  5171. "name": "bojanz",
  5172. "homepage": "https://www.drupal.org/user/86106"
  5173. },
  5174. {
  5175. "name": "daggerhart",
  5176. "homepage": "https://www.drupal.org/user/167806"
  5177. },
  5178. {
  5179. "name": "fago",
  5180. "homepage": "https://www.drupal.org/user/16747"
  5181. },
  5182. {
  5183. "name": "jsacksick",
  5184. "homepage": "https://www.drupal.org/user/972218"
  5185. },
  5186. {
  5187. "name": "mglaman",
  5188. "homepage": "https://www.drupal.org/user/2416470"
  5189. },
  5190. {
  5191. "name": "pcambra",
  5192. "homepage": "https://www.drupal.org/user/122101"
  5193. }
  5194. ],
  5195. "description": "Provides configurable user profiles.",
  5196. "homepage": "http://drupal.org/project/profile",
  5197. "support": {
  5198. "source": "https://git.drupalcode.org/project/profile"
  5199. }
  5200. },
  5201. {
  5202. "name": "drupal/redirect",
  5203. "version": "1.4.0",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://git.drupalcode.org/project/redirect.git",
  5207. "reference": "8.x-1.4"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.4.zip",
  5212. "reference": "8.x-1.4",
  5213. "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c"
  5214. },
  5215. "require": {
  5216. "drupal/core": "~8"
  5217. },
  5218. "type": "drupal-module",
  5219. "extra": {
  5220. "branch-alias": {
  5221. "dev-1.x": "1.x-dev"
  5222. },
  5223. "drupal": {
  5224. "version": "8.x-1.4",
  5225. "datestamp": "1561757585",
  5226. "security-coverage": {
  5227. "status": "covered",
  5228. "message": "Covered by Drupal's security advisory policy"
  5229. }
  5230. }
  5231. },
  5232. "notification-url": "https://packages.drupal.org/8/downloads",
  5233. "license": [
  5234. "GPL-2.0+"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "Berdir",
  5239. "homepage": "https://www.drupal.org/user/214652"
  5240. },
  5241. {
  5242. "name": "Dave Reid",
  5243. "homepage": "https://www.drupal.org/user/53892"
  5244. },
  5245. {
  5246. "name": "pifagor",
  5247. "homepage": "https://www.drupal.org/user/2375692"
  5248. }
  5249. ],
  5250. "description": "Allows users to redirect from old URLs to new URLs.",
  5251. "homepage": "https://www.drupal.org/project/redirect",
  5252. "support": {
  5253. "source": "https://git.drupalcode.org/project/redirect"
  5254. }
  5255. },
  5256. {
  5257. "name": "drupal/redis",
  5258. "version": "1.2.0",
  5259. "source": {
  5260. "type": "git",
  5261. "url": "https://git.drupalcode.org/project/redis.git",
  5262. "reference": "8.x-1.2"
  5263. },
  5264. "dist": {
  5265. "type": "zip",
  5266. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.2.zip",
  5267. "reference": "8.x-1.2",
  5268. "shasum": "6b8847a0816a6e400d495aed1e9dde4c594d6e2b"
  5269. },
  5270. "require": {
  5271. "drupal/core": "~8.0"
  5272. },
  5273. "suggest": {
  5274. "predis/predis": "^1.1.1"
  5275. },
  5276. "type": "drupal-module",
  5277. "extra": {
  5278. "branch-alias": {
  5279. "dev-1.x": "1.x-dev"
  5280. },
  5281. "drupal": {
  5282. "version": "8.x-1.2",
  5283. "datestamp": "1568275684",
  5284. "security-coverage": {
  5285. "status": "covered",
  5286. "message": "Covered by Drupal's security advisory policy"
  5287. }
  5288. }
  5289. },
  5290. "autoload": {
  5291. "psr-4": {
  5292. "Drupal\\redis\\": "src"
  5293. }
  5294. },
  5295. "notification-url": "https://packages.drupal.org/8/downloads",
  5296. "license": [
  5297. "GPL-2.0"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Berdir",
  5302. "homepage": "https://www.drupal.org/user/214652"
  5303. },
  5304. {
  5305. "name": "pounard",
  5306. "homepage": "https://www.drupal.org/user/240164"
  5307. }
  5308. ],
  5309. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5310. "homepage": "https://www.drupal.org/project/redis",
  5311. "support": {
  5312. "source": "https://git.drupalcode.org/project/redis"
  5313. }
  5314. },
  5315. {
  5316. "name": "drupal/search_api",
  5317. "version": "1.15.0",
  5318. "source": {
  5319. "type": "git",
  5320. "url": "https://git.drupalcode.org/project/search_api.git",
  5321. "reference": "8.x-1.15"
  5322. },
  5323. "dist": {
  5324. "type": "zip",
  5325. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.15.zip",
  5326. "reference": "8.x-1.15",
  5327. "shasum": "12c13141adb6b687fe36781ac9269a49ef810323"
  5328. },
  5329. "require": {
  5330. "drupal/core": "^8.6"
  5331. },
  5332. "conflict": {
  5333. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5334. },
  5335. "require-dev": {
  5336. "drupal/language_fallback_fix": "@dev",
  5337. "drupal/search_api_autocomplete": "@dev",
  5338. "drupal/search_api_db": "*"
  5339. },
  5340. "suggest": {
  5341. "drupal/facets": "Adds the ability to create faceted searches.",
  5342. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5343. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5344. },
  5345. "type": "drupal-module",
  5346. "extra": {
  5347. "branch-alias": {
  5348. "dev-1.x": "1.x-dev"
  5349. },
  5350. "drupal": {
  5351. "version": "8.x-1.15",
  5352. "datestamp": "1573122785",
  5353. "security-coverage": {
  5354. "status": "covered",
  5355. "message": "Covered by Drupal's security advisory policy"
  5356. }
  5357. },
  5358. "drush": {
  5359. "services": {
  5360. "drush.services.yml": "^9"
  5361. }
  5362. }
  5363. },
  5364. "notification-url": "https://packages.drupal.org/8/downloads",
  5365. "license": [
  5366. "GPL-2.0+"
  5367. ],
  5368. "authors": [
  5369. {
  5370. "name": "Thomas Seidl",
  5371. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5372. },
  5373. {
  5374. "name": "Nick Veenhof",
  5375. "homepage": "https://www.drupal.org/u/nick_vh"
  5376. },
  5377. {
  5378. "name": "See other contributors",
  5379. "homepage": "https://www.drupal.org/node/790418/committers"
  5380. }
  5381. ],
  5382. "description": "Provides a generic framework for modules offering search capabilities.",
  5383. "homepage": "https://www.drupal.org/project/search_api",
  5384. "support": {
  5385. "source": "http://git.drupal.org/project/search_api.git",
  5386. "issues": "https://www.drupal.org/project/issues/search_api",
  5387. "irc": "irc://irc.freenode.org/drupal-search-api"
  5388. }
  5389. },
  5390. {
  5391. "name": "drupal/simple_sitemap",
  5392. "version": "3.4.0",
  5393. "source": {
  5394. "type": "git",
  5395. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5396. "reference": "8.x-3.4"
  5397. },
  5398. "dist": {
  5399. "type": "zip",
  5400. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.4.zip",
  5401. "reference": "8.x-3.4",
  5402. "shasum": "7cb1944ca2659e426e20680ef8e7cd48747545c8"
  5403. },
  5404. "require": {
  5405. "drupal/core": "~8.0",
  5406. "ext-xmlwriter": "*"
  5407. },
  5408. "type": "drupal-module",
  5409. "extra": {
  5410. "branch-alias": {
  5411. "dev-3.x": "3.x-dev"
  5412. },
  5413. "drupal": {
  5414. "version": "8.x-3.4",
  5415. "datestamp": "1570445886",
  5416. "security-coverage": {
  5417. "status": "covered",
  5418. "message": "Covered by Drupal's security advisory policy"
  5419. }
  5420. },
  5421. "drush": {
  5422. "services": {
  5423. "drush.services.yml": "^9"
  5424. }
  5425. }
  5426. },
  5427. "notification-url": "https://packages.drupal.org/8/downloads",
  5428. "license": [
  5429. "GPL-2.0+"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Pawel Ginalski (gbyte.co)",
  5434. "homepage": "https://www.drupal.org/u/gbyte.co",
  5435. "email": "contact@gbyte.co",
  5436. "role": "Maintainer"
  5437. },
  5438. {
  5439. "name": "gbyte.co",
  5440. "homepage": "https://www.drupal.org/user/2381352"
  5441. }
  5442. ],
  5443. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5444. "homepage": "https://drupal.org/project/simple_sitemap",
  5445. "support": {
  5446. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5447. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5448. "irc": "irc://irc.freenode.org/drupal-contribute"
  5449. }
  5450. },
  5451. {
  5452. "name": "drupal/synonyms",
  5453. "version": "dev-1.x",
  5454. "source": {
  5455. "type": "git",
  5456. "url": "https://git.drupalcode.org/project/synonyms.git",
  5457. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5458. },
  5459. "require": {
  5460. "drupal/core": "^8.2"
  5461. },
  5462. "type": "drupal-module",
  5463. "extra": {
  5464. "branch-alias": {
  5465. "dev-1.x": "1.x-dev"
  5466. },
  5467. "drupal": {
  5468. "version": "8.x-1.0-alpha1+5-dev",
  5469. "datestamp": "1540141681",
  5470. "security-coverage": {
  5471. "status": "not-covered",
  5472. "message": "Dev releases are not covered by Drupal security advisories."
  5473. }
  5474. }
  5475. },
  5476. "notification-url": "https://packages.drupal.org/8/downloads",
  5477. "license": [
  5478. "GPL-2.0-or-later"
  5479. ],
  5480. "authors": [
  5481. {
  5482. "name": "Zen",
  5483. "homepage": "https://www.drupal.org/user/21209"
  5484. },
  5485. {
  5486. "name": "bojanz",
  5487. "homepage": "https://www.drupal.org/user/86106"
  5488. },
  5489. {
  5490. "name": "bucefal91",
  5491. "homepage": "https://www.drupal.org/user/504128"
  5492. }
  5493. ],
  5494. "description": "Provides synonyms feature for content entities.",
  5495. "homepage": "https://www.drupal.org/project/synonyms",
  5496. "support": {
  5497. "source": "https://git.drupalcode.org/project/synonyms"
  5498. },
  5499. "time": "2018-10-21T17:05:25+00:00"
  5500. },
  5501. {
  5502. "name": "drupal/token",
  5503. "version": "1.5.0",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://git.drupalcode.org/project/token.git",
  5507. "reference": "8.x-1.5"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5512. "reference": "8.x-1.5",
  5513. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5514. },
  5515. "require": {
  5516. "drupal/core": "^8.5"
  5517. },
  5518. "type": "drupal-module",
  5519. "extra": {
  5520. "branch-alias": {
  5521. "dev-1.x": "1.x-dev"
  5522. },
  5523. "drupal": {
  5524. "version": "8.x-1.5",
  5525. "datestamp": "1537557481",
  5526. "security-coverage": {
  5527. "status": "covered",
  5528. "message": "Covered by Drupal's security advisory policy"
  5529. }
  5530. }
  5531. },
  5532. "notification-url": "https://packages.drupal.org/8/downloads",
  5533. "license": [
  5534. "GPL-2.0-or-later"
  5535. ],
  5536. "authors": [
  5537. {
  5538. "name": "Berdir",
  5539. "homepage": "https://www.drupal.org/user/214652"
  5540. },
  5541. {
  5542. "name": "Dave Reid",
  5543. "homepage": "https://www.drupal.org/user/53892"
  5544. },
  5545. {
  5546. "name": "eaton",
  5547. "homepage": "https://www.drupal.org/user/16496"
  5548. },
  5549. {
  5550. "name": "fago",
  5551. "homepage": "https://www.drupal.org/user/16747"
  5552. },
  5553. {
  5554. "name": "greggles",
  5555. "homepage": "https://www.drupal.org/user/36762"
  5556. },
  5557. {
  5558. "name": "mikeryan",
  5559. "homepage": "https://www.drupal.org/user/4420"
  5560. }
  5561. ],
  5562. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5563. "homepage": "https://www.drupal.org/project/token",
  5564. "support": {
  5565. "source": "https://git.drupalcode.org/project/token"
  5566. }
  5567. },
  5568. {
  5569. "name": "drupal/toolbar_themes",
  5570. "version": "dev-1.x",
  5571. "source": {
  5572. "type": "git",
  5573. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5574. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5575. },
  5576. "require": {
  5577. "drupal/core": "*"
  5578. },
  5579. "type": "drupal-module",
  5580. "extra": {
  5581. "branch-alias": {
  5582. "dev-1.x": "1.x-dev"
  5583. },
  5584. "drupal": {
  5585. "version": "8.x-1.0-alpha4+10-dev",
  5586. "datestamp": "1510689485",
  5587. "security-coverage": {
  5588. "status": "not-covered",
  5589. "message": "Project has not opted into security advisory coverage!"
  5590. }
  5591. }
  5592. },
  5593. "notification-url": "https://packages.drupal.org/8/downloads",
  5594. "license": [
  5595. "GPL-2.0-or-later"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Jeff Burnz",
  5600. "homepage": "https://www.drupal.org/user/61393"
  5601. }
  5602. ],
  5603. "description": "Apply themes to the toolbar.",
  5604. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5605. "support": {
  5606. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5607. },
  5608. "time": "2017-11-14T19:57:02+00:00"
  5609. },
  5610. {
  5611. "name": "drupal/translation_views",
  5612. "version": "1.0.0-alpha8",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://git.drupalcode.org/project/translation_views.git",
  5616. "reference": "8.x-1.0-alpha8"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha8.zip",
  5621. "reference": "8.x-1.0-alpha8",
  5622. "shasum": "5903869f77129aa46daf46cd9a34bd9706072eb5"
  5623. },
  5624. "require": {
  5625. "drupal/core": "*"
  5626. },
  5627. "require-dev": {
  5628. "drupal/translators": "*",
  5629. "drupal/translators_content": "*"
  5630. },
  5631. "type": "drupal-module",
  5632. "extra": {
  5633. "branch-alias": {
  5634. "dev-1.x": "1.x-dev"
  5635. },
  5636. "drupal": {
  5637. "version": "8.x-1.0-alpha8",
  5638. "datestamp": "1572571385",
  5639. "security-coverage": {
  5640. "status": "not-covered",
  5641. "message": "Project has not opted into security advisory coverage!"
  5642. }
  5643. }
  5644. },
  5645. "notification-url": "https://packages.drupal.org/8/downloads",
  5646. "license": [
  5647. "GPL-2.0-or-later"
  5648. ],
  5649. "authors": [
  5650. {
  5651. "name": "matsbla",
  5652. "homepage": "https://www.drupal.org/user/2325394"
  5653. },
  5654. {
  5655. "name": "vlad.dancer",
  5656. "homepage": "https://www.drupal.org/user/903844"
  5657. }
  5658. ],
  5659. "description": "Create customized lists and queries of translations from your database.",
  5660. "homepage": "https://www.drupal.org/project/translation_views",
  5661. "support": {
  5662. "source": "https://git.drupalcode.org/project/translation_views"
  5663. }
  5664. },
  5665. {
  5666. "name": "drupal/url_to_video_filter",
  5667. "version": "1.3.0",
  5668. "source": {
  5669. "type": "git",
  5670. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5671. "reference": "8.x-1.3"
  5672. },
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5676. "reference": "8.x-1.3",
  5677. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5678. },
  5679. "require": {
  5680. "drupal/core": "~8.0"
  5681. },
  5682. "type": "drupal-module",
  5683. "extra": {
  5684. "branch-alias": {
  5685. "dev-1.x": "1.x-dev"
  5686. },
  5687. "drupal": {
  5688. "version": "8.x-1.3",
  5689. "datestamp": "1532695981",
  5690. "security-coverage": {
  5691. "status": "covered",
  5692. "message": "Covered by Drupal's security advisory policy"
  5693. }
  5694. }
  5695. },
  5696. "notification-url": "https://packages.drupal.org/8/downloads",
  5697. "license": [
  5698. "GPL-2.0-or-later"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "Jaypan",
  5703. "homepage": "https://www.drupal.org/user/324696"
  5704. }
  5705. ],
  5706. "description": "Text filter to convert URLs to embedded videos",
  5707. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5708. "support": {
  5709. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5710. }
  5711. },
  5712. {
  5713. "name": "drupal/views_bulk_edit",
  5714. "version": "2.4.0",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5718. "reference": "8.x-2.4"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5723. "reference": "8.x-2.4",
  5724. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5725. },
  5726. "require": {
  5727. "drupal/core": "*",
  5728. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5729. },
  5730. "type": "drupal-module",
  5731. "extra": {
  5732. "branch-alias": {
  5733. "dev-2.x": "2.x-dev"
  5734. },
  5735. "drupal": {
  5736. "version": "8.x-2.4",
  5737. "datestamp": "1570030085",
  5738. "security-coverage": {
  5739. "status": "covered",
  5740. "message": "Covered by Drupal's security advisory policy"
  5741. }
  5742. }
  5743. },
  5744. "notification-url": "https://packages.drupal.org/8/downloads",
  5745. "license": [
  5746. "GPL-2.0+"
  5747. ],
  5748. "authors": [
  5749. {
  5750. "name": "Marcin Grabias",
  5751. "homepage": "https://www.drupal.org/u/graber"
  5752. },
  5753. {
  5754. "name": "benjy",
  5755. "homepage": "https://www.drupal.org/user/1852732"
  5756. }
  5757. ],
  5758. "description": "Allows bulk edition of entity field values.",
  5759. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5760. "support": {
  5761. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5762. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5763. }
  5764. },
  5765. {
  5766. "name": "drupal/views_bulk_operations",
  5767. "version": "3.3.0",
  5768. "source": {
  5769. "type": "git",
  5770. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5771. "reference": "8.x-3.3"
  5772. },
  5773. "dist": {
  5774. "type": "zip",
  5775. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.3.zip",
  5776. "reference": "8.x-3.3",
  5777. "shasum": "480fec7c4a21ce8a57328af45735b5086a5bd178"
  5778. },
  5779. "require": {
  5780. "drupal/core": "~8.5"
  5781. },
  5782. "type": "drupal-module",
  5783. "extra": {
  5784. "branch-alias": {
  5785. "dev-3.x": "3.x-dev"
  5786. },
  5787. "drupal": {
  5788. "version": "8.x-3.3",
  5789. "datestamp": "1570032485",
  5790. "security-coverage": {
  5791. "status": "covered",
  5792. "message": "Covered by Drupal's security advisory policy"
  5793. }
  5794. },
  5795. "drush": {
  5796. "services": {
  5797. "drush.services.yml": "^9"
  5798. }
  5799. }
  5800. },
  5801. "notification-url": "https://packages.drupal.org/8/downloads",
  5802. "license": [
  5803. "GPL-2.0+"
  5804. ],
  5805. "authors": [
  5806. {
  5807. "name": "Marcin Grabias",
  5808. "homepage": "https://www.drupal.org/u/graber"
  5809. },
  5810. {
  5811. "name": "Jon Pugh",
  5812. "homepage": "https://www.drupal.org/user/17028"
  5813. },
  5814. {
  5815. "name": "bojanz",
  5816. "homepage": "https://www.drupal.org/user/86106"
  5817. },
  5818. {
  5819. "name": "infojunkie",
  5820. "homepage": "https://www.drupal.org/user/48424"
  5821. },
  5822. {
  5823. "name": "joelpittet",
  5824. "homepage": "https://www.drupal.org/user/160302"
  5825. }
  5826. ],
  5827. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5828. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5829. "support": {
  5830. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5831. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5832. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5833. }
  5834. },
  5835. {
  5836. "name": "drupal/workflow",
  5837. "version": "dev-1.x",
  5838. "source": {
  5839. "type": "git",
  5840. "url": "https://git.drupalcode.org/project/workflow.git",
  5841. "reference": "920f1e5acc99da722592eb0f3b3cb32c0e96a560"
  5842. },
  5843. "require": {
  5844. "drupal/core": "*"
  5845. },
  5846. "type": "drupal-module",
  5847. "extra": {
  5848. "branch-alias": {
  5849. "dev-1.x": "1.x-dev"
  5850. },
  5851. "drupal": {
  5852. "version": "8.x-1.1+38-dev",
  5853. "datestamp": "1571663284",
  5854. "security-coverage": {
  5855. "status": "not-covered",
  5856. "message": "Dev releases are not covered by Drupal security advisories."
  5857. }
  5858. }
  5859. },
  5860. "notification-url": "https://packages.drupal.org/8/downloads",
  5861. "license": [
  5862. "GPL-2.0-or-later"
  5863. ],
  5864. "authors": [
  5865. {
  5866. "name": "Bastlynn",
  5867. "homepage": "https://www.drupal.org/user/275249"
  5868. },
  5869. {
  5870. "name": "Heine",
  5871. "homepage": "https://www.drupal.org/user/17943"
  5872. },
  5873. {
  5874. "name": "JacobSingh",
  5875. "homepage": "https://www.drupal.org/user/68912"
  5876. },
  5877. {
  5878. "name": "NancyDru",
  5879. "homepage": "https://www.drupal.org/user/101412"
  5880. },
  5881. {
  5882. "name": "eaton",
  5883. "homepage": "https://www.drupal.org/user/16496"
  5884. },
  5885. {
  5886. "name": "johnv",
  5887. "homepage": "https://www.drupal.org/user/591042"
  5888. },
  5889. {
  5890. "name": "jvandyk",
  5891. "homepage": "https://www.drupal.org/user/2375"
  5892. },
  5893. {
  5894. "name": "mfredrickson",
  5895. "homepage": "https://www.drupal.org/user/31994"
  5896. },
  5897. {
  5898. "name": "q0rban",
  5899. "homepage": "https://www.drupal.org/user/31022"
  5900. }
  5901. ],
  5902. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5903. "homepage": "https://www.drupal.org/project/workflow",
  5904. "support": {
  5905. "source": "https://git.drupalcode.org/project/workflow"
  5906. },
  5907. "time": "2019-11-12T11:10:01+00:00"
  5908. },
  5909. {
  5910. "name": "drush/drush",
  5911. "version": "9.7.1",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/drush-ops/drush.git",
  5915. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479",
  5920. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479",
  5921. "shasum": ""
  5922. },
  5923. "require": {
  5924. "chi-teck/drupal-code-generator": "^1.28.1",
  5925. "composer/semver": "^1.4",
  5926. "consolidation/annotated-command": "^2.12",
  5927. "consolidation/config": "^1.2",
  5928. "consolidation/filter-via-dot-access-data": "^1",
  5929. "consolidation/output-formatters": "^3.3.1",
  5930. "consolidation/robo": "^1.4.6",
  5931. "consolidation/site-alias": "^3.0.0@stable",
  5932. "consolidation/site-process": "^2.0.3",
  5933. "ext-dom": "*",
  5934. "grasmash/yaml-expander": "^1.1.1",
  5935. "league/container": "~2",
  5936. "php": ">=5.6.0",
  5937. "psr/log": "~1.0",
  5938. "psy/psysh": "~0.6",
  5939. "symfony/console": "^3.4",
  5940. "symfony/event-dispatcher": "^3.4",
  5941. "symfony/finder": "^3.4 || ^4.0",
  5942. "symfony/process": "^3.4",
  5943. "symfony/var-dumper": "^3.4 || ^4.0",
  5944. "symfony/yaml": "^3.4",
  5945. "webflo/drupal-finder": "^1.1",
  5946. "webmozart/path-util": "^2.1.0"
  5947. },
  5948. "require-dev": {
  5949. "composer/installers": "^1.2",
  5950. "cweagans/composer-patches": "~1.0",
  5951. "drupal/alinks": "1.0.0",
  5952. "drupal/devel": "^2",
  5953. "drupal/empty_theme": "1.0",
  5954. "g1a/composer-test-scenarios": "^3",
  5955. "lox/xhprof": "dev-master",
  5956. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5957. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5958. "vlucas/phpdotenv": "^2.4",
  5959. "webflo/drupal-core-require-dev": "8.7.x-dev",
  5960. "webflo/drupal-core-strict": "8.7.x-dev"
  5961. },
  5962. "bin": [
  5963. "drush"
  5964. ],
  5965. "type": "library",
  5966. "extra": {
  5967. "installer-paths": {
  5968. "sut/core": [
  5969. "type:drupal-core"
  5970. ],
  5971. "sut/libraries/{$name}": [
  5972. "type:drupal-library"
  5973. ],
  5974. "sut/modules/unish/{$name}": [
  5975. "drupal/devel"
  5976. ],
  5977. "sut/themes/unish/{$name}": [
  5978. "drupal/empty_theme"
  5979. ],
  5980. "sut/modules/contrib/{$name}": [
  5981. "type:drupal-module"
  5982. ],
  5983. "sut/profiles/contrib/{$name}": [
  5984. "type:drupal-profile"
  5985. ],
  5986. "sut/themes/contrib/{$name}": [
  5987. "type:drupal-theme"
  5988. ],
  5989. "sut/drush/contrib/{$name}": [
  5990. "type:drupal-drush"
  5991. ]
  5992. },
  5993. "scenarios": {
  5994. "php5": {
  5995. "config": {
  5996. "platform": {
  5997. "php": "5.6.38"
  5998. }
  5999. },
  6000. "require-dev": {
  6001. "webflo/drupal-core-strict": "8.6.x-dev",
  6002. "webflo/drupal-core-require-dev": "8.6.x-dev"
  6003. }
  6004. }
  6005. },
  6006. "branch-alias": {
  6007. "dev-master": "9.x-dev"
  6008. }
  6009. },
  6010. "autoload": {
  6011. "psr-4": {
  6012. "Drush\\": "src/",
  6013. "Drush\\Internal\\": "src/internal-forks"
  6014. }
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "GPL-2.0-or-later"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "Moshe Weitzman",
  6023. "email": "weitzman@tejasa.com"
  6024. },
  6025. {
  6026. "name": "Owen Barton",
  6027. "email": "drupal@owenbarton.com"
  6028. },
  6029. {
  6030. "name": "Greg Anderson",
  6031. "email": "greg.1.anderson@greenknowe.org"
  6032. },
  6033. {
  6034. "name": "Jonathan Araña Cruz",
  6035. "email": "jonhattan@faita.net"
  6036. },
  6037. {
  6038. "name": "Jonathan Hedstrom",
  6039. "email": "jhedstrom@gmail.com"
  6040. },
  6041. {
  6042. "name": "Christopher Gervais",
  6043. "email": "chris@ergonlogic.com"
  6044. },
  6045. {
  6046. "name": "Dave Reid",
  6047. "email": "dave@davereid.net"
  6048. },
  6049. {
  6050. "name": "Damian Lee",
  6051. "email": "damiankloip@googlemail.com"
  6052. }
  6053. ],
  6054. "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.",
  6055. "homepage": "http://www.drush.org",
  6056. "time": "2019-06-30T19:46:39+00:00"
  6057. },
  6058. {
  6059. "name": "easyrdf/easyrdf",
  6060. "version": "0.9.1",
  6061. "source": {
  6062. "type": "git",
  6063. "url": "https://github.com/njh/easyrdf.git",
  6064. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6065. },
  6066. "dist": {
  6067. "type": "zip",
  6068. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6069. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6070. "shasum": ""
  6071. },
  6072. "require": {
  6073. "ext-mbstring": "*",
  6074. "ext-pcre": "*",
  6075. "php": ">=5.2.8"
  6076. },
  6077. "require-dev": {
  6078. "phpunit/phpunit": "~3.5",
  6079. "sami/sami": "~1.4",
  6080. "squizlabs/php_codesniffer": "~1.4.3"
  6081. },
  6082. "suggest": {
  6083. "ml/json-ld": "~1.0"
  6084. },
  6085. "type": "library",
  6086. "autoload": {
  6087. "psr-0": {
  6088. "EasyRdf_": "lib/"
  6089. }
  6090. },
  6091. "notification-url": "https://packagist.org/downloads/",
  6092. "license": [
  6093. "BSD-3-Clause"
  6094. ],
  6095. "authors": [
  6096. {
  6097. "name": "Nicholas Humfrey",
  6098. "email": "njh@aelius.com",
  6099. "homepage": "http://www.aelius.com/njh/",
  6100. "role": "Developer"
  6101. },
  6102. {
  6103. "name": "Alexey Zakhlestin",
  6104. "email": "indeyets@gmail.com",
  6105. "role": "Developer"
  6106. }
  6107. ],
  6108. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6109. "homepage": "http://www.easyrdf.org/",
  6110. "keywords": [
  6111. "Linked Data",
  6112. "RDF",
  6113. "Semantic Web",
  6114. "Turtle",
  6115. "rdfa",
  6116. "sparql"
  6117. ],
  6118. "time": "2015-02-27T09:45:49+00:00"
  6119. },
  6120. {
  6121. "name": "egulias/email-validator",
  6122. "version": "2.1.11",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://github.com/egulias/EmailValidator.git",
  6126. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  6131. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  6132. "shasum": ""
  6133. },
  6134. "require": {
  6135. "doctrine/lexer": "^1.0.1",
  6136. "php": ">= 5.5"
  6137. },
  6138. "require-dev": {
  6139. "dominicsayers/isemail": "dev-master",
  6140. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  6141. "satooshi/php-coveralls": "^1.0.1",
  6142. "symfony/phpunit-bridge": "^4.4@dev"
  6143. },
  6144. "suggest": {
  6145. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  6146. },
  6147. "type": "library",
  6148. "extra": {
  6149. "branch-alias": {
  6150. "dev-master": "2.1.x-dev"
  6151. }
  6152. },
  6153. "autoload": {
  6154. "psr-4": {
  6155. "Egulias\\EmailValidator\\": "EmailValidator"
  6156. }
  6157. },
  6158. "notification-url": "https://packagist.org/downloads/",
  6159. "license": [
  6160. "MIT"
  6161. ],
  6162. "authors": [
  6163. {
  6164. "name": "Eduardo Gulias Davis"
  6165. }
  6166. ],
  6167. "description": "A library for validating emails against several RFCs",
  6168. "homepage": "https://github.com/egulias/EmailValidator",
  6169. "keywords": [
  6170. "email",
  6171. "emailvalidation",
  6172. "emailvalidator",
  6173. "validation",
  6174. "validator"
  6175. ],
  6176. "time": "2019-08-13T17:33:27+00:00"
  6177. },
  6178. {
  6179. "name": "fabpot/goutte",
  6180. "version": "v3.2.3",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6184. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6189. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6190. "shasum": ""
  6191. },
  6192. "require": {
  6193. "guzzlehttp/guzzle": "^6.0",
  6194. "php": ">=5.5.0",
  6195. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6196. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6197. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6198. },
  6199. "require-dev": {
  6200. "symfony/phpunit-bridge": "^3.3 || ^4"
  6201. },
  6202. "type": "application",
  6203. "extra": {
  6204. "branch-alias": {
  6205. "dev-master": "3.2-dev"
  6206. }
  6207. },
  6208. "autoload": {
  6209. "psr-4": {
  6210. "Goutte\\": "Goutte"
  6211. },
  6212. "exclude-from-classmap": [
  6213. "Goutte/Tests"
  6214. ]
  6215. },
  6216. "notification-url": "https://packagist.org/downloads/",
  6217. "license": [
  6218. "MIT"
  6219. ],
  6220. "authors": [
  6221. {
  6222. "name": "Fabien Potencier",
  6223. "email": "fabien@symfony.com"
  6224. }
  6225. ],
  6226. "description": "A simple PHP Web Scraper",
  6227. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6228. "keywords": [
  6229. "scraper"
  6230. ],
  6231. "time": "2018-06-29T15:13:57+00:00"
  6232. },
  6233. {
  6234. "name": "grasmash/expander",
  6235. "version": "1.0.0",
  6236. "source": {
  6237. "type": "git",
  6238. "url": "https://github.com/grasmash/expander.git",
  6239. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6240. },
  6241. "dist": {
  6242. "type": "zip",
  6243. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6244. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6245. "shasum": ""
  6246. },
  6247. "require": {
  6248. "dflydev/dot-access-data": "^1.1.0",
  6249. "php": ">=5.4"
  6250. },
  6251. "require-dev": {
  6252. "greg-1-anderson/composer-test-scenarios": "^1",
  6253. "phpunit/phpunit": "^4|^5.5.4",
  6254. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6255. "squizlabs/php_codesniffer": "^2.7"
  6256. },
  6257. "type": "library",
  6258. "extra": {
  6259. "branch-alias": {
  6260. "dev-master": "1.x-dev"
  6261. }
  6262. },
  6263. "autoload": {
  6264. "psr-4": {
  6265. "Grasmash\\Expander\\": "src/"
  6266. }
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "MIT"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Matthew Grasmick"
  6275. }
  6276. ],
  6277. "description": "Expands internal property references in PHP arrays file.",
  6278. "time": "2017-12-21T22:14:55+00:00"
  6279. },
  6280. {
  6281. "name": "grasmash/yaml-expander",
  6282. "version": "1.4.0",
  6283. "source": {
  6284. "type": "git",
  6285. "url": "https://github.com/grasmash/yaml-expander.git",
  6286. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6287. },
  6288. "dist": {
  6289. "type": "zip",
  6290. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6291. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6292. "shasum": ""
  6293. },
  6294. "require": {
  6295. "dflydev/dot-access-data": "^1.1.0",
  6296. "php": ">=5.4",
  6297. "symfony/yaml": "^2.8.11|^3|^4"
  6298. },
  6299. "require-dev": {
  6300. "greg-1-anderson/composer-test-scenarios": "^1",
  6301. "phpunit/phpunit": "^4.8|^5.5.4",
  6302. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6303. "squizlabs/php_codesniffer": "^2.7"
  6304. },
  6305. "type": "library",
  6306. "extra": {
  6307. "branch-alias": {
  6308. "dev-master": "1.x-dev"
  6309. }
  6310. },
  6311. "autoload": {
  6312. "psr-4": {
  6313. "Grasmash\\YamlExpander\\": "src/"
  6314. }
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Matthew Grasmick"
  6323. }
  6324. ],
  6325. "description": "Expands internal property references in a yaml file.",
  6326. "time": "2017-12-16T16:06:03+00:00"
  6327. },
  6328. {
  6329. "name": "guzzlehttp/guzzle",
  6330. "version": "6.4.1",
  6331. "source": {
  6332. "type": "git",
  6333. "url": "https://github.com/guzzle/guzzle.git",
  6334. "reference": "0895c932405407fd3a7368b6910c09a24d26db11"
  6335. },
  6336. "dist": {
  6337. "type": "zip",
  6338. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11",
  6339. "reference": "0895c932405407fd3a7368b6910c09a24d26db11",
  6340. "shasum": ""
  6341. },
  6342. "require": {
  6343. "ext-json": "*",
  6344. "guzzlehttp/promises": "^1.0",
  6345. "guzzlehttp/psr7": "^1.6.1",
  6346. "php": ">=5.5"
  6347. },
  6348. "require-dev": {
  6349. "ext-curl": "*",
  6350. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6351. "psr/log": "^1.1"
  6352. },
  6353. "suggest": {
  6354. "psr/log": "Required for using the Log middleware"
  6355. },
  6356. "type": "library",
  6357. "extra": {
  6358. "branch-alias": {
  6359. "dev-master": "6.3-dev"
  6360. }
  6361. },
  6362. "autoload": {
  6363. "psr-4": {
  6364. "GuzzleHttp\\": "src/"
  6365. },
  6366. "files": [
  6367. "src/functions_include.php"
  6368. ]
  6369. },
  6370. "notification-url": "https://packagist.org/downloads/",
  6371. "license": [
  6372. "MIT"
  6373. ],
  6374. "authors": [
  6375. {
  6376. "name": "Michael Dowling",
  6377. "email": "mtdowling@gmail.com",
  6378. "homepage": "https://github.com/mtdowling"
  6379. }
  6380. ],
  6381. "description": "Guzzle is a PHP HTTP client library",
  6382. "homepage": "http://guzzlephp.org/",
  6383. "keywords": [
  6384. "client",
  6385. "curl",
  6386. "framework",
  6387. "http",
  6388. "http client",
  6389. "rest",
  6390. "web service"
  6391. ],
  6392. "time": "2019-10-23T15:58:00+00:00"
  6393. },
  6394. {
  6395. "name": "guzzlehttp/promises",
  6396. "version": "v1.3.1",
  6397. "source": {
  6398. "type": "git",
  6399. "url": "https://github.com/guzzle/promises.git",
  6400. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6401. },
  6402. "dist": {
  6403. "type": "zip",
  6404. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6405. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6406. "shasum": ""
  6407. },
  6408. "require": {
  6409. "php": ">=5.5.0"
  6410. },
  6411. "require-dev": {
  6412. "phpunit/phpunit": "^4.0"
  6413. },
  6414. "type": "library",
  6415. "extra": {
  6416. "branch-alias": {
  6417. "dev-master": "1.4-dev"
  6418. }
  6419. },
  6420. "autoload": {
  6421. "psr-4": {
  6422. "GuzzleHttp\\Promise\\": "src/"
  6423. },
  6424. "files": [
  6425. "src/functions_include.php"
  6426. ]
  6427. },
  6428. "notification-url": "https://packagist.org/downloads/",
  6429. "license": [
  6430. "MIT"
  6431. ],
  6432. "authors": [
  6433. {
  6434. "name": "Michael Dowling",
  6435. "email": "mtdowling@gmail.com",
  6436. "homepage": "https://github.com/mtdowling"
  6437. }
  6438. ],
  6439. "description": "Guzzle promises library",
  6440. "keywords": [
  6441. "promise"
  6442. ],
  6443. "time": "2016-12-20T10:07:11+00:00"
  6444. },
  6445. {
  6446. "name": "guzzlehttp/psr7",
  6447. "version": "1.6.1",
  6448. "source": {
  6449. "type": "git",
  6450. "url": "https://github.com/guzzle/psr7.git",
  6451. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6452. },
  6453. "dist": {
  6454. "type": "zip",
  6455. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6456. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6457. "shasum": ""
  6458. },
  6459. "require": {
  6460. "php": ">=5.4.0",
  6461. "psr/http-message": "~1.0",
  6462. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6463. },
  6464. "provide": {
  6465. "psr/http-message-implementation": "1.0"
  6466. },
  6467. "require-dev": {
  6468. "ext-zlib": "*",
  6469. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6470. },
  6471. "suggest": {
  6472. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6473. },
  6474. "type": "library",
  6475. "extra": {
  6476. "branch-alias": {
  6477. "dev-master": "1.6-dev"
  6478. }
  6479. },
  6480. "autoload": {
  6481. "psr-4": {
  6482. "GuzzleHttp\\Psr7\\": "src/"
  6483. },
  6484. "files": [
  6485. "src/functions_include.php"
  6486. ]
  6487. },
  6488. "notification-url": "https://packagist.org/downloads/",
  6489. "license": [
  6490. "MIT"
  6491. ],
  6492. "authors": [
  6493. {
  6494. "name": "Michael Dowling",
  6495. "email": "mtdowling@gmail.com",
  6496. "homepage": "https://github.com/mtdowling"
  6497. },
  6498. {
  6499. "name": "Tobias Schultze",
  6500. "homepage": "https://github.com/Tobion"
  6501. }
  6502. ],
  6503. "description": "PSR-7 message implementation that also provides common utility methods",
  6504. "keywords": [
  6505. "http",
  6506. "message",
  6507. "psr-7",
  6508. "request",
  6509. "response",
  6510. "stream",
  6511. "uri",
  6512. "url"
  6513. ],
  6514. "time": "2019-07-01T23:21:34+00:00"
  6515. },
  6516. {
  6517. "name": "instaclick/php-webdriver",
  6518. "version": "1.4.6",
  6519. "source": {
  6520. "type": "git",
  6521. "url": "https://github.com/instaclick/php-webdriver.git",
  6522. "reference": "bd9405077ca04129a73059a06873bedb5e138402"
  6523. },
  6524. "dist": {
  6525. "type": "zip",
  6526. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/bd9405077ca04129a73059a06873bedb5e138402",
  6527. "reference": "bd9405077ca04129a73059a06873bedb5e138402",
  6528. "shasum": ""
  6529. },
  6530. "require": {
  6531. "ext-curl": "*",
  6532. "php": ">=5.3.2"
  6533. },
  6534. "require-dev": {
  6535. "phpunit/phpunit": "^4.8",
  6536. "satooshi/php-coveralls": "^1.0||^2.0"
  6537. },
  6538. "type": "library",
  6539. "extra": {
  6540. "branch-alias": {
  6541. "dev-master": "1.4.x-dev"
  6542. }
  6543. },
  6544. "autoload": {
  6545. "psr-0": {
  6546. "WebDriver": "lib/"
  6547. }
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "Apache-2.0"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Justin Bishop",
  6556. "email": "jubishop@gmail.com",
  6557. "role": "Developer"
  6558. },
  6559. {
  6560. "name": "Anthon Pang",
  6561. "email": "apang@softwaredevelopment.ca",
  6562. "role": "Fork Maintainer"
  6563. }
  6564. ],
  6565. "description": "PHP WebDriver for Selenium 2",
  6566. "homepage": "http://instaclick.com/",
  6567. "keywords": [
  6568. "browser",
  6569. "selenium",
  6570. "webdriver",
  6571. "webtest"
  6572. ],
  6573. "time": "2019-09-23T15:50:44+00:00"
  6574. },
  6575. {
  6576. "name": "jakub-onderka/php-console-color",
  6577. "version": "v0.2",
  6578. "source": {
  6579. "type": "git",
  6580. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6581. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6582. },
  6583. "dist": {
  6584. "type": "zip",
  6585. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6586. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6587. "shasum": ""
  6588. },
  6589. "require": {
  6590. "php": ">=5.4.0"
  6591. },
  6592. "require-dev": {
  6593. "jakub-onderka/php-code-style": "1.0",
  6594. "jakub-onderka/php-parallel-lint": "1.0",
  6595. "jakub-onderka/php-var-dump-check": "0.*",
  6596. "phpunit/phpunit": "~4.3",
  6597. "squizlabs/php_codesniffer": "1.*"
  6598. },
  6599. "type": "library",
  6600. "autoload": {
  6601. "psr-4": {
  6602. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6603. }
  6604. },
  6605. "notification-url": "https://packagist.org/downloads/",
  6606. "license": [
  6607. "BSD-2-Clause"
  6608. ],
  6609. "authors": [
  6610. {
  6611. "name": "Jakub Onderka",
  6612. "email": "jakub.onderka@gmail.com"
  6613. }
  6614. ],
  6615. "time": "2018-09-29T17:23:10+00:00"
  6616. },
  6617. {
  6618. "name": "jakub-onderka/php-console-highlighter",
  6619. "version": "v0.4",
  6620. "source": {
  6621. "type": "git",
  6622. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6623. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6624. },
  6625. "dist": {
  6626. "type": "zip",
  6627. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6628. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6629. "shasum": ""
  6630. },
  6631. "require": {
  6632. "ext-tokenizer": "*",
  6633. "jakub-onderka/php-console-color": "~0.2",
  6634. "php": ">=5.4.0"
  6635. },
  6636. "require-dev": {
  6637. "jakub-onderka/php-code-style": "~1.0",
  6638. "jakub-onderka/php-parallel-lint": "~1.0",
  6639. "jakub-onderka/php-var-dump-check": "~0.1",
  6640. "phpunit/phpunit": "~4.0",
  6641. "squizlabs/php_codesniffer": "~1.5"
  6642. },
  6643. "type": "library",
  6644. "autoload": {
  6645. "psr-4": {
  6646. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6647. }
  6648. },
  6649. "notification-url": "https://packagist.org/downloads/",
  6650. "license": [
  6651. "MIT"
  6652. ],
  6653. "authors": [
  6654. {
  6655. "name": "Jakub Onderka",
  6656. "email": "acci@acci.cz",
  6657. "homepage": "http://www.acci.cz/"
  6658. }
  6659. ],
  6660. "description": "Highlight PHP code in terminal",
  6661. "time": "2018-09-29T18:48:56+00:00"
  6662. },
  6663. {
  6664. "name": "jcalderonzumba/gastonjs",
  6665. "version": "v1.2.0",
  6666. "source": {
  6667. "type": "git",
  6668. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6669. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6670. },
  6671. "dist": {
  6672. "type": "zip",
  6673. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6674. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6675. "shasum": ""
  6676. },
  6677. "require": {
  6678. "guzzlehttp/guzzle": "~5.0|~6.0",
  6679. "php": ">=5.4"
  6680. },
  6681. "require-dev": {
  6682. "phpunit/phpunit": "~4.6",
  6683. "silex/silex": "~1.2",
  6684. "symfony/phpunit-bridge": "~2.7",
  6685. "symfony/process": "~2.1"
  6686. },
  6687. "type": "phantomjs-api",
  6688. "extra": {
  6689. "branch-alias": {
  6690. "dev-master": "1.1.x-dev"
  6691. }
  6692. },
  6693. "autoload": {
  6694. "psr-4": {
  6695. "Zumba\\GastonJS\\": "src"
  6696. }
  6697. },
  6698. "notification-url": "https://packagist.org/downloads/",
  6699. "license": [
  6700. "MIT"
  6701. ],
  6702. "authors": [
  6703. {
  6704. "name": "Juan Francisco Calderón Zumba",
  6705. "email": "juanfcz@gmail.com",
  6706. "homepage": "http://github.com/jcalderonzumba"
  6707. }
  6708. ],
  6709. "description": "PhantomJS API based server for webpage automation",
  6710. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6711. "keywords": [
  6712. "api",
  6713. "automation",
  6714. "browser",
  6715. "headless",
  6716. "phantomjs"
  6717. ],
  6718. "time": "2017-03-31T07:31:47+00:00"
  6719. },
  6720. {
  6721. "name": "jcalderonzumba/mink-phantomjs-driver",
  6722. "version": "v0.3.3",
  6723. "source": {
  6724. "type": "git",
  6725. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6726. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6727. },
  6728. "dist": {
  6729. "type": "zip",
  6730. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6731. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6732. "shasum": ""
  6733. },
  6734. "require": {
  6735. "behat/mink": "~1.7",
  6736. "jcalderonzumba/gastonjs": "~1.0",
  6737. "php": ">=5.4",
  6738. "twig/twig": "~1.20|~2.0"
  6739. },
  6740. "require-dev": {
  6741. "mink/driver-testsuite": "dev-master",
  6742. "phpunit/phpunit": "~4.6"
  6743. },
  6744. "type": "mink-driver",
  6745. "extra": {
  6746. "branch-alias": {
  6747. "dev-master": "0.4.x-dev"
  6748. }
  6749. },
  6750. "autoload": {
  6751. "psr-4": {
  6752. "Zumba\\Mink\\Driver\\": "src"
  6753. }
  6754. },
  6755. "notification-url": "https://packagist.org/downloads/",
  6756. "license": [
  6757. "MIT"
  6758. ],
  6759. "authors": [
  6760. {
  6761. "name": "Juan Francisco Calderón Zumba",
  6762. "email": "juanfcz@gmail.com",
  6763. "homepage": "http://github.com/jcalderonzumba"
  6764. }
  6765. ],
  6766. "description": "PhantomJS driver for Mink framework",
  6767. "homepage": "http://mink.behat.org/",
  6768. "keywords": [
  6769. "ajax",
  6770. "browser",
  6771. "headless",
  6772. "javascript",
  6773. "phantomjs",
  6774. "testing"
  6775. ],
  6776. "time": "2016-12-01T10:57:30+00:00"
  6777. },
  6778. {
  6779. "name": "justinrainbow/json-schema",
  6780. "version": "5.2.9",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/justinrainbow/json-schema.git",
  6784. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  6789. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  6790. "shasum": ""
  6791. },
  6792. "require": {
  6793. "php": ">=5.3.3"
  6794. },
  6795. "require-dev": {
  6796. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  6797. "json-schema/json-schema-test-suite": "1.2.0",
  6798. "phpunit/phpunit": "^4.8.35"
  6799. },
  6800. "bin": [
  6801. "bin/validate-json"
  6802. ],
  6803. "type": "library",
  6804. "extra": {
  6805. "branch-alias": {
  6806. "dev-master": "5.0.x-dev"
  6807. }
  6808. },
  6809. "autoload": {
  6810. "psr-4": {
  6811. "JsonSchema\\": "src/JsonSchema/"
  6812. }
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Bruno Prieto Reis",
  6821. "email": "bruno.p.reis@gmail.com"
  6822. },
  6823. {
  6824. "name": "Justin Rainbow",
  6825. "email": "justin.rainbow@gmail.com"
  6826. },
  6827. {
  6828. "name": "Igor Wiedler",
  6829. "email": "igor@wiedler.ch"
  6830. },
  6831. {
  6832. "name": "Robert Schönthal",
  6833. "email": "seroscho@googlemail.com"
  6834. }
  6835. ],
  6836. "description": "A library to validate a json schema.",
  6837. "homepage": "https://github.com/justinrainbow/json-schema",
  6838. "keywords": [
  6839. "json",
  6840. "schema"
  6841. ],
  6842. "time": "2019-09-25T14:49:45+00:00"
  6843. },
  6844. {
  6845. "name": "league/container",
  6846. "version": "2.4.1",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/thephpleague/container.git",
  6850. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6855. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6856. "shasum": ""
  6857. },
  6858. "require": {
  6859. "container-interop/container-interop": "^1.2",
  6860. "php": "^5.4.0 || ^7.0"
  6861. },
  6862. "provide": {
  6863. "container-interop/container-interop-implementation": "^1.2",
  6864. "psr/container-implementation": "^1.0"
  6865. },
  6866. "replace": {
  6867. "orno/di": "~2.0"
  6868. },
  6869. "require-dev": {
  6870. "phpunit/phpunit": "4.*"
  6871. },
  6872. "type": "library",
  6873. "extra": {
  6874. "branch-alias": {
  6875. "dev-2.x": "2.x-dev",
  6876. "dev-1.x": "1.x-dev"
  6877. }
  6878. },
  6879. "autoload": {
  6880. "psr-4": {
  6881. "League\\Container\\": "src"
  6882. }
  6883. },
  6884. "notification-url": "https://packagist.org/downloads/",
  6885. "license": [
  6886. "MIT"
  6887. ],
  6888. "authors": [
  6889. {
  6890. "name": "Phil Bennett",
  6891. "email": "philipobenito@gmail.com",
  6892. "homepage": "http://www.philipobenito.com",
  6893. "role": "Developer"
  6894. }
  6895. ],
  6896. "description": "A fast and intuitive dependency injection container.",
  6897. "homepage": "https://github.com/thephpleague/container",
  6898. "keywords": [
  6899. "container",
  6900. "dependency",
  6901. "di",
  6902. "injection",
  6903. "league",
  6904. "provider",
  6905. "service"
  6906. ],
  6907. "time": "2017-05-10T09:20:27+00:00"
  6908. },
  6909. {
  6910. "name": "masterminds/html5",
  6911. "version": "2.7.0",
  6912. "source": {
  6913. "type": "git",
  6914. "url": "https://github.com/Masterminds/html5-php.git",
  6915. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
  6916. },
  6917. "dist": {
  6918. "type": "zip",
  6919. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
  6920. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
  6921. "shasum": ""
  6922. },
  6923. "require": {
  6924. "ext-ctype": "*",
  6925. "ext-dom": "*",
  6926. "ext-libxml": "*",
  6927. "php": ">=5.3.0"
  6928. },
  6929. "require-dev": {
  6930. "phpunit/phpunit": "^4.8.35",
  6931. "sami/sami": "~2.0",
  6932. "satooshi/php-coveralls": "1.0.*"
  6933. },
  6934. "type": "library",
  6935. "extra": {
  6936. "branch-alias": {
  6937. "dev-master": "2.7-dev"
  6938. }
  6939. },
  6940. "autoload": {
  6941. "psr-4": {
  6942. "Masterminds\\": "src"
  6943. }
  6944. },
  6945. "notification-url": "https://packagist.org/downloads/",
  6946. "license": [
  6947. "MIT"
  6948. ],
  6949. "authors": [
  6950. {
  6951. "name": "Matt Butcher",
  6952. "email": "technosophos@gmail.com"
  6953. },
  6954. {
  6955. "name": "Matt Farina",
  6956. "email": "matt@mattfarina.com"
  6957. },
  6958. {
  6959. "name": "Asmir Mustafic",
  6960. "email": "goetas@gmail.com"
  6961. }
  6962. ],
  6963. "description": "An HTML5 parser and serializer.",
  6964. "homepage": "http://masterminds.github.io/html5-php",
  6965. "keywords": [
  6966. "HTML5",
  6967. "dom",
  6968. "html",
  6969. "parser",
  6970. "querypath",
  6971. "serializer",
  6972. "xml"
  6973. ],
  6974. "time": "2019-07-25T07:03:26+00:00"
  6975. },
  6976. {
  6977. "name": "mikey179/vfsstream",
  6978. "version": "v1.6.8",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/bovigo/vfsStream.git",
  6982. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6987. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6988. "shasum": ""
  6989. },
  6990. "require": {
  6991. "php": ">=5.3.0"
  6992. },
  6993. "require-dev": {
  6994. "phpunit/phpunit": "^4.5|^5.0"
  6995. },
  6996. "type": "library",
  6997. "extra": {
  6998. "branch-alias": {
  6999. "dev-master": "1.6.x-dev"
  7000. }
  7001. },
  7002. "autoload": {
  7003. "psr-0": {
  7004. "org\\bovigo\\vfs\\": "src/main/php"
  7005. }
  7006. },
  7007. "notification-url": "https://packagist.org/downloads/",
  7008. "license": [
  7009. "BSD-3-Clause"
  7010. ],
  7011. "authors": [
  7012. {
  7013. "name": "Frank Kleine",
  7014. "homepage": "http://frankkleine.de/",
  7015. "role": "Developer"
  7016. }
  7017. ],
  7018. "description": "Virtual file system to mock the real file system in unit tests.",
  7019. "homepage": "http://vfs.bovigo.org/",
  7020. "time": "2019-10-30T15:31:00+00:00"
  7021. },
  7022. {
  7023. "name": "myclabs/deep-copy",
  7024. "version": "1.7.0",
  7025. "source": {
  7026. "type": "git",
  7027. "url": "https://github.com/myclabs/DeepCopy.git",
  7028. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  7029. },
  7030. "dist": {
  7031. "type": "zip",
  7032. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7033. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7034. "shasum": ""
  7035. },
  7036. "require": {
  7037. "php": "^5.6 || ^7.0"
  7038. },
  7039. "require-dev": {
  7040. "doctrine/collections": "^1.0",
  7041. "doctrine/common": "^2.6",
  7042. "phpunit/phpunit": "^4.1"
  7043. },
  7044. "type": "library",
  7045. "autoload": {
  7046. "psr-4": {
  7047. "DeepCopy\\": "src/DeepCopy/"
  7048. },
  7049. "files": [
  7050. "src/DeepCopy/deep_copy.php"
  7051. ]
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "MIT"
  7056. ],
  7057. "description": "Create deep copies (clones) of your objects",
  7058. "keywords": [
  7059. "clone",
  7060. "copy",
  7061. "duplicate",
  7062. "object",
  7063. "object graph"
  7064. ],
  7065. "time": "2017-10-19T19:58:43+00:00"
  7066. },
  7067. {
  7068. "name": "nikic/php-parser",
  7069. "version": "v4.3.0",
  7070. "source": {
  7071. "type": "git",
  7072. "url": "https://github.com/nikic/PHP-Parser.git",
  7073. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  7074. },
  7075. "dist": {
  7076. "type": "zip",
  7077. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7078. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7079. "shasum": ""
  7080. },
  7081. "require": {
  7082. "ext-tokenizer": "*",
  7083. "php": ">=7.0"
  7084. },
  7085. "require-dev": {
  7086. "ircmaxell/php-yacc": "0.0.5",
  7087. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7088. },
  7089. "bin": [
  7090. "bin/php-parse"
  7091. ],
  7092. "type": "library",
  7093. "extra": {
  7094. "branch-alias": {
  7095. "dev-master": "4.3-dev"
  7096. }
  7097. },
  7098. "autoload": {
  7099. "psr-4": {
  7100. "PhpParser\\": "lib/PhpParser"
  7101. }
  7102. },
  7103. "notification-url": "https://packagist.org/downloads/",
  7104. "license": [
  7105. "BSD-3-Clause"
  7106. ],
  7107. "authors": [
  7108. {
  7109. "name": "Nikita Popov"
  7110. }
  7111. ],
  7112. "description": "A PHP parser written in PHP",
  7113. "keywords": [
  7114. "parser",
  7115. "php"
  7116. ],
  7117. "time": "2019-11-08T13:50:10+00:00"
  7118. },
  7119. {
  7120. "name": "oomphinc/composer-installers-extender",
  7121. "version": "v1.1.2",
  7122. "source": {
  7123. "type": "git",
  7124. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  7125. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  7126. },
  7127. "dist": {
  7128. "type": "zip",
  7129. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7130. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7131. "shasum": ""
  7132. },
  7133. "require": {
  7134. "composer-plugin-api": "^1.0",
  7135. "composer/installers": "^1.0"
  7136. },
  7137. "type": "composer-plugin",
  7138. "extra": {
  7139. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  7140. },
  7141. "autoload": {
  7142. "psr-4": {
  7143. "OomphInc\\ComposerInstallersExtender\\": "src/"
  7144. }
  7145. },
  7146. "notification-url": "https://packagist.org/downloads/",
  7147. "license": [
  7148. "MIT"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Stephen Beemsterboer",
  7153. "email": "stephen@oomphinc.com",
  7154. "homepage": "https://github.com/balbuf"
  7155. }
  7156. ],
  7157. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  7158. "homepage": "http://www.oomphinc.com/",
  7159. "time": "2017-03-31T16:57:39+00:00"
  7160. },
  7161. {
  7162. "name": "paragonie/random_compat",
  7163. "version": "v2.0.18",
  7164. "source": {
  7165. "type": "git",
  7166. "url": "https://github.com/paragonie/random_compat.git",
  7167. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  7168. },
  7169. "dist": {
  7170. "type": "zip",
  7171. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  7172. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  7173. "shasum": ""
  7174. },
  7175. "require": {
  7176. "php": ">=5.2.0"
  7177. },
  7178. "require-dev": {
  7179. "phpunit/phpunit": "4.*|5.*"
  7180. },
  7181. "suggest": {
  7182. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7183. },
  7184. "type": "library",
  7185. "autoload": {
  7186. "files": [
  7187. "lib/random.php"
  7188. ]
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Paragon Initiative Enterprises",
  7197. "email": "security@paragonie.com",
  7198. "homepage": "https://paragonie.com"
  7199. }
  7200. ],
  7201. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7202. "keywords": [
  7203. "csprng",
  7204. "polyfill",
  7205. "pseudorandom",
  7206. "random"
  7207. ],
  7208. "time": "2019-01-03T20:59:08+00:00"
  7209. },
  7210. {
  7211. "name": "pear/archive_tar",
  7212. "version": "1.4.8",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/pear/Archive_Tar.git",
  7216. "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/442bdffb7edb84c898cfd94f7ac8500e49d5bbb5",
  7221. "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5",
  7222. "shasum": ""
  7223. },
  7224. "require": {
  7225. "pear/pear-core-minimal": "^1.10.0alpha2",
  7226. "php": ">=5.2.0"
  7227. },
  7228. "require-dev": {
  7229. "phpunit/phpunit": "*"
  7230. },
  7231. "suggest": {
  7232. "ext-bz2": "Bz2 compression support.",
  7233. "ext-xz": "Lzma2 compression support.",
  7234. "ext-zlib": "Gzip compression support."
  7235. },
  7236. "type": "library",
  7237. "extra": {
  7238. "branch-alias": {
  7239. "dev-master": "1.4.x-dev"
  7240. }
  7241. },
  7242. "autoload": {
  7243. "psr-0": {
  7244. "Archive_Tar": ""
  7245. }
  7246. },
  7247. "notification-url": "https://packagist.org/downloads/",
  7248. "include-path": [
  7249. "./"
  7250. ],
  7251. "license": [
  7252. "BSD-3-Clause"
  7253. ],
  7254. "authors": [
  7255. {
  7256. "name": "Vincent Blavet",
  7257. "email": "vincent@phpconcept.net"
  7258. },
  7259. {
  7260. "name": "Greg Beaver",
  7261. "email": "greg@chiaraquartet.net"
  7262. },
  7263. {
  7264. "name": "Michiel Rook",
  7265. "email": "mrook@php.net"
  7266. }
  7267. ],
  7268. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7269. "homepage": "https://github.com/pear/Archive_Tar",
  7270. "keywords": [
  7271. "archive",
  7272. "tar"
  7273. ],
  7274. "time": "2019-10-21T13:31:24+00:00"
  7275. },
  7276. {
  7277. "name": "pear/console_getopt",
  7278. "version": "v1.4.2",
  7279. "source": {
  7280. "type": "git",
  7281. "url": "https://github.com/pear/Console_Getopt.git",
  7282. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0"
  7283. },
  7284. "dist": {
  7285. "type": "zip",
  7286. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0",
  7287. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0",
  7288. "shasum": ""
  7289. },
  7290. "type": "library",
  7291. "autoload": {
  7292. "psr-0": {
  7293. "Console": "./"
  7294. }
  7295. },
  7296. "notification-url": "https://packagist.org/downloads/",
  7297. "include-path": [
  7298. "./"
  7299. ],
  7300. "license": [
  7301. "BSD-2-Clause"
  7302. ],
  7303. "authors": [
  7304. {
  7305. "name": "Greg Beaver",
  7306. "email": "cellog@php.net",
  7307. "role": "Helper"
  7308. },
  7309. {
  7310. "name": "Andrei Zmievski",
  7311. "email": "andrei@php.net",
  7312. "role": "Lead"
  7313. },
  7314. {
  7315. "name": "Stig Bakken",
  7316. "email": "stig@php.net",
  7317. "role": "Developer"
  7318. }
  7319. ],
  7320. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7321. "time": "2019-02-06T16:52:33+00:00"
  7322. },
  7323. {
  7324. "name": "pear/pear-core-minimal",
  7325. "version": "v1.10.9",
  7326. "source": {
  7327. "type": "git",
  7328. "url": "https://github.com/pear/pear-core-minimal.git",
  7329. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f"
  7330. },
  7331. "dist": {
  7332. "type": "zip",
  7333. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  7334. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  7335. "shasum": ""
  7336. },
  7337. "require": {
  7338. "pear/console_getopt": "~1.4",
  7339. "pear/pear_exception": "~1.0"
  7340. },
  7341. "replace": {
  7342. "rsky/pear-core-min": "self.version"
  7343. },
  7344. "type": "library",
  7345. "autoload": {
  7346. "psr-0": {
  7347. "": "src/"
  7348. }
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "include-path": [
  7352. "src/"
  7353. ],
  7354. "license": [
  7355. "BSD-3-Clause"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Christian Weiske",
  7360. "email": "cweiske@php.net",
  7361. "role": "Lead"
  7362. }
  7363. ],
  7364. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7365. "time": "2019-03-13T18:15:44+00:00"
  7366. },
  7367. {
  7368. "name": "pear/pear_exception",
  7369. "version": "v1.0.0",
  7370. "source": {
  7371. "type": "git",
  7372. "url": "https://github.com/pear/PEAR_Exception.git",
  7373. "reference": "8c18719fdae000b690e3912be401c76e406dd13b"
  7374. },
  7375. "dist": {
  7376. "type": "zip",
  7377. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b",
  7378. "reference": "8c18719fdae000b690e3912be401c76e406dd13b",
  7379. "shasum": ""
  7380. },
  7381. "require": {
  7382. "php": ">=4.4.0"
  7383. },
  7384. "require-dev": {
  7385. "phpunit/phpunit": "*"
  7386. },
  7387. "type": "class",
  7388. "extra": {
  7389. "branch-alias": {
  7390. "dev-master": "1.0.x-dev"
  7391. }
  7392. },
  7393. "autoload": {
  7394. "psr-0": {
  7395. "PEAR": ""
  7396. }
  7397. },
  7398. "notification-url": "https://packagist.org/downloads/",
  7399. "include-path": [
  7400. "."
  7401. ],
  7402. "license": [
  7403. "BSD-2-Clause"
  7404. ],
  7405. "authors": [
  7406. {
  7407. "name": "Helgi Thormar",
  7408. "email": "dufuz@php.net"
  7409. },
  7410. {
  7411. "name": "Greg Beaver",
  7412. "email": "cellog@php.net"
  7413. }
  7414. ],
  7415. "description": "The PEAR Exception base class.",
  7416. "homepage": "https://github.com/pear/PEAR_Exception",
  7417. "keywords": [
  7418. "exception"
  7419. ],
  7420. "time": "2015-02-10T20:07:52+00:00"
  7421. },
  7422. {
  7423. "name": "phar-io/manifest",
  7424. "version": "1.0.1",
  7425. "source": {
  7426. "type": "git",
  7427. "url": "https://github.com/phar-io/manifest.git",
  7428. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  7429. },
  7430. "dist": {
  7431. "type": "zip",
  7432. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7433. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7434. "shasum": ""
  7435. },
  7436. "require": {
  7437. "ext-dom": "*",
  7438. "ext-phar": "*",
  7439. "phar-io/version": "^1.0.1",
  7440. "php": "^5.6 || ^7.0"
  7441. },
  7442. "type": "library",
  7443. "extra": {
  7444. "branch-alias": {
  7445. "dev-master": "1.0.x-dev"
  7446. }
  7447. },
  7448. "autoload": {
  7449. "classmap": [
  7450. "src/"
  7451. ]
  7452. },
  7453. "notification-url": "https://packagist.org/downloads/",
  7454. "license": [
  7455. "BSD-3-Clause"
  7456. ],
  7457. "authors": [
  7458. {
  7459. "name": "Arne Blankerts",
  7460. "email": "arne@blankerts.de",
  7461. "role": "Developer"
  7462. },
  7463. {
  7464. "name": "Sebastian Heuer",
  7465. "email": "sebastian@phpeople.de",
  7466. "role": "Developer"
  7467. },
  7468. {
  7469. "name": "Sebastian Bergmann",
  7470. "email": "sebastian@phpunit.de",
  7471. "role": "Developer"
  7472. }
  7473. ],
  7474. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7475. "time": "2017-03-05T18:14:27+00:00"
  7476. },
  7477. {
  7478. "name": "phar-io/version",
  7479. "version": "1.0.1",
  7480. "source": {
  7481. "type": "git",
  7482. "url": "https://github.com/phar-io/version.git",
  7483. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  7484. },
  7485. "dist": {
  7486. "type": "zip",
  7487. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  7488. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  7489. "shasum": ""
  7490. },
  7491. "require": {
  7492. "php": "^5.6 || ^7.0"
  7493. },
  7494. "type": "library",
  7495. "autoload": {
  7496. "classmap": [
  7497. "src/"
  7498. ]
  7499. },
  7500. "notification-url": "https://packagist.org/downloads/",
  7501. "license": [
  7502. "BSD-3-Clause"
  7503. ],
  7504. "authors": [
  7505. {
  7506. "name": "Arne Blankerts",
  7507. "email": "arne@blankerts.de",
  7508. "role": "Developer"
  7509. },
  7510. {
  7511. "name": "Sebastian Heuer",
  7512. "email": "sebastian@phpeople.de",
  7513. "role": "Developer"
  7514. },
  7515. {
  7516. "name": "Sebastian Bergmann",
  7517. "email": "sebastian@phpunit.de",
  7518. "role": "Developer"
  7519. }
  7520. ],
  7521. "description": "Library for handling version information and constraints",
  7522. "time": "2017-03-05T17:38:23+00:00"
  7523. },
  7524. {
  7525. "name": "phpdocumentor/reflection-common",
  7526. "version": "1.0.1",
  7527. "source": {
  7528. "type": "git",
  7529. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7530. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  7531. },
  7532. "dist": {
  7533. "type": "zip",
  7534. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7535. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7536. "shasum": ""
  7537. },
  7538. "require": {
  7539. "php": ">=5.5"
  7540. },
  7541. "require-dev": {
  7542. "phpunit/phpunit": "^4.6"
  7543. },
  7544. "type": "library",
  7545. "extra": {
  7546. "branch-alias": {
  7547. "dev-master": "1.0.x-dev"
  7548. }
  7549. },
  7550. "autoload": {
  7551. "psr-4": {
  7552. "phpDocumentor\\Reflection\\": [
  7553. "src"
  7554. ]
  7555. }
  7556. },
  7557. "notification-url": "https://packagist.org/downloads/",
  7558. "license": [
  7559. "MIT"
  7560. ],
  7561. "authors": [
  7562. {
  7563. "name": "Jaap van Otterdijk",
  7564. "email": "opensource@ijaap.nl"
  7565. }
  7566. ],
  7567. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7568. "homepage": "http://www.phpdoc.org",
  7569. "keywords": [
  7570. "FQSEN",
  7571. "phpDocumentor",
  7572. "phpdoc",
  7573. "reflection",
  7574. "static analysis"
  7575. ],
  7576. "time": "2017-09-11T18:02:19+00:00"
  7577. },
  7578. {
  7579. "name": "phpdocumentor/reflection-docblock",
  7580. "version": "4.3.2",
  7581. "source": {
  7582. "type": "git",
  7583. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7584. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  7585. },
  7586. "dist": {
  7587. "type": "zip",
  7588. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7589. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7590. "shasum": ""
  7591. },
  7592. "require": {
  7593. "php": "^7.0",
  7594. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  7595. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  7596. "webmozart/assert": "^1.0"
  7597. },
  7598. "require-dev": {
  7599. "doctrine/instantiator": "^1.0.5",
  7600. "mockery/mockery": "^1.0",
  7601. "phpunit/phpunit": "^6.4"
  7602. },
  7603. "type": "library",
  7604. "extra": {
  7605. "branch-alias": {
  7606. "dev-master": "4.x-dev"
  7607. }
  7608. },
  7609. "autoload": {
  7610. "psr-4": {
  7611. "phpDocumentor\\Reflection\\": [
  7612. "src/"
  7613. ]
  7614. }
  7615. },
  7616. "notification-url": "https://packagist.org/downloads/",
  7617. "license": [
  7618. "MIT"
  7619. ],
  7620. "authors": [
  7621. {
  7622. "name": "Mike van Riel",
  7623. "email": "me@mikevanriel.com"
  7624. }
  7625. ],
  7626. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7627. "time": "2019-09-12T14:27:41+00:00"
  7628. },
  7629. {
  7630. "name": "phpdocumentor/type-resolver",
  7631. "version": "0.5.1",
  7632. "source": {
  7633. "type": "git",
  7634. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7635. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  7636. },
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  7640. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  7641. "shasum": ""
  7642. },
  7643. "require": {
  7644. "php": "^7.0",
  7645. "phpdocumentor/reflection-common": "^1.0"
  7646. },
  7647. "require-dev": {
  7648. "mockery/mockery": "^1.0",
  7649. "phpunit/phpunit": "^6.4"
  7650. },
  7651. "type": "library",
  7652. "extra": {
  7653. "branch-alias": {
  7654. "dev-master": "1.0.x-dev"
  7655. }
  7656. },
  7657. "autoload": {
  7658. "psr-4": {
  7659. "phpDocumentor\\Reflection\\": "src"
  7660. }
  7661. },
  7662. "notification-url": "https://packagist.org/downloads/",
  7663. "license": [
  7664. "MIT"
  7665. ],
  7666. "authors": [
  7667. {
  7668. "name": "Mike van Riel",
  7669. "email": "me@mikevanriel.com"
  7670. }
  7671. ],
  7672. "time": "2017-12-30T13:23:38+00:00"
  7673. },
  7674. {
  7675. "name": "phpspec/prophecy",
  7676. "version": "1.9.0",
  7677. "source": {
  7678. "type": "git",
  7679. "url": "https://github.com/phpspec/prophecy.git",
  7680. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  7681. },
  7682. "dist": {
  7683. "type": "zip",
  7684. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7685. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7686. "shasum": ""
  7687. },
  7688. "require": {
  7689. "doctrine/instantiator": "^1.0.2",
  7690. "php": "^5.3|^7.0",
  7691. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7692. "sebastian/comparator": "^1.1|^2.0|^3.0",
  7693. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  7694. },
  7695. "require-dev": {
  7696. "phpspec/phpspec": "^2.5|^3.2",
  7697. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7698. },
  7699. "type": "library",
  7700. "extra": {
  7701. "branch-alias": {
  7702. "dev-master": "1.8.x-dev"
  7703. }
  7704. },
  7705. "autoload": {
  7706. "psr-4": {
  7707. "Prophecy\\": "src/Prophecy"
  7708. }
  7709. },
  7710. "notification-url": "https://packagist.org/downloads/",
  7711. "license": [
  7712. "MIT"
  7713. ],
  7714. "authors": [
  7715. {
  7716. "name": "Konstantin Kudryashov",
  7717. "email": "ever.zet@gmail.com",
  7718. "homepage": "http://everzet.com"
  7719. },
  7720. {
  7721. "name": "Marcello Duarte",
  7722. "email": "marcello.duarte@gmail.com"
  7723. }
  7724. ],
  7725. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7726. "homepage": "https://github.com/phpspec/prophecy",
  7727. "keywords": [
  7728. "Double",
  7729. "Dummy",
  7730. "fake",
  7731. "mock",
  7732. "spy",
  7733. "stub"
  7734. ],
  7735. "time": "2019-10-03T11:07:50+00:00"
  7736. },
  7737. {
  7738. "name": "phpunit/php-code-coverage",
  7739. "version": "5.3.2",
  7740. "source": {
  7741. "type": "git",
  7742. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7743. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7744. },
  7745. "dist": {
  7746. "type": "zip",
  7747. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7748. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7749. "shasum": ""
  7750. },
  7751. "require": {
  7752. "ext-dom": "*",
  7753. "ext-xmlwriter": "*",
  7754. "php": "^7.0",
  7755. "phpunit/php-file-iterator": "^1.4.2",
  7756. "phpunit/php-text-template": "^1.2.1",
  7757. "phpunit/php-token-stream": "^2.0.1",
  7758. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7759. "sebastian/environment": "^3.0",
  7760. "sebastian/version": "^2.0.1",
  7761. "theseer/tokenizer": "^1.1"
  7762. },
  7763. "require-dev": {
  7764. "phpunit/phpunit": "^6.0"
  7765. },
  7766. "suggest": {
  7767. "ext-xdebug": "^2.5.5"
  7768. },
  7769. "type": "library",
  7770. "extra": {
  7771. "branch-alias": {
  7772. "dev-master": "5.3.x-dev"
  7773. }
  7774. },
  7775. "autoload": {
  7776. "classmap": [
  7777. "src/"
  7778. ]
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "BSD-3-Clause"
  7783. ],
  7784. "authors": [
  7785. {
  7786. "name": "Sebastian Bergmann",
  7787. "email": "sebastian@phpunit.de",
  7788. "role": "lead"
  7789. }
  7790. ],
  7791. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7792. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7793. "keywords": [
  7794. "coverage",
  7795. "testing",
  7796. "xunit"
  7797. ],
  7798. "time": "2018-04-06T15:36:58+00:00"
  7799. },
  7800. {
  7801. "name": "phpunit/php-file-iterator",
  7802. "version": "1.4.5",
  7803. "source": {
  7804. "type": "git",
  7805. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7806. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7807. },
  7808. "dist": {
  7809. "type": "zip",
  7810. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7811. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7812. "shasum": ""
  7813. },
  7814. "require": {
  7815. "php": ">=5.3.3"
  7816. },
  7817. "type": "library",
  7818. "extra": {
  7819. "branch-alias": {
  7820. "dev-master": "1.4.x-dev"
  7821. }
  7822. },
  7823. "autoload": {
  7824. "classmap": [
  7825. "src/"
  7826. ]
  7827. },
  7828. "notification-url": "https://packagist.org/downloads/",
  7829. "license": [
  7830. "BSD-3-Clause"
  7831. ],
  7832. "authors": [
  7833. {
  7834. "name": "Sebastian Bergmann",
  7835. "email": "sb@sebastian-bergmann.de",
  7836. "role": "lead"
  7837. }
  7838. ],
  7839. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7840. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7841. "keywords": [
  7842. "filesystem",
  7843. "iterator"
  7844. ],
  7845. "time": "2017-11-27T13:52:08+00:00"
  7846. },
  7847. {
  7848. "name": "phpunit/php-text-template",
  7849. "version": "1.2.1",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7853. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7858. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "php": ">=5.3.3"
  7863. },
  7864. "type": "library",
  7865. "autoload": {
  7866. "classmap": [
  7867. "src/"
  7868. ]
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "license": [
  7872. "BSD-3-Clause"
  7873. ],
  7874. "authors": [
  7875. {
  7876. "name": "Sebastian Bergmann",
  7877. "email": "sebastian@phpunit.de",
  7878. "role": "lead"
  7879. }
  7880. ],
  7881. "description": "Simple template engine.",
  7882. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7883. "keywords": [
  7884. "template"
  7885. ],
  7886. "time": "2015-06-21T13:50:34+00:00"
  7887. },
  7888. {
  7889. "name": "phpunit/php-timer",
  7890. "version": "1.0.9",
  7891. "source": {
  7892. "type": "git",
  7893. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7894. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  7895. },
  7896. "dist": {
  7897. "type": "zip",
  7898. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7899. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7900. "shasum": ""
  7901. },
  7902. "require": {
  7903. "php": "^5.3.3 || ^7.0"
  7904. },
  7905. "require-dev": {
  7906. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7907. },
  7908. "type": "library",
  7909. "extra": {
  7910. "branch-alias": {
  7911. "dev-master": "1.0-dev"
  7912. }
  7913. },
  7914. "autoload": {
  7915. "classmap": [
  7916. "src/"
  7917. ]
  7918. },
  7919. "notification-url": "https://packagist.org/downloads/",
  7920. "license": [
  7921. "BSD-3-Clause"
  7922. ],
  7923. "authors": [
  7924. {
  7925. "name": "Sebastian Bergmann",
  7926. "email": "sb@sebastian-bergmann.de",
  7927. "role": "lead"
  7928. }
  7929. ],
  7930. "description": "Utility class for timing",
  7931. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7932. "keywords": [
  7933. "timer"
  7934. ],
  7935. "time": "2017-02-26T11:10:40+00:00"
  7936. },
  7937. {
  7938. "name": "phpunit/php-token-stream",
  7939. "version": "2.0.2",
  7940. "source": {
  7941. "type": "git",
  7942. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7943. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  7944. },
  7945. "dist": {
  7946. "type": "zip",
  7947. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  7948. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  7949. "shasum": ""
  7950. },
  7951. "require": {
  7952. "ext-tokenizer": "*",
  7953. "php": "^7.0"
  7954. },
  7955. "require-dev": {
  7956. "phpunit/phpunit": "^6.2.4"
  7957. },
  7958. "type": "library",
  7959. "extra": {
  7960. "branch-alias": {
  7961. "dev-master": "2.0-dev"
  7962. }
  7963. },
  7964. "autoload": {
  7965. "classmap": [
  7966. "src/"
  7967. ]
  7968. },
  7969. "notification-url": "https://packagist.org/downloads/",
  7970. "license": [
  7971. "BSD-3-Clause"
  7972. ],
  7973. "authors": [
  7974. {
  7975. "name": "Sebastian Bergmann",
  7976. "email": "sebastian@phpunit.de"
  7977. }
  7978. ],
  7979. "description": "Wrapper around PHP's tokenizer extension.",
  7980. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7981. "keywords": [
  7982. "tokenizer"
  7983. ],
  7984. "time": "2017-11-27T05:48:46+00:00"
  7985. },
  7986. {
  7987. "name": "phpunit/phpunit",
  7988. "version": "6.5.14",
  7989. "source": {
  7990. "type": "git",
  7991. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7992. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  7993. },
  7994. "dist": {
  7995. "type": "zip",
  7996. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7997. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7998. "shasum": ""
  7999. },
  8000. "require": {
  8001. "ext-dom": "*",
  8002. "ext-json": "*",
  8003. "ext-libxml": "*",
  8004. "ext-mbstring": "*",
  8005. "ext-xml": "*",
  8006. "myclabs/deep-copy": "^1.6.1",
  8007. "phar-io/manifest": "^1.0.1",
  8008. "phar-io/version": "^1.0",
  8009. "php": "^7.0",
  8010. "phpspec/prophecy": "^1.7",
  8011. "phpunit/php-code-coverage": "^5.3",
  8012. "phpunit/php-file-iterator": "^1.4.3",
  8013. "phpunit/php-text-template": "^1.2.1",
  8014. "phpunit/php-timer": "^1.0.9",
  8015. "phpunit/phpunit-mock-objects": "^5.0.9",
  8016. "sebastian/comparator": "^2.1",
  8017. "sebastian/diff": "^2.0",
  8018. "sebastian/environment": "^3.1",
  8019. "sebastian/exporter": "^3.1",
  8020. "sebastian/global-state": "^2.0",
  8021. "sebastian/object-enumerator": "^3.0.3",
  8022. "sebastian/resource-operations": "^1.0",
  8023. "sebastian/version": "^2.0.1"
  8024. },
  8025. "conflict": {
  8026. "phpdocumentor/reflection-docblock": "3.0.2",
  8027. "phpunit/dbunit": "<3.0"
  8028. },
  8029. "require-dev": {
  8030. "ext-pdo": "*"
  8031. },
  8032. "suggest": {
  8033. "ext-xdebug": "*",
  8034. "phpunit/php-invoker": "^1.1"
  8035. },
  8036. "bin": [
  8037. "phpunit"
  8038. ],
  8039. "type": "library",
  8040. "extra": {
  8041. "branch-alias": {
  8042. "dev-master": "6.5.x-dev"
  8043. }
  8044. },
  8045. "autoload": {
  8046. "classmap": [
  8047. "src/"
  8048. ]
  8049. },
  8050. "notification-url": "https://packagist.org/downloads/",
  8051. "license": [
  8052. "BSD-3-Clause"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Sebastian Bergmann",
  8057. "email": "sebastian@phpunit.de",
  8058. "role": "lead"
  8059. }
  8060. ],
  8061. "description": "The PHP Unit Testing framework.",
  8062. "homepage": "https://phpunit.de/",
  8063. "keywords": [
  8064. "phpunit",
  8065. "testing",
  8066. "xunit"
  8067. ],
  8068. "time": "2019-02-01T05:22:47+00:00"
  8069. },
  8070. {
  8071. "name": "phpunit/phpunit-mock-objects",
  8072. "version": "5.0.10",
  8073. "source": {
  8074. "type": "git",
  8075. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  8076. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  8077. },
  8078. "dist": {
  8079. "type": "zip",
  8080. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8081. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8082. "shasum": ""
  8083. },
  8084. "require": {
  8085. "doctrine/instantiator": "^1.0.5",
  8086. "php": "^7.0",
  8087. "phpunit/php-text-template": "^1.2.1",
  8088. "sebastian/exporter": "^3.1"
  8089. },
  8090. "conflict": {
  8091. "phpunit/phpunit": "<6.0"
  8092. },
  8093. "require-dev": {
  8094. "phpunit/phpunit": "^6.5.11"
  8095. },
  8096. "suggest": {
  8097. "ext-soap": "*"
  8098. },
  8099. "type": "library",
  8100. "extra": {
  8101. "branch-alias": {
  8102. "dev-master": "5.0.x-dev"
  8103. }
  8104. },
  8105. "autoload": {
  8106. "classmap": [
  8107. "src/"
  8108. ]
  8109. },
  8110. "notification-url": "https://packagist.org/downloads/",
  8111. "license": [
  8112. "BSD-3-Clause"
  8113. ],
  8114. "authors": [
  8115. {
  8116. "name": "Sebastian Bergmann",
  8117. "email": "sebastian@phpunit.de",
  8118. "role": "lead"
  8119. }
  8120. ],
  8121. "description": "Mock Object library for PHPUnit",
  8122. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  8123. "keywords": [
  8124. "mock",
  8125. "xunit"
  8126. ],
  8127. "abandoned": true,
  8128. "time": "2018-08-09T05:50:03+00:00"
  8129. },
  8130. {
  8131. "name": "psr/container",
  8132. "version": "1.0.0",
  8133. "source": {
  8134. "type": "git",
  8135. "url": "https://github.com/php-fig/container.git",
  8136. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8137. },
  8138. "dist": {
  8139. "type": "zip",
  8140. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8141. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8142. "shasum": ""
  8143. },
  8144. "require": {
  8145. "php": ">=5.3.0"
  8146. },
  8147. "type": "library",
  8148. "extra": {
  8149. "branch-alias": {
  8150. "dev-master": "1.0.x-dev"
  8151. }
  8152. },
  8153. "autoload": {
  8154. "psr-4": {
  8155. "Psr\\Container\\": "src/"
  8156. }
  8157. },
  8158. "notification-url": "https://packagist.org/downloads/",
  8159. "license": [
  8160. "MIT"
  8161. ],
  8162. "authors": [
  8163. {
  8164. "name": "PHP-FIG",
  8165. "homepage": "http://www.php-fig.org/"
  8166. }
  8167. ],
  8168. "description": "Common Container Interface (PHP FIG PSR-11)",
  8169. "homepage": "https://github.com/php-fig/container",
  8170. "keywords": [
  8171. "PSR-11",
  8172. "container",
  8173. "container-interface",
  8174. "container-interop",
  8175. "psr"
  8176. ],
  8177. "time": "2017-02-14T16:28:37+00:00"
  8178. },
  8179. {
  8180. "name": "psr/http-message",
  8181. "version": "1.0.1",
  8182. "source": {
  8183. "type": "git",
  8184. "url": "https://github.com/php-fig/http-message.git",
  8185. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8186. },
  8187. "dist": {
  8188. "type": "zip",
  8189. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8190. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8191. "shasum": ""
  8192. },
  8193. "require": {
  8194. "php": ">=5.3.0"
  8195. },
  8196. "type": "library",
  8197. "extra": {
  8198. "branch-alias": {
  8199. "dev-master": "1.0.x-dev"
  8200. }
  8201. },
  8202. "autoload": {
  8203. "psr-4": {
  8204. "Psr\\Http\\Message\\": "src/"
  8205. }
  8206. },
  8207. "notification-url": "https://packagist.org/downloads/",
  8208. "license": [
  8209. "MIT"
  8210. ],
  8211. "authors": [
  8212. {
  8213. "name": "PHP-FIG",
  8214. "homepage": "http://www.php-fig.org/"
  8215. }
  8216. ],
  8217. "description": "Common interface for HTTP messages",
  8218. "homepage": "https://github.com/php-fig/http-message",
  8219. "keywords": [
  8220. "http",
  8221. "http-message",
  8222. "psr",
  8223. "psr-7",
  8224. "request",
  8225. "response"
  8226. ],
  8227. "time": "2016-08-06T14:39:51+00:00"
  8228. },
  8229. {
  8230. "name": "psr/log",
  8231. "version": "1.1.2",
  8232. "source": {
  8233. "type": "git",
  8234. "url": "https://github.com/php-fig/log.git",
  8235. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  8236. },
  8237. "dist": {
  8238. "type": "zip",
  8239. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  8240. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  8241. "shasum": ""
  8242. },
  8243. "require": {
  8244. "php": ">=5.3.0"
  8245. },
  8246. "type": "library",
  8247. "extra": {
  8248. "branch-alias": {
  8249. "dev-master": "1.1.x-dev"
  8250. }
  8251. },
  8252. "autoload": {
  8253. "psr-4": {
  8254. "Psr\\Log\\": "Psr/Log/"
  8255. }
  8256. },
  8257. "notification-url": "https://packagist.org/downloads/",
  8258. "license": [
  8259. "MIT"
  8260. ],
  8261. "authors": [
  8262. {
  8263. "name": "PHP-FIG",
  8264. "homepage": "http://www.php-fig.org/"
  8265. }
  8266. ],
  8267. "description": "Common interface for logging libraries",
  8268. "homepage": "https://github.com/php-fig/log",
  8269. "keywords": [
  8270. "log",
  8271. "psr",
  8272. "psr-3"
  8273. ],
  8274. "time": "2019-11-01T11:05:21+00:00"
  8275. },
  8276. {
  8277. "name": "psy/psysh",
  8278. "version": "v0.9.9",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/bobthecow/psysh.git",
  8282. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8287. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8288. "shasum": ""
  8289. },
  8290. "require": {
  8291. "dnoegel/php-xdg-base-dir": "0.1",
  8292. "ext-json": "*",
  8293. "ext-tokenizer": "*",
  8294. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8295. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8296. "php": ">=5.4.0",
  8297. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8298. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8299. },
  8300. "require-dev": {
  8301. "bamarni/composer-bin-plugin": "^1.2",
  8302. "hoa/console": "~2.15|~3.16",
  8303. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8304. },
  8305. "suggest": {
  8306. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8307. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8308. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8309. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8310. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8311. },
  8312. "bin": [
  8313. "bin/psysh"
  8314. ],
  8315. "type": "library",
  8316. "extra": {
  8317. "branch-alias": {
  8318. "dev-develop": "0.9.x-dev"
  8319. }
  8320. },
  8321. "autoload": {
  8322. "files": [
  8323. "src/functions.php"
  8324. ],
  8325. "psr-4": {
  8326. "Psy\\": "src/"
  8327. }
  8328. },
  8329. "notification-url": "https://packagist.org/downloads/",
  8330. "license": [
  8331. "MIT"
  8332. ],
  8333. "authors": [
  8334. {
  8335. "name": "Justin Hileman",
  8336. "email": "justin@justinhileman.info",
  8337. "homepage": "http://justinhileman.com"
  8338. }
  8339. ],
  8340. "description": "An interactive shell for modern PHP.",
  8341. "homepage": "http://psysh.org",
  8342. "keywords": [
  8343. "REPL",
  8344. "console",
  8345. "interactive",
  8346. "shell"
  8347. ],
  8348. "time": "2018-10-13T15:16:03+00:00"
  8349. },
  8350. {
  8351. "name": "ralouphie/getallheaders",
  8352. "version": "3.0.3",
  8353. "source": {
  8354. "type": "git",
  8355. "url": "https://github.com/ralouphie/getallheaders.git",
  8356. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8357. },
  8358. "dist": {
  8359. "type": "zip",
  8360. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8361. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8362. "shasum": ""
  8363. },
  8364. "require": {
  8365. "php": ">=5.6"
  8366. },
  8367. "require-dev": {
  8368. "php-coveralls/php-coveralls": "^2.1",
  8369. "phpunit/phpunit": "^5 || ^6.5"
  8370. },
  8371. "type": "library",
  8372. "autoload": {
  8373. "files": [
  8374. "src/getallheaders.php"
  8375. ]
  8376. },
  8377. "notification-url": "https://packagist.org/downloads/",
  8378. "license": [
  8379. "MIT"
  8380. ],
  8381. "authors": [
  8382. {
  8383. "name": "Ralph Khattar",
  8384. "email": "ralph.khattar@gmail.com"
  8385. }
  8386. ],
  8387. "description": "A polyfill for getallheaders.",
  8388. "time": "2019-03-08T08:55:37+00:00"
  8389. },
  8390. {
  8391. "name": "sebastian/code-unit-reverse-lookup",
  8392. "version": "1.0.1",
  8393. "source": {
  8394. "type": "git",
  8395. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8396. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8397. },
  8398. "dist": {
  8399. "type": "zip",
  8400. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8401. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8402. "shasum": ""
  8403. },
  8404. "require": {
  8405. "php": "^5.6 || ^7.0"
  8406. },
  8407. "require-dev": {
  8408. "phpunit/phpunit": "^5.7 || ^6.0"
  8409. },
  8410. "type": "library",
  8411. "extra": {
  8412. "branch-alias": {
  8413. "dev-master": "1.0.x-dev"
  8414. }
  8415. },
  8416. "autoload": {
  8417. "classmap": [
  8418. "src/"
  8419. ]
  8420. },
  8421. "notification-url": "https://packagist.org/downloads/",
  8422. "license": [
  8423. "BSD-3-Clause"
  8424. ],
  8425. "authors": [
  8426. {
  8427. "name": "Sebastian Bergmann",
  8428. "email": "sebastian@phpunit.de"
  8429. }
  8430. ],
  8431. "description": "Looks up which function or method a line of code belongs to",
  8432. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8433. "time": "2017-03-04T06:30:41+00:00"
  8434. },
  8435. {
  8436. "name": "sebastian/comparator",
  8437. "version": "2.1.3",
  8438. "source": {
  8439. "type": "git",
  8440. "url": "https://github.com/sebastianbergmann/comparator.git",
  8441. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  8442. },
  8443. "dist": {
  8444. "type": "zip",
  8445. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  8446. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  8447. "shasum": ""
  8448. },
  8449. "require": {
  8450. "php": "^7.0",
  8451. "sebastian/diff": "^2.0 || ^3.0",
  8452. "sebastian/exporter": "^3.1"
  8453. },
  8454. "require-dev": {
  8455. "phpunit/phpunit": "^6.4"
  8456. },
  8457. "type": "library",
  8458. "extra": {
  8459. "branch-alias": {
  8460. "dev-master": "2.1.x-dev"
  8461. }
  8462. },
  8463. "autoload": {
  8464. "classmap": [
  8465. "src/"
  8466. ]
  8467. },
  8468. "notification-url": "https://packagist.org/downloads/",
  8469. "license": [
  8470. "BSD-3-Clause"
  8471. ],
  8472. "authors": [
  8473. {
  8474. "name": "Jeff Welch",
  8475. "email": "whatthejeff@gmail.com"
  8476. },
  8477. {
  8478. "name": "Volker Dusch",
  8479. "email": "github@wallbash.com"
  8480. },
  8481. {
  8482. "name": "Bernhard Schussek",
  8483. "email": "bschussek@2bepublished.at"
  8484. },
  8485. {
  8486. "name": "Sebastian Bergmann",
  8487. "email": "sebastian@phpunit.de"
  8488. }
  8489. ],
  8490. "description": "Provides the functionality to compare PHP values for equality",
  8491. "homepage": "https://github.com/sebastianbergmann/comparator",
  8492. "keywords": [
  8493. "comparator",
  8494. "compare",
  8495. "equality"
  8496. ],
  8497. "time": "2018-02-01T13:46:46+00:00"
  8498. },
  8499. {
  8500. "name": "sebastian/diff",
  8501. "version": "2.0.1",
  8502. "source": {
  8503. "type": "git",
  8504. "url": "https://github.com/sebastianbergmann/diff.git",
  8505. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  8506. },
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8510. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8511. "shasum": ""
  8512. },
  8513. "require": {
  8514. "php": "^7.0"
  8515. },
  8516. "require-dev": {
  8517. "phpunit/phpunit": "^6.2"
  8518. },
  8519. "type": "library",
  8520. "extra": {
  8521. "branch-alias": {
  8522. "dev-master": "2.0-dev"
  8523. }
  8524. },
  8525. "autoload": {
  8526. "classmap": [
  8527. "src/"
  8528. ]
  8529. },
  8530. "notification-url": "https://packagist.org/downloads/",
  8531. "license": [
  8532. "BSD-3-Clause"
  8533. ],
  8534. "authors": [
  8535. {
  8536. "name": "Kore Nordmann",
  8537. "email": "mail@kore-nordmann.de"
  8538. },
  8539. {
  8540. "name": "Sebastian Bergmann",
  8541. "email": "sebastian@phpunit.de"
  8542. }
  8543. ],
  8544. "description": "Diff implementation",
  8545. "homepage": "https://github.com/sebastianbergmann/diff",
  8546. "keywords": [
  8547. "diff"
  8548. ],
  8549. "time": "2017-08-03T08:09:46+00:00"
  8550. },
  8551. {
  8552. "name": "sebastian/environment",
  8553. "version": "3.1.0",
  8554. "source": {
  8555. "type": "git",
  8556. "url": "https://github.com/sebastianbergmann/environment.git",
  8557. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  8558. },
  8559. "dist": {
  8560. "type": "zip",
  8561. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8562. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8563. "shasum": ""
  8564. },
  8565. "require": {
  8566. "php": "^7.0"
  8567. },
  8568. "require-dev": {
  8569. "phpunit/phpunit": "^6.1"
  8570. },
  8571. "type": "library",
  8572. "extra": {
  8573. "branch-alias": {
  8574. "dev-master": "3.1.x-dev"
  8575. }
  8576. },
  8577. "autoload": {
  8578. "classmap": [
  8579. "src/"
  8580. ]
  8581. },
  8582. "notification-url": "https://packagist.org/downloads/",
  8583. "license": [
  8584. "BSD-3-Clause"
  8585. ],
  8586. "authors": [
  8587. {
  8588. "name": "Sebastian Bergmann",
  8589. "email": "sebastian@phpunit.de"
  8590. }
  8591. ],
  8592. "description": "Provides functionality to handle HHVM/PHP environments",
  8593. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8594. "keywords": [
  8595. "Xdebug",
  8596. "environment",
  8597. "hhvm"
  8598. ],
  8599. "time": "2017-07-01T08:51:00+00:00"
  8600. },
  8601. {
  8602. "name": "sebastian/exporter",
  8603. "version": "3.1.2",
  8604. "source": {
  8605. "type": "git",
  8606. "url": "https://github.com/sebastianbergmann/exporter.git",
  8607. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8608. },
  8609. "dist": {
  8610. "type": "zip",
  8611. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8612. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8613. "shasum": ""
  8614. },
  8615. "require": {
  8616. "php": "^7.0",
  8617. "sebastian/recursion-context": "^3.0"
  8618. },
  8619. "require-dev": {
  8620. "ext-mbstring": "*",
  8621. "phpunit/phpunit": "^6.0"
  8622. },
  8623. "type": "library",
  8624. "extra": {
  8625. "branch-alias": {
  8626. "dev-master": "3.1.x-dev"
  8627. }
  8628. },
  8629. "autoload": {
  8630. "classmap": [
  8631. "src/"
  8632. ]
  8633. },
  8634. "notification-url": "https://packagist.org/downloads/",
  8635. "license": [
  8636. "BSD-3-Clause"
  8637. ],
  8638. "authors": [
  8639. {
  8640. "name": "Sebastian Bergmann",
  8641. "email": "sebastian@phpunit.de"
  8642. },
  8643. {
  8644. "name": "Jeff Welch",
  8645. "email": "whatthejeff@gmail.com"
  8646. },
  8647. {
  8648. "name": "Volker Dusch",
  8649. "email": "github@wallbash.com"
  8650. },
  8651. {
  8652. "name": "Adam Harvey",
  8653. "email": "aharvey@php.net"
  8654. },
  8655. {
  8656. "name": "Bernhard Schussek",
  8657. "email": "bschussek@gmail.com"
  8658. }
  8659. ],
  8660. "description": "Provides the functionality to export PHP variables for visualization",
  8661. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8662. "keywords": [
  8663. "export",
  8664. "exporter"
  8665. ],
  8666. "time": "2019-09-14T09:02:43+00:00"
  8667. },
  8668. {
  8669. "name": "sebastian/global-state",
  8670. "version": "2.0.0",
  8671. "source": {
  8672. "type": "git",
  8673. "url": "https://github.com/sebastianbergmann/global-state.git",
  8674. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8675. },
  8676. "dist": {
  8677. "type": "zip",
  8678. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8679. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8680. "shasum": ""
  8681. },
  8682. "require": {
  8683. "php": "^7.0"
  8684. },
  8685. "require-dev": {
  8686. "phpunit/phpunit": "^6.0"
  8687. },
  8688. "suggest": {
  8689. "ext-uopz": "*"
  8690. },
  8691. "type": "library",
  8692. "extra": {
  8693. "branch-alias": {
  8694. "dev-master": "2.0-dev"
  8695. }
  8696. },
  8697. "autoload": {
  8698. "classmap": [
  8699. "src/"
  8700. ]
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "BSD-3-Clause"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Sebastian Bergmann",
  8709. "email": "sebastian@phpunit.de"
  8710. }
  8711. ],
  8712. "description": "Snapshotting of global state",
  8713. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8714. "keywords": [
  8715. "global state"
  8716. ],
  8717. "time": "2017-04-27T15:39:26+00:00"
  8718. },
  8719. {
  8720. "name": "sebastian/object-enumerator",
  8721. "version": "3.0.3",
  8722. "source": {
  8723. "type": "git",
  8724. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8725. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8726. },
  8727. "dist": {
  8728. "type": "zip",
  8729. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8730. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8731. "shasum": ""
  8732. },
  8733. "require": {
  8734. "php": "^7.0",
  8735. "sebastian/object-reflector": "^1.1.1",
  8736. "sebastian/recursion-context": "^3.0"
  8737. },
  8738. "require-dev": {
  8739. "phpunit/phpunit": "^6.0"
  8740. },
  8741. "type": "library",
  8742. "extra": {
  8743. "branch-alias": {
  8744. "dev-master": "3.0.x-dev"
  8745. }
  8746. },
  8747. "autoload": {
  8748. "classmap": [
  8749. "src/"
  8750. ]
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "BSD-3-Clause"
  8755. ],
  8756. "authors": [
  8757. {
  8758. "name": "Sebastian Bergmann",
  8759. "email": "sebastian@phpunit.de"
  8760. }
  8761. ],
  8762. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8763. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8764. "time": "2017-08-03T12:35:26+00:00"
  8765. },
  8766. {
  8767. "name": "sebastian/object-reflector",
  8768. "version": "1.1.1",
  8769. "source": {
  8770. "type": "git",
  8771. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8772. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8773. },
  8774. "dist": {
  8775. "type": "zip",
  8776. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8777. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8778. "shasum": ""
  8779. },
  8780. "require": {
  8781. "php": "^7.0"
  8782. },
  8783. "require-dev": {
  8784. "phpunit/phpunit": "^6.0"
  8785. },
  8786. "type": "library",
  8787. "extra": {
  8788. "branch-alias": {
  8789. "dev-master": "1.1-dev"
  8790. }
  8791. },
  8792. "autoload": {
  8793. "classmap": [
  8794. "src/"
  8795. ]
  8796. },
  8797. "notification-url": "https://packagist.org/downloads/",
  8798. "license": [
  8799. "BSD-3-Clause"
  8800. ],
  8801. "authors": [
  8802. {
  8803. "name": "Sebastian Bergmann",
  8804. "email": "sebastian@phpunit.de"
  8805. }
  8806. ],
  8807. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8808. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8809. "time": "2017-03-29T09:07:27+00:00"
  8810. },
  8811. {
  8812. "name": "sebastian/recursion-context",
  8813. "version": "3.0.0",
  8814. "source": {
  8815. "type": "git",
  8816. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8817. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8818. },
  8819. "dist": {
  8820. "type": "zip",
  8821. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8822. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8823. "shasum": ""
  8824. },
  8825. "require": {
  8826. "php": "^7.0"
  8827. },
  8828. "require-dev": {
  8829. "phpunit/phpunit": "^6.0"
  8830. },
  8831. "type": "library",
  8832. "extra": {
  8833. "branch-alias": {
  8834. "dev-master": "3.0.x-dev"
  8835. }
  8836. },
  8837. "autoload": {
  8838. "classmap": [
  8839. "src/"
  8840. ]
  8841. },
  8842. "notification-url": "https://packagist.org/downloads/",
  8843. "license": [
  8844. "BSD-3-Clause"
  8845. ],
  8846. "authors": [
  8847. {
  8848. "name": "Jeff Welch",
  8849. "email": "whatthejeff@gmail.com"
  8850. },
  8851. {
  8852. "name": "Sebastian Bergmann",
  8853. "email": "sebastian@phpunit.de"
  8854. },
  8855. {
  8856. "name": "Adam Harvey",
  8857. "email": "aharvey@php.net"
  8858. }
  8859. ],
  8860. "description": "Provides functionality to recursively process PHP variables",
  8861. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8862. "time": "2017-03-03T06:23:57+00:00"
  8863. },
  8864. {
  8865. "name": "sebastian/resource-operations",
  8866. "version": "1.0.0",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8870. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8875. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": ">=5.6.0"
  8880. },
  8881. "type": "library",
  8882. "extra": {
  8883. "branch-alias": {
  8884. "dev-master": "1.0.x-dev"
  8885. }
  8886. },
  8887. "autoload": {
  8888. "classmap": [
  8889. "src/"
  8890. ]
  8891. },
  8892. "notification-url": "https://packagist.org/downloads/",
  8893. "license": [
  8894. "BSD-3-Clause"
  8895. ],
  8896. "authors": [
  8897. {
  8898. "name": "Sebastian Bergmann",
  8899. "email": "sebastian@phpunit.de"
  8900. }
  8901. ],
  8902. "description": "Provides a list of PHP built-in functions that operate on resources",
  8903. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8904. "time": "2015-07-28T20:34:47+00:00"
  8905. },
  8906. {
  8907. "name": "sebastian/version",
  8908. "version": "2.0.1",
  8909. "source": {
  8910. "type": "git",
  8911. "url": "https://github.com/sebastianbergmann/version.git",
  8912. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8913. },
  8914. "dist": {
  8915. "type": "zip",
  8916. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8917. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8918. "shasum": ""
  8919. },
  8920. "require": {
  8921. "php": ">=5.6"
  8922. },
  8923. "type": "library",
  8924. "extra": {
  8925. "branch-alias": {
  8926. "dev-master": "2.0.x-dev"
  8927. }
  8928. },
  8929. "autoload": {
  8930. "classmap": [
  8931. "src/"
  8932. ]
  8933. },
  8934. "notification-url": "https://packagist.org/downloads/",
  8935. "license": [
  8936. "BSD-3-Clause"
  8937. ],
  8938. "authors": [
  8939. {
  8940. "name": "Sebastian Bergmann",
  8941. "email": "sebastian@phpunit.de",
  8942. "role": "lead"
  8943. }
  8944. ],
  8945. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8946. "homepage": "https://github.com/sebastianbergmann/version",
  8947. "time": "2016-10-03T07:35:21+00:00"
  8948. },
  8949. {
  8950. "name": "squizlabs/php_codesniffer",
  8951. "version": "3.5.2",
  8952. "source": {
  8953. "type": "git",
  8954. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  8955. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7"
  8956. },
  8957. "dist": {
  8958. "type": "zip",
  8959. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  8960. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  8961. "shasum": ""
  8962. },
  8963. "require": {
  8964. "ext-simplexml": "*",
  8965. "ext-tokenizer": "*",
  8966. "ext-xmlwriter": "*",
  8967. "php": ">=5.4.0"
  8968. },
  8969. "require-dev": {
  8970. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  8971. },
  8972. "bin": [
  8973. "bin/phpcs",
  8974. "bin/phpcbf"
  8975. ],
  8976. "type": "library",
  8977. "extra": {
  8978. "branch-alias": {
  8979. "dev-master": "3.x-dev"
  8980. }
  8981. },
  8982. "notification-url": "https://packagist.org/downloads/",
  8983. "license": [
  8984. "BSD-3-Clause"
  8985. ],
  8986. "authors": [
  8987. {
  8988. "name": "Greg Sherwood",
  8989. "role": "lead"
  8990. }
  8991. ],
  8992. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8993. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  8994. "keywords": [
  8995. "phpcs",
  8996. "standards"
  8997. ],
  8998. "time": "2019-10-28T04:36:32+00:00"
  8999. },
  9000. {
  9001. "name": "stack/builder",
  9002. "version": "v1.0.5",
  9003. "source": {
  9004. "type": "git",
  9005. "url": "https://github.com/stackphp/builder.git",
  9006. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  9007. },
  9008. "dist": {
  9009. "type": "zip",
  9010. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9011. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9012. "shasum": ""
  9013. },
  9014. "require": {
  9015. "php": ">=5.3.0",
  9016. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  9017. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  9018. },
  9019. "require-dev": {
  9020. "silex/silex": "~1.0"
  9021. },
  9022. "type": "library",
  9023. "extra": {
  9024. "branch-alias": {
  9025. "dev-master": "1.0-dev"
  9026. }
  9027. },
  9028. "autoload": {
  9029. "psr-0": {
  9030. "Stack": "src"
  9031. }
  9032. },
  9033. "notification-url": "https://packagist.org/downloads/",
  9034. "license": [
  9035. "MIT"
  9036. ],
  9037. "authors": [
  9038. {
  9039. "name": "Igor Wiedler",
  9040. "email": "igor@wiedler.ch"
  9041. }
  9042. ],
  9043. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  9044. "keywords": [
  9045. "stack"
  9046. ],
  9047. "time": "2017-11-18T14:57:29+00:00"
  9048. },
  9049. {
  9050. "name": "stecman/symfony-console-completion",
  9051. "version": "0.10.1",
  9052. "source": {
  9053. "type": "git",
  9054. "url": "https://github.com/stecman/symfony-console-completion.git",
  9055. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8"
  9056. },
  9057. "dist": {
  9058. "type": "zip",
  9059. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9060. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9061. "shasum": ""
  9062. },
  9063. "require": {
  9064. "php": ">=5.3.2",
  9065. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  9066. },
  9067. "require-dev": {
  9068. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9069. },
  9070. "type": "library",
  9071. "extra": {
  9072. "branch-alias": {
  9073. "dev-master": "0.10.x-dev"
  9074. }
  9075. },
  9076. "autoload": {
  9077. "psr-4": {
  9078. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9079. }
  9080. },
  9081. "notification-url": "https://packagist.org/downloads/",
  9082. "license": [
  9083. "MIT"
  9084. ],
  9085. "authors": [
  9086. {
  9087. "name": "Stephen Holdaway",
  9088. "email": "stephen@stecman.co.nz"
  9089. }
  9090. ],
  9091. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9092. "time": "2019-04-29T03:20:18+00:00"
  9093. },
  9094. {
  9095. "name": "symfony-cmf/routing",
  9096. "version": "1.4.1",
  9097. "source": {
  9098. "type": "git",
  9099. "url": "https://github.com/symfony-cmf/routing.git",
  9100. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  9101. },
  9102. "dist": {
  9103. "type": "zip",
  9104. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9105. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9106. "shasum": ""
  9107. },
  9108. "require": {
  9109. "php": "^5.3.9|^7.0",
  9110. "psr/log": "1.*",
  9111. "symfony/http-kernel": "^2.2|3.*",
  9112. "symfony/routing": "^2.2|3.*"
  9113. },
  9114. "require-dev": {
  9115. "friendsofsymfony/jsrouting-bundle": "^1.1",
  9116. "symfony-cmf/testing": "^1.3",
  9117. "symfony/config": "^2.2|3.*",
  9118. "symfony/dependency-injection": "^2.0.5|3.*",
  9119. "symfony/event-dispatcher": "^2.1|3.*"
  9120. },
  9121. "suggest": {
  9122. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  9123. },
  9124. "type": "library",
  9125. "extra": {
  9126. "branch-alias": {
  9127. "dev-master": "1.4-dev"
  9128. }
  9129. },
  9130. "autoload": {
  9131. "psr-4": {
  9132. "Symfony\\Cmf\\Component\\Routing\\": ""
  9133. }
  9134. },
  9135. "notification-url": "https://packagist.org/downloads/",
  9136. "license": [
  9137. "MIT"
  9138. ],
  9139. "authors": [
  9140. {
  9141. "name": "Symfony CMF Community",
  9142. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9143. }
  9144. ],
  9145. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  9146. "homepage": "http://cmf.symfony.com",
  9147. "keywords": [
  9148. "database",
  9149. "routing"
  9150. ],
  9151. "time": "2017-05-09T08:10:41+00:00"
  9152. },
  9153. {
  9154. "name": "symfony/browser-kit",
  9155. "version": "v3.4.34",
  9156. "source": {
  9157. "type": "git",
  9158. "url": "https://github.com/symfony/browser-kit.git",
  9159. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6"
  9160. },
  9161. "dist": {
  9162. "type": "zip",
  9163. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  9164. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  9165. "shasum": ""
  9166. },
  9167. "require": {
  9168. "php": "^5.5.9|>=7.0.8",
  9169. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  9170. },
  9171. "require-dev": {
  9172. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9173. "symfony/process": "~2.8|~3.0|~4.0"
  9174. },
  9175. "suggest": {
  9176. "symfony/process": ""
  9177. },
  9178. "type": "library",
  9179. "extra": {
  9180. "branch-alias": {
  9181. "dev-master": "3.4-dev"
  9182. }
  9183. },
  9184. "autoload": {
  9185. "psr-4": {
  9186. "Symfony\\Component\\BrowserKit\\": ""
  9187. },
  9188. "exclude-from-classmap": [
  9189. "/Tests/"
  9190. ]
  9191. },
  9192. "notification-url": "https://packagist.org/downloads/",
  9193. "license": [
  9194. "MIT"
  9195. ],
  9196. "authors": [
  9197. {
  9198. "name": "Fabien Potencier",
  9199. "email": "fabien@symfony.com"
  9200. },
  9201. {
  9202. "name": "Symfony Community",
  9203. "homepage": "https://symfony.com/contributors"
  9204. }
  9205. ],
  9206. "description": "Symfony BrowserKit Component",
  9207. "homepage": "https://symfony.com",
  9208. "time": "2019-10-24T15:33:53+00:00"
  9209. },
  9210. {
  9211. "name": "symfony/class-loader",
  9212. "version": "v3.4.34",
  9213. "source": {
  9214. "type": "git",
  9215. "url": "https://github.com/symfony/class-loader.git",
  9216. "reference": "e212b06996819a2bce026a63da03b7182d05a690"
  9217. },
  9218. "dist": {
  9219. "type": "zip",
  9220. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690",
  9221. "reference": "e212b06996819a2bce026a63da03b7182d05a690",
  9222. "shasum": ""
  9223. },
  9224. "require": {
  9225. "php": "^5.5.9|>=7.0.8"
  9226. },
  9227. "require-dev": {
  9228. "symfony/finder": "~2.8|~3.0|~4.0",
  9229. "symfony/polyfill-apcu": "~1.1"
  9230. },
  9231. "suggest": {
  9232. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  9233. },
  9234. "type": "library",
  9235. "extra": {
  9236. "branch-alias": {
  9237. "dev-master": "3.4-dev"
  9238. }
  9239. },
  9240. "autoload": {
  9241. "psr-4": {
  9242. "Symfony\\Component\\ClassLoader\\": ""
  9243. },
  9244. "exclude-from-classmap": [
  9245. "/Tests/"
  9246. ]
  9247. },
  9248. "notification-url": "https://packagist.org/downloads/",
  9249. "license": [
  9250. "MIT"
  9251. ],
  9252. "authors": [
  9253. {
  9254. "name": "Fabien Potencier",
  9255. "email": "fabien@symfony.com"
  9256. },
  9257. {
  9258. "name": "Symfony Community",
  9259. "homepage": "https://symfony.com/contributors"
  9260. }
  9261. ],
  9262. "description": "Symfony ClassLoader Component",
  9263. "homepage": "https://symfony.com",
  9264. "time": "2019-08-20T13:31:17+00:00"
  9265. },
  9266. {
  9267. "name": "symfony/config",
  9268. "version": "v3.4.34",
  9269. "source": {
  9270. "type": "git",
  9271. "url": "https://github.com/symfony/config.git",
  9272. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f"
  9273. },
  9274. "dist": {
  9275. "type": "zip",
  9276. "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f",
  9277. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f",
  9278. "shasum": ""
  9279. },
  9280. "require": {
  9281. "php": "^5.5.9|>=7.0.8",
  9282. "symfony/filesystem": "~2.8|~3.0|~4.0",
  9283. "symfony/polyfill-ctype": "~1.8"
  9284. },
  9285. "conflict": {
  9286. "symfony/dependency-injection": "<3.3",
  9287. "symfony/finder": "<3.3"
  9288. },
  9289. "require-dev": {
  9290. "symfony/dependency-injection": "~3.3|~4.0",
  9291. "symfony/event-dispatcher": "~3.3|~4.0",
  9292. "symfony/finder": "~3.3|~4.0",
  9293. "symfony/yaml": "~3.0|~4.0"
  9294. },
  9295. "suggest": {
  9296. "symfony/yaml": "To use the yaml reference dumper"
  9297. },
  9298. "type": "library",
  9299. "extra": {
  9300. "branch-alias": {
  9301. "dev-master": "3.4-dev"
  9302. }
  9303. },
  9304. "autoload": {
  9305. "psr-4": {
  9306. "Symfony\\Component\\Config\\": ""
  9307. },
  9308. "exclude-from-classmap": [
  9309. "/Tests/"
  9310. ]
  9311. },
  9312. "notification-url": "https://packagist.org/downloads/",
  9313. "license": [
  9314. "MIT"
  9315. ],
  9316. "authors": [
  9317. {
  9318. "name": "Fabien Potencier",
  9319. "email": "fabien@symfony.com"
  9320. },
  9321. {
  9322. "name": "Symfony Community",
  9323. "homepage": "https://symfony.com/contributors"
  9324. }
  9325. ],
  9326. "description": "Symfony Config Component",
  9327. "homepage": "https://symfony.com",
  9328. "time": "2019-11-08T08:28:59+00:00"
  9329. },
  9330. {
  9331. "name": "symfony/console",
  9332. "version": "v3.4.34",
  9333. "source": {
  9334. "type": "git",
  9335. "url": "https://github.com/symfony/console.git",
  9336. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf"
  9337. },
  9338. "dist": {
  9339. "type": "zip",
  9340. "url": "https://api.github.com/repos/symfony/console/zipball/c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9341. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9342. "shasum": ""
  9343. },
  9344. "require": {
  9345. "php": "^5.5.9|>=7.0.8",
  9346. "symfony/debug": "~2.8|~3.0|~4.0",
  9347. "symfony/polyfill-mbstring": "~1.0"
  9348. },
  9349. "conflict": {
  9350. "symfony/dependency-injection": "<3.4",
  9351. "symfony/process": "<3.3"
  9352. },
  9353. "provide": {
  9354. "psr/log-implementation": "1.0"
  9355. },
  9356. "require-dev": {
  9357. "psr/log": "~1.0",
  9358. "symfony/config": "~3.3|~4.0",
  9359. "symfony/dependency-injection": "~3.4|~4.0",
  9360. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9361. "symfony/lock": "~3.4|~4.0",
  9362. "symfony/process": "~3.3|~4.0"
  9363. },
  9364. "suggest": {
  9365. "psr/log": "For using the console logger",
  9366. "symfony/event-dispatcher": "",
  9367. "symfony/lock": "",
  9368. "symfony/process": ""
  9369. },
  9370. "type": "library",
  9371. "extra": {
  9372. "branch-alias": {
  9373. "dev-master": "3.4-dev"
  9374. }
  9375. },
  9376. "autoload": {
  9377. "psr-4": {
  9378. "Symfony\\Component\\Console\\": ""
  9379. },
  9380. "exclude-from-classmap": [
  9381. "/Tests/"
  9382. ]
  9383. },
  9384. "notification-url": "https://packagist.org/downloads/",
  9385. "license": [
  9386. "MIT"
  9387. ],
  9388. "authors": [
  9389. {
  9390. "name": "Fabien Potencier",
  9391. "email": "fabien@symfony.com"
  9392. },
  9393. {
  9394. "name": "Symfony Community",
  9395. "homepage": "https://symfony.com/contributors"
  9396. }
  9397. ],
  9398. "description": "Symfony Console Component",
  9399. "homepage": "https://symfony.com",
  9400. "time": "2019-10-24T15:33:53+00:00"
  9401. },
  9402. {
  9403. "name": "symfony/css-selector",
  9404. "version": "v3.4.34",
  9405. "source": {
  9406. "type": "git",
  9407. "url": "https://github.com/symfony/css-selector.git",
  9408. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f"
  9409. },
  9410. "dist": {
  9411. "type": "zip",
  9412. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9413. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9414. "shasum": ""
  9415. },
  9416. "require": {
  9417. "php": "^5.5.9|>=7.0.8"
  9418. },
  9419. "type": "library",
  9420. "extra": {
  9421. "branch-alias": {
  9422. "dev-master": "3.4-dev"
  9423. }
  9424. },
  9425. "autoload": {
  9426. "psr-4": {
  9427. "Symfony\\Component\\CssSelector\\": ""
  9428. },
  9429. "exclude-from-classmap": [
  9430. "/Tests/"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "MIT"
  9436. ],
  9437. "authors": [
  9438. {
  9439. "name": "Fabien Potencier",
  9440. "email": "fabien@symfony.com"
  9441. },
  9442. {
  9443. "name": "Jean-François Simon",
  9444. "email": "jeanfrancois.simon@sensiolabs.com"
  9445. },
  9446. {
  9447. "name": "Symfony Community",
  9448. "homepage": "https://symfony.com/contributors"
  9449. }
  9450. ],
  9451. "description": "Symfony CssSelector Component",
  9452. "homepage": "https://symfony.com",
  9453. "time": "2019-10-01T11:57:37+00:00"
  9454. },
  9455. {
  9456. "name": "symfony/debug",
  9457. "version": "v3.4.34",
  9458. "source": {
  9459. "type": "git",
  9460. "url": "https://github.com/symfony/debug.git",
  9461. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086"
  9462. },
  9463. "dist": {
  9464. "type": "zip",
  9465. "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086",
  9466. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086",
  9467. "shasum": ""
  9468. },
  9469. "require": {
  9470. "php": "^5.5.9|>=7.0.8",
  9471. "psr/log": "~1.0"
  9472. },
  9473. "conflict": {
  9474. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9475. },
  9476. "require-dev": {
  9477. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9478. },
  9479. "type": "library",
  9480. "extra": {
  9481. "branch-alias": {
  9482. "dev-master": "3.4-dev"
  9483. }
  9484. },
  9485. "autoload": {
  9486. "psr-4": {
  9487. "Symfony\\Component\\Debug\\": ""
  9488. },
  9489. "exclude-from-classmap": [
  9490. "/Tests/"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "MIT"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Fabien Potencier",
  9500. "email": "fabien@symfony.com"
  9501. },
  9502. {
  9503. "name": "Symfony Community",
  9504. "homepage": "https://symfony.com/contributors"
  9505. }
  9506. ],
  9507. "description": "Symfony Debug Component",
  9508. "homepage": "https://symfony.com",
  9509. "time": "2019-10-24T15:33:53+00:00"
  9510. },
  9511. {
  9512. "name": "symfony/dependency-injection",
  9513. "version": "v3.4.34",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/symfony/dependency-injection.git",
  9517. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920",
  9522. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920",
  9523. "shasum": ""
  9524. },
  9525. "require": {
  9526. "php": "^5.5.9|>=7.0.8",
  9527. "psr/container": "^1.0"
  9528. },
  9529. "conflict": {
  9530. "symfony/config": "<3.3.7",
  9531. "symfony/finder": "<3.3",
  9532. "symfony/proxy-manager-bridge": "<3.4",
  9533. "symfony/yaml": "<3.4"
  9534. },
  9535. "provide": {
  9536. "psr/container-implementation": "1.0"
  9537. },
  9538. "require-dev": {
  9539. "symfony/config": "~3.3|~4.0",
  9540. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9541. "symfony/yaml": "~3.4|~4.0"
  9542. },
  9543. "suggest": {
  9544. "symfony/config": "",
  9545. "symfony/expression-language": "For using expressions in service container configuration",
  9546. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9547. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9548. "symfony/yaml": ""
  9549. },
  9550. "type": "library",
  9551. "extra": {
  9552. "branch-alias": {
  9553. "dev-master": "3.4-dev"
  9554. }
  9555. },
  9556. "autoload": {
  9557. "psr-4": {
  9558. "Symfony\\Component\\DependencyInjection\\": ""
  9559. },
  9560. "exclude-from-classmap": [
  9561. "/Tests/"
  9562. ]
  9563. },
  9564. "notification-url": "https://packagist.org/downloads/",
  9565. "license": [
  9566. "MIT"
  9567. ],
  9568. "authors": [
  9569. {
  9570. "name": "Fabien Potencier",
  9571. "email": "fabien@symfony.com"
  9572. },
  9573. {
  9574. "name": "Symfony Community",
  9575. "homepage": "https://symfony.com/contributors"
  9576. }
  9577. ],
  9578. "description": "Symfony DependencyInjection Component",
  9579. "homepage": "https://symfony.com",
  9580. "time": "2019-11-08T16:18:30+00:00"
  9581. },
  9582. {
  9583. "name": "symfony/dom-crawler",
  9584. "version": "v3.4.34",
  9585. "source": {
  9586. "type": "git",
  9587. "url": "https://github.com/symfony/dom-crawler.git",
  9588. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3"
  9589. },
  9590. "dist": {
  9591. "type": "zip",
  9592. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9593. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9594. "shasum": ""
  9595. },
  9596. "require": {
  9597. "php": "^5.5.9|>=7.0.8",
  9598. "symfony/polyfill-ctype": "~1.8",
  9599. "symfony/polyfill-mbstring": "~1.0"
  9600. },
  9601. "require-dev": {
  9602. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9603. },
  9604. "suggest": {
  9605. "symfony/css-selector": ""
  9606. },
  9607. "type": "library",
  9608. "extra": {
  9609. "branch-alias": {
  9610. "dev-master": "3.4-dev"
  9611. }
  9612. },
  9613. "autoload": {
  9614. "psr-4": {
  9615. "Symfony\\Component\\DomCrawler\\": ""
  9616. },
  9617. "exclude-from-classmap": [
  9618. "/Tests/"
  9619. ]
  9620. },
  9621. "notification-url": "https://packagist.org/downloads/",
  9622. "license": [
  9623. "MIT"
  9624. ],
  9625. "authors": [
  9626. {
  9627. "name": "Fabien Potencier",
  9628. "email": "fabien@symfony.com"
  9629. },
  9630. {
  9631. "name": "Symfony Community",
  9632. "homepage": "https://symfony.com/contributors"
  9633. }
  9634. ],
  9635. "description": "Symfony DomCrawler Component",
  9636. "homepage": "https://symfony.com",
  9637. "time": "2019-10-24T15:33:53+00:00"
  9638. },
  9639. {
  9640. "name": "symfony/event-dispatcher",
  9641. "version": "v3.4.34",
  9642. "source": {
  9643. "type": "git",
  9644. "url": "https://github.com/symfony/event-dispatcher.git",
  9645. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177"
  9646. },
  9647. "dist": {
  9648. "type": "zip",
  9649. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177",
  9650. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177",
  9651. "shasum": ""
  9652. },
  9653. "require": {
  9654. "php": "^5.5.9|>=7.0.8"
  9655. },
  9656. "conflict": {
  9657. "symfony/dependency-injection": "<3.3"
  9658. },
  9659. "require-dev": {
  9660. "psr/log": "~1.0",
  9661. "symfony/config": "~2.8|~3.0|~4.0",
  9662. "symfony/dependency-injection": "~3.3|~4.0",
  9663. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9664. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9665. },
  9666. "suggest": {
  9667. "symfony/dependency-injection": "",
  9668. "symfony/http-kernel": ""
  9669. },
  9670. "type": "library",
  9671. "extra": {
  9672. "branch-alias": {
  9673. "dev-master": "3.4-dev"
  9674. }
  9675. },
  9676. "autoload": {
  9677. "psr-4": {
  9678. "Symfony\\Component\\EventDispatcher\\": ""
  9679. },
  9680. "exclude-from-classmap": [
  9681. "/Tests/"
  9682. ]
  9683. },
  9684. "notification-url": "https://packagist.org/downloads/",
  9685. "license": [
  9686. "MIT"
  9687. ],
  9688. "authors": [
  9689. {
  9690. "name": "Fabien Potencier",
  9691. "email": "fabien@symfony.com"
  9692. },
  9693. {
  9694. "name": "Symfony Community",
  9695. "homepage": "https://symfony.com/contributors"
  9696. }
  9697. ],
  9698. "description": "Symfony EventDispatcher Component",
  9699. "homepage": "https://symfony.com",
  9700. "time": "2019-10-24T15:33:53+00:00"
  9701. },
  9702. {
  9703. "name": "symfony/filesystem",
  9704. "version": "v3.4.34",
  9705. "source": {
  9706. "type": "git",
  9707. "url": "https://github.com/symfony/filesystem.git",
  9708. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516"
  9709. },
  9710. "dist": {
  9711. "type": "zip",
  9712. "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9713. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9714. "shasum": ""
  9715. },
  9716. "require": {
  9717. "php": "^5.5.9|>=7.0.8",
  9718. "symfony/polyfill-ctype": "~1.8"
  9719. },
  9720. "type": "library",
  9721. "extra": {
  9722. "branch-alias": {
  9723. "dev-master": "3.4-dev"
  9724. }
  9725. },
  9726. "autoload": {
  9727. "psr-4": {
  9728. "Symfony\\Component\\Filesystem\\": ""
  9729. },
  9730. "exclude-from-classmap": [
  9731. "/Tests/"
  9732. ]
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "MIT"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Fabien Potencier",
  9741. "email": "fabien@symfony.com"
  9742. },
  9743. {
  9744. "name": "Symfony Community",
  9745. "homepage": "https://symfony.com/contributors"
  9746. }
  9747. ],
  9748. "description": "Symfony Filesystem Component",
  9749. "homepage": "https://symfony.com",
  9750. "time": "2019-08-20T13:31:17+00:00"
  9751. },
  9752. {
  9753. "name": "symfony/finder",
  9754. "version": "v3.4.34",
  9755. "source": {
  9756. "type": "git",
  9757. "url": "https://github.com/symfony/finder.git",
  9758. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8"
  9759. },
  9760. "dist": {
  9761. "type": "zip",
  9762. "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9763. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9764. "shasum": ""
  9765. },
  9766. "require": {
  9767. "php": "^5.5.9|>=7.0.8"
  9768. },
  9769. "type": "library",
  9770. "extra": {
  9771. "branch-alias": {
  9772. "dev-master": "3.4-dev"
  9773. }
  9774. },
  9775. "autoload": {
  9776. "psr-4": {
  9777. "Symfony\\Component\\Finder\\": ""
  9778. },
  9779. "exclude-from-classmap": [
  9780. "/Tests/"
  9781. ]
  9782. },
  9783. "notification-url": "https://packagist.org/downloads/",
  9784. "license": [
  9785. "MIT"
  9786. ],
  9787. "authors": [
  9788. {
  9789. "name": "Fabien Potencier",
  9790. "email": "fabien@symfony.com"
  9791. },
  9792. {
  9793. "name": "Symfony Community",
  9794. "homepage": "https://symfony.com/contributors"
  9795. }
  9796. ],
  9797. "description": "Symfony Finder Component",
  9798. "homepage": "https://symfony.com",
  9799. "time": "2019-10-30T12:43:22+00:00"
  9800. },
  9801. {
  9802. "name": "symfony/http-foundation",
  9803. "version": "v3.4.34",
  9804. "source": {
  9805. "type": "git",
  9806. "url": "https://github.com/symfony/http-foundation.git",
  9807. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2"
  9808. },
  9809. "dist": {
  9810. "type": "zip",
  9811. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a5d46a33e8649ba802cebe520d188b04385572a2",
  9812. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2",
  9813. "shasum": ""
  9814. },
  9815. "require": {
  9816. "php": "^5.5.9|>=7.0.8",
  9817. "symfony/polyfill-mbstring": "~1.1",
  9818. "symfony/polyfill-php70": "~1.6"
  9819. },
  9820. "require-dev": {
  9821. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9822. },
  9823. "type": "library",
  9824. "extra": {
  9825. "branch-alias": {
  9826. "dev-master": "3.4-dev"
  9827. }
  9828. },
  9829. "autoload": {
  9830. "psr-4": {
  9831. "Symfony\\Component\\HttpFoundation\\": ""
  9832. },
  9833. "exclude-from-classmap": [
  9834. "/Tests/"
  9835. ]
  9836. },
  9837. "notification-url": "https://packagist.org/downloads/",
  9838. "license": [
  9839. "MIT"
  9840. ],
  9841. "authors": [
  9842. {
  9843. "name": "Fabien Potencier",
  9844. "email": "fabien@symfony.com"
  9845. },
  9846. {
  9847. "name": "Symfony Community",
  9848. "homepage": "https://symfony.com/contributors"
  9849. }
  9850. ],
  9851. "description": "Symfony HttpFoundation Component",
  9852. "homepage": "https://symfony.com",
  9853. "time": "2019-11-03T02:12:45+00:00"
  9854. },
  9855. {
  9856. "name": "symfony/http-kernel",
  9857. "version": "v3.4.34",
  9858. "source": {
  9859. "type": "git",
  9860. "url": "https://github.com/symfony/http-kernel.git",
  9861. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2"
  9862. },
  9863. "dist": {
  9864. "type": "zip",
  9865. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9866. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9867. "shasum": ""
  9868. },
  9869. "require": {
  9870. "php": "^5.5.9|>=7.0.8",
  9871. "psr/log": "~1.0",
  9872. "symfony/debug": "^3.3.3|~4.0",
  9873. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9874. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9875. "symfony/polyfill-ctype": "~1.8"
  9876. },
  9877. "conflict": {
  9878. "symfony/config": "<2.8",
  9879. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9880. "symfony/var-dumper": "<3.3",
  9881. "twig/twig": "<1.34|<2.4,>=2"
  9882. },
  9883. "provide": {
  9884. "psr/log-implementation": "1.0"
  9885. },
  9886. "require-dev": {
  9887. "psr/cache": "~1.0",
  9888. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9889. "symfony/class-loader": "~2.8|~3.0",
  9890. "symfony/config": "~2.8|~3.0|~4.0",
  9891. "symfony/console": "~2.8|~3.0|~4.0",
  9892. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9893. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9894. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9895. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9896. "symfony/finder": "~2.8|~3.0|~4.0",
  9897. "symfony/process": "~2.8|~3.0|~4.0",
  9898. "symfony/routing": "~3.4|~4.0",
  9899. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9900. "symfony/templating": "~2.8|~3.0|~4.0",
  9901. "symfony/translation": "~2.8|~3.0|~4.0",
  9902. "symfony/var-dumper": "~3.3|~4.0"
  9903. },
  9904. "suggest": {
  9905. "symfony/browser-kit": "",
  9906. "symfony/config": "",
  9907. "symfony/console": "",
  9908. "symfony/dependency-injection": "",
  9909. "symfony/finder": "",
  9910. "symfony/var-dumper": ""
  9911. },
  9912. "type": "library",
  9913. "extra": {
  9914. "branch-alias": {
  9915. "dev-master": "3.4-dev"
  9916. }
  9917. },
  9918. "autoload": {
  9919. "psr-4": {
  9920. "Symfony\\Component\\HttpKernel\\": ""
  9921. },
  9922. "exclude-from-classmap": [
  9923. "/Tests/"
  9924. ]
  9925. },
  9926. "notification-url": "https://packagist.org/downloads/",
  9927. "license": [
  9928. "MIT"
  9929. ],
  9930. "authors": [
  9931. {
  9932. "name": "Fabien Potencier",
  9933. "email": "fabien@symfony.com"
  9934. },
  9935. {
  9936. "name": "Symfony Community",
  9937. "homepage": "https://symfony.com/contributors"
  9938. }
  9939. ],
  9940. "description": "Symfony HttpKernel Component",
  9941. "homepage": "https://symfony.com",
  9942. "time": "2019-11-11T16:11:23+00:00"
  9943. },
  9944. {
  9945. "name": "symfony/phpunit-bridge",
  9946. "version": "v3.4.34",
  9947. "source": {
  9948. "type": "git",
  9949. "url": "https://github.com/symfony/phpunit-bridge.git",
  9950. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7"
  9951. },
  9952. "dist": {
  9953. "type": "zip",
  9954. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  9955. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  9956. "shasum": ""
  9957. },
  9958. "require": {
  9959. "php": ">=5.3.3"
  9960. },
  9961. "conflict": {
  9962. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9963. },
  9964. "suggest": {
  9965. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9966. },
  9967. "bin": [
  9968. "bin/simple-phpunit"
  9969. ],
  9970. "type": "symfony-bridge",
  9971. "extra": {
  9972. "branch-alias": {
  9973. "dev-master": "3.4-dev"
  9974. },
  9975. "thanks": {
  9976. "name": "phpunit/phpunit",
  9977. "url": "https://github.com/sebastianbergmann/phpunit"
  9978. }
  9979. },
  9980. "autoload": {
  9981. "files": [
  9982. "bootstrap.php"
  9983. ],
  9984. "psr-4": {
  9985. "Symfony\\Bridge\\PhpUnit\\": ""
  9986. },
  9987. "exclude-from-classmap": [
  9988. "/Tests/"
  9989. ]
  9990. },
  9991. "notification-url": "https://packagist.org/downloads/",
  9992. "license": [
  9993. "MIT"
  9994. ],
  9995. "authors": [
  9996. {
  9997. "name": "Nicolas Grekas",
  9998. "email": "p@tchwork.com"
  9999. },
  10000. {
  10001. "name": "Symfony Community",
  10002. "homepage": "https://symfony.com/contributors"
  10003. }
  10004. ],
  10005. "description": "Symfony PHPUnit Bridge",
  10006. "homepage": "https://symfony.com",
  10007. "time": "2019-09-30T20:33:19+00:00"
  10008. },
  10009. {
  10010. "name": "symfony/polyfill-ctype",
  10011. "version": "v1.12.0",
  10012. "source": {
  10013. "type": "git",
  10014. "url": "https://github.com/symfony/polyfill-ctype.git",
  10015. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  10016. },
  10017. "dist": {
  10018. "type": "zip",
  10019. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  10020. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  10021. "shasum": ""
  10022. },
  10023. "require": {
  10024. "php": ">=5.3.3"
  10025. },
  10026. "suggest": {
  10027. "ext-ctype": "For best performance"
  10028. },
  10029. "type": "library",
  10030. "extra": {
  10031. "branch-alias": {
  10032. "dev-master": "1.12-dev"
  10033. }
  10034. },
  10035. "autoload": {
  10036. "psr-4": {
  10037. "Symfony\\Polyfill\\Ctype\\": ""
  10038. },
  10039. "files": [
  10040. "bootstrap.php"
  10041. ]
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "MIT"
  10046. ],
  10047. "authors": [
  10048. {
  10049. "name": "Gert de Pagter",
  10050. "email": "BackEndTea@gmail.com"
  10051. },
  10052. {
  10053. "name": "Symfony Community",
  10054. "homepage": "https://symfony.com/contributors"
  10055. }
  10056. ],
  10057. "description": "Symfony polyfill for ctype functions",
  10058. "homepage": "https://symfony.com",
  10059. "keywords": [
  10060. "compatibility",
  10061. "ctype",
  10062. "polyfill",
  10063. "portable"
  10064. ],
  10065. "time": "2019-08-06T08:03:45+00:00"
  10066. },
  10067. {
  10068. "name": "symfony/polyfill-iconv",
  10069. "version": "v1.12.0",
  10070. "source": {
  10071. "type": "git",
  10072. "url": "https://github.com/symfony/polyfill-iconv.git",
  10073. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  10074. },
  10075. "dist": {
  10076. "type": "zip",
  10077. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  10078. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  10079. "shasum": ""
  10080. },
  10081. "require": {
  10082. "php": ">=5.3.3"
  10083. },
  10084. "suggest": {
  10085. "ext-iconv": "For best performance"
  10086. },
  10087. "type": "library",
  10088. "extra": {
  10089. "branch-alias": {
  10090. "dev-master": "1.12-dev"
  10091. }
  10092. },
  10093. "autoload": {
  10094. "psr-4": {
  10095. "Symfony\\Polyfill\\Iconv\\": ""
  10096. },
  10097. "files": [
  10098. "bootstrap.php"
  10099. ]
  10100. },
  10101. "notification-url": "https://packagist.org/downloads/",
  10102. "license": [
  10103. "MIT"
  10104. ],
  10105. "authors": [
  10106. {
  10107. "name": "Nicolas Grekas",
  10108. "email": "p@tchwork.com"
  10109. },
  10110. {
  10111. "name": "Symfony Community",
  10112. "homepage": "https://symfony.com/contributors"
  10113. }
  10114. ],
  10115. "description": "Symfony polyfill for the Iconv extension",
  10116. "homepage": "https://symfony.com",
  10117. "keywords": [
  10118. "compatibility",
  10119. "iconv",
  10120. "polyfill",
  10121. "portable",
  10122. "shim"
  10123. ],
  10124. "time": "2019-08-06T08:03:45+00:00"
  10125. },
  10126. {
  10127. "name": "symfony/polyfill-mbstring",
  10128. "version": "v1.12.0",
  10129. "source": {
  10130. "type": "git",
  10131. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10132. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  10133. },
  10134. "dist": {
  10135. "type": "zip",
  10136. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  10137. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  10138. "shasum": ""
  10139. },
  10140. "require": {
  10141. "php": ">=5.3.3"
  10142. },
  10143. "suggest": {
  10144. "ext-mbstring": "For best performance"
  10145. },
  10146. "type": "library",
  10147. "extra": {
  10148. "branch-alias": {
  10149. "dev-master": "1.12-dev"
  10150. }
  10151. },
  10152. "autoload": {
  10153. "psr-4": {
  10154. "Symfony\\Polyfill\\Mbstring\\": ""
  10155. },
  10156. "files": [
  10157. "bootstrap.php"
  10158. ]
  10159. },
  10160. "notification-url": "https://packagist.org/downloads/",
  10161. "license": [
  10162. "MIT"
  10163. ],
  10164. "authors": [
  10165. {
  10166. "name": "Nicolas Grekas",
  10167. "email": "p@tchwork.com"
  10168. },
  10169. {
  10170. "name": "Symfony Community",
  10171. "homepage": "https://symfony.com/contributors"
  10172. }
  10173. ],
  10174. "description": "Symfony polyfill for the Mbstring extension",
  10175. "homepage": "https://symfony.com",
  10176. "keywords": [
  10177. "compatibility",
  10178. "mbstring",
  10179. "polyfill",
  10180. "portable",
  10181. "shim"
  10182. ],
  10183. "time": "2019-08-06T08:03:45+00:00"
  10184. },
  10185. {
  10186. "name": "symfony/polyfill-php70",
  10187. "version": "v1.12.0",
  10188. "source": {
  10189. "type": "git",
  10190. "url": "https://github.com/symfony/polyfill-php70.git",
  10191. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  10192. },
  10193. "dist": {
  10194. "type": "zip",
  10195. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  10196. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  10197. "shasum": ""
  10198. },
  10199. "require": {
  10200. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  10201. "php": ">=5.3.3"
  10202. },
  10203. "type": "library",
  10204. "extra": {
  10205. "branch-alias": {
  10206. "dev-master": "1.12-dev"
  10207. }
  10208. },
  10209. "autoload": {
  10210. "psr-4": {
  10211. "Symfony\\Polyfill\\Php70\\": ""
  10212. },
  10213. "files": [
  10214. "bootstrap.php"
  10215. ],
  10216. "classmap": [
  10217. "Resources/stubs"
  10218. ]
  10219. },
  10220. "notification-url": "https://packagist.org/downloads/",
  10221. "license": [
  10222. "MIT"
  10223. ],
  10224. "authors": [
  10225. {
  10226. "name": "Nicolas Grekas",
  10227. "email": "p@tchwork.com"
  10228. },
  10229. {
  10230. "name": "Symfony Community",
  10231. "homepage": "https://symfony.com/contributors"
  10232. }
  10233. ],
  10234. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  10235. "homepage": "https://symfony.com",
  10236. "keywords": [
  10237. "compatibility",
  10238. "polyfill",
  10239. "portable",
  10240. "shim"
  10241. ],
  10242. "time": "2019-08-06T08:03:45+00:00"
  10243. },
  10244. {
  10245. "name": "symfony/process",
  10246. "version": "v3.4.34",
  10247. "source": {
  10248. "type": "git",
  10249. "url": "https://github.com/symfony/process.git",
  10250. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e"
  10251. },
  10252. "dist": {
  10253. "type": "zip",
  10254. "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  10255. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  10256. "shasum": ""
  10257. },
  10258. "require": {
  10259. "php": "^5.5.9|>=7.0.8"
  10260. },
  10261. "type": "library",
  10262. "extra": {
  10263. "branch-alias": {
  10264. "dev-master": "3.4-dev"
  10265. }
  10266. },
  10267. "autoload": {
  10268. "psr-4": {
  10269. "Symfony\\Component\\Process\\": ""
  10270. },
  10271. "exclude-from-classmap": [
  10272. "/Tests/"
  10273. ]
  10274. },
  10275. "notification-url": "https://packagist.org/downloads/",
  10276. "license": [
  10277. "MIT"
  10278. ],
  10279. "authors": [
  10280. {
  10281. "name": "Fabien Potencier",
  10282. "email": "fabien@symfony.com"
  10283. },
  10284. {
  10285. "name": "Symfony Community",
  10286. "homepage": "https://symfony.com/contributors"
  10287. }
  10288. ],
  10289. "description": "Symfony Process Component",
  10290. "homepage": "https://symfony.com",
  10291. "time": "2019-10-24T15:33:53+00:00"
  10292. },
  10293. {
  10294. "name": "symfony/psr-http-message-bridge",
  10295. "version": "v1.1.2",
  10296. "source": {
  10297. "type": "git",
  10298. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10299. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  10300. },
  10301. "dist": {
  10302. "type": "zip",
  10303. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  10304. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  10305. "shasum": ""
  10306. },
  10307. "require": {
  10308. "php": "^5.3.3 || ^7.0",
  10309. "psr/http-message": "^1.0",
  10310. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  10311. },
  10312. "require-dev": {
  10313. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  10314. },
  10315. "suggest": {
  10316. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10317. },
  10318. "type": "symfony-bridge",
  10319. "extra": {
  10320. "branch-alias": {
  10321. "dev-master": "1.1-dev"
  10322. }
  10323. },
  10324. "autoload": {
  10325. "psr-4": {
  10326. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10327. },
  10328. "exclude-from-classmap": [
  10329. "/Tests/"
  10330. ]
  10331. },
  10332. "notification-url": "https://packagist.org/downloads/",
  10333. "license": [
  10334. "MIT"
  10335. ],
  10336. "authors": [
  10337. {
  10338. "name": "Symfony Community",
  10339. "homepage": "http://symfony.com/contributors"
  10340. },
  10341. {
  10342. "name": "Fabien Potencier",
  10343. "email": "fabien@symfony.com"
  10344. }
  10345. ],
  10346. "description": "PSR HTTP message bridge",
  10347. "homepage": "http://symfony.com",
  10348. "keywords": [
  10349. "http",
  10350. "http-message",
  10351. "psr-17",
  10352. "psr-7"
  10353. ],
  10354. "time": "2019-04-03T17:09:40+00:00"
  10355. },
  10356. {
  10357. "name": "symfony/routing",
  10358. "version": "v3.4.34",
  10359. "source": {
  10360. "type": "git",
  10361. "url": "https://github.com/symfony/routing.git",
  10362. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5"
  10363. },
  10364. "dist": {
  10365. "type": "zip",
  10366. "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10367. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10368. "shasum": ""
  10369. },
  10370. "require": {
  10371. "php": "^5.5.9|>=7.0.8"
  10372. },
  10373. "conflict": {
  10374. "symfony/config": "<3.3.1",
  10375. "symfony/dependency-injection": "<3.3",
  10376. "symfony/yaml": "<3.4"
  10377. },
  10378. "require-dev": {
  10379. "doctrine/annotations": "~1.0",
  10380. "psr/log": "~1.0",
  10381. "symfony/config": "^3.3.1|~4.0",
  10382. "symfony/dependency-injection": "~3.3|~4.0",
  10383. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10384. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10385. "symfony/yaml": "~3.4|~4.0"
  10386. },
  10387. "suggest": {
  10388. "doctrine/annotations": "For using the annotation loader",
  10389. "symfony/config": "For using the all-in-one router or any loader",
  10390. "symfony/expression-language": "For using expression matching",
  10391. "symfony/http-foundation": "For using a Symfony Request object",
  10392. "symfony/yaml": "For using the YAML loader"
  10393. },
  10394. "type": "library",
  10395. "extra": {
  10396. "branch-alias": {
  10397. "dev-master": "3.4-dev"
  10398. }
  10399. },
  10400. "autoload": {
  10401. "psr-4": {
  10402. "Symfony\\Component\\Routing\\": ""
  10403. },
  10404. "exclude-from-classmap": [
  10405. "/Tests/"
  10406. ]
  10407. },
  10408. "notification-url": "https://packagist.org/downloads/",
  10409. "license": [
  10410. "MIT"
  10411. ],
  10412. "authors": [
  10413. {
  10414. "name": "Fabien Potencier",
  10415. "email": "fabien@symfony.com"
  10416. },
  10417. {
  10418. "name": "Symfony Community",
  10419. "homepage": "https://symfony.com/contributors"
  10420. }
  10421. ],
  10422. "description": "Symfony Routing Component",
  10423. "homepage": "https://symfony.com",
  10424. "keywords": [
  10425. "router",
  10426. "routing",
  10427. "uri",
  10428. "url"
  10429. ],
  10430. "time": "2019-11-08T17:25:00+00:00"
  10431. },
  10432. {
  10433. "name": "symfony/serializer",
  10434. "version": "v3.4.34",
  10435. "source": {
  10436. "type": "git",
  10437. "url": "https://github.com/symfony/serializer.git",
  10438. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773"
  10439. },
  10440. "dist": {
  10441. "type": "zip",
  10442. "url": "https://api.github.com/repos/symfony/serializer/zipball/a9b988899604cf3ecb144834ffbd11134c6f7773",
  10443. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773",
  10444. "shasum": ""
  10445. },
  10446. "require": {
  10447. "php": "^5.5.9|>=7.0.8",
  10448. "symfony/polyfill-ctype": "~1.8"
  10449. },
  10450. "conflict": {
  10451. "phpdocumentor/type-resolver": "<0.2.1",
  10452. "symfony/dependency-injection": "<3.2",
  10453. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10454. "symfony/property-info": "<3.1",
  10455. "symfony/yaml": "<3.4"
  10456. },
  10457. "require-dev": {
  10458. "doctrine/annotations": "~1.0",
  10459. "doctrine/cache": "~1.0",
  10460. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10461. "symfony/cache": "~3.1|~4.0",
  10462. "symfony/config": "~2.8|~3.0|~4.0",
  10463. "symfony/dependency-injection": "~3.2|~4.0",
  10464. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10465. "symfony/property-access": "~2.8|~3.0|~4.0",
  10466. "symfony/property-info": "^3.4.13|~4.0",
  10467. "symfony/yaml": "~3.4|~4.0"
  10468. },
  10469. "suggest": {
  10470. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10471. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10472. "psr/cache-implementation": "For using the metadata cache.",
  10473. "symfony/config": "For using the XML mapping loader.",
  10474. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10475. "symfony/property-access": "For using the ObjectNormalizer.",
  10476. "symfony/property-info": "To deserialize relations.",
  10477. "symfony/yaml": "For using the default YAML mapping loader."
  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\\Serializer\\": ""
  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 Serializer Component",
  10508. "homepage": "https://symfony.com",
  10509. "time": "2019-10-29T11:09:57+00:00"
  10510. },
  10511. {
  10512. "name": "symfony/translation",
  10513. "version": "v3.4.34",
  10514. "source": {
  10515. "type": "git",
  10516. "url": "https://github.com/symfony/translation.git",
  10517. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772"
  10518. },
  10519. "dist": {
  10520. "type": "zip",
  10521. "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10522. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10523. "shasum": ""
  10524. },
  10525. "require": {
  10526. "php": "^5.5.9|>=7.0.8",
  10527. "symfony/polyfill-mbstring": "~1.0"
  10528. },
  10529. "conflict": {
  10530. "symfony/config": "<2.8",
  10531. "symfony/dependency-injection": "<3.4",
  10532. "symfony/yaml": "<3.4"
  10533. },
  10534. "require-dev": {
  10535. "psr/log": "~1.0",
  10536. "symfony/config": "~2.8|~3.0|~4.0",
  10537. "symfony/dependency-injection": "~3.4|~4.0",
  10538. "symfony/finder": "~2.8|~3.0|~4.0",
  10539. "symfony/http-kernel": "~3.4|~4.0",
  10540. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10541. "symfony/var-dumper": "~3.4|~4.0",
  10542. "symfony/yaml": "~3.4|~4.0"
  10543. },
  10544. "suggest": {
  10545. "psr/log-implementation": "To use logging capability in translator",
  10546. "symfony/config": "",
  10547. "symfony/yaml": ""
  10548. },
  10549. "type": "library",
  10550. "extra": {
  10551. "branch-alias": {
  10552. "dev-master": "3.4-dev"
  10553. }
  10554. },
  10555. "autoload": {
  10556. "psr-4": {
  10557. "Symfony\\Component\\Translation\\": ""
  10558. },
  10559. "exclude-from-classmap": [
  10560. "/Tests/"
  10561. ]
  10562. },
  10563. "notification-url": "https://packagist.org/downloads/",
  10564. "license": [
  10565. "MIT"
  10566. ],
  10567. "authors": [
  10568. {
  10569. "name": "Fabien Potencier",
  10570. "email": "fabien@symfony.com"
  10571. },
  10572. {
  10573. "name": "Symfony Community",
  10574. "homepage": "https://symfony.com/contributors"
  10575. }
  10576. ],
  10577. "description": "Symfony Translation Component",
  10578. "homepage": "https://symfony.com",
  10579. "time": "2019-10-30T12:43:22+00:00"
  10580. },
  10581. {
  10582. "name": "symfony/validator",
  10583. "version": "v3.4.34",
  10584. "source": {
  10585. "type": "git",
  10586. "url": "https://github.com/symfony/validator.git",
  10587. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80"
  10588. },
  10589. "dist": {
  10590. "type": "zip",
  10591. "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10592. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10593. "shasum": ""
  10594. },
  10595. "require": {
  10596. "php": "^5.5.9|>=7.0.8",
  10597. "symfony/polyfill-ctype": "~1.8",
  10598. "symfony/polyfill-mbstring": "~1.0",
  10599. "symfony/translation": "~2.8|~3.0|~4.0"
  10600. },
  10601. "conflict": {
  10602. "doctrine/lexer": "<1.0.2",
  10603. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10604. "symfony/dependency-injection": "<3.3",
  10605. "symfony/http-kernel": "<3.3.5",
  10606. "symfony/yaml": "<3.4"
  10607. },
  10608. "require-dev": {
  10609. "doctrine/annotations": "~1.7",
  10610. "doctrine/cache": "~1.0",
  10611. "egulias/email-validator": "^2.1.10",
  10612. "symfony/cache": "~3.1|~4.0",
  10613. "symfony/config": "~2.8|~3.0|~4.0",
  10614. "symfony/dependency-injection": "~3.3|~4.0",
  10615. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10616. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10617. "symfony/http-kernel": "^3.3.5|~4.0",
  10618. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10619. "symfony/property-access": "~2.8|~3.0|~4.0",
  10620. "symfony/var-dumper": "~3.3|~4.0",
  10621. "symfony/yaml": "~3.4|~4.0"
  10622. },
  10623. "suggest": {
  10624. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10625. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10626. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10627. "psr/cache-implementation": "For using the metadata cache.",
  10628. "symfony/config": "",
  10629. "symfony/expression-language": "For using the Expression validator",
  10630. "symfony/http-foundation": "",
  10631. "symfony/intl": "",
  10632. "symfony/property-access": "For accessing properties within comparison constraints",
  10633. "symfony/yaml": ""
  10634. },
  10635. "type": "library",
  10636. "extra": {
  10637. "branch-alias": {
  10638. "dev-master": "3.4-dev"
  10639. }
  10640. },
  10641. "autoload": {
  10642. "psr-4": {
  10643. "Symfony\\Component\\Validator\\": ""
  10644. },
  10645. "exclude-from-classmap": [
  10646. "/Tests/"
  10647. ]
  10648. },
  10649. "notification-url": "https://packagist.org/downloads/",
  10650. "license": [
  10651. "MIT"
  10652. ],
  10653. "authors": [
  10654. {
  10655. "name": "Fabien Potencier",
  10656. "email": "fabien@symfony.com"
  10657. },
  10658. {
  10659. "name": "Symfony Community",
  10660. "homepage": "https://symfony.com/contributors"
  10661. }
  10662. ],
  10663. "description": "Symfony Validator Component",
  10664. "homepage": "https://symfony.com",
  10665. "time": "2019-11-05T22:03:38+00:00"
  10666. },
  10667. {
  10668. "name": "symfony/var-dumper",
  10669. "version": "v3.4.34",
  10670. "source": {
  10671. "type": "git",
  10672. "url": "https://github.com/symfony/var-dumper.git",
  10673. "reference": "569e261461600810845a8305ca3f64abd3e712c0"
  10674. },
  10675. "dist": {
  10676. "type": "zip",
  10677. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0",
  10678. "reference": "569e261461600810845a8305ca3f64abd3e712c0",
  10679. "shasum": ""
  10680. },
  10681. "require": {
  10682. "php": "^5.5.9|>=7.0.8",
  10683. "symfony/polyfill-mbstring": "~1.0"
  10684. },
  10685. "conflict": {
  10686. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10687. },
  10688. "require-dev": {
  10689. "ext-iconv": "*",
  10690. "twig/twig": "~1.34|~2.4"
  10691. },
  10692. "suggest": {
  10693. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10694. "ext-intl": "To show region name in time zone dump",
  10695. "ext-symfony_debug": ""
  10696. },
  10697. "type": "library",
  10698. "extra": {
  10699. "branch-alias": {
  10700. "dev-master": "3.4-dev"
  10701. }
  10702. },
  10703. "autoload": {
  10704. "files": [
  10705. "Resources/functions/dump.php"
  10706. ],
  10707. "psr-4": {
  10708. "Symfony\\Component\\VarDumper\\": ""
  10709. },
  10710. "exclude-from-classmap": [
  10711. "/Tests/"
  10712. ]
  10713. },
  10714. "notification-url": "https://packagist.org/downloads/",
  10715. "license": [
  10716. "MIT"
  10717. ],
  10718. "authors": [
  10719. {
  10720. "name": "Nicolas Grekas",
  10721. "email": "p@tchwork.com"
  10722. },
  10723. {
  10724. "name": "Symfony Community",
  10725. "homepage": "https://symfony.com/contributors"
  10726. }
  10727. ],
  10728. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10729. "homepage": "https://symfony.com",
  10730. "keywords": [
  10731. "debug",
  10732. "dump"
  10733. ],
  10734. "time": "2019-10-10T11:03:19+00:00"
  10735. },
  10736. {
  10737. "name": "symfony/yaml",
  10738. "version": "v3.4.34",
  10739. "source": {
  10740. "type": "git",
  10741. "url": "https://github.com/symfony/yaml.git",
  10742. "reference": "dab657db15207879217fc81df4f875947bf68804"
  10743. },
  10744. "dist": {
  10745. "type": "zip",
  10746. "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804",
  10747. "reference": "dab657db15207879217fc81df4f875947bf68804",
  10748. "shasum": ""
  10749. },
  10750. "require": {
  10751. "php": "^5.5.9|>=7.0.8",
  10752. "symfony/polyfill-ctype": "~1.8"
  10753. },
  10754. "conflict": {
  10755. "symfony/console": "<3.4"
  10756. },
  10757. "require-dev": {
  10758. "symfony/console": "~3.4|~4.0"
  10759. },
  10760. "suggest": {
  10761. "symfony/console": "For validating YAML files using the lint command"
  10762. },
  10763. "type": "library",
  10764. "extra": {
  10765. "branch-alias": {
  10766. "dev-master": "3.4-dev"
  10767. }
  10768. },
  10769. "autoload": {
  10770. "psr-4": {
  10771. "Symfony\\Component\\Yaml\\": ""
  10772. },
  10773. "exclude-from-classmap": [
  10774. "/Tests/"
  10775. ]
  10776. },
  10777. "notification-url": "https://packagist.org/downloads/",
  10778. "license": [
  10779. "MIT"
  10780. ],
  10781. "authors": [
  10782. {
  10783. "name": "Fabien Potencier",
  10784. "email": "fabien@symfony.com"
  10785. },
  10786. {
  10787. "name": "Symfony Community",
  10788. "homepage": "https://symfony.com/contributors"
  10789. }
  10790. ],
  10791. "description": "Symfony Yaml Component",
  10792. "homepage": "https://symfony.com",
  10793. "time": "2019-10-24T15:33:53+00:00"
  10794. },
  10795. {
  10796. "name": "theseer/tokenizer",
  10797. "version": "1.1.3",
  10798. "source": {
  10799. "type": "git",
  10800. "url": "https://github.com/theseer/tokenizer.git",
  10801. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  10802. },
  10803. "dist": {
  10804. "type": "zip",
  10805. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10806. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10807. "shasum": ""
  10808. },
  10809. "require": {
  10810. "ext-dom": "*",
  10811. "ext-tokenizer": "*",
  10812. "ext-xmlwriter": "*",
  10813. "php": "^7.0"
  10814. },
  10815. "type": "library",
  10816. "autoload": {
  10817. "classmap": [
  10818. "src/"
  10819. ]
  10820. },
  10821. "notification-url": "https://packagist.org/downloads/",
  10822. "license": [
  10823. "BSD-3-Clause"
  10824. ],
  10825. "authors": [
  10826. {
  10827. "name": "Arne Blankerts",
  10828. "email": "arne@blankerts.de",
  10829. "role": "Developer"
  10830. }
  10831. ],
  10832. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10833. "time": "2019-06-13T22:48:21+00:00"
  10834. },
  10835. {
  10836. "name": "twig/twig",
  10837. "version": "v1.42.4",
  10838. "source": {
  10839. "type": "git",
  10840. "url": "https://github.com/twigphp/Twig.git",
  10841. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152"
  10842. },
  10843. "dist": {
  10844. "type": "zip",
  10845. "url": "https://api.github.com/repos/twigphp/Twig/zipball/e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10846. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10847. "shasum": ""
  10848. },
  10849. "require": {
  10850. "php": ">=5.5.0",
  10851. "symfony/polyfill-ctype": "^1.8"
  10852. },
  10853. "require-dev": {
  10854. "psr/container": "^1.0",
  10855. "symfony/debug": "^3.4|^4.2",
  10856. "symfony/phpunit-bridge": "^4.4@dev|^5.0"
  10857. },
  10858. "type": "library",
  10859. "extra": {
  10860. "branch-alias": {
  10861. "dev-master": "1.42-dev"
  10862. }
  10863. },
  10864. "autoload": {
  10865. "psr-0": {
  10866. "Twig_": "lib/"
  10867. },
  10868. "psr-4": {
  10869. "Twig\\": "src/"
  10870. }
  10871. },
  10872. "notification-url": "https://packagist.org/downloads/",
  10873. "license": [
  10874. "BSD-3-Clause"
  10875. ],
  10876. "authors": [
  10877. {
  10878. "name": "Fabien Potencier",
  10879. "email": "fabien@symfony.com",
  10880. "homepage": "http://fabien.potencier.org",
  10881. "role": "Lead Developer"
  10882. },
  10883. {
  10884. "name": "Twig Team",
  10885. "homepage": "https://twig.symfony.com/contributors",
  10886. "role": "Contributors"
  10887. },
  10888. {
  10889. "name": "Armin Ronacher",
  10890. "email": "armin.ronacher@active-4.com",
  10891. "role": "Project Founder"
  10892. }
  10893. ],
  10894. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10895. "homepage": "https://twig.symfony.com",
  10896. "keywords": [
  10897. "templating"
  10898. ],
  10899. "time": "2019-11-11T16:49:32+00:00"
  10900. },
  10901. {
  10902. "name": "typo3/phar-stream-wrapper",
  10903. "version": "v2.1.3",
  10904. "source": {
  10905. "type": "git",
  10906. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10907. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb"
  10908. },
  10909. "dist": {
  10910. "type": "zip",
  10911. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e8a656d72028b97ab9f61ed993734f3cded02eeb",
  10912. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb",
  10913. "shasum": ""
  10914. },
  10915. "require": {
  10916. "brumann/polyfill-unserialize": "^1.0",
  10917. "ext-json": "*",
  10918. "php": "^5.3.3|^7.0"
  10919. },
  10920. "require-dev": {
  10921. "ext-xdebug": "*",
  10922. "phpunit/phpunit": "^4.8.36"
  10923. },
  10924. "suggest": {
  10925. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10926. },
  10927. "type": "library",
  10928. "autoload": {
  10929. "psr-4": {
  10930. "TYPO3\\PharStreamWrapper\\": "src/"
  10931. }
  10932. },
  10933. "notification-url": "https://packagist.org/downloads/",
  10934. "license": [
  10935. "MIT"
  10936. ],
  10937. "description": "Interceptors for PHP's native phar:// stream handling",
  10938. "homepage": "https://typo3.org/",
  10939. "keywords": [
  10940. "phar",
  10941. "php",
  10942. "security",
  10943. "stream-wrapper"
  10944. ],
  10945. "time": "2019-10-18T11:59:10+00:00"
  10946. },
  10947. {
  10948. "name": "vlucas/phpdotenv",
  10949. "version": "v2.6.1",
  10950. "source": {
  10951. "type": "git",
  10952. "url": "https://github.com/vlucas/phpdotenv.git",
  10953. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  10954. },
  10955. "dist": {
  10956. "type": "zip",
  10957. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10958. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10959. "shasum": ""
  10960. },
  10961. "require": {
  10962. "php": ">=5.3.9",
  10963. "symfony/polyfill-ctype": "^1.9"
  10964. },
  10965. "require-dev": {
  10966. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10967. },
  10968. "type": "library",
  10969. "extra": {
  10970. "branch-alias": {
  10971. "dev-master": "2.6-dev"
  10972. }
  10973. },
  10974. "autoload": {
  10975. "psr-4": {
  10976. "Dotenv\\": "src/"
  10977. }
  10978. },
  10979. "notification-url": "https://packagist.org/downloads/",
  10980. "license": [
  10981. "BSD-3-Clause"
  10982. ],
  10983. "authors": [
  10984. {
  10985. "name": "Vance Lucas",
  10986. "email": "vance@vancelucas.com",
  10987. "homepage": "http://www.vancelucas.com"
  10988. }
  10989. ],
  10990. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10991. "keywords": [
  10992. "dotenv",
  10993. "env",
  10994. "environment"
  10995. ],
  10996. "time": "2019-01-29T11:11:52+00:00"
  10997. },
  10998. {
  10999. "name": "webflo/drupal-core-require-dev",
  11000. "version": "8.7.0",
  11001. "source": {
  11002. "type": "git",
  11003. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11004. "reference": "dc2bd5de993e2634fb8e0a33505e02c0f25f5271"
  11005. },
  11006. "dist": {
  11007. "type": "zip",
  11008. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/dc2bd5de993e2634fb8e0a33505e02c0f25f5271",
  11009. "reference": "dc2bd5de993e2634fb8e0a33505e02c0f25f5271",
  11010. "shasum": ""
  11011. },
  11012. "require": {
  11013. "behat/mink": "1.7.x-dev",
  11014. "behat/mink-goutte-driver": "^1.2",
  11015. "behat/mink-selenium2-driver": "1.3.x-dev",
  11016. "drupal/coder": "^8.3.1",
  11017. "drupal/core": "8.7.0",
  11018. "jcalderonzumba/gastonjs": "^1.0.2",
  11019. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11020. "justinrainbow/json-schema": "^5.2",
  11021. "mikey179/vfsstream": "^1.2",
  11022. "phpspec/prophecy": "^1.7",
  11023. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11024. "symfony/css-selector": "^3.4.0",
  11025. "symfony/debug": "^3.4.0",
  11026. "symfony/phpunit-bridge": "^3.4.3"
  11027. },
  11028. "type": "metapackage",
  11029. "notification-url": "https://packagist.org/downloads/",
  11030. "license": [
  11031. "GPL-2.0-or-later"
  11032. ],
  11033. "description": "require-dev dependencies from drupal/core",
  11034. "time": "2019-05-02T01:08:54+00:00"
  11035. },
  11036. {
  11037. "name": "webflo/drupal-core-strict",
  11038. "version": "8.0.0-beta15",
  11039. "source": {
  11040. "type": "git",
  11041. "url": "https://github.com/webflo/drupal-core-strict.git",
  11042. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  11043. },
  11044. "dist": {
  11045. "type": "zip",
  11046. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  11047. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  11048. "shasum": ""
  11049. },
  11050. "type": "metapackage",
  11051. "notification-url": "https://packagist.org/downloads/",
  11052. "license": [
  11053. "GPL-2.0-or-later"
  11054. ],
  11055. "description": "Locked core dependencies",
  11056. "time": "2018-01-30T18:48:19+00:00"
  11057. },
  11058. {
  11059. "name": "webflo/drupal-finder",
  11060. "version": "1.2.0",
  11061. "source": {
  11062. "type": "git",
  11063. "url": "https://github.com/webflo/drupal-finder.git",
  11064. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  11065. },
  11066. "dist": {
  11067. "type": "zip",
  11068. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11069. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11070. "shasum": ""
  11071. },
  11072. "require": {
  11073. "ext-json": "*"
  11074. },
  11075. "require-dev": {
  11076. "mikey179/vfsstream": "^1.6",
  11077. "phpunit/phpunit": "^4.8"
  11078. },
  11079. "type": "library",
  11080. "autoload": {
  11081. "classmap": [
  11082. "src/DrupalFinder.php"
  11083. ]
  11084. },
  11085. "notification-url": "https://packagist.org/downloads/",
  11086. "license": [
  11087. "GPL-2.0+"
  11088. ],
  11089. "authors": [
  11090. {
  11091. "name": "Florian Weber",
  11092. "email": "florian@webflo.org"
  11093. }
  11094. ],
  11095. "description": "Helper class to locate a Drupal installation from a given path.",
  11096. "time": "2019-08-02T08:06:18+00:00"
  11097. },
  11098. {
  11099. "name": "webmozart/assert",
  11100. "version": "1.5.0",
  11101. "source": {
  11102. "type": "git",
  11103. "url": "https://github.com/webmozart/assert.git",
  11104. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  11105. },
  11106. "dist": {
  11107. "type": "zip",
  11108. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  11109. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  11110. "shasum": ""
  11111. },
  11112. "require": {
  11113. "php": "^5.3.3 || ^7.0",
  11114. "symfony/polyfill-ctype": "^1.8"
  11115. },
  11116. "require-dev": {
  11117. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11118. },
  11119. "type": "library",
  11120. "extra": {
  11121. "branch-alias": {
  11122. "dev-master": "1.3-dev"
  11123. }
  11124. },
  11125. "autoload": {
  11126. "psr-4": {
  11127. "Webmozart\\Assert\\": "src/"
  11128. }
  11129. },
  11130. "notification-url": "https://packagist.org/downloads/",
  11131. "license": [
  11132. "MIT"
  11133. ],
  11134. "authors": [
  11135. {
  11136. "name": "Bernhard Schussek",
  11137. "email": "bschussek@gmail.com"
  11138. }
  11139. ],
  11140. "description": "Assertions to validate method input/output with nice error messages.",
  11141. "keywords": [
  11142. "assert",
  11143. "check",
  11144. "validate"
  11145. ],
  11146. "time": "2019-08-24T08:43:50+00:00"
  11147. },
  11148. {
  11149. "name": "webmozart/path-util",
  11150. "version": "2.3.0",
  11151. "source": {
  11152. "type": "git",
  11153. "url": "https://github.com/webmozart/path-util.git",
  11154. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  11155. },
  11156. "dist": {
  11157. "type": "zip",
  11158. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11159. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11160. "shasum": ""
  11161. },
  11162. "require": {
  11163. "php": ">=5.3.3",
  11164. "webmozart/assert": "~1.0"
  11165. },
  11166. "require-dev": {
  11167. "phpunit/phpunit": "^4.6",
  11168. "sebastian/version": "^1.0.1"
  11169. },
  11170. "type": "library",
  11171. "extra": {
  11172. "branch-alias": {
  11173. "dev-master": "2.3-dev"
  11174. }
  11175. },
  11176. "autoload": {
  11177. "psr-4": {
  11178. "Webmozart\\PathUtil\\": "src/"
  11179. }
  11180. },
  11181. "notification-url": "https://packagist.org/downloads/",
  11182. "license": [
  11183. "MIT"
  11184. ],
  11185. "authors": [
  11186. {
  11187. "name": "Bernhard Schussek",
  11188. "email": "bschussek@gmail.com"
  11189. }
  11190. ],
  11191. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  11192. "time": "2015-12-17T08:42:14+00:00"
  11193. },
  11194. {
  11195. "name": "zaporylie/composer-drupal-optimizations",
  11196. "version": "1.1.1",
  11197. "source": {
  11198. "type": "git",
  11199. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  11200. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  11201. },
  11202. "dist": {
  11203. "type": "zip",
  11204. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  11205. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  11206. "shasum": ""
  11207. },
  11208. "require": {
  11209. "composer-plugin-api": "^1.1"
  11210. },
  11211. "require-dev": {
  11212. "composer/composer": "^1.6",
  11213. "phpunit/phpunit": "^6"
  11214. },
  11215. "type": "composer-plugin",
  11216. "extra": {
  11217. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  11218. },
  11219. "autoload": {
  11220. "psr-4": {
  11221. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  11222. }
  11223. },
  11224. "notification-url": "https://packagist.org/downloads/",
  11225. "license": [
  11226. "GPL-2.0-or-later"
  11227. ],
  11228. "authors": [
  11229. {
  11230. "name": "Jakub Piasecki",
  11231. "email": "jakub@piaseccy.pl"
  11232. }
  11233. ],
  11234. "description": "Composer plugin to improve composer performance for Drupal projects",
  11235. "time": "2019-10-02T17:01:11+00:00"
  11236. },
  11237. {
  11238. "name": "zendframework/zend-diactoros",
  11239. "version": "1.8.7",
  11240. "source": {
  11241. "type": "git",
  11242. "url": "https://github.com/zendframework/zend-diactoros.git",
  11243. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  11244. },
  11245. "dist": {
  11246. "type": "zip",
  11247. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11248. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11249. "shasum": ""
  11250. },
  11251. "require": {
  11252. "php": "^5.6 || ^7.0",
  11253. "psr/http-message": "^1.0"
  11254. },
  11255. "provide": {
  11256. "psr/http-message-implementation": "1.0"
  11257. },
  11258. "require-dev": {
  11259. "ext-dom": "*",
  11260. "ext-libxml": "*",
  11261. "php-http/psr7-integration-tests": "dev-master",
  11262. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  11263. "zendframework/zend-coding-standard": "~1.0"
  11264. },
  11265. "type": "library",
  11266. "extra": {
  11267. "branch-alias": {
  11268. "dev-release-1.8": "1.8.x-dev"
  11269. }
  11270. },
  11271. "autoload": {
  11272. "files": [
  11273. "src/functions/create_uploaded_file.php",
  11274. "src/functions/marshal_headers_from_sapi.php",
  11275. "src/functions/marshal_method_from_sapi.php",
  11276. "src/functions/marshal_protocol_version_from_sapi.php",
  11277. "src/functions/marshal_uri_from_sapi.php",
  11278. "src/functions/normalize_server.php",
  11279. "src/functions/normalize_uploaded_files.php",
  11280. "src/functions/parse_cookie_header.php"
  11281. ],
  11282. "psr-4": {
  11283. "Zend\\Diactoros\\": "src/"
  11284. }
  11285. },
  11286. "notification-url": "https://packagist.org/downloads/",
  11287. "license": [
  11288. "BSD-2-Clause"
  11289. ],
  11290. "description": "PSR HTTP Message implementations",
  11291. "homepage": "https://github.com/zendframework/zend-diactoros",
  11292. "keywords": [
  11293. "http",
  11294. "psr",
  11295. "psr-7"
  11296. ],
  11297. "time": "2019-08-06T17:53:53+00:00"
  11298. },
  11299. {
  11300. "name": "zendframework/zend-escaper",
  11301. "version": "2.6.1",
  11302. "source": {
  11303. "type": "git",
  11304. "url": "https://github.com/zendframework/zend-escaper.git",
  11305. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  11306. },
  11307. "dist": {
  11308. "type": "zip",
  11309. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11310. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11311. "shasum": ""
  11312. },
  11313. "require": {
  11314. "php": "^5.6 || ^7.0"
  11315. },
  11316. "require-dev": {
  11317. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11318. "zendframework/zend-coding-standard": "~1.0.0"
  11319. },
  11320. "type": "library",
  11321. "extra": {
  11322. "branch-alias": {
  11323. "dev-master": "2.6.x-dev",
  11324. "dev-develop": "2.7.x-dev"
  11325. }
  11326. },
  11327. "autoload": {
  11328. "psr-4": {
  11329. "Zend\\Escaper\\": "src/"
  11330. }
  11331. },
  11332. "notification-url": "https://packagist.org/downloads/",
  11333. "license": [
  11334. "BSD-3-Clause"
  11335. ],
  11336. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  11337. "keywords": [
  11338. "ZendFramework",
  11339. "escaper",
  11340. "zf"
  11341. ],
  11342. "time": "2019-09-05T20:03:20+00:00"
  11343. },
  11344. {
  11345. "name": "zendframework/zend-feed",
  11346. "version": "2.12.0",
  11347. "source": {
  11348. "type": "git",
  11349. "url": "https://github.com/zendframework/zend-feed.git",
  11350. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  11351. },
  11352. "dist": {
  11353. "type": "zip",
  11354. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  11355. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  11356. "shasum": ""
  11357. },
  11358. "require": {
  11359. "ext-dom": "*",
  11360. "ext-libxml": "*",
  11361. "php": "^5.6 || ^7.0",
  11362. "zendframework/zend-escaper": "^2.5.2",
  11363. "zendframework/zend-stdlib": "^3.2.1"
  11364. },
  11365. "require-dev": {
  11366. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  11367. "psr/http-message": "^1.0.1",
  11368. "zendframework/zend-cache": "^2.7.2",
  11369. "zendframework/zend-coding-standard": "~1.0.0",
  11370. "zendframework/zend-db": "^2.8.2",
  11371. "zendframework/zend-http": "^2.7",
  11372. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  11373. "zendframework/zend-validator": "^2.10.1"
  11374. },
  11375. "suggest": {
  11376. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11377. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11378. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11379. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11380. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11381. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  11382. },
  11383. "type": "library",
  11384. "extra": {
  11385. "branch-alias": {
  11386. "dev-master": "2.12.x-dev",
  11387. "dev-develop": "2.13.x-dev"
  11388. }
  11389. },
  11390. "autoload": {
  11391. "psr-4": {
  11392. "Zend\\Feed\\": "src/"
  11393. }
  11394. },
  11395. "notification-url": "https://packagist.org/downloads/",
  11396. "license": [
  11397. "BSD-3-Clause"
  11398. ],
  11399. "description": "provides functionality for consuming RSS and Atom feeds",
  11400. "keywords": [
  11401. "ZendFramework",
  11402. "feed",
  11403. "zf"
  11404. ],
  11405. "time": "2019-03-05T20:08:49+00:00"
  11406. },
  11407. {
  11408. "name": "zendframework/zend-stdlib",
  11409. "version": "3.2.1",
  11410. "source": {
  11411. "type": "git",
  11412. "url": "https://github.com/zendframework/zend-stdlib.git",
  11413. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  11414. },
  11415. "dist": {
  11416. "type": "zip",
  11417. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11418. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11419. "shasum": ""
  11420. },
  11421. "require": {
  11422. "php": "^5.6 || ^7.0"
  11423. },
  11424. "require-dev": {
  11425. "phpbench/phpbench": "^0.13",
  11426. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11427. "zendframework/zend-coding-standard": "~1.0.0"
  11428. },
  11429. "type": "library",
  11430. "extra": {
  11431. "branch-alias": {
  11432. "dev-master": "3.2.x-dev",
  11433. "dev-develop": "3.3.x-dev"
  11434. }
  11435. },
  11436. "autoload": {
  11437. "psr-4": {
  11438. "Zend\\Stdlib\\": "src/"
  11439. }
  11440. },
  11441. "notification-url": "https://packagist.org/downloads/",
  11442. "license": [
  11443. "BSD-3-Clause"
  11444. ],
  11445. "description": "SPL extensions, array utilities, error handlers, and more",
  11446. "keywords": [
  11447. "ZendFramework",
  11448. "stdlib",
  11449. "zf"
  11450. ],
  11451. "time": "2018-08-28T21:34:05+00:00"
  11452. }
  11453. ],
  11454. "packages-dev": [],
  11455. "aliases": [],
  11456. "minimum-stability": "dev",
  11457. "stability-flags": {
  11458. "drupal/bulkdelete": 20,
  11459. "drupal/domain_menu_access": 20,
  11460. "drupal/filefield_sources": 20,
  11461. "drupal/filter_perms": 20,
  11462. "drupal/maillog": 20,
  11463. "drupal/path_alias_xt": 20,
  11464. "drupal/synonyms": 20,
  11465. "drupal/toolbar_themes": 20,
  11466. "drupal/workflow": 20
  11467. },
  11468. "prefer-stable": true,
  11469. "prefer-lowest": false,
  11470. "platform": {
  11471. "php": ">=5.6"
  11472. },
  11473. "platform-dev": []
  11474. }