composer.lock 280 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858
  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": "022d72f0e3ad77df10b459fb0c8c90a7",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  20. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "ext-mbstring": "*",
  26. "php": ">=5.5",
  27. "symfony/filesystem": "^2.0.5|^3.0",
  28. "symfony/process": "^2.1|^3.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"
  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": "2016-11-03T16:10:31+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": "brumann/polyfill-unserialize",
  127. "version": "v1.0.3",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  131. "reference": "844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b",
  136. "reference": "844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": "^5.3|^7.0"
  141. },
  142. "type": "library",
  143. "autoload": {
  144. "psr-4": {
  145. "Brumann\\Polyfill\\": "src/"
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Denis Brumann",
  155. "email": "denis.brumann@sensiolabs.de"
  156. }
  157. ],
  158. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  159. "time": "2017-02-03T09:55:47+00:00"
  160. },
  161. {
  162. "name": "chi-teck/drupal-code-generator",
  163. "version": "1.29.1",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  167. "reference": "f1da0370113ee246cd8f6d744d4835e8d53ea61c"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/f1da0370113ee246cd8f6d744d4835e8d53ea61c",
  172. "reference": "f1da0370113ee246cd8f6d744d4835e8d53ea61c",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "ext-json": "*",
  177. "php": ">=5.5.9",
  178. "symfony/console": "^3.4 || ^4.0",
  179. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  180. "twig/twig": "^1.35"
  181. },
  182. "bin": [
  183. "bin/dcg"
  184. ],
  185. "type": "library",
  186. "extra": {
  187. "branch-alias": {
  188. "dev-master": "1.x-dev"
  189. }
  190. },
  191. "autoload": {
  192. "files": [
  193. "src/bootstrap.php"
  194. ],
  195. "psr-4": {
  196. "DrupalCodeGenerator\\": "src"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "GPL-2.0-or-later"
  202. ],
  203. "description": "Drupal code generator",
  204. "time": "2019-04-26T08:30:10+00:00"
  205. },
  206. {
  207. "name": "composer/installers",
  208. "version": "v1.6.0",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/composer/installers.git",
  212. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  217. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  218. "shasum": ""
  219. },
  220. "require": {
  221. "composer-plugin-api": "^1.0"
  222. },
  223. "replace": {
  224. "roundcube/plugin-installer": "*",
  225. "shama/baton": "*"
  226. },
  227. "require-dev": {
  228. "composer/composer": "1.0.*@dev",
  229. "phpunit/phpunit": "^4.8.36"
  230. },
  231. "type": "composer-plugin",
  232. "extra": {
  233. "class": "Composer\\Installers\\Plugin",
  234. "branch-alias": {
  235. "dev-master": "1.0-dev"
  236. }
  237. },
  238. "autoload": {
  239. "psr-4": {
  240. "Composer\\Installers\\": "src/Composer/Installers"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Kyle Robinson Young",
  250. "email": "kyle@dontkry.com",
  251. "homepage": "https://github.com/shama"
  252. }
  253. ],
  254. "description": "A multi-framework Composer library installer",
  255. "homepage": "https://composer.github.io/installers/",
  256. "keywords": [
  257. "Craft",
  258. "Dolibarr",
  259. "Eliasis",
  260. "Hurad",
  261. "ImageCMS",
  262. "Kanboard",
  263. "Lan Management System",
  264. "MODX Evo",
  265. "Mautic",
  266. "Maya",
  267. "OXID",
  268. "Plentymarkets",
  269. "Porto",
  270. "RadPHP",
  271. "SMF",
  272. "Thelia",
  273. "WolfCMS",
  274. "agl",
  275. "aimeos",
  276. "annotatecms",
  277. "attogram",
  278. "bitrix",
  279. "cakephp",
  280. "chef",
  281. "cockpit",
  282. "codeigniter",
  283. "concrete5",
  284. "croogo",
  285. "dokuwiki",
  286. "drupal",
  287. "eZ Platform",
  288. "elgg",
  289. "expressionengine",
  290. "fuelphp",
  291. "grav",
  292. "installer",
  293. "itop",
  294. "joomla",
  295. "kohana",
  296. "laravel",
  297. "lavalite",
  298. "lithium",
  299. "magento",
  300. "majima",
  301. "mako",
  302. "mediawiki",
  303. "modulework",
  304. "modx",
  305. "moodle",
  306. "osclass",
  307. "phpbb",
  308. "piwik",
  309. "ppi",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "symfony",
  318. "typo3",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "time": "2018-08-27T06:10:37+00:00"
  325. },
  326. {
  327. "name": "composer/semver",
  328. "version": "1.5.0",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/composer/semver.git",
  332. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  337. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "php": "^5.3.2 || ^7.0"
  342. },
  343. "require-dev": {
  344. "phpunit/phpunit": "^4.5 || ^5.0.5",
  345. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  346. },
  347. "type": "library",
  348. "extra": {
  349. "branch-alias": {
  350. "dev-master": "1.x-dev"
  351. }
  352. },
  353. "autoload": {
  354. "psr-4": {
  355. "Composer\\Semver\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Nils Adermann",
  365. "email": "naderman@naderman.de",
  366. "homepage": "http://www.naderman.de"
  367. },
  368. {
  369. "name": "Jordi Boggiano",
  370. "email": "j.boggiano@seld.be",
  371. "homepage": "http://seld.be"
  372. },
  373. {
  374. "name": "Rob Bast",
  375. "email": "rob.bast@gmail.com",
  376. "homepage": "http://robbast.nl"
  377. }
  378. ],
  379. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  380. "keywords": [
  381. "semantic",
  382. "semver",
  383. "validation",
  384. "versioning"
  385. ],
  386. "time": "2019-03-19T17:25:45+00:00"
  387. },
  388. {
  389. "name": "consolidation/annotated-command",
  390. "version": "2.12.0",
  391. "source": {
  392. "type": "git",
  393. "url": "https://github.com/consolidation/annotated-command.git",
  394. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  395. },
  396. "dist": {
  397. "type": "zip",
  398. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  399. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  400. "shasum": ""
  401. },
  402. "require": {
  403. "consolidation/output-formatters": "^3.4",
  404. "php": ">=5.4.5",
  405. "psr/log": "^1",
  406. "symfony/console": "^2.8|^3|^4",
  407. "symfony/event-dispatcher": "^2.5|^3|^4",
  408. "symfony/finder": "^2.5|^3|^4"
  409. },
  410. "require-dev": {
  411. "g1a/composer-test-scenarios": "^3",
  412. "php-coveralls/php-coveralls": "^1",
  413. "phpunit/phpunit": "^6",
  414. "squizlabs/php_codesniffer": "^2.7"
  415. },
  416. "type": "library",
  417. "extra": {
  418. "scenarios": {
  419. "symfony4": {
  420. "require": {
  421. "symfony/console": "^4.0"
  422. },
  423. "config": {
  424. "platform": {
  425. "php": "7.1.3"
  426. }
  427. }
  428. },
  429. "symfony2": {
  430. "require": {
  431. "symfony/console": "^2.8"
  432. },
  433. "require-dev": {
  434. "phpunit/phpunit": "^4.8.36"
  435. },
  436. "remove": [
  437. "php-coveralls/php-coveralls"
  438. ],
  439. "config": {
  440. "platform": {
  441. "php": "5.4.8"
  442. }
  443. },
  444. "scenario-options": {
  445. "create-lockfile": "false"
  446. }
  447. },
  448. "phpunit4": {
  449. "require-dev": {
  450. "phpunit/phpunit": "^4.8.36"
  451. },
  452. "remove": [
  453. "php-coveralls/php-coveralls"
  454. ],
  455. "config": {
  456. "platform": {
  457. "php": "5.4.8"
  458. }
  459. }
  460. }
  461. },
  462. "branch-alias": {
  463. "dev-master": "2.x-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "Consolidation\\AnnotatedCommand\\": "src"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Greg Anderson",
  478. "email": "greg.1.anderson@greenknowe.org"
  479. }
  480. ],
  481. "description": "Initialize Symfony Console commands from annotated command class methods.",
  482. "time": "2019-03-08T16:55:03+00:00"
  483. },
  484. {
  485. "name": "consolidation/config",
  486. "version": "1.2.1",
  487. "source": {
  488. "type": "git",
  489. "url": "https://github.com/consolidation/config.git",
  490. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  491. },
  492. "dist": {
  493. "type": "zip",
  494. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  495. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  496. "shasum": ""
  497. },
  498. "require": {
  499. "dflydev/dot-access-data": "^1.1.0",
  500. "grasmash/expander": "^1",
  501. "php": ">=5.4.0"
  502. },
  503. "require-dev": {
  504. "g1a/composer-test-scenarios": "^3",
  505. "php-coveralls/php-coveralls": "^1",
  506. "phpunit/phpunit": "^5",
  507. "squizlabs/php_codesniffer": "2.*",
  508. "symfony/console": "^2.5|^3|^4",
  509. "symfony/yaml": "^2.8.11|^3|^4"
  510. },
  511. "suggest": {
  512. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  513. },
  514. "type": "library",
  515. "extra": {
  516. "scenarios": {
  517. "symfony4": {
  518. "require-dev": {
  519. "symfony/console": "^4.0"
  520. },
  521. "config": {
  522. "platform": {
  523. "php": "7.1.3"
  524. }
  525. }
  526. },
  527. "symfony2": {
  528. "require-dev": {
  529. "symfony/console": "^2.8",
  530. "symfony/event-dispatcher": "^2.8",
  531. "phpunit/phpunit": "^4.8.36"
  532. },
  533. "remove": [
  534. "php-coveralls/php-coveralls"
  535. ],
  536. "config": {
  537. "platform": {
  538. "php": "5.4.8"
  539. }
  540. }
  541. }
  542. },
  543. "branch-alias": {
  544. "dev-master": "1.x-dev"
  545. }
  546. },
  547. "autoload": {
  548. "psr-4": {
  549. "Consolidation\\Config\\": "src"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Greg Anderson",
  559. "email": "greg.1.anderson@greenknowe.org"
  560. }
  561. ],
  562. "description": "Provide configuration services for a commandline tool.",
  563. "time": "2019-03-03T19:37:04+00:00"
  564. },
  565. {
  566. "name": "consolidation/filter-via-dot-access-data",
  567. "version": "1.0.0",
  568. "source": {
  569. "type": "git",
  570. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  571. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  572. },
  573. "dist": {
  574. "type": "zip",
  575. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  576. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  577. "shasum": ""
  578. },
  579. "require": {
  580. "dflydev/dot-access-data": "^1.1.0",
  581. "php": ">=5.5.0"
  582. },
  583. "require-dev": {
  584. "consolidation/robo": "^1.2.3",
  585. "g1a/composer-test-scenarios": "^3",
  586. "knplabs/github-api": "^2.7",
  587. "php-coveralls/php-coveralls": "^1",
  588. "php-http/guzzle6-adapter": "^1.1",
  589. "phpunit/phpunit": "^5",
  590. "squizlabs/php_codesniffer": "^2.8",
  591. "symfony/console": "^2.8|^3|^4"
  592. },
  593. "type": "library",
  594. "extra": {
  595. "scenarios": {
  596. "phpunit5": {
  597. "require-dev": {
  598. "phpunit/phpunit": "^5.7.27"
  599. },
  600. "remove": [
  601. "php-coveralls/php-coveralls"
  602. ],
  603. "config": {
  604. "platform": {
  605. "php": "5.6.33"
  606. }
  607. }
  608. }
  609. },
  610. "branch-alias": {
  611. "dev-master": "1.x-dev"
  612. }
  613. },
  614. "autoload": {
  615. "psr-4": {
  616. "Consolidation\\Filter\\": "src"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "MIT"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Greg Anderson",
  626. "email": "greg.1.anderson@greenknowe.org"
  627. }
  628. ],
  629. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  630. "time": "2019-01-18T06:05:07+00:00"
  631. },
  632. {
  633. "name": "consolidation/log",
  634. "version": "1.1.1",
  635. "source": {
  636. "type": "git",
  637. "url": "https://github.com/consolidation/log.git",
  638. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  639. },
  640. "dist": {
  641. "type": "zip",
  642. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  643. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  644. "shasum": ""
  645. },
  646. "require": {
  647. "php": ">=5.4.5",
  648. "psr/log": "^1.0",
  649. "symfony/console": "^2.8|^3|^4"
  650. },
  651. "require-dev": {
  652. "g1a/composer-test-scenarios": "^3",
  653. "php-coveralls/php-coveralls": "^1",
  654. "phpunit/phpunit": "^6",
  655. "squizlabs/php_codesniffer": "^2"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "scenarios": {
  660. "symfony4": {
  661. "require": {
  662. "symfony/console": "^4.0"
  663. },
  664. "config": {
  665. "platform": {
  666. "php": "7.1.3"
  667. }
  668. }
  669. },
  670. "symfony2": {
  671. "require": {
  672. "symfony/console": "^2.8"
  673. },
  674. "require-dev": {
  675. "phpunit/phpunit": "^4.8.36"
  676. },
  677. "remove": [
  678. "php-coveralls/php-coveralls"
  679. ],
  680. "config": {
  681. "platform": {
  682. "php": "5.4.8"
  683. }
  684. }
  685. },
  686. "phpunit4": {
  687. "require-dev": {
  688. "phpunit/phpunit": "^4.8.36"
  689. },
  690. "remove": [
  691. "php-coveralls/php-coveralls"
  692. ],
  693. "config": {
  694. "platform": {
  695. "php": "5.4.8"
  696. }
  697. }
  698. }
  699. },
  700. "branch-alias": {
  701. "dev-master": "1.x-dev"
  702. }
  703. },
  704. "autoload": {
  705. "psr-4": {
  706. "Consolidation\\Log\\": "src"
  707. }
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "Greg Anderson",
  716. "email": "greg.1.anderson@greenknowe.org"
  717. }
  718. ],
  719. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  720. "time": "2019-01-01T17:30:51+00:00"
  721. },
  722. {
  723. "name": "consolidation/output-formatters",
  724. "version": "3.4.1",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/consolidation/output-formatters.git",
  728. "reference": "0881112642ad9059071f13f397f571035b527cb9"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0881112642ad9059071f13f397f571035b527cb9",
  733. "reference": "0881112642ad9059071f13f397f571035b527cb9",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "dflydev/dot-access-data": "^1.1.0",
  738. "php": ">=5.4.0",
  739. "symfony/console": "^2.8|^3|^4",
  740. "symfony/finder": "^2.5|^3|^4"
  741. },
  742. "require-dev": {
  743. "g1a/composer-test-scenarios": "^3",
  744. "php-coveralls/php-coveralls": "^1",
  745. "phpunit/phpunit": "^5.7.27",
  746. "squizlabs/php_codesniffer": "^2.7",
  747. "symfony/var-dumper": "^2.8|^3|^4",
  748. "victorjonsson/markdowndocs": "^1.3"
  749. },
  750. "suggest": {
  751. "symfony/var-dumper": "For using the var_dump formatter"
  752. },
  753. "type": "library",
  754. "extra": {
  755. "scenarios": {
  756. "symfony4": {
  757. "require": {
  758. "symfony/console": "^4.0"
  759. },
  760. "require-dev": {
  761. "phpunit/phpunit": "^6"
  762. },
  763. "config": {
  764. "platform": {
  765. "php": "7.1.3"
  766. }
  767. }
  768. },
  769. "symfony3": {
  770. "require": {
  771. "symfony/console": "^3.4",
  772. "symfony/finder": "^3.4",
  773. "symfony/var-dumper": "^3.4"
  774. },
  775. "config": {
  776. "platform": {
  777. "php": "5.6.32"
  778. }
  779. }
  780. },
  781. "symfony2": {
  782. "require": {
  783. "symfony/console": "^2.8"
  784. },
  785. "require-dev": {
  786. "phpunit/phpunit": "^4.8.36"
  787. },
  788. "remove": [
  789. "php-coveralls/php-coveralls"
  790. ],
  791. "config": {
  792. "platform": {
  793. "php": "5.4.8"
  794. }
  795. },
  796. "scenario-options": {
  797. "create-lockfile": "false"
  798. }
  799. }
  800. },
  801. "branch-alias": {
  802. "dev-master": "3.x-dev"
  803. }
  804. },
  805. "autoload": {
  806. "psr-4": {
  807. "Consolidation\\OutputFormatters\\": "src"
  808. }
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "Greg Anderson",
  817. "email": "greg.1.anderson@greenknowe.org"
  818. }
  819. ],
  820. "description": "Format text by applying transformations provided by plug-in formatters.",
  821. "time": "2019-03-14T03:45:44+00:00"
  822. },
  823. {
  824. "name": "consolidation/robo",
  825. "version": "1.4.9",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/consolidation/Robo.git",
  829. "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345",
  834. "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "consolidation/annotated-command": "^2.10.2",
  839. "consolidation/config": "^1.2",
  840. "consolidation/log": "~1",
  841. "consolidation/output-formatters": "^3.1.13",
  842. "consolidation/self-update": "^1",
  843. "grasmash/yaml-expander": "^1.3",
  844. "league/container": "^2.2",
  845. "php": ">=5.5.0",
  846. "symfony/console": "^2.8|^3|^4",
  847. "symfony/event-dispatcher": "^2.5|^3|^4",
  848. "symfony/filesystem": "^2.5|^3|^4",
  849. "symfony/finder": "^2.5|^3|^4",
  850. "symfony/process": "^2.5|^3|^4"
  851. },
  852. "replace": {
  853. "codegyre/robo": "< 1.0"
  854. },
  855. "require-dev": {
  856. "codeception/aspect-mock": "^1|^2.1.1",
  857. "codeception/base": "^2.3.7",
  858. "codeception/verify": "^0.3.2",
  859. "g1a/composer-test-scenarios": "^3",
  860. "goaop/framework": "~2.1.2",
  861. "goaop/parser-reflection": "^1.1.0",
  862. "natxet/cssmin": "3.0.4",
  863. "nikic/php-parser": "^3.1.5",
  864. "patchwork/jsqueeze": "~2",
  865. "pear/archive_tar": "^1.4.4",
  866. "php-coveralls/php-coveralls": "^1",
  867. "phpunit/php-code-coverage": "~2|~4",
  868. "squizlabs/php_codesniffer": "^2.8"
  869. },
  870. "suggest": {
  871. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  872. "natxet/CssMin": "For minifying CSS files in taskMinify",
  873. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  874. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  875. },
  876. "bin": [
  877. "robo"
  878. ],
  879. "type": "library",
  880. "extra": {
  881. "scenarios": {
  882. "symfony4": {
  883. "require": {
  884. "symfony/console": "^4"
  885. },
  886. "config": {
  887. "platform": {
  888. "php": "7.1.3"
  889. }
  890. }
  891. },
  892. "symfony2": {
  893. "require": {
  894. "symfony/console": "^2.8"
  895. },
  896. "remove": [
  897. "goaop/framework"
  898. ],
  899. "config": {
  900. "platform": {
  901. "php": "5.5.9"
  902. }
  903. },
  904. "scenario-options": {
  905. "create-lockfile": "false"
  906. }
  907. }
  908. },
  909. "branch-alias": {
  910. "dev-master": "2.x-dev"
  911. }
  912. },
  913. "autoload": {
  914. "psr-4": {
  915. "Robo\\": "src"
  916. }
  917. },
  918. "notification-url": "https://packagist.org/downloads/",
  919. "license": [
  920. "MIT"
  921. ],
  922. "authors": [
  923. {
  924. "name": "Davert",
  925. "email": "davert.php@resend.cc"
  926. }
  927. ],
  928. "description": "Modern task runner",
  929. "time": "2019-03-19T18:07:19+00:00"
  930. },
  931. {
  932. "name": "consolidation/self-update",
  933. "version": "1.1.5",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/consolidation/self-update.git",
  937. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  942. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": ">=5.5.0",
  947. "symfony/console": "^2.8|^3|^4",
  948. "symfony/filesystem": "^2.5|^3|^4"
  949. },
  950. "bin": [
  951. "scripts/release"
  952. ],
  953. "type": "library",
  954. "extra": {
  955. "branch-alias": {
  956. "dev-master": "1.x-dev"
  957. }
  958. },
  959. "autoload": {
  960. "psr-4": {
  961. "SelfUpdate\\": "src"
  962. }
  963. },
  964. "notification-url": "https://packagist.org/downloads/",
  965. "license": [
  966. "MIT"
  967. ],
  968. "authors": [
  969. {
  970. "name": "Greg Anderson",
  971. "email": "greg.1.anderson@greenknowe.org"
  972. },
  973. {
  974. "name": "Alexander Menk",
  975. "email": "menk@mestrona.net"
  976. }
  977. ],
  978. "description": "Provides a self:update command for Symfony Console applications.",
  979. "time": "2018-10-28T01:52:03+00:00"
  980. },
  981. {
  982. "name": "consolidation/site-alias",
  983. "version": "3.0.0",
  984. "source": {
  985. "type": "git",
  986. "url": "https://github.com/consolidation/site-alias.git",
  987. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  988. },
  989. "dist": {
  990. "type": "zip",
  991. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  992. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  993. "shasum": ""
  994. },
  995. "require": {
  996. "consolidation/config": "^1.2.1",
  997. "php": ">=5.5.0"
  998. },
  999. "require-dev": {
  1000. "consolidation/robo": "^1.2.3",
  1001. "g1a/composer-test-scenarios": "^3",
  1002. "knplabs/github-api": "^2.7",
  1003. "php-coveralls/php-coveralls": "^1",
  1004. "php-http/guzzle6-adapter": "^1.1",
  1005. "phpunit/phpunit": "^6",
  1006. "squizlabs/php_codesniffer": "^2.8",
  1007. "symfony/console": "^2.8|^3|^4",
  1008. "symfony/yaml": "~2.3|^3"
  1009. },
  1010. "type": "library",
  1011. "extra": {
  1012. "scenarios": {
  1013. "phpunit5": {
  1014. "require-dev": {
  1015. "phpunit/phpunit": "^5.7.27"
  1016. },
  1017. "remove": [
  1018. "php-coveralls/php-coveralls"
  1019. ],
  1020. "config": {
  1021. "platform": {
  1022. "php": "5.6.33"
  1023. }
  1024. }
  1025. }
  1026. },
  1027. "branch-alias": {
  1028. "dev-master": "3.x-dev"
  1029. }
  1030. },
  1031. "autoload": {
  1032. "psr-4": {
  1033. "Consolidation\\SiteAlias\\": "src"
  1034. }
  1035. },
  1036. "notification-url": "https://packagist.org/downloads/",
  1037. "license": [
  1038. "MIT"
  1039. ],
  1040. "authors": [
  1041. {
  1042. "name": "Moshe Weitzman",
  1043. "email": "weitzman@tejasa.com"
  1044. },
  1045. {
  1046. "name": "Greg Anderson",
  1047. "email": "greg.1.anderson@greenknowe.org"
  1048. }
  1049. ],
  1050. "description": "Manage alias records for local and remote sites.",
  1051. "time": "2019-03-12T17:31:48+00:00"
  1052. },
  1053. {
  1054. "name": "consolidation/site-process",
  1055. "version": "2.0.2",
  1056. "source": {
  1057. "type": "git",
  1058. "url": "https://github.com/consolidation/site-process.git",
  1059. "reference": "8957b9b3f4d48c183b7b11a29089d52875442e2f"
  1060. },
  1061. "dist": {
  1062. "type": "zip",
  1063. "url": "https://api.github.com/repos/consolidation/site-process/zipball/8957b9b3f4d48c183b7b11a29089d52875442e2f",
  1064. "reference": "8957b9b3f4d48c183b7b11a29089d52875442e2f",
  1065. "shasum": ""
  1066. },
  1067. "require": {
  1068. "consolidation/config": "^1.2.1",
  1069. "consolidation/site-alias": "^3",
  1070. "php": ">=5.6.0",
  1071. "symfony/process": "^3.4"
  1072. },
  1073. "require-dev": {
  1074. "consolidation/robo": "^1.3",
  1075. "g1a/composer-test-scenarios": "^3",
  1076. "knplabs/github-api": "^2.7",
  1077. "php-coveralls/php-coveralls": "^1",
  1078. "php-http/guzzle6-adapter": "^1.1",
  1079. "phpunit/phpunit": "^6",
  1080. "squizlabs/php_codesniffer": "^2.8"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "scenarios": {
  1085. "phpunit5": {
  1086. "require-dev": {
  1087. "phpunit/phpunit": "^5.7.27"
  1088. },
  1089. "remove": [
  1090. "php-coveralls/php-coveralls"
  1091. ],
  1092. "config": {
  1093. "platform": {
  1094. "php": "5.6.33"
  1095. }
  1096. }
  1097. }
  1098. },
  1099. "branch-alias": {
  1100. "dev-master": "0.x-dev"
  1101. }
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "Consolidation\\SiteProcess\\": "src"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Moshe Weitzman",
  1115. "email": "weitzman@tejasa.com"
  1116. },
  1117. {
  1118. "name": "Greg Anderson",
  1119. "email": "greg.1.anderson@greenknowe.org"
  1120. }
  1121. ],
  1122. "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.",
  1123. "time": "2019-04-05T20:16:00+00:00"
  1124. },
  1125. {
  1126. "name": "container-interop/container-interop",
  1127. "version": "1.2.0",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/container-interop/container-interop.git",
  1131. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1136. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "psr/container": "^1.0"
  1141. },
  1142. "type": "library",
  1143. "autoload": {
  1144. "psr-4": {
  1145. "Interop\\Container\\": "src/Interop/Container/"
  1146. }
  1147. },
  1148. "notification-url": "https://packagist.org/downloads/",
  1149. "license": [
  1150. "MIT"
  1151. ],
  1152. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1153. "homepage": "https://github.com/container-interop/container-interop",
  1154. "time": "2017-02-14T19:40:03+00:00"
  1155. },
  1156. {
  1157. "name": "cweagans/composer-patches",
  1158. "version": "1.6.5",
  1159. "source": {
  1160. "type": "git",
  1161. "url": "https://github.com/cweagans/composer-patches.git",
  1162. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  1163. },
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  1167. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "composer-plugin-api": "^1.0",
  1172. "php": ">=5.3.0"
  1173. },
  1174. "require-dev": {
  1175. "composer/composer": "~1.0",
  1176. "phpunit/phpunit": "~4.6"
  1177. },
  1178. "type": "composer-plugin",
  1179. "extra": {
  1180. "class": "cweagans\\Composer\\Patches"
  1181. },
  1182. "autoload": {
  1183. "psr-4": {
  1184. "cweagans\\Composer\\": "src"
  1185. }
  1186. },
  1187. "notification-url": "https://packagist.org/downloads/",
  1188. "license": [
  1189. "BSD-3-Clause"
  1190. ],
  1191. "authors": [
  1192. {
  1193. "name": "Cameron Eagans",
  1194. "email": "me@cweagans.net"
  1195. }
  1196. ],
  1197. "description": "Provides a way to patch Composer packages.",
  1198. "time": "2018-05-11T18:00:16+00:00"
  1199. },
  1200. {
  1201. "name": "dflydev/dot-access-configuration",
  1202. "version": "v1.0.3",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1206. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1211. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "dflydev/dot-access-data": "1.*",
  1216. "dflydev/placeholder-resolver": "1.*",
  1217. "php": ">=5.3.2"
  1218. },
  1219. "require-dev": {
  1220. "symfony/yaml": "~2.1"
  1221. },
  1222. "suggest": {
  1223. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1224. },
  1225. "type": "library",
  1226. "extra": {
  1227. "branch-alias": {
  1228. "dev-master": "1.0-dev"
  1229. }
  1230. },
  1231. "autoload": {
  1232. "psr-0": {
  1233. "Dflydev\\DotAccessConfiguration": "src"
  1234. }
  1235. },
  1236. "notification-url": "https://packagist.org/downloads/",
  1237. "license": [
  1238. "MIT"
  1239. ],
  1240. "authors": [
  1241. {
  1242. "name": "Dragonfly Development Inc.",
  1243. "email": "info@dflydev.com",
  1244. "homepage": "http://dflydev.com"
  1245. },
  1246. {
  1247. "name": "Beau Simensen",
  1248. "email": "beau@dflydev.com",
  1249. "homepage": "http://beausimensen.com"
  1250. }
  1251. ],
  1252. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1253. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1254. "keywords": [
  1255. "config",
  1256. "configuration"
  1257. ],
  1258. "time": "2018-09-08T23:00:17+00:00"
  1259. },
  1260. {
  1261. "name": "dflydev/dot-access-data",
  1262. "version": "v1.1.0",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1266. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1271. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "php": ">=5.3.2"
  1276. },
  1277. "type": "library",
  1278. "extra": {
  1279. "branch-alias": {
  1280. "dev-master": "1.0-dev"
  1281. }
  1282. },
  1283. "autoload": {
  1284. "psr-0": {
  1285. "Dflydev\\DotAccessData": "src"
  1286. }
  1287. },
  1288. "notification-url": "https://packagist.org/downloads/",
  1289. "license": [
  1290. "MIT"
  1291. ],
  1292. "authors": [
  1293. {
  1294. "name": "Dragonfly Development Inc.",
  1295. "email": "info@dflydev.com",
  1296. "homepage": "http://dflydev.com"
  1297. },
  1298. {
  1299. "name": "Beau Simensen",
  1300. "email": "beau@dflydev.com",
  1301. "homepage": "http://beausimensen.com"
  1302. },
  1303. {
  1304. "name": "Carlos Frutos",
  1305. "email": "carlos@kiwing.it",
  1306. "homepage": "https://github.com/cfrutos"
  1307. }
  1308. ],
  1309. "description": "Given a deep data structure, access data by dot notation.",
  1310. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1311. "keywords": [
  1312. "access",
  1313. "data",
  1314. "dot",
  1315. "notation"
  1316. ],
  1317. "time": "2017-01-20T21:14:22+00:00"
  1318. },
  1319. {
  1320. "name": "dflydev/placeholder-resolver",
  1321. "version": "v1.0.2",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1325. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1330. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "php": ">=5.3.2"
  1335. },
  1336. "type": "library",
  1337. "extra": {
  1338. "branch-alias": {
  1339. "dev-master": "1.0-dev"
  1340. }
  1341. },
  1342. "autoload": {
  1343. "psr-0": {
  1344. "Dflydev\\PlaceholderResolver": "src"
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "Dragonfly Development Inc.",
  1354. "email": "info@dflydev.com",
  1355. "homepage": "http://dflydev.com"
  1356. },
  1357. {
  1358. "name": "Beau Simensen",
  1359. "email": "beau@dflydev.com",
  1360. "homepage": "http://beausimensen.com"
  1361. }
  1362. ],
  1363. "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.",
  1364. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1365. "keywords": [
  1366. "placeholder",
  1367. "resolver"
  1368. ],
  1369. "time": "2012-10-28T21:08:28+00:00"
  1370. },
  1371. {
  1372. "name": "dnoegel/php-xdg-base-dir",
  1373. "version": "0.1",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1377. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1382. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "php": ">=5.3.2"
  1387. },
  1388. "require-dev": {
  1389. "phpunit/phpunit": "@stable"
  1390. },
  1391. "type": "project",
  1392. "autoload": {
  1393. "psr-4": {
  1394. "XdgBaseDir\\": "src/"
  1395. }
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "description": "implementation of xdg base directory specification for php",
  1402. "time": "2014-10-24T07:27:01+00:00"
  1403. },
  1404. {
  1405. "name": "doctrine/annotations",
  1406. "version": "v1.4.0",
  1407. "source": {
  1408. "type": "git",
  1409. "url": "https://github.com/doctrine/annotations.git",
  1410. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1411. },
  1412. "dist": {
  1413. "type": "zip",
  1414. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1415. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1416. "shasum": ""
  1417. },
  1418. "require": {
  1419. "doctrine/lexer": "1.*",
  1420. "php": "^5.6 || ^7.0"
  1421. },
  1422. "require-dev": {
  1423. "doctrine/cache": "1.*",
  1424. "phpunit/phpunit": "^5.7"
  1425. },
  1426. "type": "library",
  1427. "extra": {
  1428. "branch-alias": {
  1429. "dev-master": "1.4.x-dev"
  1430. }
  1431. },
  1432. "autoload": {
  1433. "psr-4": {
  1434. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1435. }
  1436. },
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "MIT"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "Roman Borschel",
  1444. "email": "roman@code-factory.org"
  1445. },
  1446. {
  1447. "name": "Benjamin Eberlei",
  1448. "email": "kontakt@beberlei.de"
  1449. },
  1450. {
  1451. "name": "Guilherme Blanco",
  1452. "email": "guilhermeblanco@gmail.com"
  1453. },
  1454. {
  1455. "name": "Jonathan Wage",
  1456. "email": "jonwage@gmail.com"
  1457. },
  1458. {
  1459. "name": "Johannes Schmitt",
  1460. "email": "schmittjoh@gmail.com"
  1461. }
  1462. ],
  1463. "description": "Docblock Annotations Parser",
  1464. "homepage": "http://www.doctrine-project.org",
  1465. "keywords": [
  1466. "annotations",
  1467. "docblock",
  1468. "parser"
  1469. ],
  1470. "time": "2017-02-24T16:22:25+00:00"
  1471. },
  1472. {
  1473. "name": "doctrine/cache",
  1474. "version": "v1.6.2",
  1475. "source": {
  1476. "type": "git",
  1477. "url": "https://github.com/doctrine/cache.git",
  1478. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1479. },
  1480. "dist": {
  1481. "type": "zip",
  1482. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1483. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1484. "shasum": ""
  1485. },
  1486. "require": {
  1487. "php": "~5.5|~7.0"
  1488. },
  1489. "conflict": {
  1490. "doctrine/common": ">2.2,<2.4"
  1491. },
  1492. "require-dev": {
  1493. "phpunit/phpunit": "~4.8|~5.0",
  1494. "predis/predis": "~1.0",
  1495. "satooshi/php-coveralls": "~0.6"
  1496. },
  1497. "type": "library",
  1498. "extra": {
  1499. "branch-alias": {
  1500. "dev-master": "1.6.x-dev"
  1501. }
  1502. },
  1503. "autoload": {
  1504. "psr-4": {
  1505. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1506. }
  1507. },
  1508. "notification-url": "https://packagist.org/downloads/",
  1509. "license": [
  1510. "MIT"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Roman Borschel",
  1515. "email": "roman@code-factory.org"
  1516. },
  1517. {
  1518. "name": "Benjamin Eberlei",
  1519. "email": "kontakt@beberlei.de"
  1520. },
  1521. {
  1522. "name": "Guilherme Blanco",
  1523. "email": "guilhermeblanco@gmail.com"
  1524. },
  1525. {
  1526. "name": "Jonathan Wage",
  1527. "email": "jonwage@gmail.com"
  1528. },
  1529. {
  1530. "name": "Johannes Schmitt",
  1531. "email": "schmittjoh@gmail.com"
  1532. }
  1533. ],
  1534. "description": "Caching library offering an object-oriented API for many cache backends",
  1535. "homepage": "http://www.doctrine-project.org",
  1536. "keywords": [
  1537. "cache",
  1538. "caching"
  1539. ],
  1540. "time": "2017-07-22T12:49:21+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/collections",
  1544. "version": "v1.4.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/collections.git",
  1548. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1553. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": "^5.6 || ^7.0"
  1558. },
  1559. "require-dev": {
  1560. "doctrine/coding-standard": "~0.1@dev",
  1561. "phpunit/phpunit": "^5.7"
  1562. },
  1563. "type": "library",
  1564. "extra": {
  1565. "branch-alias": {
  1566. "dev-master": "1.3.x-dev"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-0": {
  1571. "Doctrine\\Common\\Collections\\": "lib/"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Roman Borschel",
  1581. "email": "roman@code-factory.org"
  1582. },
  1583. {
  1584. "name": "Benjamin Eberlei",
  1585. "email": "kontakt@beberlei.de"
  1586. },
  1587. {
  1588. "name": "Guilherme Blanco",
  1589. "email": "guilhermeblanco@gmail.com"
  1590. },
  1591. {
  1592. "name": "Jonathan Wage",
  1593. "email": "jonwage@gmail.com"
  1594. },
  1595. {
  1596. "name": "Johannes Schmitt",
  1597. "email": "schmittjoh@gmail.com"
  1598. }
  1599. ],
  1600. "description": "Collections Abstraction library",
  1601. "homepage": "http://www.doctrine-project.org",
  1602. "keywords": [
  1603. "array",
  1604. "collections",
  1605. "iterator"
  1606. ],
  1607. "time": "2017-01-03T10:49:41+00:00"
  1608. },
  1609. {
  1610. "name": "doctrine/common",
  1611. "version": "v2.7.3",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/doctrine/common.git",
  1615. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1620. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "doctrine/annotations": "1.*",
  1625. "doctrine/cache": "1.*",
  1626. "doctrine/collections": "1.*",
  1627. "doctrine/inflector": "1.*",
  1628. "doctrine/lexer": "1.*",
  1629. "php": "~5.6|~7.0"
  1630. },
  1631. "require-dev": {
  1632. "phpunit/phpunit": "^5.4.6"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "2.7.x-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-4": {
  1642. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1643. }
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Roman Borschel",
  1652. "email": "roman@code-factory.org"
  1653. },
  1654. {
  1655. "name": "Benjamin Eberlei",
  1656. "email": "kontakt@beberlei.de"
  1657. },
  1658. {
  1659. "name": "Guilherme Blanco",
  1660. "email": "guilhermeblanco@gmail.com"
  1661. },
  1662. {
  1663. "name": "Jonathan Wage",
  1664. "email": "jonwage@gmail.com"
  1665. },
  1666. {
  1667. "name": "Johannes Schmitt",
  1668. "email": "schmittjoh@gmail.com"
  1669. }
  1670. ],
  1671. "description": "Common Library for Doctrine projects",
  1672. "homepage": "http://www.doctrine-project.org",
  1673. "keywords": [
  1674. "annotations",
  1675. "collections",
  1676. "eventmanager",
  1677. "persistence",
  1678. "spl"
  1679. ],
  1680. "time": "2017-07-22T08:35:12+00:00"
  1681. },
  1682. {
  1683. "name": "doctrine/inflector",
  1684. "version": "v1.2.0",
  1685. "source": {
  1686. "type": "git",
  1687. "url": "https://github.com/doctrine/inflector.git",
  1688. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1689. },
  1690. "dist": {
  1691. "type": "zip",
  1692. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1693. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1694. "shasum": ""
  1695. },
  1696. "require": {
  1697. "php": "^7.0"
  1698. },
  1699. "require-dev": {
  1700. "phpunit/phpunit": "^6.2"
  1701. },
  1702. "type": "library",
  1703. "extra": {
  1704. "branch-alias": {
  1705. "dev-master": "1.2.x-dev"
  1706. }
  1707. },
  1708. "autoload": {
  1709. "psr-4": {
  1710. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1711. }
  1712. },
  1713. "notification-url": "https://packagist.org/downloads/",
  1714. "license": [
  1715. "MIT"
  1716. ],
  1717. "authors": [
  1718. {
  1719. "name": "Roman Borschel",
  1720. "email": "roman@code-factory.org"
  1721. },
  1722. {
  1723. "name": "Benjamin Eberlei",
  1724. "email": "kontakt@beberlei.de"
  1725. },
  1726. {
  1727. "name": "Guilherme Blanco",
  1728. "email": "guilhermeblanco@gmail.com"
  1729. },
  1730. {
  1731. "name": "Jonathan Wage",
  1732. "email": "jonwage@gmail.com"
  1733. },
  1734. {
  1735. "name": "Johannes Schmitt",
  1736. "email": "schmittjoh@gmail.com"
  1737. }
  1738. ],
  1739. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1740. "homepage": "http://www.doctrine-project.org",
  1741. "keywords": [
  1742. "inflection",
  1743. "pluralize",
  1744. "singularize",
  1745. "string"
  1746. ],
  1747. "time": "2017-07-22T12:18:28+00:00"
  1748. },
  1749. {
  1750. "name": "doctrine/lexer",
  1751. "version": "v1.0.1",
  1752. "source": {
  1753. "type": "git",
  1754. "url": "https://github.com/doctrine/lexer.git",
  1755. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1756. },
  1757. "dist": {
  1758. "type": "zip",
  1759. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1760. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1761. "shasum": ""
  1762. },
  1763. "require": {
  1764. "php": ">=5.3.2"
  1765. },
  1766. "type": "library",
  1767. "extra": {
  1768. "branch-alias": {
  1769. "dev-master": "1.0.x-dev"
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-0": {
  1774. "Doctrine\\Common\\Lexer\\": "lib/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Roman Borschel",
  1784. "email": "roman@code-factory.org"
  1785. },
  1786. {
  1787. "name": "Guilherme Blanco",
  1788. "email": "guilhermeblanco@gmail.com"
  1789. },
  1790. {
  1791. "name": "Johannes Schmitt",
  1792. "email": "schmittjoh@gmail.com"
  1793. }
  1794. ],
  1795. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1796. "homepage": "http://www.doctrine-project.org",
  1797. "keywords": [
  1798. "lexer",
  1799. "parser"
  1800. ],
  1801. "time": "2014-09-09T13:34:57+00:00"
  1802. },
  1803. {
  1804. "name": "drupal-composer/drupal-scaffold",
  1805. "version": "2.6.1",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  1809. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  1814. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "composer-plugin-api": "^1.0.0",
  1819. "composer/semver": "^1.4",
  1820. "php": "^5.5.9|>=7.0.8"
  1821. },
  1822. "require-dev": {
  1823. "composer/composer": "dev-master",
  1824. "g1a/composer-test-scenarios": "^2.1.0",
  1825. "phpunit/phpunit": "^6",
  1826. "squizlabs/php_codesniffer": "^2.8"
  1827. },
  1828. "type": "composer-plugin",
  1829. "extra": {
  1830. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  1831. "branch-alias": {
  1832. "dev-master": "2.0.x-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "psr-4": {
  1837. "DrupalComposer\\DrupalScaffold\\": "src/"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "GPL-2.0-or-later"
  1843. ],
  1844. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  1845. "time": "2019-03-30T10:41:38+00:00"
  1846. },
  1847. {
  1848. "name": "drupal/console",
  1849. "version": "1.8.0",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://github.com/hechoendrupal/drupal-console.git",
  1853. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  1858. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  1859. "shasum": ""
  1860. },
  1861. "require": {
  1862. "alchemy/zippy": "0.4.3",
  1863. "composer/installers": "~1.0",
  1864. "doctrine/annotations": "^1.2",
  1865. "doctrine/collections": "^1.3",
  1866. "drupal/console-core": "1.8.0",
  1867. "drupal/console-extend-plugin": "~0",
  1868. "guzzlehttp/guzzle": "~6.1",
  1869. "php": "^5.5.9 || ^7.0",
  1870. "psy/psysh": "0.6.* || ~0.8",
  1871. "symfony/css-selector": "~2.8|~3.0",
  1872. "symfony/dom-crawler": "~2.8|~3.0",
  1873. "symfony/http-foundation": "~2.8|~3.0"
  1874. },
  1875. "suggest": {
  1876. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  1877. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  1878. },
  1879. "bin": [
  1880. "bin/drupal"
  1881. ],
  1882. "type": "library",
  1883. "autoload": {
  1884. "psr-4": {
  1885. "Drupal\\Console\\": "src"
  1886. }
  1887. },
  1888. "notification-url": "https://packagist.org/downloads/",
  1889. "license": [
  1890. "GPL-2.0-or-later"
  1891. ],
  1892. "authors": [
  1893. {
  1894. "name": "David Flores",
  1895. "email": "dmousex@gmail.com",
  1896. "homepage": "http://dmouse.net"
  1897. },
  1898. {
  1899. "name": "Jesus Manuel Olivas",
  1900. "email": "jesus.olivas@gmail.com",
  1901. "homepage": "http://jmolivas.com"
  1902. },
  1903. {
  1904. "name": "Eduardo Garcia",
  1905. "email": "enzo@enzolutions.com",
  1906. "homepage": "http://enzolutions.com/"
  1907. },
  1908. {
  1909. "name": "Omar Aguirre",
  1910. "email": "omersguchigu@gmail.com"
  1911. },
  1912. {
  1913. "name": "Drupal Console Contributors",
  1914. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  1915. }
  1916. ],
  1917. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  1918. "homepage": "http://drupalconsole.com/",
  1919. "keywords": [
  1920. "console",
  1921. "development",
  1922. "drupal",
  1923. "symfony"
  1924. ],
  1925. "time": "2018-03-21T20:50:16+00:00"
  1926. },
  1927. {
  1928. "name": "drupal/console-core",
  1929. "version": "1.8.0",
  1930. "source": {
  1931. "type": "git",
  1932. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  1933. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  1934. },
  1935. "dist": {
  1936. "type": "zip",
  1937. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  1938. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  1939. "shasum": ""
  1940. },
  1941. "require": {
  1942. "dflydev/dot-access-configuration": "^1.0",
  1943. "drupal/console-en": "1.8.0",
  1944. "php": "^5.5.9 || ^7.0",
  1945. "stecman/symfony-console-completion": "~0.7",
  1946. "symfony/config": "~2.8|~3.0",
  1947. "symfony/console": "~2.8|~3.0",
  1948. "symfony/debug": "~2.8|~3.0",
  1949. "symfony/dependency-injection": "~2.8|~3.0",
  1950. "symfony/event-dispatcher": "~2.8|~3.0",
  1951. "symfony/filesystem": "~2.8|~3.0",
  1952. "symfony/finder": "~2.8|~3.0",
  1953. "symfony/process": "~2.8|~3.0",
  1954. "symfony/translation": "~2.8|~3.0",
  1955. "symfony/yaml": "~2.8|~3.0",
  1956. "twig/twig": "^1.23.1",
  1957. "webflo/drupal-finder": "^1.0",
  1958. "webmozart/path-util": "^2.3"
  1959. },
  1960. "type": "library",
  1961. "autoload": {
  1962. "files": [
  1963. "src/functions.php"
  1964. ],
  1965. "psr-4": {
  1966. "Drupal\\Console\\Core\\": "src"
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "GPL-2.0-or-later"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "David Flores",
  1976. "email": "dmousex@gmail.com",
  1977. "homepage": "http://dmouse.net"
  1978. },
  1979. {
  1980. "name": "Jesus Manuel Olivas",
  1981. "email": "jesus.olivas@gmail.com",
  1982. "homepage": "http://jmolivas.com"
  1983. },
  1984. {
  1985. "name": "Drupal Console Contributors",
  1986. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  1987. },
  1988. {
  1989. "name": "Eduardo Garcia",
  1990. "email": "enzo@enzolutions.com",
  1991. "homepage": "http://enzolutions.com/"
  1992. },
  1993. {
  1994. "name": "Omar Aguirre",
  1995. "email": "omersguchigu@gmail.com"
  1996. }
  1997. ],
  1998. "description": "Drupal Console Core",
  1999. "homepage": "http://drupalconsole.com/",
  2000. "keywords": [
  2001. "console",
  2002. "development",
  2003. "drupal",
  2004. "symfony"
  2005. ],
  2006. "time": "2018-03-21T19:33:23+00:00"
  2007. },
  2008. {
  2009. "name": "drupal/console-en",
  2010. "version": "1.8.0",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2014. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2019. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2020. "shasum": ""
  2021. },
  2022. "type": "drupal-console-language",
  2023. "notification-url": "https://packagist.org/downloads/",
  2024. "license": [
  2025. "GPL-2.0-or-later"
  2026. ],
  2027. "authors": [
  2028. {
  2029. "name": "David Flores",
  2030. "email": "dmousex@gmail.com",
  2031. "homepage": "http://dmouse.net"
  2032. },
  2033. {
  2034. "name": "Jesus Manuel Olivas",
  2035. "email": "jesus.olivas@gmail.com",
  2036. "homepage": "http://jmolivas.com"
  2037. },
  2038. {
  2039. "name": "Drupal Console Contributors",
  2040. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2041. },
  2042. {
  2043. "name": "Eduardo Garcia",
  2044. "email": "enzo@enzolutions.com",
  2045. "homepage": "http://enzolutions.com/"
  2046. },
  2047. {
  2048. "name": "Omar Aguirre",
  2049. "email": "omersguchigu@gmail.com"
  2050. }
  2051. ],
  2052. "description": "Drupal Console English Language",
  2053. "homepage": "http://drupalconsole.com/",
  2054. "keywords": [
  2055. "console",
  2056. "development",
  2057. "drupal",
  2058. "symfony"
  2059. ],
  2060. "time": "2018-03-21T19:16:27+00:00"
  2061. },
  2062. {
  2063. "name": "drupal/console-extend-plugin",
  2064. "version": "0.9.2",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2068. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2073. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2074. "shasum": ""
  2075. },
  2076. "require": {
  2077. "composer-plugin-api": "^1.0",
  2078. "symfony/finder": "~2.7|~3.0",
  2079. "symfony/yaml": "~2.7|~3.0"
  2080. },
  2081. "type": "composer-plugin",
  2082. "extra": {
  2083. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2084. },
  2085. "autoload": {
  2086. "psr-4": {
  2087. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2088. }
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "GPL-2.0+"
  2093. ],
  2094. "authors": [
  2095. {
  2096. "name": "Jesus Manuel Olivas",
  2097. "email": "jesus.olivas@gmail.com"
  2098. }
  2099. ],
  2100. "description": "Drupal Console Extend Plugin",
  2101. "time": "2017-07-28T17:11:54+00:00"
  2102. },
  2103. {
  2104. "name": "drupal/core",
  2105. "version": "8.6.15",
  2106. "source": {
  2107. "type": "git",
  2108. "url": "https://github.com/drupal/core.git",
  2109. "reference": "936456cdeac25c6bbd2f55b0d587239c6a81ba86"
  2110. },
  2111. "dist": {
  2112. "type": "zip",
  2113. "url": "https://api.github.com/repos/drupal/core/zipball/936456cdeac25c6bbd2f55b0d587239c6a81ba86",
  2114. "reference": "936456cdeac25c6bbd2f55b0d587239c6a81ba86",
  2115. "shasum": ""
  2116. },
  2117. "require": {
  2118. "asm89/stack-cors": "^1.1",
  2119. "composer/semver": "^1.0",
  2120. "doctrine/annotations": "^1.2",
  2121. "doctrine/common": "^2.5",
  2122. "easyrdf/easyrdf": "^0.9",
  2123. "egulias/email-validator": "^1.2",
  2124. "ext-date": "*",
  2125. "ext-dom": "*",
  2126. "ext-filter": "*",
  2127. "ext-gd": "*",
  2128. "ext-hash": "*",
  2129. "ext-json": "*",
  2130. "ext-pcre": "*",
  2131. "ext-pdo": "*",
  2132. "ext-session": "*",
  2133. "ext-simplexml": "*",
  2134. "ext-spl": "*",
  2135. "ext-tokenizer": "*",
  2136. "ext-xml": "*",
  2137. "guzzlehttp/guzzle": "^6.2.1",
  2138. "masterminds/html5": "^2.1",
  2139. "paragonie/random_compat": "^1.0|^2.0",
  2140. "php": "^5.5.9|>=7.0.8",
  2141. "stack/builder": "^1.0",
  2142. "symfony-cmf/routing": "^1.4",
  2143. "symfony/class-loader": "~3.4.0",
  2144. "symfony/console": "~3.4.0",
  2145. "symfony/dependency-injection": "~3.4.26",
  2146. "symfony/event-dispatcher": "~3.4.0",
  2147. "symfony/http-foundation": "~3.4.26",
  2148. "symfony/http-kernel": "~3.4.14",
  2149. "symfony/polyfill-iconv": "^1.0",
  2150. "symfony/process": "~3.4.0",
  2151. "symfony/psr-http-message-bridge": "^1.0",
  2152. "symfony/routing": "~3.4.0",
  2153. "symfony/serializer": "~3.4.0",
  2154. "symfony/translation": "~3.4.0",
  2155. "symfony/validator": "~3.4.0",
  2156. "symfony/yaml": "~3.4.5",
  2157. "twig/twig": "^1.38.2",
  2158. "typo3/phar-stream-wrapper": "^2.0.1",
  2159. "zendframework/zend-diactoros": "^1.1",
  2160. "zendframework/zend-feed": "^2.4"
  2161. },
  2162. "conflict": {
  2163. "drush/drush": "<8.1.10"
  2164. },
  2165. "replace": {
  2166. "drupal/action": "self.version",
  2167. "drupal/aggregator": "self.version",
  2168. "drupal/automated_cron": "self.version",
  2169. "drupal/ban": "self.version",
  2170. "drupal/bartik": "self.version",
  2171. "drupal/basic_auth": "self.version",
  2172. "drupal/big_pipe": "self.version",
  2173. "drupal/block": "self.version",
  2174. "drupal/block_content": "self.version",
  2175. "drupal/block_place": "self.version",
  2176. "drupal/book": "self.version",
  2177. "drupal/breakpoint": "self.version",
  2178. "drupal/ckeditor": "self.version",
  2179. "drupal/classy": "self.version",
  2180. "drupal/color": "self.version",
  2181. "drupal/comment": "self.version",
  2182. "drupal/config": "self.version",
  2183. "drupal/config_translation": "self.version",
  2184. "drupal/contact": "self.version",
  2185. "drupal/content_moderation": "self.version",
  2186. "drupal/content_translation": "self.version",
  2187. "drupal/contextual": "self.version",
  2188. "drupal/core-annotation": "self.version",
  2189. "drupal/core-assertion": "self.version",
  2190. "drupal/core-bridge": "self.version",
  2191. "drupal/core-class-finder": "self.version",
  2192. "drupal/core-datetime": "self.version",
  2193. "drupal/core-dependency-injection": "self.version",
  2194. "drupal/core-diff": "self.version",
  2195. "drupal/core-discovery": "self.version",
  2196. "drupal/core-event-dispatcher": "self.version",
  2197. "drupal/core-file-cache": "self.version",
  2198. "drupal/core-filesystem": "self.version",
  2199. "drupal/core-gettext": "self.version",
  2200. "drupal/core-graph": "self.version",
  2201. "drupal/core-http-foundation": "self.version",
  2202. "drupal/core-php-storage": "self.version",
  2203. "drupal/core-plugin": "self.version",
  2204. "drupal/core-proxy-builder": "self.version",
  2205. "drupal/core-render": "self.version",
  2206. "drupal/core-serialization": "self.version",
  2207. "drupal/core-transliteration": "self.version",
  2208. "drupal/core-utility": "self.version",
  2209. "drupal/core-uuid": "self.version",
  2210. "drupal/datetime": "self.version",
  2211. "drupal/datetime_range": "self.version",
  2212. "drupal/dblog": "self.version",
  2213. "drupal/dynamic_page_cache": "self.version",
  2214. "drupal/editor": "self.version",
  2215. "drupal/entity_reference": "self.version",
  2216. "drupal/field": "self.version",
  2217. "drupal/field_layout": "self.version",
  2218. "drupal/field_ui": "self.version",
  2219. "drupal/file": "self.version",
  2220. "drupal/filter": "self.version",
  2221. "drupal/forum": "self.version",
  2222. "drupal/hal": "self.version",
  2223. "drupal/help": "self.version",
  2224. "drupal/history": "self.version",
  2225. "drupal/image": "self.version",
  2226. "drupal/inline_form_errors": "self.version",
  2227. "drupal/language": "self.version",
  2228. "drupal/layout_builder": "self.version",
  2229. "drupal/layout_discovery": "self.version",
  2230. "drupal/link": "self.version",
  2231. "drupal/locale": "self.version",
  2232. "drupal/media": "self.version",
  2233. "drupal/media_library": "self.version",
  2234. "drupal/menu_link_content": "self.version",
  2235. "drupal/menu_ui": "self.version",
  2236. "drupal/migrate": "self.version",
  2237. "drupal/migrate_drupal": "self.version",
  2238. "drupal/migrate_drupal_multilingual": "self.version",
  2239. "drupal/migrate_drupal_ui": "self.version",
  2240. "drupal/minimal": "self.version",
  2241. "drupal/node": "self.version",
  2242. "drupal/options": "self.version",
  2243. "drupal/page_cache": "self.version",
  2244. "drupal/path": "self.version",
  2245. "drupal/quickedit": "self.version",
  2246. "drupal/rdf": "self.version",
  2247. "drupal/responsive_image": "self.version",
  2248. "drupal/rest": "self.version",
  2249. "drupal/search": "self.version",
  2250. "drupal/serialization": "self.version",
  2251. "drupal/settings_tray": "self.version",
  2252. "drupal/seven": "self.version",
  2253. "drupal/shortcut": "self.version",
  2254. "drupal/simpletest": "self.version",
  2255. "drupal/standard": "self.version",
  2256. "drupal/stark": "self.version",
  2257. "drupal/statistics": "self.version",
  2258. "drupal/syslog": "self.version",
  2259. "drupal/system": "self.version",
  2260. "drupal/taxonomy": "self.version",
  2261. "drupal/telephone": "self.version",
  2262. "drupal/text": "self.version",
  2263. "drupal/toolbar": "self.version",
  2264. "drupal/tour": "self.version",
  2265. "drupal/tracker": "self.version",
  2266. "drupal/update": "self.version",
  2267. "drupal/user": "self.version",
  2268. "drupal/views": "self.version",
  2269. "drupal/views_ui": "self.version",
  2270. "drupal/workflows": "self.version",
  2271. "drupal/workspaces": "self.version"
  2272. },
  2273. "require-dev": {
  2274. "behat/mink": "1.7.x-dev",
  2275. "behat/mink-goutte-driver": "^1.2",
  2276. "behat/mink-selenium2-driver": "1.3.x-dev",
  2277. "drupal/coder": "^8.2.12",
  2278. "jcalderonzumba/gastonjs": "^1.0.2",
  2279. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  2280. "mikey179/vfsstream": "^1.2",
  2281. "phpspec/prophecy": "^1.7",
  2282. "phpunit/phpunit": "^4.8.35 || ^6.5",
  2283. "symfony/css-selector": "^3.4.0",
  2284. "symfony/debug": "^3.4.0",
  2285. "symfony/phpunit-bridge": "^3.4.3"
  2286. },
  2287. "type": "drupal-core",
  2288. "extra": {
  2289. "merge-plugin": {
  2290. "require": [
  2291. "core/lib/Drupal/Component/Annotation/composer.json",
  2292. "core/lib/Drupal/Component/Assertion/composer.json",
  2293. "core/lib/Drupal/Component/Bridge/composer.json",
  2294. "core/lib/Drupal/Component/ClassFinder/composer.json",
  2295. "core/lib/Drupal/Component/Datetime/composer.json",
  2296. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  2297. "core/lib/Drupal/Component/Diff/composer.json",
  2298. "core/lib/Drupal/Component/Discovery/composer.json",
  2299. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  2300. "core/lib/Drupal/Component/FileCache/composer.json",
  2301. "core/lib/Drupal/Component/FileSystem/composer.json",
  2302. "core/lib/Drupal/Component/Gettext/composer.json",
  2303. "core/lib/Drupal/Component/Graph/composer.json",
  2304. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  2305. "core/lib/Drupal/Component/PhpStorage/composer.json",
  2306. "core/lib/Drupal/Component/Plugin/composer.json",
  2307. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  2308. "core/lib/Drupal/Component/Render/composer.json",
  2309. "core/lib/Drupal/Component/Serialization/composer.json",
  2310. "core/lib/Drupal/Component/Transliteration/composer.json",
  2311. "core/lib/Drupal/Component/Utility/composer.json",
  2312. "core/lib/Drupal/Component/Uuid/composer.json"
  2313. ],
  2314. "recurse": false,
  2315. "replace": false,
  2316. "merge-extra": false
  2317. }
  2318. },
  2319. "autoload": {
  2320. "psr-4": {
  2321. "Drupal\\Core\\": "lib/Drupal/Core",
  2322. "Drupal\\Component\\": "lib/Drupal/Component",
  2323. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  2324. },
  2325. "classmap": [
  2326. "lib/Drupal.php",
  2327. "lib/Drupal/Component/Utility/Timer.php",
  2328. "lib/Drupal/Component/Utility/Unicode.php",
  2329. "lib/Drupal/Core/Database/Database.php",
  2330. "lib/Drupal/Core/DrupalKernel.php",
  2331. "lib/Drupal/Core/DrupalKernelInterface.php",
  2332. "lib/Drupal/Core/Site/Settings.php"
  2333. ]
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "GPL-2.0-or-later"
  2338. ],
  2339. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2340. "time": "2019-04-17T20:00:11+00:00"
  2341. },
  2342. {
  2343. "name": "drush/drush",
  2344. "version": "9.6.2",
  2345. "source": {
  2346. "type": "git",
  2347. "url": "https://github.com/drush-ops/drush.git",
  2348. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80"
  2349. },
  2350. "dist": {
  2351. "type": "zip",
  2352. "url": "https://api.github.com/repos/drush-ops/drush/zipball/65d36cf542308d0b88f77c80f818a978d2844b80",
  2353. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80",
  2354. "shasum": ""
  2355. },
  2356. "require": {
  2357. "chi-teck/drupal-code-generator": "^1.28.1",
  2358. "composer/semver": "^1.4",
  2359. "consolidation/annotated-command": "^2.12",
  2360. "consolidation/config": "^1.2",
  2361. "consolidation/filter-via-dot-access-data": "^1",
  2362. "consolidation/output-formatters": "^3.3.1",
  2363. "consolidation/robo": "^1.4.6",
  2364. "consolidation/site-alias": "^3.0.0@stable",
  2365. "consolidation/site-process": "^2.0.1",
  2366. "ext-dom": "*",
  2367. "grasmash/yaml-expander": "^1.1.1",
  2368. "league/container": "~2",
  2369. "php": ">=5.6.0",
  2370. "psr/log": "~1.0",
  2371. "psy/psysh": "~0.6",
  2372. "symfony/console": "^3.4",
  2373. "symfony/event-dispatcher": "^3.4",
  2374. "symfony/finder": "^3.4 || ^4.0",
  2375. "symfony/process": "^3.4",
  2376. "symfony/var-dumper": "^3.4 || ^4.0",
  2377. "symfony/yaml": "^3.4",
  2378. "webflo/drupal-finder": "^1.1",
  2379. "webmozart/path-util": "^2.1.0"
  2380. },
  2381. "require-dev": {
  2382. "composer/installers": "^1.2",
  2383. "cweagans/composer-patches": "~1.0",
  2384. "drupal/alinks": "1.0.0",
  2385. "drupal/devel": "^2",
  2386. "drupal/empty_theme": "1.0",
  2387. "g1a/composer-test-scenarios": "^3",
  2388. "lox/xhprof": "dev-master",
  2389. "phpunit/phpunit": "^4.8.36 || ^6.1",
  2390. "squizlabs/php_codesniffer": "^2.7",
  2391. "vlucas/phpdotenv": "^2.4",
  2392. "webflo/drupal-core-strict": "8.6.x-dev"
  2393. },
  2394. "bin": [
  2395. "drush"
  2396. ],
  2397. "type": "library",
  2398. "extra": {
  2399. "installer-paths": {
  2400. "sut/core": [
  2401. "type:drupal-core"
  2402. ],
  2403. "sut/libraries/{$name}": [
  2404. "type:drupal-library"
  2405. ],
  2406. "sut/modules/unish/{$name}": [
  2407. "drupal/devel"
  2408. ],
  2409. "sut/themes/unish/{$name}": [
  2410. "drupal/empty_theme"
  2411. ],
  2412. "sut/modules/contrib/{$name}": [
  2413. "type:drupal-module"
  2414. ],
  2415. "sut/profiles/contrib/{$name}": [
  2416. "type:drupal-profile"
  2417. ],
  2418. "sut/themes/contrib/{$name}": [
  2419. "type:drupal-theme"
  2420. ],
  2421. "sut/drush/contrib/{$name}": [
  2422. "type:drupal-drush"
  2423. ]
  2424. },
  2425. "scenarios": {
  2426. "php5": {
  2427. "config": {
  2428. "platform": {
  2429. "php": "5.6.38"
  2430. }
  2431. }
  2432. }
  2433. },
  2434. "branch-alias": {
  2435. "dev-master": "9.x-dev"
  2436. }
  2437. },
  2438. "autoload": {
  2439. "psr-4": {
  2440. "Drush\\": "src/",
  2441. "Drush\\Internal\\": "src/internal-forks"
  2442. }
  2443. },
  2444. "notification-url": "https://packagist.org/downloads/",
  2445. "license": [
  2446. "GPL-2.0-or-later"
  2447. ],
  2448. "authors": [
  2449. {
  2450. "name": "Moshe Weitzman",
  2451. "email": "weitzman@tejasa.com"
  2452. },
  2453. {
  2454. "name": "Owen Barton",
  2455. "email": "drupal@owenbarton.com"
  2456. },
  2457. {
  2458. "name": "Greg Anderson",
  2459. "email": "greg.1.anderson@greenknowe.org"
  2460. },
  2461. {
  2462. "name": "Jonathan Araña Cruz",
  2463. "email": "jonhattan@faita.net"
  2464. },
  2465. {
  2466. "name": "Jonathan Hedstrom",
  2467. "email": "jhedstrom@gmail.com"
  2468. },
  2469. {
  2470. "name": "Christopher Gervais",
  2471. "email": "chris@ergonlogic.com"
  2472. },
  2473. {
  2474. "name": "Dave Reid",
  2475. "email": "dave@davereid.net"
  2476. },
  2477. {
  2478. "name": "Damian Lee",
  2479. "email": "damiankloip@googlemail.com"
  2480. }
  2481. ],
  2482. "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.",
  2483. "homepage": "http://www.drush.org",
  2484. "time": "2019-04-03T11:17:00+00:00"
  2485. },
  2486. {
  2487. "name": "easyrdf/easyrdf",
  2488. "version": "0.9.1",
  2489. "source": {
  2490. "type": "git",
  2491. "url": "https://github.com/njh/easyrdf.git",
  2492. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  2493. },
  2494. "dist": {
  2495. "type": "zip",
  2496. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  2497. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  2498. "shasum": ""
  2499. },
  2500. "require": {
  2501. "ext-mbstring": "*",
  2502. "ext-pcre": "*",
  2503. "php": ">=5.2.8"
  2504. },
  2505. "require-dev": {
  2506. "phpunit/phpunit": "~3.5",
  2507. "sami/sami": "~1.4",
  2508. "squizlabs/php_codesniffer": "~1.4.3"
  2509. },
  2510. "suggest": {
  2511. "ml/json-ld": "~1.0"
  2512. },
  2513. "type": "library",
  2514. "autoload": {
  2515. "psr-0": {
  2516. "EasyRdf_": "lib/"
  2517. }
  2518. },
  2519. "notification-url": "https://packagist.org/downloads/",
  2520. "license": [
  2521. "BSD-3-Clause"
  2522. ],
  2523. "authors": [
  2524. {
  2525. "name": "Nicholas Humfrey",
  2526. "email": "njh@aelius.com",
  2527. "homepage": "http://www.aelius.com/njh/",
  2528. "role": "Developer"
  2529. },
  2530. {
  2531. "name": "Alexey Zakhlestin",
  2532. "email": "indeyets@gmail.com",
  2533. "role": "Developer"
  2534. }
  2535. ],
  2536. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  2537. "homepage": "http://www.easyrdf.org/",
  2538. "keywords": [
  2539. "Linked Data",
  2540. "RDF",
  2541. "Semantic Web",
  2542. "Turtle",
  2543. "rdfa",
  2544. "sparql"
  2545. ],
  2546. "time": "2015-02-27T09:45:49+00:00"
  2547. },
  2548. {
  2549. "name": "egulias/email-validator",
  2550. "version": "1.2.15",
  2551. "source": {
  2552. "type": "git",
  2553. "url": "https://github.com/egulias/EmailValidator.git",
  2554. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  2555. },
  2556. "dist": {
  2557. "type": "zip",
  2558. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  2559. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  2560. "shasum": ""
  2561. },
  2562. "require": {
  2563. "doctrine/lexer": "^1.0.1",
  2564. "php": ">= 5.3.3"
  2565. },
  2566. "require-dev": {
  2567. "phpunit/phpunit": "^4.8.24"
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "2.0.x-dev"
  2573. }
  2574. },
  2575. "autoload": {
  2576. "psr-0": {
  2577. "Egulias\\": "src/"
  2578. }
  2579. },
  2580. "notification-url": "https://packagist.org/downloads/",
  2581. "license": [
  2582. "MIT"
  2583. ],
  2584. "authors": [
  2585. {
  2586. "name": "Eduardo Gulias Davis"
  2587. }
  2588. ],
  2589. "description": "A library for validating emails",
  2590. "homepage": "https://github.com/egulias/EmailValidator",
  2591. "keywords": [
  2592. "email",
  2593. "emailvalidation",
  2594. "emailvalidator",
  2595. "validation",
  2596. "validator"
  2597. ],
  2598. "time": "2018-09-25T20:59:41+00:00"
  2599. },
  2600. {
  2601. "name": "grasmash/expander",
  2602. "version": "1.0.0",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/grasmash/expander.git",
  2606. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  2611. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "dflydev/dot-access-data": "^1.1.0",
  2616. "php": ">=5.4"
  2617. },
  2618. "require-dev": {
  2619. "greg-1-anderson/composer-test-scenarios": "^1",
  2620. "phpunit/phpunit": "^4|^5.5.4",
  2621. "satooshi/php-coveralls": "^1.0.2|dev-master",
  2622. "squizlabs/php_codesniffer": "^2.7"
  2623. },
  2624. "type": "library",
  2625. "extra": {
  2626. "branch-alias": {
  2627. "dev-master": "1.x-dev"
  2628. }
  2629. },
  2630. "autoload": {
  2631. "psr-4": {
  2632. "Grasmash\\Expander\\": "src/"
  2633. }
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Matthew Grasmick"
  2642. }
  2643. ],
  2644. "description": "Expands internal property references in PHP arrays file.",
  2645. "time": "2017-12-21T22:14:55+00:00"
  2646. },
  2647. {
  2648. "name": "grasmash/yaml-expander",
  2649. "version": "1.4.0",
  2650. "source": {
  2651. "type": "git",
  2652. "url": "https://github.com/grasmash/yaml-expander.git",
  2653. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  2654. },
  2655. "dist": {
  2656. "type": "zip",
  2657. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  2658. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  2659. "shasum": ""
  2660. },
  2661. "require": {
  2662. "dflydev/dot-access-data": "^1.1.0",
  2663. "php": ">=5.4",
  2664. "symfony/yaml": "^2.8.11|^3|^4"
  2665. },
  2666. "require-dev": {
  2667. "greg-1-anderson/composer-test-scenarios": "^1",
  2668. "phpunit/phpunit": "^4.8|^5.5.4",
  2669. "satooshi/php-coveralls": "^1.0.2|dev-master",
  2670. "squizlabs/php_codesniffer": "^2.7"
  2671. },
  2672. "type": "library",
  2673. "extra": {
  2674. "branch-alias": {
  2675. "dev-master": "1.x-dev"
  2676. }
  2677. },
  2678. "autoload": {
  2679. "psr-4": {
  2680. "Grasmash\\YamlExpander\\": "src/"
  2681. }
  2682. },
  2683. "notification-url": "https://packagist.org/downloads/",
  2684. "license": [
  2685. "MIT"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "Matthew Grasmick"
  2690. }
  2691. ],
  2692. "description": "Expands internal property references in a yaml file.",
  2693. "time": "2017-12-16T16:06:03+00:00"
  2694. },
  2695. {
  2696. "name": "guzzlehttp/guzzle",
  2697. "version": "6.3.3",
  2698. "source": {
  2699. "type": "git",
  2700. "url": "https://github.com/guzzle/guzzle.git",
  2701. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  2702. },
  2703. "dist": {
  2704. "type": "zip",
  2705. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  2706. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  2707. "shasum": ""
  2708. },
  2709. "require": {
  2710. "guzzlehttp/promises": "^1.0",
  2711. "guzzlehttp/psr7": "^1.4",
  2712. "php": ">=5.5"
  2713. },
  2714. "require-dev": {
  2715. "ext-curl": "*",
  2716. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  2717. "psr/log": "^1.0"
  2718. },
  2719. "suggest": {
  2720. "psr/log": "Required for using the Log middleware"
  2721. },
  2722. "type": "library",
  2723. "extra": {
  2724. "branch-alias": {
  2725. "dev-master": "6.3-dev"
  2726. }
  2727. },
  2728. "autoload": {
  2729. "files": [
  2730. "src/functions_include.php"
  2731. ],
  2732. "psr-4": {
  2733. "GuzzleHttp\\": "src/"
  2734. }
  2735. },
  2736. "notification-url": "https://packagist.org/downloads/",
  2737. "license": [
  2738. "MIT"
  2739. ],
  2740. "authors": [
  2741. {
  2742. "name": "Michael Dowling",
  2743. "email": "mtdowling@gmail.com",
  2744. "homepage": "https://github.com/mtdowling"
  2745. }
  2746. ],
  2747. "description": "Guzzle is a PHP HTTP client library",
  2748. "homepage": "http://guzzlephp.org/",
  2749. "keywords": [
  2750. "client",
  2751. "curl",
  2752. "framework",
  2753. "http",
  2754. "http client",
  2755. "rest",
  2756. "web service"
  2757. ],
  2758. "time": "2018-04-22T15:46:56+00:00"
  2759. },
  2760. {
  2761. "name": "guzzlehttp/promises",
  2762. "version": "v1.3.1",
  2763. "source": {
  2764. "type": "git",
  2765. "url": "https://github.com/guzzle/promises.git",
  2766. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  2767. },
  2768. "dist": {
  2769. "type": "zip",
  2770. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2771. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2772. "shasum": ""
  2773. },
  2774. "require": {
  2775. "php": ">=5.5.0"
  2776. },
  2777. "require-dev": {
  2778. "phpunit/phpunit": "^4.0"
  2779. },
  2780. "type": "library",
  2781. "extra": {
  2782. "branch-alias": {
  2783. "dev-master": "1.4-dev"
  2784. }
  2785. },
  2786. "autoload": {
  2787. "psr-4": {
  2788. "GuzzleHttp\\Promise\\": "src/"
  2789. },
  2790. "files": [
  2791. "src/functions_include.php"
  2792. ]
  2793. },
  2794. "notification-url": "https://packagist.org/downloads/",
  2795. "license": [
  2796. "MIT"
  2797. ],
  2798. "authors": [
  2799. {
  2800. "name": "Michael Dowling",
  2801. "email": "mtdowling@gmail.com",
  2802. "homepage": "https://github.com/mtdowling"
  2803. }
  2804. ],
  2805. "description": "Guzzle promises library",
  2806. "keywords": [
  2807. "promise"
  2808. ],
  2809. "time": "2016-12-20T10:07:11+00:00"
  2810. },
  2811. {
  2812. "name": "guzzlehttp/psr7",
  2813. "version": "1.5.2",
  2814. "source": {
  2815. "type": "git",
  2816. "url": "https://github.com/guzzle/psr7.git",
  2817. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  2818. },
  2819. "dist": {
  2820. "type": "zip",
  2821. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  2822. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  2823. "shasum": ""
  2824. },
  2825. "require": {
  2826. "php": ">=5.4.0",
  2827. "psr/http-message": "~1.0",
  2828. "ralouphie/getallheaders": "^2.0.5"
  2829. },
  2830. "provide": {
  2831. "psr/http-message-implementation": "1.0"
  2832. },
  2833. "require-dev": {
  2834. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  2835. },
  2836. "type": "library",
  2837. "extra": {
  2838. "branch-alias": {
  2839. "dev-master": "1.5-dev"
  2840. }
  2841. },
  2842. "autoload": {
  2843. "psr-4": {
  2844. "GuzzleHttp\\Psr7\\": "src/"
  2845. },
  2846. "files": [
  2847. "src/functions_include.php"
  2848. ]
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Michael Dowling",
  2857. "email": "mtdowling@gmail.com",
  2858. "homepage": "https://github.com/mtdowling"
  2859. },
  2860. {
  2861. "name": "Tobias Schultze",
  2862. "homepage": "https://github.com/Tobion"
  2863. }
  2864. ],
  2865. "description": "PSR-7 message implementation that also provides common utility methods",
  2866. "keywords": [
  2867. "http",
  2868. "message",
  2869. "psr-7",
  2870. "request",
  2871. "response",
  2872. "stream",
  2873. "uri",
  2874. "url"
  2875. ],
  2876. "time": "2018-12-04T20:46:45+00:00"
  2877. },
  2878. {
  2879. "name": "jakub-onderka/php-console-color",
  2880. "version": "v0.2",
  2881. "source": {
  2882. "type": "git",
  2883. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  2884. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  2885. },
  2886. "dist": {
  2887. "type": "zip",
  2888. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  2889. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  2890. "shasum": ""
  2891. },
  2892. "require": {
  2893. "php": ">=5.4.0"
  2894. },
  2895. "require-dev": {
  2896. "jakub-onderka/php-code-style": "1.0",
  2897. "jakub-onderka/php-parallel-lint": "1.0",
  2898. "jakub-onderka/php-var-dump-check": "0.*",
  2899. "phpunit/phpunit": "~4.3",
  2900. "squizlabs/php_codesniffer": "1.*"
  2901. },
  2902. "type": "library",
  2903. "autoload": {
  2904. "psr-4": {
  2905. "JakubOnderka\\PhpConsoleColor\\": "src/"
  2906. }
  2907. },
  2908. "notification-url": "https://packagist.org/downloads/",
  2909. "license": [
  2910. "BSD-2-Clause"
  2911. ],
  2912. "authors": [
  2913. {
  2914. "name": "Jakub Onderka",
  2915. "email": "jakub.onderka@gmail.com"
  2916. }
  2917. ],
  2918. "time": "2018-09-29T17:23:10+00:00"
  2919. },
  2920. {
  2921. "name": "jakub-onderka/php-console-highlighter",
  2922. "version": "v0.4",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  2926. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2931. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2932. "shasum": ""
  2933. },
  2934. "require": {
  2935. "ext-tokenizer": "*",
  2936. "jakub-onderka/php-console-color": "~0.2",
  2937. "php": ">=5.4.0"
  2938. },
  2939. "require-dev": {
  2940. "jakub-onderka/php-code-style": "~1.0",
  2941. "jakub-onderka/php-parallel-lint": "~1.0",
  2942. "jakub-onderka/php-var-dump-check": "~0.1",
  2943. "phpunit/phpunit": "~4.0",
  2944. "squizlabs/php_codesniffer": "~1.5"
  2945. },
  2946. "type": "library",
  2947. "autoload": {
  2948. "psr-4": {
  2949. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  2950. }
  2951. },
  2952. "notification-url": "https://packagist.org/downloads/",
  2953. "license": [
  2954. "MIT"
  2955. ],
  2956. "authors": [
  2957. {
  2958. "name": "Jakub Onderka",
  2959. "email": "acci@acci.cz",
  2960. "homepage": "http://www.acci.cz/"
  2961. }
  2962. ],
  2963. "description": "Highlight PHP code in terminal",
  2964. "time": "2018-09-29T18:48:56+00:00"
  2965. },
  2966. {
  2967. "name": "league/container",
  2968. "version": "2.4.1",
  2969. "source": {
  2970. "type": "git",
  2971. "url": "https://github.com/thephpleague/container.git",
  2972. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  2973. },
  2974. "dist": {
  2975. "type": "zip",
  2976. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  2977. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  2978. "shasum": ""
  2979. },
  2980. "require": {
  2981. "container-interop/container-interop": "^1.2",
  2982. "php": "^5.4.0 || ^7.0"
  2983. },
  2984. "provide": {
  2985. "container-interop/container-interop-implementation": "^1.2",
  2986. "psr/container-implementation": "^1.0"
  2987. },
  2988. "replace": {
  2989. "orno/di": "~2.0"
  2990. },
  2991. "require-dev": {
  2992. "phpunit/phpunit": "4.*"
  2993. },
  2994. "type": "library",
  2995. "extra": {
  2996. "branch-alias": {
  2997. "dev-2.x": "2.x-dev",
  2998. "dev-1.x": "1.x-dev"
  2999. }
  3000. },
  3001. "autoload": {
  3002. "psr-4": {
  3003. "League\\Container\\": "src"
  3004. }
  3005. },
  3006. "notification-url": "https://packagist.org/downloads/",
  3007. "license": [
  3008. "MIT"
  3009. ],
  3010. "authors": [
  3011. {
  3012. "name": "Phil Bennett",
  3013. "email": "philipobenito@gmail.com",
  3014. "homepage": "http://www.philipobenito.com",
  3015. "role": "Developer"
  3016. }
  3017. ],
  3018. "description": "A fast and intuitive dependency injection container.",
  3019. "homepage": "https://github.com/thephpleague/container",
  3020. "keywords": [
  3021. "container",
  3022. "dependency",
  3023. "di",
  3024. "injection",
  3025. "league",
  3026. "provider",
  3027. "service"
  3028. ],
  3029. "time": "2017-05-10T09:20:27+00:00"
  3030. },
  3031. {
  3032. "name": "masterminds/html5",
  3033. "version": "2.6.0",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/Masterminds/html5-php.git",
  3037. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  3042. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  3043. "shasum": ""
  3044. },
  3045. "require": {
  3046. "ext-ctype": "*",
  3047. "ext-dom": "*",
  3048. "ext-libxml": "*",
  3049. "php": ">=5.3.0"
  3050. },
  3051. "require-dev": {
  3052. "phpunit/phpunit": "^4.8.35",
  3053. "sami/sami": "~2.0",
  3054. "satooshi/php-coveralls": "1.0.*"
  3055. },
  3056. "type": "library",
  3057. "extra": {
  3058. "branch-alias": {
  3059. "dev-master": "2.6-dev"
  3060. }
  3061. },
  3062. "autoload": {
  3063. "psr-4": {
  3064. "Masterminds\\": "src"
  3065. }
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "MIT"
  3070. ],
  3071. "authors": [
  3072. {
  3073. "name": "Matt Butcher",
  3074. "email": "technosophos@gmail.com"
  3075. },
  3076. {
  3077. "name": "Asmir Mustafic",
  3078. "email": "goetas@gmail.com"
  3079. },
  3080. {
  3081. "name": "Matt Farina",
  3082. "email": "matt@mattfarina.com"
  3083. }
  3084. ],
  3085. "description": "An HTML5 parser and serializer.",
  3086. "homepage": "http://masterminds.github.io/html5-php",
  3087. "keywords": [
  3088. "HTML5",
  3089. "dom",
  3090. "html",
  3091. "parser",
  3092. "querypath",
  3093. "serializer",
  3094. "xml"
  3095. ],
  3096. "time": "2019-03-10T11:41:28+00:00"
  3097. },
  3098. {
  3099. "name": "nikic/php-parser",
  3100. "version": "v4.2.1",
  3101. "source": {
  3102. "type": "git",
  3103. "url": "https://github.com/nikic/PHP-Parser.git",
  3104. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  3105. },
  3106. "dist": {
  3107. "type": "zip",
  3108. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  3109. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  3110. "shasum": ""
  3111. },
  3112. "require": {
  3113. "ext-tokenizer": "*",
  3114. "php": ">=7.0"
  3115. },
  3116. "require-dev": {
  3117. "phpunit/phpunit": "^6.5 || ^7.0"
  3118. },
  3119. "bin": [
  3120. "bin/php-parse"
  3121. ],
  3122. "type": "library",
  3123. "extra": {
  3124. "branch-alias": {
  3125. "dev-master": "4.2-dev"
  3126. }
  3127. },
  3128. "autoload": {
  3129. "psr-4": {
  3130. "PhpParser\\": "lib/PhpParser"
  3131. }
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "BSD-3-Clause"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Nikita Popov"
  3140. }
  3141. ],
  3142. "description": "A PHP parser written in PHP",
  3143. "keywords": [
  3144. "parser",
  3145. "php"
  3146. ],
  3147. "time": "2019-02-16T20:54:15+00:00"
  3148. },
  3149. {
  3150. "name": "paragonie/random_compat",
  3151. "version": "v2.0.18",
  3152. "source": {
  3153. "type": "git",
  3154. "url": "https://github.com/paragonie/random_compat.git",
  3155. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  3156. },
  3157. "dist": {
  3158. "type": "zip",
  3159. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  3160. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  3161. "shasum": ""
  3162. },
  3163. "require": {
  3164. "php": ">=5.2.0"
  3165. },
  3166. "require-dev": {
  3167. "phpunit/phpunit": "4.*|5.*"
  3168. },
  3169. "suggest": {
  3170. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3171. },
  3172. "type": "library",
  3173. "autoload": {
  3174. "files": [
  3175. "lib/random.php"
  3176. ]
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Paragon Initiative Enterprises",
  3185. "email": "security@paragonie.com",
  3186. "homepage": "https://paragonie.com"
  3187. }
  3188. ],
  3189. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3190. "keywords": [
  3191. "csprng",
  3192. "polyfill",
  3193. "pseudorandom",
  3194. "random"
  3195. ],
  3196. "time": "2019-01-03T20:59:08+00:00"
  3197. },
  3198. {
  3199. "name": "psr/container",
  3200. "version": "1.0.0",
  3201. "source": {
  3202. "type": "git",
  3203. "url": "https://github.com/php-fig/container.git",
  3204. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3205. },
  3206. "dist": {
  3207. "type": "zip",
  3208. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3209. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3210. "shasum": ""
  3211. },
  3212. "require": {
  3213. "php": ">=5.3.0"
  3214. },
  3215. "type": "library",
  3216. "extra": {
  3217. "branch-alias": {
  3218. "dev-master": "1.0.x-dev"
  3219. }
  3220. },
  3221. "autoload": {
  3222. "psr-4": {
  3223. "Psr\\Container\\": "src/"
  3224. }
  3225. },
  3226. "notification-url": "https://packagist.org/downloads/",
  3227. "license": [
  3228. "MIT"
  3229. ],
  3230. "authors": [
  3231. {
  3232. "name": "PHP-FIG",
  3233. "homepage": "http://www.php-fig.org/"
  3234. }
  3235. ],
  3236. "description": "Common Container Interface (PHP FIG PSR-11)",
  3237. "homepage": "https://github.com/php-fig/container",
  3238. "keywords": [
  3239. "PSR-11",
  3240. "container",
  3241. "container-interface",
  3242. "container-interop",
  3243. "psr"
  3244. ],
  3245. "time": "2017-02-14T16:28:37+00:00"
  3246. },
  3247. {
  3248. "name": "psr/http-message",
  3249. "version": "1.0.1",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/php-fig/http-message.git",
  3253. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3258. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3259. "shasum": ""
  3260. },
  3261. "require": {
  3262. "php": ">=5.3.0"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "branch-alias": {
  3267. "dev-master": "1.0.x-dev"
  3268. }
  3269. },
  3270. "autoload": {
  3271. "psr-4": {
  3272. "Psr\\Http\\Message\\": "src/"
  3273. }
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "PHP-FIG",
  3282. "homepage": "http://www.php-fig.org/"
  3283. }
  3284. ],
  3285. "description": "Common interface for HTTP messages",
  3286. "homepage": "https://github.com/php-fig/http-message",
  3287. "keywords": [
  3288. "http",
  3289. "http-message",
  3290. "psr",
  3291. "psr-7",
  3292. "request",
  3293. "response"
  3294. ],
  3295. "time": "2016-08-06T14:39:51+00:00"
  3296. },
  3297. {
  3298. "name": "psr/log",
  3299. "version": "1.1.0",
  3300. "source": {
  3301. "type": "git",
  3302. "url": "https://github.com/php-fig/log.git",
  3303. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3304. },
  3305. "dist": {
  3306. "type": "zip",
  3307. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3308. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3309. "shasum": ""
  3310. },
  3311. "require": {
  3312. "php": ">=5.3.0"
  3313. },
  3314. "type": "library",
  3315. "extra": {
  3316. "branch-alias": {
  3317. "dev-master": "1.0.x-dev"
  3318. }
  3319. },
  3320. "autoload": {
  3321. "psr-4": {
  3322. "Psr\\Log\\": "Psr/Log/"
  3323. }
  3324. },
  3325. "notification-url": "https://packagist.org/downloads/",
  3326. "license": [
  3327. "MIT"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "PHP-FIG",
  3332. "homepage": "http://www.php-fig.org/"
  3333. }
  3334. ],
  3335. "description": "Common interface for logging libraries",
  3336. "homepage": "https://github.com/php-fig/log",
  3337. "keywords": [
  3338. "log",
  3339. "psr",
  3340. "psr-3"
  3341. ],
  3342. "time": "2018-11-20T15:27:04+00:00"
  3343. },
  3344. {
  3345. "name": "psy/psysh",
  3346. "version": "v0.9.9",
  3347. "source": {
  3348. "type": "git",
  3349. "url": "https://github.com/bobthecow/psysh.git",
  3350. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  3351. },
  3352. "dist": {
  3353. "type": "zip",
  3354. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3355. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3356. "shasum": ""
  3357. },
  3358. "require": {
  3359. "dnoegel/php-xdg-base-dir": "0.1",
  3360. "ext-json": "*",
  3361. "ext-tokenizer": "*",
  3362. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3363. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3364. "php": ">=5.4.0",
  3365. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  3366. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  3367. },
  3368. "require-dev": {
  3369. "bamarni/composer-bin-plugin": "^1.2",
  3370. "hoa/console": "~2.15|~3.16",
  3371. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3372. },
  3373. "suggest": {
  3374. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3375. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3376. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3377. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3378. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3379. },
  3380. "bin": [
  3381. "bin/psysh"
  3382. ],
  3383. "type": "library",
  3384. "extra": {
  3385. "branch-alias": {
  3386. "dev-develop": "0.9.x-dev"
  3387. }
  3388. },
  3389. "autoload": {
  3390. "files": [
  3391. "src/functions.php"
  3392. ],
  3393. "psr-4": {
  3394. "Psy\\": "src/"
  3395. }
  3396. },
  3397. "notification-url": "https://packagist.org/downloads/",
  3398. "license": [
  3399. "MIT"
  3400. ],
  3401. "authors": [
  3402. {
  3403. "name": "Justin Hileman",
  3404. "email": "justin@justinhileman.info",
  3405. "homepage": "http://justinhileman.com"
  3406. }
  3407. ],
  3408. "description": "An interactive shell for modern PHP.",
  3409. "homepage": "http://psysh.org",
  3410. "keywords": [
  3411. "REPL",
  3412. "console",
  3413. "interactive",
  3414. "shell"
  3415. ],
  3416. "time": "2018-10-13T15:16:03+00:00"
  3417. },
  3418. {
  3419. "name": "ralouphie/getallheaders",
  3420. "version": "2.0.5",
  3421. "source": {
  3422. "type": "git",
  3423. "url": "https://github.com/ralouphie/getallheaders.git",
  3424. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  3425. },
  3426. "dist": {
  3427. "type": "zip",
  3428. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3429. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3430. "shasum": ""
  3431. },
  3432. "require": {
  3433. "php": ">=5.3"
  3434. },
  3435. "require-dev": {
  3436. "phpunit/phpunit": "~3.7.0",
  3437. "satooshi/php-coveralls": ">=1.0"
  3438. },
  3439. "type": "library",
  3440. "autoload": {
  3441. "files": [
  3442. "src/getallheaders.php"
  3443. ]
  3444. },
  3445. "notification-url": "https://packagist.org/downloads/",
  3446. "license": [
  3447. "MIT"
  3448. ],
  3449. "authors": [
  3450. {
  3451. "name": "Ralph Khattar",
  3452. "email": "ralph.khattar@gmail.com"
  3453. }
  3454. ],
  3455. "description": "A polyfill for getallheaders.",
  3456. "time": "2016-02-11T07:05:27+00:00"
  3457. },
  3458. {
  3459. "name": "stack/builder",
  3460. "version": "v1.0.5",
  3461. "source": {
  3462. "type": "git",
  3463. "url": "https://github.com/stackphp/builder.git",
  3464. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  3465. },
  3466. "dist": {
  3467. "type": "zip",
  3468. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  3469. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  3470. "shasum": ""
  3471. },
  3472. "require": {
  3473. "php": ">=5.3.0",
  3474. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  3475. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  3476. },
  3477. "require-dev": {
  3478. "silex/silex": "~1.0"
  3479. },
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-master": "1.0-dev"
  3484. }
  3485. },
  3486. "autoload": {
  3487. "psr-0": {
  3488. "Stack": "src"
  3489. }
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "MIT"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Igor Wiedler",
  3498. "email": "igor@wiedler.ch"
  3499. }
  3500. ],
  3501. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  3502. "keywords": [
  3503. "stack"
  3504. ],
  3505. "time": "2017-11-18T14:57:29+00:00"
  3506. },
  3507. {
  3508. "name": "stecman/symfony-console-completion",
  3509. "version": "0.10.0",
  3510. "source": {
  3511. "type": "git",
  3512. "url": "https://github.com/stecman/symfony-console-completion.git",
  3513. "reference": "bc095febf00aa42ace233b344d4561071d7c912b"
  3514. },
  3515. "dist": {
  3516. "type": "zip",
  3517. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bc095febf00aa42ace233b344d4561071d7c912b",
  3518. "reference": "bc095febf00aa42ace233b344d4561071d7c912b",
  3519. "shasum": ""
  3520. },
  3521. "require": {
  3522. "php": ">=5.3.2",
  3523. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  3524. },
  3525. "require-dev": {
  3526. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  3527. },
  3528. "type": "library",
  3529. "extra": {
  3530. "branch-alias": {
  3531. "dev-master": "0.6.x-dev"
  3532. }
  3533. },
  3534. "autoload": {
  3535. "psr-4": {
  3536. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  3537. }
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "Stephen Holdaway",
  3546. "email": "stephen@stecman.co.nz"
  3547. }
  3548. ],
  3549. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  3550. "time": "2019-04-26T12:14:26+00:00"
  3551. },
  3552. {
  3553. "name": "symfony-cmf/routing",
  3554. "version": "1.4.1",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/symfony-cmf/routing.git",
  3558. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  3563. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  3564. "shasum": ""
  3565. },
  3566. "require": {
  3567. "php": "^5.3.9|^7.0",
  3568. "psr/log": "1.*",
  3569. "symfony/http-kernel": "^2.2|3.*",
  3570. "symfony/routing": "^2.2|3.*"
  3571. },
  3572. "require-dev": {
  3573. "friendsofsymfony/jsrouting-bundle": "^1.1",
  3574. "symfony-cmf/testing": "^1.3",
  3575. "symfony/config": "^2.2|3.*",
  3576. "symfony/dependency-injection": "^2.0.5|3.*",
  3577. "symfony/event-dispatcher": "^2.1|3.*"
  3578. },
  3579. "suggest": {
  3580. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  3581. },
  3582. "type": "library",
  3583. "extra": {
  3584. "branch-alias": {
  3585. "dev-master": "1.4-dev"
  3586. }
  3587. },
  3588. "autoload": {
  3589. "psr-4": {
  3590. "Symfony\\Cmf\\Component\\Routing\\": ""
  3591. }
  3592. },
  3593. "notification-url": "https://packagist.org/downloads/",
  3594. "license": [
  3595. "MIT"
  3596. ],
  3597. "authors": [
  3598. {
  3599. "name": "Symfony CMF Community",
  3600. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  3601. }
  3602. ],
  3603. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  3604. "homepage": "http://cmf.symfony.com",
  3605. "keywords": [
  3606. "database",
  3607. "routing"
  3608. ],
  3609. "time": "2017-05-09T08:10:41+00:00"
  3610. },
  3611. {
  3612. "name": "symfony/class-loader",
  3613. "version": "v3.4.26",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/symfony/class-loader.git",
  3617. "reference": "4459eef5298dedfb69f771186a580062b8516497"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497",
  3622. "reference": "4459eef5298dedfb69f771186a580062b8516497",
  3623. "shasum": ""
  3624. },
  3625. "require": {
  3626. "php": "^5.5.9|>=7.0.8"
  3627. },
  3628. "require-dev": {
  3629. "symfony/finder": "~2.8|~3.0|~4.0",
  3630. "symfony/polyfill-apcu": "~1.1"
  3631. },
  3632. "suggest": {
  3633. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  3634. },
  3635. "type": "library",
  3636. "extra": {
  3637. "branch-alias": {
  3638. "dev-master": "3.4-dev"
  3639. }
  3640. },
  3641. "autoload": {
  3642. "psr-4": {
  3643. "Symfony\\Component\\ClassLoader\\": ""
  3644. },
  3645. "exclude-from-classmap": [
  3646. "/Tests/"
  3647. ]
  3648. },
  3649. "notification-url": "https://packagist.org/downloads/",
  3650. "license": [
  3651. "MIT"
  3652. ],
  3653. "authors": [
  3654. {
  3655. "name": "Fabien Potencier",
  3656. "email": "fabien@symfony.com"
  3657. },
  3658. {
  3659. "name": "Symfony Community",
  3660. "homepage": "https://symfony.com/contributors"
  3661. }
  3662. ],
  3663. "description": "Symfony ClassLoader Component",
  3664. "homepage": "https://symfony.com",
  3665. "time": "2019-01-16T09:39:14+00:00"
  3666. },
  3667. {
  3668. "name": "symfony/config",
  3669. "version": "v3.4.26",
  3670. "source": {
  3671. "type": "git",
  3672. "url": "https://github.com/symfony/config.git",
  3673. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0"
  3674. },
  3675. "dist": {
  3676. "type": "zip",
  3677. "url": "https://api.github.com/repos/symfony/config/zipball/177a276c01575253c95cefe0866e3d1b57637fe0",
  3678. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0",
  3679. "shasum": ""
  3680. },
  3681. "require": {
  3682. "php": "^5.5.9|>=7.0.8",
  3683. "symfony/filesystem": "~2.8|~3.0|~4.0",
  3684. "symfony/polyfill-ctype": "~1.8"
  3685. },
  3686. "conflict": {
  3687. "symfony/dependency-injection": "<3.3",
  3688. "symfony/finder": "<3.3"
  3689. },
  3690. "require-dev": {
  3691. "symfony/dependency-injection": "~3.3|~4.0",
  3692. "symfony/event-dispatcher": "~3.3|~4.0",
  3693. "symfony/finder": "~3.3|~4.0",
  3694. "symfony/yaml": "~3.0|~4.0"
  3695. },
  3696. "suggest": {
  3697. "symfony/yaml": "To use the yaml reference dumper"
  3698. },
  3699. "type": "library",
  3700. "extra": {
  3701. "branch-alias": {
  3702. "dev-master": "3.4-dev"
  3703. }
  3704. },
  3705. "autoload": {
  3706. "psr-4": {
  3707. "Symfony\\Component\\Config\\": ""
  3708. },
  3709. "exclude-from-classmap": [
  3710. "/Tests/"
  3711. ]
  3712. },
  3713. "notification-url": "https://packagist.org/downloads/",
  3714. "license": [
  3715. "MIT"
  3716. ],
  3717. "authors": [
  3718. {
  3719. "name": "Fabien Potencier",
  3720. "email": "fabien@symfony.com"
  3721. },
  3722. {
  3723. "name": "Symfony Community",
  3724. "homepage": "https://symfony.com/contributors"
  3725. }
  3726. ],
  3727. "description": "Symfony Config Component",
  3728. "homepage": "https://symfony.com",
  3729. "time": "2019-02-23T15:06:07+00:00"
  3730. },
  3731. {
  3732. "name": "symfony/console",
  3733. "version": "v3.4.26",
  3734. "source": {
  3735. "type": "git",
  3736. "url": "https://github.com/symfony/console.git",
  3737. "reference": "15a9104356436cb26e08adab97706654799d31d8"
  3738. },
  3739. "dist": {
  3740. "type": "zip",
  3741. "url": "https://api.github.com/repos/symfony/console/zipball/15a9104356436cb26e08adab97706654799d31d8",
  3742. "reference": "15a9104356436cb26e08adab97706654799d31d8",
  3743. "shasum": ""
  3744. },
  3745. "require": {
  3746. "php": "^5.5.9|>=7.0.8",
  3747. "symfony/debug": "~2.8|~3.0|~4.0",
  3748. "symfony/polyfill-mbstring": "~1.0"
  3749. },
  3750. "conflict": {
  3751. "symfony/dependency-injection": "<3.4",
  3752. "symfony/process": "<3.3"
  3753. },
  3754. "provide": {
  3755. "psr/log-implementation": "1.0"
  3756. },
  3757. "require-dev": {
  3758. "psr/log": "~1.0",
  3759. "symfony/config": "~3.3|~4.0",
  3760. "symfony/dependency-injection": "~3.4|~4.0",
  3761. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3762. "symfony/lock": "~3.4|~4.0",
  3763. "symfony/process": "~3.3|~4.0"
  3764. },
  3765. "suggest": {
  3766. "psr/log": "For using the console logger",
  3767. "symfony/event-dispatcher": "",
  3768. "symfony/lock": "",
  3769. "symfony/process": ""
  3770. },
  3771. "type": "library",
  3772. "extra": {
  3773. "branch-alias": {
  3774. "dev-master": "3.4-dev"
  3775. }
  3776. },
  3777. "autoload": {
  3778. "psr-4": {
  3779. "Symfony\\Component\\Console\\": ""
  3780. },
  3781. "exclude-from-classmap": [
  3782. "/Tests/"
  3783. ]
  3784. },
  3785. "notification-url": "https://packagist.org/downloads/",
  3786. "license": [
  3787. "MIT"
  3788. ],
  3789. "authors": [
  3790. {
  3791. "name": "Fabien Potencier",
  3792. "email": "fabien@symfony.com"
  3793. },
  3794. {
  3795. "name": "Symfony Community",
  3796. "homepage": "https://symfony.com/contributors"
  3797. }
  3798. ],
  3799. "description": "Symfony Console Component",
  3800. "homepage": "https://symfony.com",
  3801. "time": "2019-04-08T09:29:13+00:00"
  3802. },
  3803. {
  3804. "name": "symfony/css-selector",
  3805. "version": "v3.4.26",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/symfony/css-selector.git",
  3809. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  3814. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  3815. "shasum": ""
  3816. },
  3817. "require": {
  3818. "php": "^5.5.9|>=7.0.8"
  3819. },
  3820. "type": "library",
  3821. "extra": {
  3822. "branch-alias": {
  3823. "dev-master": "3.4-dev"
  3824. }
  3825. },
  3826. "autoload": {
  3827. "psr-4": {
  3828. "Symfony\\Component\\CssSelector\\": ""
  3829. },
  3830. "exclude-from-classmap": [
  3831. "/Tests/"
  3832. ]
  3833. },
  3834. "notification-url": "https://packagist.org/downloads/",
  3835. "license": [
  3836. "MIT"
  3837. ],
  3838. "authors": [
  3839. {
  3840. "name": "Jean-François Simon",
  3841. "email": "jeanfrancois.simon@sensiolabs.com"
  3842. },
  3843. {
  3844. "name": "Fabien Potencier",
  3845. "email": "fabien@symfony.com"
  3846. },
  3847. {
  3848. "name": "Symfony Community",
  3849. "homepage": "https://symfony.com/contributors"
  3850. }
  3851. ],
  3852. "description": "Symfony CssSelector Component",
  3853. "homepage": "https://symfony.com",
  3854. "time": "2019-01-16T09:39:14+00:00"
  3855. },
  3856. {
  3857. "name": "symfony/debug",
  3858. "version": "v3.4.26",
  3859. "source": {
  3860. "type": "git",
  3861. "url": "https://github.com/symfony/debug.git",
  3862. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9"
  3863. },
  3864. "dist": {
  3865. "type": "zip",
  3866. "url": "https://api.github.com/repos/symfony/debug/zipball/681afbb26488903c5ac15e63734f1d8ac430c9b9",
  3867. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9",
  3868. "shasum": ""
  3869. },
  3870. "require": {
  3871. "php": "^5.5.9|>=7.0.8",
  3872. "psr/log": "~1.0"
  3873. },
  3874. "conflict": {
  3875. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  3876. },
  3877. "require-dev": {
  3878. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  3879. },
  3880. "type": "library",
  3881. "extra": {
  3882. "branch-alias": {
  3883. "dev-master": "3.4-dev"
  3884. }
  3885. },
  3886. "autoload": {
  3887. "psr-4": {
  3888. "Symfony\\Component\\Debug\\": ""
  3889. },
  3890. "exclude-from-classmap": [
  3891. "/Tests/"
  3892. ]
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Fabien Potencier",
  3901. "email": "fabien@symfony.com"
  3902. },
  3903. {
  3904. "name": "Symfony Community",
  3905. "homepage": "https://symfony.com/contributors"
  3906. }
  3907. ],
  3908. "description": "Symfony Debug Component",
  3909. "homepage": "https://symfony.com",
  3910. "time": "2019-04-11T09:48:14+00:00"
  3911. },
  3912. {
  3913. "name": "symfony/dependency-injection",
  3914. "version": "v3.4.26",
  3915. "source": {
  3916. "type": "git",
  3917. "url": "https://github.com/symfony/dependency-injection.git",
  3918. "reference": "dee85a9148399cdb2731603802842bcfd8afe5ab"
  3919. },
  3920. "dist": {
  3921. "type": "zip",
  3922. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/dee85a9148399cdb2731603802842bcfd8afe5ab",
  3923. "reference": "dee85a9148399cdb2731603802842bcfd8afe5ab",
  3924. "shasum": ""
  3925. },
  3926. "require": {
  3927. "php": "^5.5.9|>=7.0.8",
  3928. "psr/container": "^1.0"
  3929. },
  3930. "conflict": {
  3931. "symfony/config": "<3.3.7",
  3932. "symfony/finder": "<3.3",
  3933. "symfony/proxy-manager-bridge": "<3.4",
  3934. "symfony/yaml": "<3.4"
  3935. },
  3936. "provide": {
  3937. "psr/container-implementation": "1.0"
  3938. },
  3939. "require-dev": {
  3940. "symfony/config": "~3.3|~4.0",
  3941. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3942. "symfony/yaml": "~3.4|~4.0"
  3943. },
  3944. "suggest": {
  3945. "symfony/config": "",
  3946. "symfony/expression-language": "For using expressions in service container configuration",
  3947. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3948. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3949. "symfony/yaml": ""
  3950. },
  3951. "type": "library",
  3952. "extra": {
  3953. "branch-alias": {
  3954. "dev-master": "3.4-dev"
  3955. }
  3956. },
  3957. "autoload": {
  3958. "psr-4": {
  3959. "Symfony\\Component\\DependencyInjection\\": ""
  3960. },
  3961. "exclude-from-classmap": [
  3962. "/Tests/"
  3963. ]
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "Fabien Potencier",
  3972. "email": "fabien@symfony.com"
  3973. },
  3974. {
  3975. "name": "Symfony Community",
  3976. "homepage": "https://symfony.com/contributors"
  3977. }
  3978. ],
  3979. "description": "Symfony DependencyInjection Component",
  3980. "homepage": "https://symfony.com",
  3981. "time": "2019-04-16T11:13:42+00:00"
  3982. },
  3983. {
  3984. "name": "symfony/dom-crawler",
  3985. "version": "v3.4.26",
  3986. "source": {
  3987. "type": "git",
  3988. "url": "https://github.com/symfony/dom-crawler.git",
  3989. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09"
  3990. },
  3991. "dist": {
  3992. "type": "zip",
  3993. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d40023c057393fb25f7ca80af2a56ed948c45a09",
  3994. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09",
  3995. "shasum": ""
  3996. },
  3997. "require": {
  3998. "php": "^5.5.9|>=7.0.8",
  3999. "symfony/polyfill-ctype": "~1.8",
  4000. "symfony/polyfill-mbstring": "~1.0"
  4001. },
  4002. "require-dev": {
  4003. "symfony/css-selector": "~2.8|~3.0|~4.0"
  4004. },
  4005. "suggest": {
  4006. "symfony/css-selector": ""
  4007. },
  4008. "type": "library",
  4009. "extra": {
  4010. "branch-alias": {
  4011. "dev-master": "3.4-dev"
  4012. }
  4013. },
  4014. "autoload": {
  4015. "psr-4": {
  4016. "Symfony\\Component\\DomCrawler\\": ""
  4017. },
  4018. "exclude-from-classmap": [
  4019. "/Tests/"
  4020. ]
  4021. },
  4022. "notification-url": "https://packagist.org/downloads/",
  4023. "license": [
  4024. "MIT"
  4025. ],
  4026. "authors": [
  4027. {
  4028. "name": "Fabien Potencier",
  4029. "email": "fabien@symfony.com"
  4030. },
  4031. {
  4032. "name": "Symfony Community",
  4033. "homepage": "https://symfony.com/contributors"
  4034. }
  4035. ],
  4036. "description": "Symfony DomCrawler Component",
  4037. "homepage": "https://symfony.com",
  4038. "time": "2019-02-23T15:06:07+00:00"
  4039. },
  4040. {
  4041. "name": "symfony/event-dispatcher",
  4042. "version": "v3.4.26",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/symfony/event-dispatcher.git",
  4046. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a088aafcefb4eef2520a290ed82e4374092a6dff",
  4051. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff",
  4052. "shasum": ""
  4053. },
  4054. "require": {
  4055. "php": "^5.5.9|>=7.0.8"
  4056. },
  4057. "conflict": {
  4058. "symfony/dependency-injection": "<3.3"
  4059. },
  4060. "require-dev": {
  4061. "psr/log": "~1.0",
  4062. "symfony/config": "~2.8|~3.0|~4.0",
  4063. "symfony/dependency-injection": "~3.3|~4.0",
  4064. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4065. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  4066. },
  4067. "suggest": {
  4068. "symfony/dependency-injection": "",
  4069. "symfony/http-kernel": ""
  4070. },
  4071. "type": "library",
  4072. "extra": {
  4073. "branch-alias": {
  4074. "dev-master": "3.4-dev"
  4075. }
  4076. },
  4077. "autoload": {
  4078. "psr-4": {
  4079. "Symfony\\Component\\EventDispatcher\\": ""
  4080. },
  4081. "exclude-from-classmap": [
  4082. "/Tests/"
  4083. ]
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "authors": [
  4090. {
  4091. "name": "Fabien Potencier",
  4092. "email": "fabien@symfony.com"
  4093. },
  4094. {
  4095. "name": "Symfony Community",
  4096. "homepage": "https://symfony.com/contributors"
  4097. }
  4098. ],
  4099. "description": "Symfony EventDispatcher Component",
  4100. "homepage": "https://symfony.com",
  4101. "time": "2019-04-02T08:51:52+00:00"
  4102. },
  4103. {
  4104. "name": "symfony/filesystem",
  4105. "version": "v3.4.26",
  4106. "source": {
  4107. "type": "git",
  4108. "url": "https://github.com/symfony/filesystem.git",
  4109. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb"
  4110. },
  4111. "dist": {
  4112. "type": "zip",
  4113. "url": "https://api.github.com/repos/symfony/filesystem/zipball/acf99758b1df8e9295e6b85aa69f294565c9fedb",
  4114. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb",
  4115. "shasum": ""
  4116. },
  4117. "require": {
  4118. "php": "^5.5.9|>=7.0.8",
  4119. "symfony/polyfill-ctype": "~1.8"
  4120. },
  4121. "type": "library",
  4122. "extra": {
  4123. "branch-alias": {
  4124. "dev-master": "3.4-dev"
  4125. }
  4126. },
  4127. "autoload": {
  4128. "psr-4": {
  4129. "Symfony\\Component\\Filesystem\\": ""
  4130. },
  4131. "exclude-from-classmap": [
  4132. "/Tests/"
  4133. ]
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Fabien Potencier",
  4142. "email": "fabien@symfony.com"
  4143. },
  4144. {
  4145. "name": "Symfony Community",
  4146. "homepage": "https://symfony.com/contributors"
  4147. }
  4148. ],
  4149. "description": "Symfony Filesystem Component",
  4150. "homepage": "https://symfony.com",
  4151. "time": "2019-02-04T21:34:32+00:00"
  4152. },
  4153. {
  4154. "name": "symfony/finder",
  4155. "version": "v3.4.26",
  4156. "source": {
  4157. "type": "git",
  4158. "url": "https://github.com/symfony/finder.git",
  4159. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98"
  4160. },
  4161. "dist": {
  4162. "type": "zip",
  4163. "url": "https://api.github.com/repos/symfony/finder/zipball/61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  4164. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  4165. "shasum": ""
  4166. },
  4167. "require": {
  4168. "php": "^5.5.9|>=7.0.8"
  4169. },
  4170. "type": "library",
  4171. "extra": {
  4172. "branch-alias": {
  4173. "dev-master": "3.4-dev"
  4174. }
  4175. },
  4176. "autoload": {
  4177. "psr-4": {
  4178. "Symfony\\Component\\Finder\\": ""
  4179. },
  4180. "exclude-from-classmap": [
  4181. "/Tests/"
  4182. ]
  4183. },
  4184. "notification-url": "https://packagist.org/downloads/",
  4185. "license": [
  4186. "MIT"
  4187. ],
  4188. "authors": [
  4189. {
  4190. "name": "Fabien Potencier",
  4191. "email": "fabien@symfony.com"
  4192. },
  4193. {
  4194. "name": "Symfony Community",
  4195. "homepage": "https://symfony.com/contributors"
  4196. }
  4197. ],
  4198. "description": "Symfony Finder Component",
  4199. "homepage": "https://symfony.com",
  4200. "time": "2019-04-02T19:54:57+00:00"
  4201. },
  4202. {
  4203. "name": "symfony/http-foundation",
  4204. "version": "v3.4.26",
  4205. "source": {
  4206. "type": "git",
  4207. "url": "https://github.com/symfony/http-foundation.git",
  4208. "reference": "90454ad44c95d75faf3507d56388056001b74baf"
  4209. },
  4210. "dist": {
  4211. "type": "zip",
  4212. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/90454ad44c95d75faf3507d56388056001b74baf",
  4213. "reference": "90454ad44c95d75faf3507d56388056001b74baf",
  4214. "shasum": ""
  4215. },
  4216. "require": {
  4217. "php": "^5.5.9|>=7.0.8",
  4218. "symfony/polyfill-mbstring": "~1.1",
  4219. "symfony/polyfill-php70": "~1.6"
  4220. },
  4221. "require-dev": {
  4222. "symfony/expression-language": "~2.8|~3.0|~4.0"
  4223. },
  4224. "type": "library",
  4225. "extra": {
  4226. "branch-alias": {
  4227. "dev-master": "3.4-dev"
  4228. }
  4229. },
  4230. "autoload": {
  4231. "psr-4": {
  4232. "Symfony\\Component\\HttpFoundation\\": ""
  4233. },
  4234. "exclude-from-classmap": [
  4235. "/Tests/"
  4236. ]
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "MIT"
  4241. ],
  4242. "authors": [
  4243. {
  4244. "name": "Fabien Potencier",
  4245. "email": "fabien@symfony.com"
  4246. },
  4247. {
  4248. "name": "Symfony Community",
  4249. "homepage": "https://symfony.com/contributors"
  4250. }
  4251. ],
  4252. "description": "Symfony HttpFoundation Component",
  4253. "homepage": "https://symfony.com",
  4254. "time": "2019-04-17T14:51:18+00:00"
  4255. },
  4256. {
  4257. "name": "symfony/http-kernel",
  4258. "version": "v3.4.26",
  4259. "source": {
  4260. "type": "git",
  4261. "url": "https://github.com/symfony/http-kernel.git",
  4262. "reference": "14fa41ccd38570b5e3120a3754bbaa144a15f311"
  4263. },
  4264. "dist": {
  4265. "type": "zip",
  4266. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/14fa41ccd38570b5e3120a3754bbaa144a15f311",
  4267. "reference": "14fa41ccd38570b5e3120a3754bbaa144a15f311",
  4268. "shasum": ""
  4269. },
  4270. "require": {
  4271. "php": "^5.5.9|>=7.0.8",
  4272. "psr/log": "~1.0",
  4273. "symfony/debug": "^3.3.3|~4.0",
  4274. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  4275. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  4276. "symfony/polyfill-ctype": "~1.8"
  4277. },
  4278. "conflict": {
  4279. "symfony/config": "<2.8",
  4280. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  4281. "symfony/var-dumper": "<3.3",
  4282. "twig/twig": "<1.34|<2.4,>=2"
  4283. },
  4284. "provide": {
  4285. "psr/log-implementation": "1.0"
  4286. },
  4287. "require-dev": {
  4288. "psr/cache": "~1.0",
  4289. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  4290. "symfony/class-loader": "~2.8|~3.0",
  4291. "symfony/config": "~2.8|~3.0|~4.0",
  4292. "symfony/console": "~2.8|~3.0|~4.0",
  4293. "symfony/css-selector": "~2.8|~3.0|~4.0",
  4294. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  4295. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  4296. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4297. "symfony/finder": "~2.8|~3.0|~4.0",
  4298. "symfony/process": "~2.8|~3.0|~4.0",
  4299. "symfony/routing": "~3.4|~4.0",
  4300. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  4301. "symfony/templating": "~2.8|~3.0|~4.0",
  4302. "symfony/translation": "~2.8|~3.0|~4.0",
  4303. "symfony/var-dumper": "~3.3|~4.0"
  4304. },
  4305. "suggest": {
  4306. "symfony/browser-kit": "",
  4307. "symfony/config": "",
  4308. "symfony/console": "",
  4309. "symfony/dependency-injection": "",
  4310. "symfony/finder": "",
  4311. "symfony/var-dumper": ""
  4312. },
  4313. "type": "library",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-master": "3.4-dev"
  4317. }
  4318. },
  4319. "autoload": {
  4320. "psr-4": {
  4321. "Symfony\\Component\\HttpKernel\\": ""
  4322. },
  4323. "exclude-from-classmap": [
  4324. "/Tests/"
  4325. ]
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Fabien Potencier",
  4334. "email": "fabien@symfony.com"
  4335. },
  4336. {
  4337. "name": "Symfony Community",
  4338. "homepage": "https://symfony.com/contributors"
  4339. }
  4340. ],
  4341. "description": "Symfony HttpKernel Component",
  4342. "homepage": "https://symfony.com",
  4343. "time": "2019-04-17T15:57:07+00:00"
  4344. },
  4345. {
  4346. "name": "symfony/polyfill-ctype",
  4347. "version": "v1.11.0",
  4348. "source": {
  4349. "type": "git",
  4350. "url": "https://github.com/symfony/polyfill-ctype.git",
  4351. "reference": "82ebae02209c21113908c229e9883c419720738a"
  4352. },
  4353. "dist": {
  4354. "type": "zip",
  4355. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  4356. "reference": "82ebae02209c21113908c229e9883c419720738a",
  4357. "shasum": ""
  4358. },
  4359. "require": {
  4360. "php": ">=5.3.3"
  4361. },
  4362. "suggest": {
  4363. "ext-ctype": "For best performance"
  4364. },
  4365. "type": "library",
  4366. "extra": {
  4367. "branch-alias": {
  4368. "dev-master": "1.11-dev"
  4369. }
  4370. },
  4371. "autoload": {
  4372. "psr-4": {
  4373. "Symfony\\Polyfill\\Ctype\\": ""
  4374. },
  4375. "files": [
  4376. "bootstrap.php"
  4377. ]
  4378. },
  4379. "notification-url": "https://packagist.org/downloads/",
  4380. "license": [
  4381. "MIT"
  4382. ],
  4383. "authors": [
  4384. {
  4385. "name": "Symfony Community",
  4386. "homepage": "https://symfony.com/contributors"
  4387. },
  4388. {
  4389. "name": "Gert de Pagter",
  4390. "email": "BackEndTea@gmail.com"
  4391. }
  4392. ],
  4393. "description": "Symfony polyfill for ctype functions",
  4394. "homepage": "https://symfony.com",
  4395. "keywords": [
  4396. "compatibility",
  4397. "ctype",
  4398. "polyfill",
  4399. "portable"
  4400. ],
  4401. "time": "2019-02-06T07:57:58+00:00"
  4402. },
  4403. {
  4404. "name": "symfony/polyfill-iconv",
  4405. "version": "v1.11.0",
  4406. "source": {
  4407. "type": "git",
  4408. "url": "https://github.com/symfony/polyfill-iconv.git",
  4409. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  4410. },
  4411. "dist": {
  4412. "type": "zip",
  4413. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  4414. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  4415. "shasum": ""
  4416. },
  4417. "require": {
  4418. "php": ">=5.3.3"
  4419. },
  4420. "suggest": {
  4421. "ext-iconv": "For best performance"
  4422. },
  4423. "type": "library",
  4424. "extra": {
  4425. "branch-alias": {
  4426. "dev-master": "1.11-dev"
  4427. }
  4428. },
  4429. "autoload": {
  4430. "psr-4": {
  4431. "Symfony\\Polyfill\\Iconv\\": ""
  4432. },
  4433. "files": [
  4434. "bootstrap.php"
  4435. ]
  4436. },
  4437. "notification-url": "https://packagist.org/downloads/",
  4438. "license": [
  4439. "MIT"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "Nicolas Grekas",
  4444. "email": "p@tchwork.com"
  4445. },
  4446. {
  4447. "name": "Symfony Community",
  4448. "homepage": "https://symfony.com/contributors"
  4449. }
  4450. ],
  4451. "description": "Symfony polyfill for the Iconv extension",
  4452. "homepage": "https://symfony.com",
  4453. "keywords": [
  4454. "compatibility",
  4455. "iconv",
  4456. "polyfill",
  4457. "portable",
  4458. "shim"
  4459. ],
  4460. "time": "2019-02-06T07:57:58+00:00"
  4461. },
  4462. {
  4463. "name": "symfony/polyfill-mbstring",
  4464. "version": "v1.11.0",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4468. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  4473. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  4474. "shasum": ""
  4475. },
  4476. "require": {
  4477. "php": ">=5.3.3"
  4478. },
  4479. "suggest": {
  4480. "ext-mbstring": "For best performance"
  4481. },
  4482. "type": "library",
  4483. "extra": {
  4484. "branch-alias": {
  4485. "dev-master": "1.11-dev"
  4486. }
  4487. },
  4488. "autoload": {
  4489. "psr-4": {
  4490. "Symfony\\Polyfill\\Mbstring\\": ""
  4491. },
  4492. "files": [
  4493. "bootstrap.php"
  4494. ]
  4495. },
  4496. "notification-url": "https://packagist.org/downloads/",
  4497. "license": [
  4498. "MIT"
  4499. ],
  4500. "authors": [
  4501. {
  4502. "name": "Nicolas Grekas",
  4503. "email": "p@tchwork.com"
  4504. },
  4505. {
  4506. "name": "Symfony Community",
  4507. "homepage": "https://symfony.com/contributors"
  4508. }
  4509. ],
  4510. "description": "Symfony polyfill for the Mbstring extension",
  4511. "homepage": "https://symfony.com",
  4512. "keywords": [
  4513. "compatibility",
  4514. "mbstring",
  4515. "polyfill",
  4516. "portable",
  4517. "shim"
  4518. ],
  4519. "time": "2019-02-06T07:57:58+00:00"
  4520. },
  4521. {
  4522. "name": "symfony/polyfill-php70",
  4523. "version": "v1.11.0",
  4524. "source": {
  4525. "type": "git",
  4526. "url": "https://github.com/symfony/polyfill-php70.git",
  4527. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  4528. },
  4529. "dist": {
  4530. "type": "zip",
  4531. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  4532. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  4533. "shasum": ""
  4534. },
  4535. "require": {
  4536. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  4537. "php": ">=5.3.3"
  4538. },
  4539. "type": "library",
  4540. "extra": {
  4541. "branch-alias": {
  4542. "dev-master": "1.11-dev"
  4543. }
  4544. },
  4545. "autoload": {
  4546. "psr-4": {
  4547. "Symfony\\Polyfill\\Php70\\": ""
  4548. },
  4549. "files": [
  4550. "bootstrap.php"
  4551. ],
  4552. "classmap": [
  4553. "Resources/stubs"
  4554. ]
  4555. },
  4556. "notification-url": "https://packagist.org/downloads/",
  4557. "license": [
  4558. "MIT"
  4559. ],
  4560. "authors": [
  4561. {
  4562. "name": "Nicolas Grekas",
  4563. "email": "p@tchwork.com"
  4564. },
  4565. {
  4566. "name": "Symfony Community",
  4567. "homepage": "https://symfony.com/contributors"
  4568. }
  4569. ],
  4570. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4571. "homepage": "https://symfony.com",
  4572. "keywords": [
  4573. "compatibility",
  4574. "polyfill",
  4575. "portable",
  4576. "shim"
  4577. ],
  4578. "time": "2019-02-06T07:57:58+00:00"
  4579. },
  4580. {
  4581. "name": "symfony/process",
  4582. "version": "v3.4.26",
  4583. "source": {
  4584. "type": "git",
  4585. "url": "https://github.com/symfony/process.git",
  4586. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a"
  4587. },
  4588. "dist": {
  4589. "type": "zip",
  4590. "url": "https://api.github.com/repos/symfony/process/zipball/a9c4dfbf653023b668c282e4e02609d131f4057a",
  4591. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a",
  4592. "shasum": ""
  4593. },
  4594. "require": {
  4595. "php": "^5.5.9|>=7.0.8"
  4596. },
  4597. "type": "library",
  4598. "extra": {
  4599. "branch-alias": {
  4600. "dev-master": "3.4-dev"
  4601. }
  4602. },
  4603. "autoload": {
  4604. "psr-4": {
  4605. "Symfony\\Component\\Process\\": ""
  4606. },
  4607. "exclude-from-classmap": [
  4608. "/Tests/"
  4609. ]
  4610. },
  4611. "notification-url": "https://packagist.org/downloads/",
  4612. "license": [
  4613. "MIT"
  4614. ],
  4615. "authors": [
  4616. {
  4617. "name": "Fabien Potencier",
  4618. "email": "fabien@symfony.com"
  4619. },
  4620. {
  4621. "name": "Symfony Community",
  4622. "homepage": "https://symfony.com/contributors"
  4623. }
  4624. ],
  4625. "description": "Symfony Process Component",
  4626. "homepage": "https://symfony.com",
  4627. "time": "2019-04-08T16:15:54+00:00"
  4628. },
  4629. {
  4630. "name": "symfony/psr-http-message-bridge",
  4631. "version": "v1.1.2",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4635. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  4640. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": "^5.3.3 || ^7.0",
  4645. "psr/http-message": "^1.0",
  4646. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  4647. },
  4648. "require-dev": {
  4649. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  4650. },
  4651. "suggest": {
  4652. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4653. },
  4654. "type": "symfony-bridge",
  4655. "extra": {
  4656. "branch-alias": {
  4657. "dev-master": "1.1-dev"
  4658. }
  4659. },
  4660. "autoload": {
  4661. "psr-4": {
  4662. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4663. },
  4664. "exclude-from-classmap": [
  4665. "/Tests/"
  4666. ]
  4667. },
  4668. "notification-url": "https://packagist.org/downloads/",
  4669. "license": [
  4670. "MIT"
  4671. ],
  4672. "authors": [
  4673. {
  4674. "name": "Symfony Community",
  4675. "homepage": "http://symfony.com/contributors"
  4676. },
  4677. {
  4678. "name": "Fabien Potencier",
  4679. "email": "fabien@symfony.com"
  4680. }
  4681. ],
  4682. "description": "PSR HTTP message bridge",
  4683. "homepage": "http://symfony.com",
  4684. "keywords": [
  4685. "http",
  4686. "http-message",
  4687. "psr-17",
  4688. "psr-7"
  4689. ],
  4690. "time": "2019-04-03T17:09:40+00:00"
  4691. },
  4692. {
  4693. "name": "symfony/routing",
  4694. "version": "v3.4.26",
  4695. "source": {
  4696. "type": "git",
  4697. "url": "https://github.com/symfony/routing.git",
  4698. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec"
  4699. },
  4700. "dist": {
  4701. "type": "zip",
  4702. "url": "https://api.github.com/repos/symfony/routing/zipball/ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  4703. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  4704. "shasum": ""
  4705. },
  4706. "require": {
  4707. "php": "^5.5.9|>=7.0.8"
  4708. },
  4709. "conflict": {
  4710. "symfony/config": "<3.3.1",
  4711. "symfony/dependency-injection": "<3.3",
  4712. "symfony/yaml": "<3.4"
  4713. },
  4714. "require-dev": {
  4715. "doctrine/annotations": "~1.0",
  4716. "psr/log": "~1.0",
  4717. "symfony/config": "^3.3.1|~4.0",
  4718. "symfony/dependency-injection": "~3.3|~4.0",
  4719. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4720. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4721. "symfony/yaml": "~3.4|~4.0"
  4722. },
  4723. "suggest": {
  4724. "doctrine/annotations": "For using the annotation loader",
  4725. "symfony/config": "For using the all-in-one router or any loader",
  4726. "symfony/expression-language": "For using expression matching",
  4727. "symfony/http-foundation": "For using a Symfony Request object",
  4728. "symfony/yaml": "For using the YAML loader"
  4729. },
  4730. "type": "library",
  4731. "extra": {
  4732. "branch-alias": {
  4733. "dev-master": "3.4-dev"
  4734. }
  4735. },
  4736. "autoload": {
  4737. "psr-4": {
  4738. "Symfony\\Component\\Routing\\": ""
  4739. },
  4740. "exclude-from-classmap": [
  4741. "/Tests/"
  4742. ]
  4743. },
  4744. "notification-url": "https://packagist.org/downloads/",
  4745. "license": [
  4746. "MIT"
  4747. ],
  4748. "authors": [
  4749. {
  4750. "name": "Fabien Potencier",
  4751. "email": "fabien@symfony.com"
  4752. },
  4753. {
  4754. "name": "Symfony Community",
  4755. "homepage": "https://symfony.com/contributors"
  4756. }
  4757. ],
  4758. "description": "Symfony Routing Component",
  4759. "homepage": "https://symfony.com",
  4760. "keywords": [
  4761. "router",
  4762. "routing",
  4763. "uri",
  4764. "url"
  4765. ],
  4766. "time": "2019-03-29T21:58:42+00:00"
  4767. },
  4768. {
  4769. "name": "symfony/serializer",
  4770. "version": "v3.4.26",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://github.com/symfony/serializer.git",
  4774. "reference": "14b3221cc41dcfef404205f0060cda873f43a534"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://api.github.com/repos/symfony/serializer/zipball/14b3221cc41dcfef404205f0060cda873f43a534",
  4779. "reference": "14b3221cc41dcfef404205f0060cda873f43a534",
  4780. "shasum": ""
  4781. },
  4782. "require": {
  4783. "php": "^5.5.9|>=7.0.8",
  4784. "symfony/polyfill-ctype": "~1.8"
  4785. },
  4786. "conflict": {
  4787. "phpdocumentor/type-resolver": "<0.2.1",
  4788. "symfony/dependency-injection": "<3.2",
  4789. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  4790. "symfony/property-info": "<3.1",
  4791. "symfony/yaml": "<3.4"
  4792. },
  4793. "require-dev": {
  4794. "doctrine/annotations": "~1.0",
  4795. "doctrine/cache": "~1.0",
  4796. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4797. "symfony/cache": "~3.1|~4.0",
  4798. "symfony/config": "~2.8|~3.0|~4.0",
  4799. "symfony/dependency-injection": "~3.2|~4.0",
  4800. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4801. "symfony/property-access": "~2.8|~3.0|~4.0",
  4802. "symfony/property-info": "~3.1|~4.0",
  4803. "symfony/yaml": "~3.4|~4.0"
  4804. },
  4805. "suggest": {
  4806. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4807. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4808. "psr/cache-implementation": "For using the metadata cache.",
  4809. "symfony/config": "For using the XML mapping loader.",
  4810. "symfony/http-foundation": "To use the DataUriNormalizer.",
  4811. "symfony/property-access": "For using the ObjectNormalizer.",
  4812. "symfony/property-info": "To deserialize relations.",
  4813. "symfony/yaml": "For using the default YAML mapping loader."
  4814. },
  4815. "type": "library",
  4816. "extra": {
  4817. "branch-alias": {
  4818. "dev-master": "3.4-dev"
  4819. }
  4820. },
  4821. "autoload": {
  4822. "psr-4": {
  4823. "Symfony\\Component\\Serializer\\": ""
  4824. },
  4825. "exclude-from-classmap": [
  4826. "/Tests/"
  4827. ]
  4828. },
  4829. "notification-url": "https://packagist.org/downloads/",
  4830. "license": [
  4831. "MIT"
  4832. ],
  4833. "authors": [
  4834. {
  4835. "name": "Fabien Potencier",
  4836. "email": "fabien@symfony.com"
  4837. },
  4838. {
  4839. "name": "Symfony Community",
  4840. "homepage": "https://symfony.com/contributors"
  4841. }
  4842. ],
  4843. "description": "Symfony Serializer Component",
  4844. "homepage": "https://symfony.com",
  4845. "time": "2019-04-11T05:44:34+00:00"
  4846. },
  4847. {
  4848. "name": "symfony/translation",
  4849. "version": "v3.4.26",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/symfony/translation.git",
  4853. "reference": "aae26f143da71adc8707eb489f1dc86aef7d376b"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/symfony/translation/zipball/aae26f143da71adc8707eb489f1dc86aef7d376b",
  4858. "reference": "aae26f143da71adc8707eb489f1dc86aef7d376b",
  4859. "shasum": ""
  4860. },
  4861. "require": {
  4862. "php": "^5.5.9|>=7.0.8",
  4863. "symfony/polyfill-mbstring": "~1.0"
  4864. },
  4865. "conflict": {
  4866. "symfony/config": "<2.8",
  4867. "symfony/dependency-injection": "<3.4",
  4868. "symfony/yaml": "<3.4"
  4869. },
  4870. "require-dev": {
  4871. "psr/log": "~1.0",
  4872. "symfony/config": "~2.8|~3.0|~4.0",
  4873. "symfony/dependency-injection": "~3.4|~4.0",
  4874. "symfony/finder": "~2.8|~3.0|~4.0",
  4875. "symfony/http-kernel": "~3.4|~4.0",
  4876. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  4877. "symfony/var-dumper": "~3.4|~4.0",
  4878. "symfony/yaml": "~3.4|~4.0"
  4879. },
  4880. "suggest": {
  4881. "psr/log-implementation": "To use logging capability in translator",
  4882. "symfony/config": "",
  4883. "symfony/yaml": ""
  4884. },
  4885. "type": "library",
  4886. "extra": {
  4887. "branch-alias": {
  4888. "dev-master": "3.4-dev"
  4889. }
  4890. },
  4891. "autoload": {
  4892. "psr-4": {
  4893. "Symfony\\Component\\Translation\\": ""
  4894. },
  4895. "exclude-from-classmap": [
  4896. "/Tests/"
  4897. ]
  4898. },
  4899. "notification-url": "https://packagist.org/downloads/",
  4900. "license": [
  4901. "MIT"
  4902. ],
  4903. "authors": [
  4904. {
  4905. "name": "Fabien Potencier",
  4906. "email": "fabien@symfony.com"
  4907. },
  4908. {
  4909. "name": "Symfony Community",
  4910. "homepage": "https://symfony.com/contributors"
  4911. }
  4912. ],
  4913. "description": "Symfony Translation Component",
  4914. "homepage": "https://symfony.com",
  4915. "time": "2019-04-10T16:00:48+00:00"
  4916. },
  4917. {
  4918. "name": "symfony/validator",
  4919. "version": "v3.4.26",
  4920. "source": {
  4921. "type": "git",
  4922. "url": "https://github.com/symfony/validator.git",
  4923. "reference": "83da5259779aaf9dde220130e62b785f74e2ac49"
  4924. },
  4925. "dist": {
  4926. "type": "zip",
  4927. "url": "https://api.github.com/repos/symfony/validator/zipball/83da5259779aaf9dde220130e62b785f74e2ac49",
  4928. "reference": "83da5259779aaf9dde220130e62b785f74e2ac49",
  4929. "shasum": ""
  4930. },
  4931. "require": {
  4932. "php": "^5.5.9|>=7.0.8",
  4933. "symfony/polyfill-ctype": "~1.8",
  4934. "symfony/polyfill-mbstring": "~1.0",
  4935. "symfony/translation": "~2.8|~3.0|~4.0"
  4936. },
  4937. "conflict": {
  4938. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4939. "symfony/dependency-injection": "<3.3",
  4940. "symfony/http-kernel": "<3.3.5",
  4941. "symfony/yaml": "<3.4"
  4942. },
  4943. "require-dev": {
  4944. "doctrine/annotations": "~1.0",
  4945. "doctrine/cache": "~1.0",
  4946. "egulias/email-validator": "^1.2.8|~2.0",
  4947. "symfony/cache": "~3.1|~4.0",
  4948. "symfony/config": "~2.8|~3.0|~4.0",
  4949. "symfony/dependency-injection": "~3.3|~4.0",
  4950. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4951. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4952. "symfony/http-kernel": "^3.3.5|~4.0",
  4953. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  4954. "symfony/property-access": "~2.8|~3.0|~4.0",
  4955. "symfony/var-dumper": "~3.3|~4.0",
  4956. "symfony/yaml": "~3.4|~4.0"
  4957. },
  4958. "suggest": {
  4959. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4960. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4961. "egulias/email-validator": "Strict (RFC compliant) email validation",
  4962. "psr/cache-implementation": "For using the metadata cache.",
  4963. "symfony/config": "",
  4964. "symfony/expression-language": "For using the Expression validator",
  4965. "symfony/http-foundation": "",
  4966. "symfony/intl": "",
  4967. "symfony/property-access": "For accessing properties within comparison constraints",
  4968. "symfony/yaml": ""
  4969. },
  4970. "type": "library",
  4971. "extra": {
  4972. "branch-alias": {
  4973. "dev-master": "3.4-dev"
  4974. }
  4975. },
  4976. "autoload": {
  4977. "psr-4": {
  4978. "Symfony\\Component\\Validator\\": ""
  4979. },
  4980. "exclude-from-classmap": [
  4981. "/Tests/"
  4982. ]
  4983. },
  4984. "notification-url": "https://packagist.org/downloads/",
  4985. "license": [
  4986. "MIT"
  4987. ],
  4988. "authors": [
  4989. {
  4990. "name": "Fabien Potencier",
  4991. "email": "fabien@symfony.com"
  4992. },
  4993. {
  4994. "name": "Symfony Community",
  4995. "homepage": "https://symfony.com/contributors"
  4996. }
  4997. ],
  4998. "description": "Symfony Validator Component",
  4999. "homepage": "https://symfony.com",
  5000. "time": "2019-04-16T11:21:44+00:00"
  5001. },
  5002. {
  5003. "name": "symfony/var-dumper",
  5004. "version": "v3.4.26",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://github.com/symfony/var-dumper.git",
  5008. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f0883812642a6d6583a9e2ae6aec4ba134436f40",
  5013. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40",
  5014. "shasum": ""
  5015. },
  5016. "require": {
  5017. "php": "^5.5.9|>=7.0.8",
  5018. "symfony/polyfill-mbstring": "~1.0"
  5019. },
  5020. "conflict": {
  5021. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  5022. },
  5023. "require-dev": {
  5024. "ext-iconv": "*",
  5025. "twig/twig": "~1.34|~2.4"
  5026. },
  5027. "suggest": {
  5028. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5029. "ext-intl": "To show region name in time zone dump",
  5030. "ext-symfony_debug": ""
  5031. },
  5032. "type": "library",
  5033. "extra": {
  5034. "branch-alias": {
  5035. "dev-master": "3.4-dev"
  5036. }
  5037. },
  5038. "autoload": {
  5039. "files": [
  5040. "Resources/functions/dump.php"
  5041. ],
  5042. "psr-4": {
  5043. "Symfony\\Component\\VarDumper\\": ""
  5044. },
  5045. "exclude-from-classmap": [
  5046. "/Tests/"
  5047. ]
  5048. },
  5049. "notification-url": "https://packagist.org/downloads/",
  5050. "license": [
  5051. "MIT"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "Nicolas Grekas",
  5056. "email": "p@tchwork.com"
  5057. },
  5058. {
  5059. "name": "Symfony Community",
  5060. "homepage": "https://symfony.com/contributors"
  5061. }
  5062. ],
  5063. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5064. "homepage": "https://symfony.com",
  5065. "keywords": [
  5066. "debug",
  5067. "dump"
  5068. ],
  5069. "time": "2019-04-16T13:58:17+00:00"
  5070. },
  5071. {
  5072. "name": "symfony/yaml",
  5073. "version": "v3.4.26",
  5074. "source": {
  5075. "type": "git",
  5076. "url": "https://github.com/symfony/yaml.git",
  5077. "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996"
  5078. },
  5079. "dist": {
  5080. "type": "zip",
  5081. "url": "https://api.github.com/repos/symfony/yaml/zipball/212a27b731e5bfb735679d1ffaac82bd6a1dc996",
  5082. "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996",
  5083. "shasum": ""
  5084. },
  5085. "require": {
  5086. "php": "^5.5.9|>=7.0.8",
  5087. "symfony/polyfill-ctype": "~1.8"
  5088. },
  5089. "conflict": {
  5090. "symfony/console": "<3.4"
  5091. },
  5092. "require-dev": {
  5093. "symfony/console": "~3.4|~4.0"
  5094. },
  5095. "suggest": {
  5096. "symfony/console": "For validating YAML files using the lint command"
  5097. },
  5098. "type": "library",
  5099. "extra": {
  5100. "branch-alias": {
  5101. "dev-master": "3.4-dev"
  5102. }
  5103. },
  5104. "autoload": {
  5105. "psr-4": {
  5106. "Symfony\\Component\\Yaml\\": ""
  5107. },
  5108. "exclude-from-classmap": [
  5109. "/Tests/"
  5110. ]
  5111. },
  5112. "notification-url": "https://packagist.org/downloads/",
  5113. "license": [
  5114. "MIT"
  5115. ],
  5116. "authors": [
  5117. {
  5118. "name": "Fabien Potencier",
  5119. "email": "fabien@symfony.com"
  5120. },
  5121. {
  5122. "name": "Symfony Community",
  5123. "homepage": "https://symfony.com/contributors"
  5124. }
  5125. ],
  5126. "description": "Symfony Yaml Component",
  5127. "homepage": "https://symfony.com",
  5128. "time": "2019-03-25T07:48:46+00:00"
  5129. },
  5130. {
  5131. "name": "twig/twig",
  5132. "version": "v1.40.1",
  5133. "source": {
  5134. "type": "git",
  5135. "url": "https://github.com/twigphp/Twig.git",
  5136. "reference": "35889516bbd6bbe46a600c2c33b03515df4a076e"
  5137. },
  5138. "dist": {
  5139. "type": "zip",
  5140. "url": "https://api.github.com/repos/twigphp/Twig/zipball/35889516bbd6bbe46a600c2c33b03515df4a076e",
  5141. "reference": "35889516bbd6bbe46a600c2c33b03515df4a076e",
  5142. "shasum": ""
  5143. },
  5144. "require": {
  5145. "php": ">=5.4.0",
  5146. "symfony/polyfill-ctype": "^1.8"
  5147. },
  5148. "require-dev": {
  5149. "psr/container": "^1.0",
  5150. "symfony/debug": "^2.7",
  5151. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  5152. },
  5153. "type": "library",
  5154. "extra": {
  5155. "branch-alias": {
  5156. "dev-master": "1.40-dev"
  5157. }
  5158. },
  5159. "autoload": {
  5160. "psr-0": {
  5161. "Twig_": "lib/"
  5162. },
  5163. "psr-4": {
  5164. "Twig\\": "src/"
  5165. }
  5166. },
  5167. "notification-url": "https://packagist.org/downloads/",
  5168. "license": [
  5169. "BSD-3-Clause"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "Fabien Potencier",
  5174. "email": "fabien@symfony.com",
  5175. "homepage": "http://fabien.potencier.org",
  5176. "role": "Lead Developer"
  5177. },
  5178. {
  5179. "name": "Armin Ronacher",
  5180. "email": "armin.ronacher@active-4.com",
  5181. "role": "Project Founder"
  5182. },
  5183. {
  5184. "name": "Twig Team",
  5185. "homepage": "https://twig.symfony.com/contributors",
  5186. "role": "Contributors"
  5187. }
  5188. ],
  5189. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5190. "homepage": "https://twig.symfony.com",
  5191. "keywords": [
  5192. "templating"
  5193. ],
  5194. "time": "2019-04-29T14:12:28+00:00"
  5195. },
  5196. {
  5197. "name": "typo3/phar-stream-wrapper",
  5198. "version": "v2.1.0",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  5202. "reference": "b7a21f0859059ed5d9754af8c11f852d43762334"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/b7a21f0859059ed5d9754af8c11f852d43762334",
  5207. "reference": "b7a21f0859059ed5d9754af8c11f852d43762334",
  5208. "shasum": ""
  5209. },
  5210. "require": {
  5211. "brumann/polyfill-unserialize": "^1.0",
  5212. "ext-fileinfo": "*",
  5213. "ext-json": "*",
  5214. "php": "^5.3.3|^7.0"
  5215. },
  5216. "require-dev": {
  5217. "phpunit/phpunit": "^4.8.36"
  5218. },
  5219. "type": "library",
  5220. "autoload": {
  5221. "psr-4": {
  5222. "TYPO3\\PharStreamWrapper\\": "src/"
  5223. }
  5224. },
  5225. "notification-url": "https://packagist.org/downloads/",
  5226. "license": [
  5227. "MIT"
  5228. ],
  5229. "description": "Interceptors for PHP's native phar:// stream handling",
  5230. "homepage": "https://typo3.org/",
  5231. "keywords": [
  5232. "phar",
  5233. "php",
  5234. "security",
  5235. "stream-wrapper"
  5236. ],
  5237. "time": "2019-03-01T17:43:52+00:00"
  5238. },
  5239. {
  5240. "name": "vlucas/phpdotenv",
  5241. "version": "v2.6.1",
  5242. "source": {
  5243. "type": "git",
  5244. "url": "https://github.com/vlucas/phpdotenv.git",
  5245. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  5246. },
  5247. "dist": {
  5248. "type": "zip",
  5249. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  5250. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  5251. "shasum": ""
  5252. },
  5253. "require": {
  5254. "php": ">=5.3.9",
  5255. "symfony/polyfill-ctype": "^1.9"
  5256. },
  5257. "require-dev": {
  5258. "phpunit/phpunit": "^4.8.35 || ^5.0"
  5259. },
  5260. "type": "library",
  5261. "extra": {
  5262. "branch-alias": {
  5263. "dev-master": "2.6-dev"
  5264. }
  5265. },
  5266. "autoload": {
  5267. "psr-4": {
  5268. "Dotenv\\": "src/"
  5269. }
  5270. },
  5271. "notification-url": "https://packagist.org/downloads/",
  5272. "license": [
  5273. "BSD-3-Clause"
  5274. ],
  5275. "authors": [
  5276. {
  5277. "name": "Vance Lucas",
  5278. "email": "vance@vancelucas.com",
  5279. "homepage": "http://www.vancelucas.com"
  5280. }
  5281. ],
  5282. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5283. "keywords": [
  5284. "dotenv",
  5285. "env",
  5286. "environment"
  5287. ],
  5288. "time": "2019-01-29T11:11:52+00:00"
  5289. },
  5290. {
  5291. "name": "webflo/drupal-finder",
  5292. "version": "1.1.0",
  5293. "source": {
  5294. "type": "git",
  5295. "url": "https://github.com/webflo/drupal-finder.git",
  5296. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  5297. },
  5298. "dist": {
  5299. "type": "zip",
  5300. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  5301. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  5302. "shasum": ""
  5303. },
  5304. "require-dev": {
  5305. "mikey179/vfsstream": "^1.6",
  5306. "phpunit/phpunit": "^4.8"
  5307. },
  5308. "type": "library",
  5309. "autoload": {
  5310. "classmap": [
  5311. "src/DrupalFinder.php"
  5312. ]
  5313. },
  5314. "notification-url": "https://packagist.org/downloads/",
  5315. "license": [
  5316. "GPL-2.0+"
  5317. ],
  5318. "authors": [
  5319. {
  5320. "name": "Florian Weber",
  5321. "email": "florian@webflo.org"
  5322. }
  5323. ],
  5324. "description": "Helper class to locate a Drupal installation from a given path.",
  5325. "time": "2017-10-24T08:12:11+00:00"
  5326. },
  5327. {
  5328. "name": "webmozart/assert",
  5329. "version": "1.4.0",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://github.com/webmozart/assert.git",
  5333. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  5338. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  5339. "shasum": ""
  5340. },
  5341. "require": {
  5342. "php": "^5.3.3 || ^7.0",
  5343. "symfony/polyfill-ctype": "^1.8"
  5344. },
  5345. "require-dev": {
  5346. "phpunit/phpunit": "^4.6",
  5347. "sebastian/version": "^1.0.1"
  5348. },
  5349. "type": "library",
  5350. "extra": {
  5351. "branch-alias": {
  5352. "dev-master": "1.3-dev"
  5353. }
  5354. },
  5355. "autoload": {
  5356. "psr-4": {
  5357. "Webmozart\\Assert\\": "src/"
  5358. }
  5359. },
  5360. "notification-url": "https://packagist.org/downloads/",
  5361. "license": [
  5362. "MIT"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "Bernhard Schussek",
  5367. "email": "bschussek@gmail.com"
  5368. }
  5369. ],
  5370. "description": "Assertions to validate method input/output with nice error messages.",
  5371. "keywords": [
  5372. "assert",
  5373. "check",
  5374. "validate"
  5375. ],
  5376. "time": "2018-12-25T11:19:39+00:00"
  5377. },
  5378. {
  5379. "name": "webmozart/path-util",
  5380. "version": "2.3.0",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://github.com/webmozart/path-util.git",
  5384. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  5389. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  5390. "shasum": ""
  5391. },
  5392. "require": {
  5393. "php": ">=5.3.3",
  5394. "webmozart/assert": "~1.0"
  5395. },
  5396. "require-dev": {
  5397. "phpunit/phpunit": "^4.6",
  5398. "sebastian/version": "^1.0.1"
  5399. },
  5400. "type": "library",
  5401. "extra": {
  5402. "branch-alias": {
  5403. "dev-master": "2.3-dev"
  5404. }
  5405. },
  5406. "autoload": {
  5407. "psr-4": {
  5408. "Webmozart\\PathUtil\\": "src/"
  5409. }
  5410. },
  5411. "notification-url": "https://packagist.org/downloads/",
  5412. "license": [
  5413. "MIT"
  5414. ],
  5415. "authors": [
  5416. {
  5417. "name": "Bernhard Schussek",
  5418. "email": "bschussek@gmail.com"
  5419. }
  5420. ],
  5421. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  5422. "time": "2015-12-17T08:42:14+00:00"
  5423. },
  5424. {
  5425. "name": "zaporylie/composer-drupal-optimizations",
  5426. "version": "1.1.0",
  5427. "source": {
  5428. "type": "git",
  5429. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  5430. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8"
  5431. },
  5432. "dist": {
  5433. "type": "zip",
  5434. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  5435. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  5436. "shasum": ""
  5437. },
  5438. "require": {
  5439. "composer-plugin-api": "^1.1"
  5440. },
  5441. "require-dev": {
  5442. "composer/composer": "^1.6",
  5443. "phpunit/phpunit": "^6"
  5444. },
  5445. "type": "composer-plugin",
  5446. "extra": {
  5447. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  5448. },
  5449. "autoload": {
  5450. "psr-4": {
  5451. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  5452. }
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "GPL-2.0-or-later"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Jakub Piasecki",
  5461. "email": "jakub@piaseccy.pl"
  5462. }
  5463. ],
  5464. "description": "Composer plugin to improve composer performance for Drupal projects",
  5465. "time": "2019-02-20T10:00:17+00:00"
  5466. },
  5467. {
  5468. "name": "zendframework/zend-diactoros",
  5469. "version": "1.8.6",
  5470. "source": {
  5471. "type": "git",
  5472. "url": "https://github.com/zendframework/zend-diactoros.git",
  5473. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  5474. },
  5475. "dist": {
  5476. "type": "zip",
  5477. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  5478. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  5479. "shasum": ""
  5480. },
  5481. "require": {
  5482. "php": "^5.6 || ^7.0",
  5483. "psr/http-message": "^1.0"
  5484. },
  5485. "provide": {
  5486. "psr/http-message-implementation": "1.0"
  5487. },
  5488. "require-dev": {
  5489. "ext-dom": "*",
  5490. "ext-libxml": "*",
  5491. "php-http/psr7-integration-tests": "dev-master",
  5492. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  5493. "zendframework/zend-coding-standard": "~1.0"
  5494. },
  5495. "type": "library",
  5496. "extra": {
  5497. "branch-alias": {
  5498. "dev-master": "1.8.x-dev",
  5499. "dev-develop": "1.9.x-dev",
  5500. "dev-release-2.0": "2.0.x-dev"
  5501. }
  5502. },
  5503. "autoload": {
  5504. "files": [
  5505. "src/functions/create_uploaded_file.php",
  5506. "src/functions/marshal_headers_from_sapi.php",
  5507. "src/functions/marshal_method_from_sapi.php",
  5508. "src/functions/marshal_protocol_version_from_sapi.php",
  5509. "src/functions/marshal_uri_from_sapi.php",
  5510. "src/functions/normalize_server.php",
  5511. "src/functions/normalize_uploaded_files.php",
  5512. "src/functions/parse_cookie_header.php"
  5513. ],
  5514. "psr-4": {
  5515. "Zend\\Diactoros\\": "src/"
  5516. }
  5517. },
  5518. "notification-url": "https://packagist.org/downloads/",
  5519. "license": [
  5520. "BSD-2-Clause"
  5521. ],
  5522. "description": "PSR HTTP Message implementations",
  5523. "homepage": "https://github.com/zendframework/zend-diactoros",
  5524. "keywords": [
  5525. "http",
  5526. "psr",
  5527. "psr-7"
  5528. ],
  5529. "time": "2018-09-05T19:29:37+00:00"
  5530. },
  5531. {
  5532. "name": "zendframework/zend-escaper",
  5533. "version": "2.6.0",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/zendframework/zend-escaper.git",
  5537. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  5542. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": "^5.6 || ^7.0"
  5547. },
  5548. "require-dev": {
  5549. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5550. "zendframework/zend-coding-standard": "~1.0.0"
  5551. },
  5552. "type": "library",
  5553. "extra": {
  5554. "branch-alias": {
  5555. "dev-master": "2.6.x-dev",
  5556. "dev-develop": "2.7.x-dev"
  5557. }
  5558. },
  5559. "autoload": {
  5560. "psr-4": {
  5561. "Zend\\Escaper\\": "src/"
  5562. }
  5563. },
  5564. "notification-url": "https://packagist.org/downloads/",
  5565. "license": [
  5566. "BSD-3-Clause"
  5567. ],
  5568. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5569. "keywords": [
  5570. "ZendFramework",
  5571. "escaper",
  5572. "zf"
  5573. ],
  5574. "time": "2018-04-25T15:48:53+00:00"
  5575. },
  5576. {
  5577. "name": "zendframework/zend-feed",
  5578. "version": "2.12.0",
  5579. "source": {
  5580. "type": "git",
  5581. "url": "https://github.com/zendframework/zend-feed.git",
  5582. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  5583. },
  5584. "dist": {
  5585. "type": "zip",
  5586. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  5587. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  5588. "shasum": ""
  5589. },
  5590. "require": {
  5591. "ext-dom": "*",
  5592. "ext-libxml": "*",
  5593. "php": "^5.6 || ^7.0",
  5594. "zendframework/zend-escaper": "^2.5.2",
  5595. "zendframework/zend-stdlib": "^3.2.1"
  5596. },
  5597. "require-dev": {
  5598. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  5599. "psr/http-message": "^1.0.1",
  5600. "zendframework/zend-cache": "^2.7.2",
  5601. "zendframework/zend-coding-standard": "~1.0.0",
  5602. "zendframework/zend-db": "^2.8.2",
  5603. "zendframework/zend-http": "^2.7",
  5604. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  5605. "zendframework/zend-validator": "^2.10.1"
  5606. },
  5607. "suggest": {
  5608. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  5609. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  5610. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  5611. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  5612. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  5613. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  5614. },
  5615. "type": "library",
  5616. "extra": {
  5617. "branch-alias": {
  5618. "dev-master": "2.12.x-dev",
  5619. "dev-develop": "2.13.x-dev"
  5620. }
  5621. },
  5622. "autoload": {
  5623. "psr-4": {
  5624. "Zend\\Feed\\": "src/"
  5625. }
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "BSD-3-Clause"
  5630. ],
  5631. "description": "provides functionality for consuming RSS and Atom feeds",
  5632. "keywords": [
  5633. "ZendFramework",
  5634. "feed",
  5635. "zf"
  5636. ],
  5637. "time": "2019-03-05T20:08:49+00:00"
  5638. },
  5639. {
  5640. "name": "zendframework/zend-stdlib",
  5641. "version": "3.2.1",
  5642. "source": {
  5643. "type": "git",
  5644. "url": "https://github.com/zendframework/zend-stdlib.git",
  5645. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  5646. },
  5647. "dist": {
  5648. "type": "zip",
  5649. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  5650. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  5651. "shasum": ""
  5652. },
  5653. "require": {
  5654. "php": "^5.6 || ^7.0"
  5655. },
  5656. "require-dev": {
  5657. "phpbench/phpbench": "^0.13",
  5658. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5659. "zendframework/zend-coding-standard": "~1.0.0"
  5660. },
  5661. "type": "library",
  5662. "extra": {
  5663. "branch-alias": {
  5664. "dev-master": "3.2.x-dev",
  5665. "dev-develop": "3.3.x-dev"
  5666. }
  5667. },
  5668. "autoload": {
  5669. "psr-4": {
  5670. "Zend\\Stdlib\\": "src/"
  5671. }
  5672. },
  5673. "notification-url": "https://packagist.org/downloads/",
  5674. "license": [
  5675. "BSD-3-Clause"
  5676. ],
  5677. "description": "SPL extensions, array utilities, error handlers, and more",
  5678. "keywords": [
  5679. "ZendFramework",
  5680. "stdlib",
  5681. "zf"
  5682. ],
  5683. "time": "2018-08-28T21:34:05+00:00"
  5684. }
  5685. ],
  5686. "packages-dev": [
  5687. {
  5688. "name": "behat/mink",
  5689. "version": "dev-master",
  5690. "source": {
  5691. "type": "git",
  5692. "url": "https://github.com/minkphp/Mink.git",
  5693. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  5694. },
  5695. "dist": {
  5696. "type": "zip",
  5697. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  5698. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  5699. "shasum": ""
  5700. },
  5701. "require": {
  5702. "php": ">=5.3.1",
  5703. "symfony/css-selector": "^2.7|^3.0|^4.0"
  5704. },
  5705. "require-dev": {
  5706. "symfony/phpunit-bridge": "^3.3|^4.0"
  5707. },
  5708. "suggest": {
  5709. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  5710. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  5711. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  5712. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  5713. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  5714. },
  5715. "type": "library",
  5716. "extra": {
  5717. "branch-alias": {
  5718. "dev-master": "1.7.x-dev"
  5719. }
  5720. },
  5721. "autoload": {
  5722. "psr-4": {
  5723. "Behat\\Mink\\": "src/"
  5724. }
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "Konstantin Kudryashov",
  5733. "email": "ever.zet@gmail.com",
  5734. "homepage": "http://everzet.com"
  5735. }
  5736. ],
  5737. "description": "Browser controller/emulator abstraction for PHP",
  5738. "homepage": "http://mink.behat.org/",
  5739. "keywords": [
  5740. "browser",
  5741. "testing",
  5742. "web"
  5743. ],
  5744. "time": "2018-06-24T20:08:51+00:00"
  5745. },
  5746. {
  5747. "name": "behat/mink-browserkit-driver",
  5748. "version": "1.3.3",
  5749. "source": {
  5750. "type": "git",
  5751. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  5752. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  5753. },
  5754. "dist": {
  5755. "type": "zip",
  5756. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  5757. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  5758. "shasum": ""
  5759. },
  5760. "require": {
  5761. "behat/mink": "^1.7.1@dev",
  5762. "php": ">=5.3.6",
  5763. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  5764. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  5765. },
  5766. "require-dev": {
  5767. "mink/driver-testsuite": "dev-master",
  5768. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  5769. },
  5770. "type": "mink-driver",
  5771. "extra": {
  5772. "branch-alias": {
  5773. "dev-master": "1.3.x-dev"
  5774. }
  5775. },
  5776. "autoload": {
  5777. "psr-4": {
  5778. "Behat\\Mink\\Driver\\": "src/"
  5779. }
  5780. },
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "MIT"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "Konstantin Kudryashov",
  5788. "email": "ever.zet@gmail.com",
  5789. "homepage": "http://everzet.com"
  5790. }
  5791. ],
  5792. "description": "Symfony2 BrowserKit driver for Mink framework",
  5793. "homepage": "http://mink.behat.org/",
  5794. "keywords": [
  5795. "Mink",
  5796. "Symfony2",
  5797. "browser",
  5798. "testing"
  5799. ],
  5800. "time": "2018-05-02T09:25:31+00:00"
  5801. },
  5802. {
  5803. "name": "behat/mink-goutte-driver",
  5804. "version": "v1.2.1",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  5808. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  5813. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "behat/mink": "~1.6@dev",
  5818. "behat/mink-browserkit-driver": "~1.2@dev",
  5819. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  5820. "php": ">=5.3.1"
  5821. },
  5822. "require-dev": {
  5823. "symfony/phpunit-bridge": "~2.7|~3.0"
  5824. },
  5825. "type": "mink-driver",
  5826. "extra": {
  5827. "branch-alias": {
  5828. "dev-master": "1.2.x-dev"
  5829. }
  5830. },
  5831. "autoload": {
  5832. "psr-4": {
  5833. "Behat\\Mink\\Driver\\": "src/"
  5834. }
  5835. },
  5836. "notification-url": "https://packagist.org/downloads/",
  5837. "license": [
  5838. "MIT"
  5839. ],
  5840. "authors": [
  5841. {
  5842. "name": "Konstantin Kudryashov",
  5843. "email": "ever.zet@gmail.com",
  5844. "homepage": "http://everzet.com"
  5845. }
  5846. ],
  5847. "description": "Goutte driver for Mink framework",
  5848. "homepage": "http://mink.behat.org/",
  5849. "keywords": [
  5850. "browser",
  5851. "goutte",
  5852. "headless",
  5853. "testing"
  5854. ],
  5855. "time": "2016-03-05T09:04:22+00:00"
  5856. },
  5857. {
  5858. "name": "behat/mink-selenium2-driver",
  5859. "version": "dev-master",
  5860. "source": {
  5861. "type": "git",
  5862. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  5863. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  5864. },
  5865. "dist": {
  5866. "type": "zip",
  5867. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  5868. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  5869. "shasum": ""
  5870. },
  5871. "require": {
  5872. "behat/mink": "~1.7@dev",
  5873. "instaclick/php-webdriver": "~1.1",
  5874. "php": ">=5.3.1"
  5875. },
  5876. "require-dev": {
  5877. "mink/driver-testsuite": "dev-master"
  5878. },
  5879. "type": "mink-driver",
  5880. "extra": {
  5881. "branch-alias": {
  5882. "dev-master": "1.3.x-dev"
  5883. }
  5884. },
  5885. "autoload": {
  5886. "psr-4": {
  5887. "Behat\\Mink\\Driver\\": "src/"
  5888. }
  5889. },
  5890. "notification-url": "https://packagist.org/downloads/",
  5891. "license": [
  5892. "MIT"
  5893. ],
  5894. "authors": [
  5895. {
  5896. "name": "Konstantin Kudryashov",
  5897. "email": "ever.zet@gmail.com",
  5898. "homepage": "http://everzet.com"
  5899. },
  5900. {
  5901. "name": "Pete Otaqui",
  5902. "email": "pete@otaqui.com",
  5903. "homepage": "https://github.com/pete-otaqui"
  5904. }
  5905. ],
  5906. "description": "Selenium2 (WebDriver) driver for Mink framework",
  5907. "homepage": "http://mink.behat.org/",
  5908. "keywords": [
  5909. "ajax",
  5910. "browser",
  5911. "javascript",
  5912. "selenium",
  5913. "testing",
  5914. "webdriver"
  5915. ],
  5916. "time": "2018-10-10T12:39:06+00:00"
  5917. },
  5918. {
  5919. "name": "doctrine/instantiator",
  5920. "version": "1.0.5",
  5921. "source": {
  5922. "type": "git",
  5923. "url": "https://github.com/doctrine/instantiator.git",
  5924. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  5925. },
  5926. "dist": {
  5927. "type": "zip",
  5928. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  5929. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  5930. "shasum": ""
  5931. },
  5932. "require": {
  5933. "php": ">=5.3,<8.0-DEV"
  5934. },
  5935. "require-dev": {
  5936. "athletic/athletic": "~0.1.8",
  5937. "ext-pdo": "*",
  5938. "ext-phar": "*",
  5939. "phpunit/phpunit": "~4.0",
  5940. "squizlabs/php_codesniffer": "~2.0"
  5941. },
  5942. "type": "library",
  5943. "extra": {
  5944. "branch-alias": {
  5945. "dev-master": "1.0.x-dev"
  5946. }
  5947. },
  5948. "autoload": {
  5949. "psr-4": {
  5950. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5951. }
  5952. },
  5953. "notification-url": "https://packagist.org/downloads/",
  5954. "license": [
  5955. "MIT"
  5956. ],
  5957. "authors": [
  5958. {
  5959. "name": "Marco Pivetta",
  5960. "email": "ocramius@gmail.com",
  5961. "homepage": "http://ocramius.github.com/"
  5962. }
  5963. ],
  5964. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5965. "homepage": "https://github.com/doctrine/instantiator",
  5966. "keywords": [
  5967. "constructor",
  5968. "instantiate"
  5969. ],
  5970. "time": "2015-06-14T21:17:01+00:00"
  5971. },
  5972. {
  5973. "name": "drupal/coder",
  5974. "version": "8.3.3",
  5975. "source": {
  5976. "type": "git",
  5977. "url": "https://git.drupal.org/project/coder.git",
  5978. "reference": "a33d3388fb2e1d94bd2aee36a8ff79186e9d8f43"
  5979. },
  5980. "require": {
  5981. "ext-mbstring": "*",
  5982. "php": ">=5.5.9",
  5983. "squizlabs/php_codesniffer": "^3.4.1",
  5984. "symfony/yaml": ">=2.0.0"
  5985. },
  5986. "require-dev": {
  5987. "phpunit/phpunit": ">=3.7 <6"
  5988. },
  5989. "type": "phpcodesniffer-standard",
  5990. "autoload": {
  5991. "psr-0": {
  5992. "Drupal\\": "coder_sniffer/Drupal/",
  5993. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  5994. }
  5995. },
  5996. "notification-url": "https://packagist.org/downloads/",
  5997. "license": [
  5998. "GPL-2.0+"
  5999. ],
  6000. "description": "Coder is a library to review Drupal code.",
  6001. "homepage": "https://www.drupal.org/project/coder",
  6002. "keywords": [
  6003. "code review",
  6004. "phpcs",
  6005. "standards"
  6006. ],
  6007. "time": "2019-04-16T18:56:06+00:00"
  6008. },
  6009. {
  6010. "name": "fabpot/goutte",
  6011. "version": "v3.2.3",
  6012. "source": {
  6013. "type": "git",
  6014. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6015. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6016. },
  6017. "dist": {
  6018. "type": "zip",
  6019. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6020. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6021. "shasum": ""
  6022. },
  6023. "require": {
  6024. "guzzlehttp/guzzle": "^6.0",
  6025. "php": ">=5.5.0",
  6026. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6027. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6028. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6029. },
  6030. "require-dev": {
  6031. "symfony/phpunit-bridge": "^3.3 || ^4"
  6032. },
  6033. "type": "application",
  6034. "extra": {
  6035. "branch-alias": {
  6036. "dev-master": "3.2-dev"
  6037. }
  6038. },
  6039. "autoload": {
  6040. "psr-4": {
  6041. "Goutte\\": "Goutte"
  6042. },
  6043. "exclude-from-classmap": [
  6044. "Goutte/Tests"
  6045. ]
  6046. },
  6047. "notification-url": "https://packagist.org/downloads/",
  6048. "license": [
  6049. "MIT"
  6050. ],
  6051. "authors": [
  6052. {
  6053. "name": "Fabien Potencier",
  6054. "email": "fabien@symfony.com"
  6055. }
  6056. ],
  6057. "description": "A simple PHP Web Scraper",
  6058. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6059. "keywords": [
  6060. "scraper"
  6061. ],
  6062. "time": "2018-06-29T15:13:57+00:00"
  6063. },
  6064. {
  6065. "name": "instaclick/php-webdriver",
  6066. "version": "1.4.5",
  6067. "source": {
  6068. "type": "git",
  6069. "url": "https://github.com/instaclick/php-webdriver.git",
  6070. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  6071. },
  6072. "dist": {
  6073. "type": "zip",
  6074. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  6075. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  6076. "shasum": ""
  6077. },
  6078. "require": {
  6079. "ext-curl": "*",
  6080. "php": ">=5.3.2"
  6081. },
  6082. "require-dev": {
  6083. "phpunit/phpunit": "^4.8",
  6084. "satooshi/php-coveralls": "^1.0||^2.0"
  6085. },
  6086. "type": "library",
  6087. "extra": {
  6088. "branch-alias": {
  6089. "dev-master": "1.4.x-dev"
  6090. }
  6091. },
  6092. "autoload": {
  6093. "psr-0": {
  6094. "WebDriver": "lib/"
  6095. }
  6096. },
  6097. "notification-url": "https://packagist.org/downloads/",
  6098. "license": [
  6099. "Apache-2.0"
  6100. ],
  6101. "authors": [
  6102. {
  6103. "name": "Justin Bishop",
  6104. "email": "jubishop@gmail.com",
  6105. "role": "Developer"
  6106. },
  6107. {
  6108. "name": "Anthon Pang",
  6109. "email": "apang@softwaredevelopment.ca",
  6110. "role": "Fork Maintainer"
  6111. }
  6112. ],
  6113. "description": "PHP WebDriver for Selenium 2",
  6114. "homepage": "http://instaclick.com/",
  6115. "keywords": [
  6116. "browser",
  6117. "selenium",
  6118. "webdriver",
  6119. "webtest"
  6120. ],
  6121. "time": "2017-06-30T04:02:48+00:00"
  6122. },
  6123. {
  6124. "name": "jcalderonzumba/gastonjs",
  6125. "version": "v1.2.0",
  6126. "source": {
  6127. "type": "git",
  6128. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6129. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6130. },
  6131. "dist": {
  6132. "type": "zip",
  6133. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6134. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6135. "shasum": ""
  6136. },
  6137. "require": {
  6138. "guzzlehttp/guzzle": "~5.0|~6.0",
  6139. "php": ">=5.4"
  6140. },
  6141. "require-dev": {
  6142. "phpunit/phpunit": "~4.6",
  6143. "silex/silex": "~1.2",
  6144. "symfony/phpunit-bridge": "~2.7",
  6145. "symfony/process": "~2.1"
  6146. },
  6147. "type": "phantomjs-api",
  6148. "extra": {
  6149. "branch-alias": {
  6150. "dev-master": "1.1.x-dev"
  6151. }
  6152. },
  6153. "autoload": {
  6154. "psr-4": {
  6155. "Zumba\\GastonJS\\": "src"
  6156. }
  6157. },
  6158. "notification-url": "https://packagist.org/downloads/",
  6159. "license": [
  6160. "MIT"
  6161. ],
  6162. "authors": [
  6163. {
  6164. "name": "Juan Francisco Calderón Zumba",
  6165. "email": "juanfcz@gmail.com",
  6166. "homepage": "http://github.com/jcalderonzumba"
  6167. }
  6168. ],
  6169. "description": "PhantomJS API based server for webpage automation",
  6170. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6171. "keywords": [
  6172. "api",
  6173. "automation",
  6174. "browser",
  6175. "headless",
  6176. "phantomjs"
  6177. ],
  6178. "time": "2017-03-31T07:31:47+00:00"
  6179. },
  6180. {
  6181. "name": "jcalderonzumba/mink-phantomjs-driver",
  6182. "version": "v0.3.3",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6186. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6191. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "behat/mink": "~1.7",
  6196. "jcalderonzumba/gastonjs": "~1.0",
  6197. "php": ">=5.4",
  6198. "twig/twig": "~1.20|~2.0"
  6199. },
  6200. "require-dev": {
  6201. "mink/driver-testsuite": "dev-master",
  6202. "phpunit/phpunit": "~4.6"
  6203. },
  6204. "type": "mink-driver",
  6205. "extra": {
  6206. "branch-alias": {
  6207. "dev-master": "0.4.x-dev"
  6208. }
  6209. },
  6210. "autoload": {
  6211. "psr-4": {
  6212. "Zumba\\Mink\\Driver\\": "src"
  6213. }
  6214. },
  6215. "notification-url": "https://packagist.org/downloads/",
  6216. "license": [
  6217. "MIT"
  6218. ],
  6219. "authors": [
  6220. {
  6221. "name": "Juan Francisco Calderón Zumba",
  6222. "email": "juanfcz@gmail.com",
  6223. "homepage": "http://github.com/jcalderonzumba"
  6224. }
  6225. ],
  6226. "description": "PhantomJS driver for Mink framework",
  6227. "homepage": "http://mink.behat.org/",
  6228. "keywords": [
  6229. "ajax",
  6230. "browser",
  6231. "headless",
  6232. "javascript",
  6233. "phantomjs",
  6234. "testing"
  6235. ],
  6236. "time": "2016-12-01T10:57:30+00:00"
  6237. },
  6238. {
  6239. "name": "mikey179/vfsStream",
  6240. "version": "v1.6.6",
  6241. "source": {
  6242. "type": "git",
  6243. "url": "https://github.com/bovigo/vfsStream.git",
  6244. "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d"
  6245. },
  6246. "dist": {
  6247. "type": "zip",
  6248. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/095238a0711c974ae5b4ebf4c4534a23f3f6c99d",
  6249. "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d",
  6250. "shasum": ""
  6251. },
  6252. "require": {
  6253. "php": ">=5.3.0"
  6254. },
  6255. "require-dev": {
  6256. "phpunit/phpunit": "~4.5"
  6257. },
  6258. "type": "library",
  6259. "extra": {
  6260. "branch-alias": {
  6261. "dev-master": "1.6.x-dev"
  6262. }
  6263. },
  6264. "autoload": {
  6265. "psr-0": {
  6266. "org\\bovigo\\vfs\\": "src/main/php"
  6267. }
  6268. },
  6269. "notification-url": "https://packagist.org/downloads/",
  6270. "license": [
  6271. "BSD-3-Clause"
  6272. ],
  6273. "authors": [
  6274. {
  6275. "name": "Frank Kleine",
  6276. "homepage": "http://frankkleine.de/",
  6277. "role": "Developer"
  6278. }
  6279. ],
  6280. "description": "Virtual file system to mock the real file system in unit tests.",
  6281. "homepage": "http://vfs.bovigo.org/",
  6282. "time": "2019-04-08T13:54:32+00:00"
  6283. },
  6284. {
  6285. "name": "myclabs/deep-copy",
  6286. "version": "1.7.0",
  6287. "source": {
  6288. "type": "git",
  6289. "url": "https://github.com/myclabs/DeepCopy.git",
  6290. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  6291. },
  6292. "dist": {
  6293. "type": "zip",
  6294. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  6295. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  6296. "shasum": ""
  6297. },
  6298. "require": {
  6299. "php": "^5.6 || ^7.0"
  6300. },
  6301. "require-dev": {
  6302. "doctrine/collections": "^1.0",
  6303. "doctrine/common": "^2.6",
  6304. "phpunit/phpunit": "^4.1"
  6305. },
  6306. "type": "library",
  6307. "autoload": {
  6308. "psr-4": {
  6309. "DeepCopy\\": "src/DeepCopy/"
  6310. },
  6311. "files": [
  6312. "src/DeepCopy/deep_copy.php"
  6313. ]
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "MIT"
  6318. ],
  6319. "description": "Create deep copies (clones) of your objects",
  6320. "keywords": [
  6321. "clone",
  6322. "copy",
  6323. "duplicate",
  6324. "object",
  6325. "object graph"
  6326. ],
  6327. "time": "2017-10-19T19:58:43+00:00"
  6328. },
  6329. {
  6330. "name": "phar-io/manifest",
  6331. "version": "1.0.1",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/phar-io/manifest.git",
  6335. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  6340. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  6341. "shasum": ""
  6342. },
  6343. "require": {
  6344. "ext-dom": "*",
  6345. "ext-phar": "*",
  6346. "phar-io/version": "^1.0.1",
  6347. "php": "^5.6 || ^7.0"
  6348. },
  6349. "type": "library",
  6350. "extra": {
  6351. "branch-alias": {
  6352. "dev-master": "1.0.x-dev"
  6353. }
  6354. },
  6355. "autoload": {
  6356. "classmap": [
  6357. "src/"
  6358. ]
  6359. },
  6360. "notification-url": "https://packagist.org/downloads/",
  6361. "license": [
  6362. "BSD-3-Clause"
  6363. ],
  6364. "authors": [
  6365. {
  6366. "name": "Arne Blankerts",
  6367. "email": "arne@blankerts.de",
  6368. "role": "Developer"
  6369. },
  6370. {
  6371. "name": "Sebastian Heuer",
  6372. "email": "sebastian@phpeople.de",
  6373. "role": "Developer"
  6374. },
  6375. {
  6376. "name": "Sebastian Bergmann",
  6377. "email": "sebastian@phpunit.de",
  6378. "role": "Developer"
  6379. }
  6380. ],
  6381. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6382. "time": "2017-03-05T18:14:27+00:00"
  6383. },
  6384. {
  6385. "name": "phar-io/version",
  6386. "version": "1.0.1",
  6387. "source": {
  6388. "type": "git",
  6389. "url": "https://github.com/phar-io/version.git",
  6390. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  6391. },
  6392. "dist": {
  6393. "type": "zip",
  6394. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  6395. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  6396. "shasum": ""
  6397. },
  6398. "require": {
  6399. "php": "^5.6 || ^7.0"
  6400. },
  6401. "type": "library",
  6402. "autoload": {
  6403. "classmap": [
  6404. "src/"
  6405. ]
  6406. },
  6407. "notification-url": "https://packagist.org/downloads/",
  6408. "license": [
  6409. "BSD-3-Clause"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Arne Blankerts",
  6414. "email": "arne@blankerts.de",
  6415. "role": "Developer"
  6416. },
  6417. {
  6418. "name": "Sebastian Heuer",
  6419. "email": "sebastian@phpeople.de",
  6420. "role": "Developer"
  6421. },
  6422. {
  6423. "name": "Sebastian Bergmann",
  6424. "email": "sebastian@phpunit.de",
  6425. "role": "Developer"
  6426. }
  6427. ],
  6428. "description": "Library for handling version information and constraints",
  6429. "time": "2017-03-05T17:38:23+00:00"
  6430. },
  6431. {
  6432. "name": "phpdocumentor/reflection-common",
  6433. "version": "1.0.1",
  6434. "source": {
  6435. "type": "git",
  6436. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6437. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  6438. },
  6439. "dist": {
  6440. "type": "zip",
  6441. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  6442. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  6443. "shasum": ""
  6444. },
  6445. "require": {
  6446. "php": ">=5.5"
  6447. },
  6448. "require-dev": {
  6449. "phpunit/phpunit": "^4.6"
  6450. },
  6451. "type": "library",
  6452. "extra": {
  6453. "branch-alias": {
  6454. "dev-master": "1.0.x-dev"
  6455. }
  6456. },
  6457. "autoload": {
  6458. "psr-4": {
  6459. "phpDocumentor\\Reflection\\": [
  6460. "src"
  6461. ]
  6462. }
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Jaap van Otterdijk",
  6471. "email": "opensource@ijaap.nl"
  6472. }
  6473. ],
  6474. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6475. "homepage": "http://www.phpdoc.org",
  6476. "keywords": [
  6477. "FQSEN",
  6478. "phpDocumentor",
  6479. "phpdoc",
  6480. "reflection",
  6481. "static analysis"
  6482. ],
  6483. "time": "2017-09-11T18:02:19+00:00"
  6484. },
  6485. {
  6486. "name": "phpdocumentor/reflection-docblock",
  6487. "version": "4.3.0",
  6488. "source": {
  6489. "type": "git",
  6490. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6491. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  6492. },
  6493. "dist": {
  6494. "type": "zip",
  6495. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  6496. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  6497. "shasum": ""
  6498. },
  6499. "require": {
  6500. "php": "^7.0",
  6501. "phpdocumentor/reflection-common": "^1.0.0",
  6502. "phpdocumentor/type-resolver": "^0.4.0",
  6503. "webmozart/assert": "^1.0"
  6504. },
  6505. "require-dev": {
  6506. "doctrine/instantiator": "~1.0.5",
  6507. "mockery/mockery": "^1.0",
  6508. "phpunit/phpunit": "^6.4"
  6509. },
  6510. "type": "library",
  6511. "extra": {
  6512. "branch-alias": {
  6513. "dev-master": "4.x-dev"
  6514. }
  6515. },
  6516. "autoload": {
  6517. "psr-4": {
  6518. "phpDocumentor\\Reflection\\": [
  6519. "src/"
  6520. ]
  6521. }
  6522. },
  6523. "notification-url": "https://packagist.org/downloads/",
  6524. "license": [
  6525. "MIT"
  6526. ],
  6527. "authors": [
  6528. {
  6529. "name": "Mike van Riel",
  6530. "email": "me@mikevanriel.com"
  6531. }
  6532. ],
  6533. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6534. "time": "2017-11-30T07:14:17+00:00"
  6535. },
  6536. {
  6537. "name": "phpdocumentor/type-resolver",
  6538. "version": "0.4.0",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6542. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  6547. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "php": "^5.5 || ^7.0",
  6552. "phpdocumentor/reflection-common": "^1.0"
  6553. },
  6554. "require-dev": {
  6555. "mockery/mockery": "^0.9.4",
  6556. "phpunit/phpunit": "^5.2||^4.8.24"
  6557. },
  6558. "type": "library",
  6559. "extra": {
  6560. "branch-alias": {
  6561. "dev-master": "1.0.x-dev"
  6562. }
  6563. },
  6564. "autoload": {
  6565. "psr-4": {
  6566. "phpDocumentor\\Reflection\\": [
  6567. "src/"
  6568. ]
  6569. }
  6570. },
  6571. "notification-url": "https://packagist.org/downloads/",
  6572. "license": [
  6573. "MIT"
  6574. ],
  6575. "authors": [
  6576. {
  6577. "name": "Mike van Riel",
  6578. "email": "me@mikevanriel.com"
  6579. }
  6580. ],
  6581. "time": "2017-07-14T14:27:02+00:00"
  6582. },
  6583. {
  6584. "name": "phpspec/prophecy",
  6585. "version": "1.8.0",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/phpspec/prophecy.git",
  6589. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  6594. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  6595. "shasum": ""
  6596. },
  6597. "require": {
  6598. "doctrine/instantiator": "^1.0.2",
  6599. "php": "^5.3|^7.0",
  6600. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  6601. "sebastian/comparator": "^1.1|^2.0|^3.0",
  6602. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  6603. },
  6604. "require-dev": {
  6605. "phpspec/phpspec": "^2.5|^3.2",
  6606. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  6607. },
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "1.8.x-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "psr-0": {
  6616. "Prophecy\\": "src/"
  6617. }
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Konstantin Kudryashov",
  6626. "email": "ever.zet@gmail.com",
  6627. "homepage": "http://everzet.com"
  6628. },
  6629. {
  6630. "name": "Marcello Duarte",
  6631. "email": "marcello.duarte@gmail.com"
  6632. }
  6633. ],
  6634. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6635. "homepage": "https://github.com/phpspec/prophecy",
  6636. "keywords": [
  6637. "Double",
  6638. "Dummy",
  6639. "fake",
  6640. "mock",
  6641. "spy",
  6642. "stub"
  6643. ],
  6644. "time": "2018-08-05T17:53:17+00:00"
  6645. },
  6646. {
  6647. "name": "phpunit/php-code-coverage",
  6648. "version": "5.3.2",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6652. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  6657. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  6658. "shasum": ""
  6659. },
  6660. "require": {
  6661. "ext-dom": "*",
  6662. "ext-xmlwriter": "*",
  6663. "php": "^7.0",
  6664. "phpunit/php-file-iterator": "^1.4.2",
  6665. "phpunit/php-text-template": "^1.2.1",
  6666. "phpunit/php-token-stream": "^2.0.1",
  6667. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  6668. "sebastian/environment": "^3.0",
  6669. "sebastian/version": "^2.0.1",
  6670. "theseer/tokenizer": "^1.1"
  6671. },
  6672. "require-dev": {
  6673. "phpunit/phpunit": "^6.0"
  6674. },
  6675. "suggest": {
  6676. "ext-xdebug": "^2.5.5"
  6677. },
  6678. "type": "library",
  6679. "extra": {
  6680. "branch-alias": {
  6681. "dev-master": "5.3.x-dev"
  6682. }
  6683. },
  6684. "autoload": {
  6685. "classmap": [
  6686. "src/"
  6687. ]
  6688. },
  6689. "notification-url": "https://packagist.org/downloads/",
  6690. "license": [
  6691. "BSD-3-Clause"
  6692. ],
  6693. "authors": [
  6694. {
  6695. "name": "Sebastian Bergmann",
  6696. "email": "sebastian@phpunit.de",
  6697. "role": "lead"
  6698. }
  6699. ],
  6700. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6701. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6702. "keywords": [
  6703. "coverage",
  6704. "testing",
  6705. "xunit"
  6706. ],
  6707. "time": "2018-04-06T15:36:58+00:00"
  6708. },
  6709. {
  6710. "name": "phpunit/php-file-iterator",
  6711. "version": "1.4.5",
  6712. "source": {
  6713. "type": "git",
  6714. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6715. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  6716. },
  6717. "dist": {
  6718. "type": "zip",
  6719. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  6720. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  6721. "shasum": ""
  6722. },
  6723. "require": {
  6724. "php": ">=5.3.3"
  6725. },
  6726. "type": "library",
  6727. "extra": {
  6728. "branch-alias": {
  6729. "dev-master": "1.4.x-dev"
  6730. }
  6731. },
  6732. "autoload": {
  6733. "classmap": [
  6734. "src/"
  6735. ]
  6736. },
  6737. "notification-url": "https://packagist.org/downloads/",
  6738. "license": [
  6739. "BSD-3-Clause"
  6740. ],
  6741. "authors": [
  6742. {
  6743. "name": "Sebastian Bergmann",
  6744. "email": "sb@sebastian-bergmann.de",
  6745. "role": "lead"
  6746. }
  6747. ],
  6748. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6749. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6750. "keywords": [
  6751. "filesystem",
  6752. "iterator"
  6753. ],
  6754. "time": "2017-11-27T13:52:08+00:00"
  6755. },
  6756. {
  6757. "name": "phpunit/php-text-template",
  6758. "version": "1.2.1",
  6759. "source": {
  6760. "type": "git",
  6761. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6762. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  6763. },
  6764. "dist": {
  6765. "type": "zip",
  6766. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6767. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6768. "shasum": ""
  6769. },
  6770. "require": {
  6771. "php": ">=5.3.3"
  6772. },
  6773. "type": "library",
  6774. "autoload": {
  6775. "classmap": [
  6776. "src/"
  6777. ]
  6778. },
  6779. "notification-url": "https://packagist.org/downloads/",
  6780. "license": [
  6781. "BSD-3-Clause"
  6782. ],
  6783. "authors": [
  6784. {
  6785. "name": "Sebastian Bergmann",
  6786. "email": "sebastian@phpunit.de",
  6787. "role": "lead"
  6788. }
  6789. ],
  6790. "description": "Simple template engine.",
  6791. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6792. "keywords": [
  6793. "template"
  6794. ],
  6795. "time": "2015-06-21T13:50:34+00:00"
  6796. },
  6797. {
  6798. "name": "phpunit/php-timer",
  6799. "version": "1.0.9",
  6800. "source": {
  6801. "type": "git",
  6802. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6803. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  6804. },
  6805. "dist": {
  6806. "type": "zip",
  6807. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  6808. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  6809. "shasum": ""
  6810. },
  6811. "require": {
  6812. "php": "^5.3.3 || ^7.0"
  6813. },
  6814. "require-dev": {
  6815. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  6816. },
  6817. "type": "library",
  6818. "extra": {
  6819. "branch-alias": {
  6820. "dev-master": "1.0-dev"
  6821. }
  6822. },
  6823. "autoload": {
  6824. "classmap": [
  6825. "src/"
  6826. ]
  6827. },
  6828. "notification-url": "https://packagist.org/downloads/",
  6829. "license": [
  6830. "BSD-3-Clause"
  6831. ],
  6832. "authors": [
  6833. {
  6834. "name": "Sebastian Bergmann",
  6835. "email": "sb@sebastian-bergmann.de",
  6836. "role": "lead"
  6837. }
  6838. ],
  6839. "description": "Utility class for timing",
  6840. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6841. "keywords": [
  6842. "timer"
  6843. ],
  6844. "time": "2017-02-26T11:10:40+00:00"
  6845. },
  6846. {
  6847. "name": "phpunit/php-token-stream",
  6848. "version": "2.0.2",
  6849. "source": {
  6850. "type": "git",
  6851. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6852. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  6853. },
  6854. "dist": {
  6855. "type": "zip",
  6856. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  6857. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  6858. "shasum": ""
  6859. },
  6860. "require": {
  6861. "ext-tokenizer": "*",
  6862. "php": "^7.0"
  6863. },
  6864. "require-dev": {
  6865. "phpunit/phpunit": "^6.2.4"
  6866. },
  6867. "type": "library",
  6868. "extra": {
  6869. "branch-alias": {
  6870. "dev-master": "2.0-dev"
  6871. }
  6872. },
  6873. "autoload": {
  6874. "classmap": [
  6875. "src/"
  6876. ]
  6877. },
  6878. "notification-url": "https://packagist.org/downloads/",
  6879. "license": [
  6880. "BSD-3-Clause"
  6881. ],
  6882. "authors": [
  6883. {
  6884. "name": "Sebastian Bergmann",
  6885. "email": "sebastian@phpunit.de"
  6886. }
  6887. ],
  6888. "description": "Wrapper around PHP's tokenizer extension.",
  6889. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6890. "keywords": [
  6891. "tokenizer"
  6892. ],
  6893. "time": "2017-11-27T05:48:46+00:00"
  6894. },
  6895. {
  6896. "name": "phpunit/phpunit",
  6897. "version": "6.5.14",
  6898. "source": {
  6899. "type": "git",
  6900. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6901. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  6902. },
  6903. "dist": {
  6904. "type": "zip",
  6905. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  6906. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  6907. "shasum": ""
  6908. },
  6909. "require": {
  6910. "ext-dom": "*",
  6911. "ext-json": "*",
  6912. "ext-libxml": "*",
  6913. "ext-mbstring": "*",
  6914. "ext-xml": "*",
  6915. "myclabs/deep-copy": "^1.6.1",
  6916. "phar-io/manifest": "^1.0.1",
  6917. "phar-io/version": "^1.0",
  6918. "php": "^7.0",
  6919. "phpspec/prophecy": "^1.7",
  6920. "phpunit/php-code-coverage": "^5.3",
  6921. "phpunit/php-file-iterator": "^1.4.3",
  6922. "phpunit/php-text-template": "^1.2.1",
  6923. "phpunit/php-timer": "^1.0.9",
  6924. "phpunit/phpunit-mock-objects": "^5.0.9",
  6925. "sebastian/comparator": "^2.1",
  6926. "sebastian/diff": "^2.0",
  6927. "sebastian/environment": "^3.1",
  6928. "sebastian/exporter": "^3.1",
  6929. "sebastian/global-state": "^2.0",
  6930. "sebastian/object-enumerator": "^3.0.3",
  6931. "sebastian/resource-operations": "^1.0",
  6932. "sebastian/version": "^2.0.1"
  6933. },
  6934. "conflict": {
  6935. "phpdocumentor/reflection-docblock": "3.0.2",
  6936. "phpunit/dbunit": "<3.0"
  6937. },
  6938. "require-dev": {
  6939. "ext-pdo": "*"
  6940. },
  6941. "suggest": {
  6942. "ext-xdebug": "*",
  6943. "phpunit/php-invoker": "^1.1"
  6944. },
  6945. "bin": [
  6946. "phpunit"
  6947. ],
  6948. "type": "library",
  6949. "extra": {
  6950. "branch-alias": {
  6951. "dev-master": "6.5.x-dev"
  6952. }
  6953. },
  6954. "autoload": {
  6955. "classmap": [
  6956. "src/"
  6957. ]
  6958. },
  6959. "notification-url": "https://packagist.org/downloads/",
  6960. "license": [
  6961. "BSD-3-Clause"
  6962. ],
  6963. "authors": [
  6964. {
  6965. "name": "Sebastian Bergmann",
  6966. "email": "sebastian@phpunit.de",
  6967. "role": "lead"
  6968. }
  6969. ],
  6970. "description": "The PHP Unit Testing framework.",
  6971. "homepage": "https://phpunit.de/",
  6972. "keywords": [
  6973. "phpunit",
  6974. "testing",
  6975. "xunit"
  6976. ],
  6977. "time": "2019-02-01T05:22:47+00:00"
  6978. },
  6979. {
  6980. "name": "phpunit/phpunit-mock-objects",
  6981. "version": "5.0.10",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  6985. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  6990. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  6991. "shasum": ""
  6992. },
  6993. "require": {
  6994. "doctrine/instantiator": "^1.0.5",
  6995. "php": "^7.0",
  6996. "phpunit/php-text-template": "^1.2.1",
  6997. "sebastian/exporter": "^3.1"
  6998. },
  6999. "conflict": {
  7000. "phpunit/phpunit": "<6.0"
  7001. },
  7002. "require-dev": {
  7003. "phpunit/phpunit": "^6.5.11"
  7004. },
  7005. "suggest": {
  7006. "ext-soap": "*"
  7007. },
  7008. "type": "library",
  7009. "extra": {
  7010. "branch-alias": {
  7011. "dev-master": "5.0.x-dev"
  7012. }
  7013. },
  7014. "autoload": {
  7015. "classmap": [
  7016. "src/"
  7017. ]
  7018. },
  7019. "notification-url": "https://packagist.org/downloads/",
  7020. "license": [
  7021. "BSD-3-Clause"
  7022. ],
  7023. "authors": [
  7024. {
  7025. "name": "Sebastian Bergmann",
  7026. "email": "sebastian@phpunit.de",
  7027. "role": "lead"
  7028. }
  7029. ],
  7030. "description": "Mock Object library for PHPUnit",
  7031. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  7032. "keywords": [
  7033. "mock",
  7034. "xunit"
  7035. ],
  7036. "abandoned": true,
  7037. "time": "2018-08-09T05:50:03+00:00"
  7038. },
  7039. {
  7040. "name": "sebastian/code-unit-reverse-lookup",
  7041. "version": "1.0.1",
  7042. "source": {
  7043. "type": "git",
  7044. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7045. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7046. },
  7047. "dist": {
  7048. "type": "zip",
  7049. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7050. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7051. "shasum": ""
  7052. },
  7053. "require": {
  7054. "php": "^5.6 || ^7.0"
  7055. },
  7056. "require-dev": {
  7057. "phpunit/phpunit": "^5.7 || ^6.0"
  7058. },
  7059. "type": "library",
  7060. "extra": {
  7061. "branch-alias": {
  7062. "dev-master": "1.0.x-dev"
  7063. }
  7064. },
  7065. "autoload": {
  7066. "classmap": [
  7067. "src/"
  7068. ]
  7069. },
  7070. "notification-url": "https://packagist.org/downloads/",
  7071. "license": [
  7072. "BSD-3-Clause"
  7073. ],
  7074. "authors": [
  7075. {
  7076. "name": "Sebastian Bergmann",
  7077. "email": "sebastian@phpunit.de"
  7078. }
  7079. ],
  7080. "description": "Looks up which function or method a line of code belongs to",
  7081. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7082. "time": "2017-03-04T06:30:41+00:00"
  7083. },
  7084. {
  7085. "name": "sebastian/comparator",
  7086. "version": "2.1.3",
  7087. "source": {
  7088. "type": "git",
  7089. "url": "https://github.com/sebastianbergmann/comparator.git",
  7090. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  7091. },
  7092. "dist": {
  7093. "type": "zip",
  7094. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  7095. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  7096. "shasum": ""
  7097. },
  7098. "require": {
  7099. "php": "^7.0",
  7100. "sebastian/diff": "^2.0 || ^3.0",
  7101. "sebastian/exporter": "^3.1"
  7102. },
  7103. "require-dev": {
  7104. "phpunit/phpunit": "^6.4"
  7105. },
  7106. "type": "library",
  7107. "extra": {
  7108. "branch-alias": {
  7109. "dev-master": "2.1.x-dev"
  7110. }
  7111. },
  7112. "autoload": {
  7113. "classmap": [
  7114. "src/"
  7115. ]
  7116. },
  7117. "notification-url": "https://packagist.org/downloads/",
  7118. "license": [
  7119. "BSD-3-Clause"
  7120. ],
  7121. "authors": [
  7122. {
  7123. "name": "Jeff Welch",
  7124. "email": "whatthejeff@gmail.com"
  7125. },
  7126. {
  7127. "name": "Volker Dusch",
  7128. "email": "github@wallbash.com"
  7129. },
  7130. {
  7131. "name": "Bernhard Schussek",
  7132. "email": "bschussek@2bepublished.at"
  7133. },
  7134. {
  7135. "name": "Sebastian Bergmann",
  7136. "email": "sebastian@phpunit.de"
  7137. }
  7138. ],
  7139. "description": "Provides the functionality to compare PHP values for equality",
  7140. "homepage": "https://github.com/sebastianbergmann/comparator",
  7141. "keywords": [
  7142. "comparator",
  7143. "compare",
  7144. "equality"
  7145. ],
  7146. "time": "2018-02-01T13:46:46+00:00"
  7147. },
  7148. {
  7149. "name": "sebastian/diff",
  7150. "version": "2.0.1",
  7151. "source": {
  7152. "type": "git",
  7153. "url": "https://github.com/sebastianbergmann/diff.git",
  7154. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  7155. },
  7156. "dist": {
  7157. "type": "zip",
  7158. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  7159. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  7160. "shasum": ""
  7161. },
  7162. "require": {
  7163. "php": "^7.0"
  7164. },
  7165. "require-dev": {
  7166. "phpunit/phpunit": "^6.2"
  7167. },
  7168. "type": "library",
  7169. "extra": {
  7170. "branch-alias": {
  7171. "dev-master": "2.0-dev"
  7172. }
  7173. },
  7174. "autoload": {
  7175. "classmap": [
  7176. "src/"
  7177. ]
  7178. },
  7179. "notification-url": "https://packagist.org/downloads/",
  7180. "license": [
  7181. "BSD-3-Clause"
  7182. ],
  7183. "authors": [
  7184. {
  7185. "name": "Kore Nordmann",
  7186. "email": "mail@kore-nordmann.de"
  7187. },
  7188. {
  7189. "name": "Sebastian Bergmann",
  7190. "email": "sebastian@phpunit.de"
  7191. }
  7192. ],
  7193. "description": "Diff implementation",
  7194. "homepage": "https://github.com/sebastianbergmann/diff",
  7195. "keywords": [
  7196. "diff"
  7197. ],
  7198. "time": "2017-08-03T08:09:46+00:00"
  7199. },
  7200. {
  7201. "name": "sebastian/environment",
  7202. "version": "3.1.0",
  7203. "source": {
  7204. "type": "git",
  7205. "url": "https://github.com/sebastianbergmann/environment.git",
  7206. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  7207. },
  7208. "dist": {
  7209. "type": "zip",
  7210. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  7211. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  7212. "shasum": ""
  7213. },
  7214. "require": {
  7215. "php": "^7.0"
  7216. },
  7217. "require-dev": {
  7218. "phpunit/phpunit": "^6.1"
  7219. },
  7220. "type": "library",
  7221. "extra": {
  7222. "branch-alias": {
  7223. "dev-master": "3.1.x-dev"
  7224. }
  7225. },
  7226. "autoload": {
  7227. "classmap": [
  7228. "src/"
  7229. ]
  7230. },
  7231. "notification-url": "https://packagist.org/downloads/",
  7232. "license": [
  7233. "BSD-3-Clause"
  7234. ],
  7235. "authors": [
  7236. {
  7237. "name": "Sebastian Bergmann",
  7238. "email": "sebastian@phpunit.de"
  7239. }
  7240. ],
  7241. "description": "Provides functionality to handle HHVM/PHP environments",
  7242. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7243. "keywords": [
  7244. "Xdebug",
  7245. "environment",
  7246. "hhvm"
  7247. ],
  7248. "time": "2017-07-01T08:51:00+00:00"
  7249. },
  7250. {
  7251. "name": "sebastian/exporter",
  7252. "version": "3.1.0",
  7253. "source": {
  7254. "type": "git",
  7255. "url": "https://github.com/sebastianbergmann/exporter.git",
  7256. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  7257. },
  7258. "dist": {
  7259. "type": "zip",
  7260. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  7261. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  7262. "shasum": ""
  7263. },
  7264. "require": {
  7265. "php": "^7.0",
  7266. "sebastian/recursion-context": "^3.0"
  7267. },
  7268. "require-dev": {
  7269. "ext-mbstring": "*",
  7270. "phpunit/phpunit": "^6.0"
  7271. },
  7272. "type": "library",
  7273. "extra": {
  7274. "branch-alias": {
  7275. "dev-master": "3.1.x-dev"
  7276. }
  7277. },
  7278. "autoload": {
  7279. "classmap": [
  7280. "src/"
  7281. ]
  7282. },
  7283. "notification-url": "https://packagist.org/downloads/",
  7284. "license": [
  7285. "BSD-3-Clause"
  7286. ],
  7287. "authors": [
  7288. {
  7289. "name": "Jeff Welch",
  7290. "email": "whatthejeff@gmail.com"
  7291. },
  7292. {
  7293. "name": "Volker Dusch",
  7294. "email": "github@wallbash.com"
  7295. },
  7296. {
  7297. "name": "Bernhard Schussek",
  7298. "email": "bschussek@2bepublished.at"
  7299. },
  7300. {
  7301. "name": "Sebastian Bergmann",
  7302. "email": "sebastian@phpunit.de"
  7303. },
  7304. {
  7305. "name": "Adam Harvey",
  7306. "email": "aharvey@php.net"
  7307. }
  7308. ],
  7309. "description": "Provides the functionality to export PHP variables for visualization",
  7310. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7311. "keywords": [
  7312. "export",
  7313. "exporter"
  7314. ],
  7315. "time": "2017-04-03T13:19:02+00:00"
  7316. },
  7317. {
  7318. "name": "sebastian/global-state",
  7319. "version": "2.0.0",
  7320. "source": {
  7321. "type": "git",
  7322. "url": "https://github.com/sebastianbergmann/global-state.git",
  7323. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  7324. },
  7325. "dist": {
  7326. "type": "zip",
  7327. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7328. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7329. "shasum": ""
  7330. },
  7331. "require": {
  7332. "php": "^7.0"
  7333. },
  7334. "require-dev": {
  7335. "phpunit/phpunit": "^6.0"
  7336. },
  7337. "suggest": {
  7338. "ext-uopz": "*"
  7339. },
  7340. "type": "library",
  7341. "extra": {
  7342. "branch-alias": {
  7343. "dev-master": "2.0-dev"
  7344. }
  7345. },
  7346. "autoload": {
  7347. "classmap": [
  7348. "src/"
  7349. ]
  7350. },
  7351. "notification-url": "https://packagist.org/downloads/",
  7352. "license": [
  7353. "BSD-3-Clause"
  7354. ],
  7355. "authors": [
  7356. {
  7357. "name": "Sebastian Bergmann",
  7358. "email": "sebastian@phpunit.de"
  7359. }
  7360. ],
  7361. "description": "Snapshotting of global state",
  7362. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7363. "keywords": [
  7364. "global state"
  7365. ],
  7366. "time": "2017-04-27T15:39:26+00:00"
  7367. },
  7368. {
  7369. "name": "sebastian/object-enumerator",
  7370. "version": "3.0.3",
  7371. "source": {
  7372. "type": "git",
  7373. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7374. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  7375. },
  7376. "dist": {
  7377. "type": "zip",
  7378. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7379. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7380. "shasum": ""
  7381. },
  7382. "require": {
  7383. "php": "^7.0",
  7384. "sebastian/object-reflector": "^1.1.1",
  7385. "sebastian/recursion-context": "^3.0"
  7386. },
  7387. "require-dev": {
  7388. "phpunit/phpunit": "^6.0"
  7389. },
  7390. "type": "library",
  7391. "extra": {
  7392. "branch-alias": {
  7393. "dev-master": "3.0.x-dev"
  7394. }
  7395. },
  7396. "autoload": {
  7397. "classmap": [
  7398. "src/"
  7399. ]
  7400. },
  7401. "notification-url": "https://packagist.org/downloads/",
  7402. "license": [
  7403. "BSD-3-Clause"
  7404. ],
  7405. "authors": [
  7406. {
  7407. "name": "Sebastian Bergmann",
  7408. "email": "sebastian@phpunit.de"
  7409. }
  7410. ],
  7411. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7412. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7413. "time": "2017-08-03T12:35:26+00:00"
  7414. },
  7415. {
  7416. "name": "sebastian/object-reflector",
  7417. "version": "1.1.1",
  7418. "source": {
  7419. "type": "git",
  7420. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7421. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  7422. },
  7423. "dist": {
  7424. "type": "zip",
  7425. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  7426. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  7427. "shasum": ""
  7428. },
  7429. "require": {
  7430. "php": "^7.0"
  7431. },
  7432. "require-dev": {
  7433. "phpunit/phpunit": "^6.0"
  7434. },
  7435. "type": "library",
  7436. "extra": {
  7437. "branch-alias": {
  7438. "dev-master": "1.1-dev"
  7439. }
  7440. },
  7441. "autoload": {
  7442. "classmap": [
  7443. "src/"
  7444. ]
  7445. },
  7446. "notification-url": "https://packagist.org/downloads/",
  7447. "license": [
  7448. "BSD-3-Clause"
  7449. ],
  7450. "authors": [
  7451. {
  7452. "name": "Sebastian Bergmann",
  7453. "email": "sebastian@phpunit.de"
  7454. }
  7455. ],
  7456. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7457. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7458. "time": "2017-03-29T09:07:27+00:00"
  7459. },
  7460. {
  7461. "name": "sebastian/recursion-context",
  7462. "version": "3.0.0",
  7463. "source": {
  7464. "type": "git",
  7465. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7466. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  7467. },
  7468. "dist": {
  7469. "type": "zip",
  7470. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7471. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7472. "shasum": ""
  7473. },
  7474. "require": {
  7475. "php": "^7.0"
  7476. },
  7477. "require-dev": {
  7478. "phpunit/phpunit": "^6.0"
  7479. },
  7480. "type": "library",
  7481. "extra": {
  7482. "branch-alias": {
  7483. "dev-master": "3.0.x-dev"
  7484. }
  7485. },
  7486. "autoload": {
  7487. "classmap": [
  7488. "src/"
  7489. ]
  7490. },
  7491. "notification-url": "https://packagist.org/downloads/",
  7492. "license": [
  7493. "BSD-3-Clause"
  7494. ],
  7495. "authors": [
  7496. {
  7497. "name": "Jeff Welch",
  7498. "email": "whatthejeff@gmail.com"
  7499. },
  7500. {
  7501. "name": "Sebastian Bergmann",
  7502. "email": "sebastian@phpunit.de"
  7503. },
  7504. {
  7505. "name": "Adam Harvey",
  7506. "email": "aharvey@php.net"
  7507. }
  7508. ],
  7509. "description": "Provides functionality to recursively process PHP variables",
  7510. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7511. "time": "2017-03-03T06:23:57+00:00"
  7512. },
  7513. {
  7514. "name": "sebastian/resource-operations",
  7515. "version": "1.0.0",
  7516. "source": {
  7517. "type": "git",
  7518. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7519. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  7520. },
  7521. "dist": {
  7522. "type": "zip",
  7523. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  7524. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  7525. "shasum": ""
  7526. },
  7527. "require": {
  7528. "php": ">=5.6.0"
  7529. },
  7530. "type": "library",
  7531. "extra": {
  7532. "branch-alias": {
  7533. "dev-master": "1.0.x-dev"
  7534. }
  7535. },
  7536. "autoload": {
  7537. "classmap": [
  7538. "src/"
  7539. ]
  7540. },
  7541. "notification-url": "https://packagist.org/downloads/",
  7542. "license": [
  7543. "BSD-3-Clause"
  7544. ],
  7545. "authors": [
  7546. {
  7547. "name": "Sebastian Bergmann",
  7548. "email": "sebastian@phpunit.de"
  7549. }
  7550. ],
  7551. "description": "Provides a list of PHP built-in functions that operate on resources",
  7552. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7553. "time": "2015-07-28T20:34:47+00:00"
  7554. },
  7555. {
  7556. "name": "sebastian/version",
  7557. "version": "2.0.1",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/sebastianbergmann/version.git",
  7561. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  7566. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  7567. "shasum": ""
  7568. },
  7569. "require": {
  7570. "php": ">=5.6"
  7571. },
  7572. "type": "library",
  7573. "extra": {
  7574. "branch-alias": {
  7575. "dev-master": "2.0.x-dev"
  7576. }
  7577. },
  7578. "autoload": {
  7579. "classmap": [
  7580. "src/"
  7581. ]
  7582. },
  7583. "notification-url": "https://packagist.org/downloads/",
  7584. "license": [
  7585. "BSD-3-Clause"
  7586. ],
  7587. "authors": [
  7588. {
  7589. "name": "Sebastian Bergmann",
  7590. "email": "sebastian@phpunit.de",
  7591. "role": "lead"
  7592. }
  7593. ],
  7594. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7595. "homepage": "https://github.com/sebastianbergmann/version",
  7596. "time": "2016-10-03T07:35:21+00:00"
  7597. },
  7598. {
  7599. "name": "squizlabs/php_codesniffer",
  7600. "version": "3.4.2",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  7604. "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8",
  7609. "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "ext-simplexml": "*",
  7614. "ext-tokenizer": "*",
  7615. "ext-xmlwriter": "*",
  7616. "php": ">=5.4.0"
  7617. },
  7618. "require-dev": {
  7619. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  7620. },
  7621. "bin": [
  7622. "bin/phpcs",
  7623. "bin/phpcbf"
  7624. ],
  7625. "type": "library",
  7626. "extra": {
  7627. "branch-alias": {
  7628. "dev-master": "3.x-dev"
  7629. }
  7630. },
  7631. "notification-url": "https://packagist.org/downloads/",
  7632. "license": [
  7633. "BSD-3-Clause"
  7634. ],
  7635. "authors": [
  7636. {
  7637. "name": "Greg Sherwood",
  7638. "role": "lead"
  7639. }
  7640. ],
  7641. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  7642. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  7643. "keywords": [
  7644. "phpcs",
  7645. "standards"
  7646. ],
  7647. "time": "2019-04-10T23:49:02+00:00"
  7648. },
  7649. {
  7650. "name": "symfony/browser-kit",
  7651. "version": "v3.4.26",
  7652. "source": {
  7653. "type": "git",
  7654. "url": "https://github.com/symfony/browser-kit.git",
  7655. "reference": "7f2b0843d5045468225f9a9b27a0cb171ae81828"
  7656. },
  7657. "dist": {
  7658. "type": "zip",
  7659. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/7f2b0843d5045468225f9a9b27a0cb171ae81828",
  7660. "reference": "7f2b0843d5045468225f9a9b27a0cb171ae81828",
  7661. "shasum": ""
  7662. },
  7663. "require": {
  7664. "php": "^5.5.9|>=7.0.8",
  7665. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  7666. },
  7667. "require-dev": {
  7668. "symfony/css-selector": "~2.8|~3.0|~4.0",
  7669. "symfony/process": "~2.8|~3.0|~4.0"
  7670. },
  7671. "suggest": {
  7672. "symfony/process": ""
  7673. },
  7674. "type": "library",
  7675. "extra": {
  7676. "branch-alias": {
  7677. "dev-master": "3.4-dev"
  7678. }
  7679. },
  7680. "autoload": {
  7681. "psr-4": {
  7682. "Symfony\\Component\\BrowserKit\\": ""
  7683. },
  7684. "exclude-from-classmap": [
  7685. "/Tests/"
  7686. ]
  7687. },
  7688. "notification-url": "https://packagist.org/downloads/",
  7689. "license": [
  7690. "MIT"
  7691. ],
  7692. "authors": [
  7693. {
  7694. "name": "Fabien Potencier",
  7695. "email": "fabien@symfony.com"
  7696. },
  7697. {
  7698. "name": "Symfony Community",
  7699. "homepage": "https://symfony.com/contributors"
  7700. }
  7701. ],
  7702. "description": "Symfony BrowserKit Component",
  7703. "homepage": "https://symfony.com",
  7704. "time": "2019-04-06T19:33:58+00:00"
  7705. },
  7706. {
  7707. "name": "symfony/phpunit-bridge",
  7708. "version": "v3.4.26",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://github.com/symfony/phpunit-bridge.git",
  7712. "reference": "a43a2f6c465a2d99635fea0addbebddc3864ad97"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/a43a2f6c465a2d99635fea0addbebddc3864ad97",
  7717. "reference": "a43a2f6c465a2d99635fea0addbebddc3864ad97",
  7718. "shasum": ""
  7719. },
  7720. "require": {
  7721. "php": ">=5.3.3"
  7722. },
  7723. "conflict": {
  7724. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  7725. },
  7726. "suggest": {
  7727. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  7728. },
  7729. "bin": [
  7730. "bin/simple-phpunit"
  7731. ],
  7732. "type": "symfony-bridge",
  7733. "extra": {
  7734. "branch-alias": {
  7735. "dev-master": "3.4-dev"
  7736. },
  7737. "thanks": {
  7738. "name": "phpunit/phpunit",
  7739. "url": "https://github.com/sebastianbergmann/phpunit"
  7740. }
  7741. },
  7742. "autoload": {
  7743. "files": [
  7744. "bootstrap.php"
  7745. ],
  7746. "psr-4": {
  7747. "Symfony\\Bridge\\PhpUnit\\": ""
  7748. },
  7749. "exclude-from-classmap": [
  7750. "/Tests/"
  7751. ]
  7752. },
  7753. "notification-url": "https://packagist.org/downloads/",
  7754. "license": [
  7755. "MIT"
  7756. ],
  7757. "authors": [
  7758. {
  7759. "name": "Nicolas Grekas",
  7760. "email": "p@tchwork.com"
  7761. },
  7762. {
  7763. "name": "Symfony Community",
  7764. "homepage": "https://symfony.com/contributors"
  7765. }
  7766. ],
  7767. "description": "Symfony PHPUnit Bridge",
  7768. "homepage": "https://symfony.com",
  7769. "time": "2019-04-16T09:03:16+00:00"
  7770. },
  7771. {
  7772. "name": "theseer/tokenizer",
  7773. "version": "1.1.2",
  7774. "source": {
  7775. "type": "git",
  7776. "url": "https://github.com/theseer/tokenizer.git",
  7777. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  7778. },
  7779. "dist": {
  7780. "type": "zip",
  7781. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  7782. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  7783. "shasum": ""
  7784. },
  7785. "require": {
  7786. "ext-dom": "*",
  7787. "ext-tokenizer": "*",
  7788. "ext-xmlwriter": "*",
  7789. "php": "^7.0"
  7790. },
  7791. "type": "library",
  7792. "autoload": {
  7793. "classmap": [
  7794. "src/"
  7795. ]
  7796. },
  7797. "notification-url": "https://packagist.org/downloads/",
  7798. "license": [
  7799. "BSD-3-Clause"
  7800. ],
  7801. "authors": [
  7802. {
  7803. "name": "Arne Blankerts",
  7804. "email": "arne@blankerts.de",
  7805. "role": "Developer"
  7806. }
  7807. ],
  7808. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7809. "time": "2019-04-04T09:56:43+00:00"
  7810. },
  7811. {
  7812. "name": "webflo/drupal-core-require-dev",
  7813. "version": "8.6.15",
  7814. "source": {
  7815. "type": "git",
  7816. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  7817. "reference": "6b3d632fa16e56858706fe0394eafe88a13a9cd0"
  7818. },
  7819. "dist": {
  7820. "type": "zip",
  7821. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/6b3d632fa16e56858706fe0394eafe88a13a9cd0",
  7822. "reference": "6b3d632fa16e56858706fe0394eafe88a13a9cd0",
  7823. "shasum": ""
  7824. },
  7825. "require": {
  7826. "behat/mink": "1.7.x-dev",
  7827. "behat/mink-goutte-driver": "^1.2",
  7828. "behat/mink-selenium2-driver": "1.3.x-dev",
  7829. "drupal/coder": "^8.2.12",
  7830. "drupal/core": "8.6.15",
  7831. "jcalderonzumba/gastonjs": "^1.0.2",
  7832. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  7833. "mikey179/vfsstream": "^1.2",
  7834. "phpspec/prophecy": "^1.7",
  7835. "phpunit/phpunit": "^4.8.35 || ^6.5",
  7836. "symfony/css-selector": "^3.4.0",
  7837. "symfony/debug": "^3.4.0",
  7838. "symfony/phpunit-bridge": "^3.4.3"
  7839. },
  7840. "type": "metapackage",
  7841. "notification-url": "https://packagist.org/downloads/",
  7842. "license": [
  7843. "GPL-2.0-or-later"
  7844. ],
  7845. "description": "require-dev dependencies from drupal/core",
  7846. "time": "2019-04-17T20:31:37+00:00"
  7847. }
  7848. ],
  7849. "aliases": [],
  7850. "minimum-stability": "dev",
  7851. "stability-flags": [],
  7852. "prefer-stable": true,
  7853. "prefer-lowest": false,
  7854. "platform": {
  7855. "php": ">=5.6"
  7856. },
  7857. "platform-dev": []
  7858. }