composer.lock 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691
  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": "e77971c8706a56d00fba57995a9b747d",
  8. "packages": [
  9. {
  10. "name": "allure-framework/allure-codeception",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/allure-framework/allure-codeception.git",
  15. "reference": "9d31d781b3622b028f1f6210bc76ba88438bd518"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/allure-framework/allure-codeception/zipball/9d31d781b3622b028f1f6210bc76ba88438bd518",
  20. "reference": "9d31d781b3622b028f1f6210bc76ba88438bd518",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "allure-framework/allure-php-api": "~1.1.0",
  25. "codeception/codeception": "~2.1",
  26. "php": ">=5.4.0",
  27. "symfony/filesystem": ">=2.6",
  28. "symfony/finder": ">=2.6"
  29. },
  30. "type": "library",
  31. "autoload": {
  32. "psr-0": {
  33. "Yandex": "src/"
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "Apache-2.0"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Ivan Krutov",
  43. "email": "vania-pooh@yandex-team.ru",
  44. "role": "Developer"
  45. }
  46. ],
  47. "description": "A Codeception adapter for Allure report.",
  48. "homepage": "http://allure.qatools.ru/",
  49. "keywords": [
  50. "allure",
  51. "attachments",
  52. "cases",
  53. "codeception",
  54. "report",
  55. "steps",
  56. "testing"
  57. ],
  58. "time": "2018-12-18T19:47:23+00:00"
  59. },
  60. {
  61. "name": "allure-framework/allure-php-api",
  62. "version": "1.1.4",
  63. "source": {
  64. "type": "git",
  65. "url": "https://github.com/allure-framework/allure-php-adapter-api.git",
  66. "reference": "a462a0da121681577033e13c123b6cc4e89cdc64"
  67. },
  68. "dist": {
  69. "type": "zip",
  70. "url": "https://api.github.com/repos/allure-framework/allure-php-adapter-api/zipball/a462a0da121681577033e13c123b6cc4e89cdc64",
  71. "reference": "a462a0da121681577033e13c123b6cc4e89cdc64",
  72. "shasum": ""
  73. },
  74. "require": {
  75. "jms/serializer": ">=0.16.0",
  76. "moontoast/math": ">=1.1.0",
  77. "php": ">=5.4.0",
  78. "phpunit/phpunit": ">=4.0.0",
  79. "ramsey/uuid": ">=3.0.0",
  80. "symfony/http-foundation": ">=2.0"
  81. },
  82. "type": "library",
  83. "autoload": {
  84. "psr-0": {
  85. "Yandex": [
  86. "src/",
  87. "test/"
  88. ]
  89. }
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "Apache-2.0"
  94. ],
  95. "authors": [
  96. {
  97. "name": "Ivan Krutov",
  98. "email": "vania-pooh@yandex-team.ru",
  99. "role": "Developer"
  100. }
  101. ],
  102. "description": "PHP API for Allure adapter",
  103. "homepage": "http://allure.qatools.ru/",
  104. "keywords": [
  105. "allure",
  106. "api",
  107. "php",
  108. "report"
  109. ],
  110. "time": "2016-12-07T12:15:46+00:00"
  111. },
  112. {
  113. "name": "behat/gherkin",
  114. "version": "v4.4.5",
  115. "source": {
  116. "type": "git",
  117. "url": "https://github.com/Behat/Gherkin.git",
  118. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74"
  119. },
  120. "dist": {
  121. "type": "zip",
  122. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c14cff4f955b17d20d088dec1bde61c0539ec74",
  123. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74",
  124. "shasum": ""
  125. },
  126. "require": {
  127. "php": ">=5.3.1"
  128. },
  129. "require-dev": {
  130. "phpunit/phpunit": "~4.5|~5",
  131. "symfony/phpunit-bridge": "~2.7|~3",
  132. "symfony/yaml": "~2.3|~3"
  133. },
  134. "suggest": {
  135. "symfony/yaml": "If you want to parse features, represented in YAML files"
  136. },
  137. "type": "library",
  138. "extra": {
  139. "branch-alias": {
  140. "dev-master": "4.4-dev"
  141. }
  142. },
  143. "autoload": {
  144. "psr-0": {
  145. "Behat\\Gherkin": "src/"
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Konstantin Kudryashov",
  155. "email": "ever.zet@gmail.com",
  156. "homepage": "http://everzet.com"
  157. }
  158. ],
  159. "description": "Gherkin DSL parser for PHP 5.3",
  160. "homepage": "http://behat.org/",
  161. "keywords": [
  162. "BDD",
  163. "Behat",
  164. "Cucumber",
  165. "DSL",
  166. "gherkin",
  167. "parser"
  168. ],
  169. "time": "2016-10-30T11:50:56+00:00"
  170. },
  171. {
  172. "name": "codeception/codeception",
  173. "version": "2.3.9",
  174. "source": {
  175. "type": "git",
  176. "url": "https://github.com/Codeception/Codeception.git",
  177. "reference": "104f46fa0bde339f1bcc3a375aac21eb36e65a1e"
  178. },
  179. "dist": {
  180. "type": "zip",
  181. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/104f46fa0bde339f1bcc3a375aac21eb36e65a1e",
  182. "reference": "104f46fa0bde339f1bcc3a375aac21eb36e65a1e",
  183. "shasum": ""
  184. },
  185. "require": {
  186. "behat/gherkin": "~4.4.0",
  187. "codeception/stub": "^1.0",
  188. "ext-json": "*",
  189. "ext-mbstring": "*",
  190. "facebook/webdriver": ">=1.1.3 <2.0",
  191. "guzzlehttp/guzzle": ">=4.1.4 <7.0",
  192. "guzzlehttp/psr7": "~1.0",
  193. "php": ">=5.4.0 <8.0",
  194. "phpunit/php-code-coverage": ">=2.2.4 <6.0",
  195. "phpunit/phpunit": ">=4.8.28 <5.0.0 || >=5.6.3 <7.0",
  196. "sebastian/comparator": ">1.1 <3.0",
  197. "sebastian/diff": ">=1.4 <3.0",
  198. "symfony/browser-kit": ">=2.7 <5.0",
  199. "symfony/console": ">=2.7 <5.0",
  200. "symfony/css-selector": ">=2.7 <5.0",
  201. "symfony/dom-crawler": ">=2.7 <5.0",
  202. "symfony/event-dispatcher": ">=2.7 <5.0",
  203. "symfony/finder": ">=2.7 <5.0",
  204. "symfony/yaml": ">=2.7 <5.0"
  205. },
  206. "require-dev": {
  207. "codeception/specify": "~0.3",
  208. "facebook/graph-sdk": "~5.3",
  209. "flow/jsonpath": "~0.2",
  210. "monolog/monolog": "~1.8",
  211. "pda/pheanstalk": "~3.0",
  212. "php-amqplib/php-amqplib": "~2.4",
  213. "predis/predis": "^1.0",
  214. "squizlabs/php_codesniffer": "~2.0",
  215. "symfony/process": ">=2.7 <5.0",
  216. "vlucas/phpdotenv": "^2.4.0"
  217. },
  218. "suggest": {
  219. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  220. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  221. "codeception/specify": "BDD-style code blocks",
  222. "codeception/verify": "BDD-style assertions",
  223. "flow/jsonpath": "For using JSONPath in REST module",
  224. "league/factory-muffin": "For DataFactory module",
  225. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  226. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  227. "stecman/symfony-console-completion": "For BASH autocompletion",
  228. "symfony/phpunit-bridge": "For phpunit-bridge support"
  229. },
  230. "bin": [
  231. "codecept"
  232. ],
  233. "type": "library",
  234. "extra": {
  235. "branch-alias": []
  236. },
  237. "autoload": {
  238. "psr-4": {
  239. "Codeception\\": "src\\Codeception",
  240. "Codeception\\Extension\\": "ext"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Michael Bodnarchuk",
  250. "email": "davert@mail.ua",
  251. "homepage": "http://codegyre.com"
  252. }
  253. ],
  254. "description": "BDD-style testing framework",
  255. "homepage": "http://codeception.com/",
  256. "keywords": [
  257. "BDD",
  258. "TDD",
  259. "acceptance testing",
  260. "functional testing",
  261. "unit testing"
  262. ],
  263. "time": "2018-02-26T23:29:41+00:00"
  264. },
  265. {
  266. "name": "codeception/stub",
  267. "version": "1.0.4",
  268. "source": {
  269. "type": "git",
  270. "url": "https://github.com/Codeception/Stub.git",
  271. "reference": "681b62348837a5ef07d10d8a226f5bc358cc8805"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/Codeception/Stub/zipball/681b62348837a5ef07d10d8a226f5bc358cc8805",
  276. "reference": "681b62348837a5ef07d10d8a226f5bc358cc8805",
  277. "shasum": ""
  278. },
  279. "require": {
  280. "phpunit/phpunit-mock-objects": ">2.3 <7.0"
  281. },
  282. "require-dev": {
  283. "phpunit/phpunit": ">=4.8 <8.0"
  284. },
  285. "type": "library",
  286. "autoload": {
  287. "psr-4": {
  288. "Codeception\\": "src/"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  296. "time": "2018-05-17T09:31:08+00:00"
  297. },
  298. {
  299. "name": "consolidation/annotated-command",
  300. "version": "2.9.1",
  301. "source": {
  302. "type": "git",
  303. "url": "https://github.com/consolidation/annotated-command.git",
  304. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac"
  305. },
  306. "dist": {
  307. "type": "zip",
  308. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  309. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  310. "shasum": ""
  311. },
  312. "require": {
  313. "consolidation/output-formatters": "^3.1.12",
  314. "php": ">=5.4.0",
  315. "psr/log": "^1",
  316. "symfony/console": "^2.8|^3|^4",
  317. "symfony/event-dispatcher": "^2.5|^3|^4",
  318. "symfony/finder": "^2.5|^3|^4"
  319. },
  320. "require-dev": {
  321. "g1a/composer-test-scenarios": "^2",
  322. "phpunit/phpunit": "^6",
  323. "satooshi/php-coveralls": "^2",
  324. "squizlabs/php_codesniffer": "^2.7"
  325. },
  326. "type": "library",
  327. "extra": {
  328. "branch-alias": {
  329. "dev-master": "2.x-dev"
  330. }
  331. },
  332. "autoload": {
  333. "psr-4": {
  334. "Consolidation\\AnnotatedCommand\\": "src"
  335. }
  336. },
  337. "notification-url": "https://packagist.org/downloads/",
  338. "license": [
  339. "MIT"
  340. ],
  341. "authors": [
  342. {
  343. "name": "Greg Anderson",
  344. "email": "greg.1.anderson@greenknowe.org"
  345. }
  346. ],
  347. "description": "Initialize Symfony Console commands from annotated command class methods.",
  348. "time": "2018-09-19T17:47:18+00:00"
  349. },
  350. {
  351. "name": "consolidation/config",
  352. "version": "1.1.1",
  353. "source": {
  354. "type": "git",
  355. "url": "https://github.com/consolidation/config.git",
  356. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  357. },
  358. "dist": {
  359. "type": "zip",
  360. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  361. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  362. "shasum": ""
  363. },
  364. "require": {
  365. "dflydev/dot-access-data": "^1.1.0",
  366. "grasmash/expander": "^1",
  367. "php": ">=5.4.0"
  368. },
  369. "require-dev": {
  370. "g1a/composer-test-scenarios": "^1",
  371. "phpunit/phpunit": "^5",
  372. "satooshi/php-coveralls": "^1.0",
  373. "squizlabs/php_codesniffer": "2.*",
  374. "symfony/console": "^2.5|^3|^4",
  375. "symfony/yaml": "^2.8.11|^3|^4"
  376. },
  377. "suggest": {
  378. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  379. },
  380. "type": "library",
  381. "extra": {
  382. "branch-alias": {
  383. "dev-master": "1.x-dev"
  384. }
  385. },
  386. "autoload": {
  387. "psr-4": {
  388. "Consolidation\\Config\\": "src"
  389. }
  390. },
  391. "notification-url": "https://packagist.org/downloads/",
  392. "license": [
  393. "MIT"
  394. ],
  395. "authors": [
  396. {
  397. "name": "Greg Anderson",
  398. "email": "greg.1.anderson@greenknowe.org"
  399. }
  400. ],
  401. "description": "Provide configuration services for a commandline tool.",
  402. "time": "2018-10-24T17:55:35+00:00"
  403. },
  404. {
  405. "name": "consolidation/log",
  406. "version": "1.0.6",
  407. "source": {
  408. "type": "git",
  409. "url": "https://github.com/consolidation/log.git",
  410. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395"
  411. },
  412. "dist": {
  413. "type": "zip",
  414. "url": "https://api.github.com/repos/consolidation/log/zipball/dfd8189a771fe047bf3cd669111b2de5f1c79395",
  415. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395",
  416. "shasum": ""
  417. },
  418. "require": {
  419. "php": ">=5.5.0",
  420. "psr/log": "~1.0",
  421. "symfony/console": "^2.8|^3|^4"
  422. },
  423. "require-dev": {
  424. "g1a/composer-test-scenarios": "^1",
  425. "phpunit/phpunit": "4.*",
  426. "satooshi/php-coveralls": "^2",
  427. "squizlabs/php_codesniffer": "2.*"
  428. },
  429. "type": "library",
  430. "extra": {
  431. "branch-alias": {
  432. "dev-master": "1.x-dev"
  433. }
  434. },
  435. "autoload": {
  436. "psr-4": {
  437. "Consolidation\\Log\\": "src"
  438. }
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "MIT"
  443. ],
  444. "authors": [
  445. {
  446. "name": "Greg Anderson",
  447. "email": "greg.1.anderson@greenknowe.org"
  448. }
  449. ],
  450. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  451. "time": "2018-05-25T18:14:39+00:00"
  452. },
  453. {
  454. "name": "consolidation/output-formatters",
  455. "version": "3.4.0",
  456. "source": {
  457. "type": "git",
  458. "url": "https://github.com/consolidation/output-formatters.git",
  459. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  460. },
  461. "dist": {
  462. "type": "zip",
  463. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  464. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  465. "shasum": ""
  466. },
  467. "require": {
  468. "dflydev/dot-access-data": "^1.1.0",
  469. "php": ">=5.4.0",
  470. "symfony/console": "^2.8|^3|^4",
  471. "symfony/finder": "^2.5|^3|^4"
  472. },
  473. "require-dev": {
  474. "g1a/composer-test-scenarios": "^2",
  475. "phpunit/phpunit": "^5.7.27",
  476. "satooshi/php-coveralls": "^2",
  477. "squizlabs/php_codesniffer": "^2.7",
  478. "symfony/console": "3.2.3",
  479. "symfony/var-dumper": "^2.8|^3|^4",
  480. "victorjonsson/markdowndocs": "^1.3"
  481. },
  482. "suggest": {
  483. "symfony/var-dumper": "For using the var_dump formatter"
  484. },
  485. "type": "library",
  486. "extra": {
  487. "branch-alias": {
  488. "dev-master": "3.x-dev"
  489. }
  490. },
  491. "autoload": {
  492. "psr-4": {
  493. "Consolidation\\OutputFormatters\\": "src"
  494. }
  495. },
  496. "notification-url": "https://packagist.org/downloads/",
  497. "license": [
  498. "MIT"
  499. ],
  500. "authors": [
  501. {
  502. "name": "Greg Anderson",
  503. "email": "greg.1.anderson@greenknowe.org"
  504. }
  505. ],
  506. "description": "Format text by applying transformations provided by plug-in formatters.",
  507. "time": "2018-10-19T22:35:38+00:00"
  508. },
  509. {
  510. "name": "consolidation/robo",
  511. "version": "1.3.1",
  512. "source": {
  513. "type": "git",
  514. "url": "https://github.com/consolidation/Robo.git",
  515. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d"
  516. },
  517. "dist": {
  518. "type": "zip",
  519. "url": "https://api.github.com/repos/consolidation/Robo/zipball/31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  520. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  521. "shasum": ""
  522. },
  523. "require": {
  524. "consolidation/annotated-command": "^2.8.2",
  525. "consolidation/config": "^1.0.10",
  526. "consolidation/log": "~1",
  527. "consolidation/output-formatters": "^3.1.13",
  528. "consolidation/self-update": "^1",
  529. "g1a/composer-test-scenarios": "^2",
  530. "grasmash/yaml-expander": "^1.3",
  531. "league/container": "^2.2",
  532. "php": ">=5.5.0",
  533. "symfony/console": "^2.8|^3|^4",
  534. "symfony/event-dispatcher": "^2.5|^3|^4",
  535. "symfony/filesystem": "^2.5|^3|^4",
  536. "symfony/finder": "^2.5|^3|^4",
  537. "symfony/process": "^2.5|^3|^4"
  538. },
  539. "replace": {
  540. "codegyre/robo": "< 1.0"
  541. },
  542. "require-dev": {
  543. "codeception/aspect-mock": "^1|^2.1.1",
  544. "codeception/base": "^2.3.7",
  545. "codeception/verify": "^0.3.2",
  546. "goaop/framework": "~2.1.2",
  547. "goaop/parser-reflection": "^1.1.0",
  548. "natxet/cssmin": "3.0.4",
  549. "nikic/php-parser": "^3.1.5",
  550. "patchwork/jsqueeze": "~2",
  551. "pear/archive_tar": "^1.4.2",
  552. "phpunit/php-code-coverage": "~2|~4",
  553. "satooshi/php-coveralls": "^2",
  554. "squizlabs/php_codesniffer": "^2.8"
  555. },
  556. "suggest": {
  557. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  558. "natxet/CssMin": "For minifying CSS files in taskMinify",
  559. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  560. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  561. },
  562. "bin": [
  563. "robo"
  564. ],
  565. "type": "library",
  566. "extra": {
  567. "branch-alias": {
  568. "dev-master": "1.x-dev",
  569. "dev-state": "1.x-dev"
  570. }
  571. },
  572. "autoload": {
  573. "psr-4": {
  574. "Robo\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "MIT"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Davert",
  584. "email": "davert.php@resend.cc"
  585. }
  586. ],
  587. "description": "Modern task runner",
  588. "time": "2018-08-17T18:44:18+00:00"
  589. },
  590. {
  591. "name": "consolidation/self-update",
  592. "version": "1.1.5",
  593. "source": {
  594. "type": "git",
  595. "url": "https://github.com/consolidation/self-update.git",
  596. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  597. },
  598. "dist": {
  599. "type": "zip",
  600. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  601. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  602. "shasum": ""
  603. },
  604. "require": {
  605. "php": ">=5.5.0",
  606. "symfony/console": "^2.8|^3|^4",
  607. "symfony/filesystem": "^2.5|^3|^4"
  608. },
  609. "bin": [
  610. "scripts/release"
  611. ],
  612. "type": "library",
  613. "extra": {
  614. "branch-alias": {
  615. "dev-master": "1.x-dev"
  616. }
  617. },
  618. "autoload": {
  619. "psr-4": {
  620. "SelfUpdate\\": "src"
  621. }
  622. },
  623. "notification-url": "https://packagist.org/downloads/",
  624. "license": [
  625. "MIT"
  626. ],
  627. "authors": [
  628. {
  629. "name": "Greg Anderson",
  630. "email": "greg.1.anderson@greenknowe.org"
  631. },
  632. {
  633. "name": "Alexander Menk",
  634. "email": "menk@mestrona.net"
  635. }
  636. ],
  637. "description": "Provides a self:update command for Symfony Console applications.",
  638. "time": "2018-10-28T01:52:03+00:00"
  639. },
  640. {
  641. "name": "container-interop/container-interop",
  642. "version": "1.2.0",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/container-interop/container-interop.git",
  646. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  651. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "psr/container": "^1.0"
  656. },
  657. "type": "library",
  658. "autoload": {
  659. "psr-4": {
  660. "Interop\\Container\\": "src/Interop/Container/"
  661. }
  662. },
  663. "notification-url": "https://packagist.org/downloads/",
  664. "license": [
  665. "MIT"
  666. ],
  667. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  668. "homepage": "https://github.com/container-interop/container-interop",
  669. "time": "2017-02-14T19:40:03+00:00"
  670. },
  671. {
  672. "name": "dflydev/dot-access-data",
  673. "version": "v1.1.0",
  674. "source": {
  675. "type": "git",
  676. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  677. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  678. },
  679. "dist": {
  680. "type": "zip",
  681. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  682. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  683. "shasum": ""
  684. },
  685. "require": {
  686. "php": ">=5.3.2"
  687. },
  688. "type": "library",
  689. "extra": {
  690. "branch-alias": {
  691. "dev-master": "1.0-dev"
  692. }
  693. },
  694. "autoload": {
  695. "psr-0": {
  696. "Dflydev\\DotAccessData": "src"
  697. }
  698. },
  699. "notification-url": "https://packagist.org/downloads/",
  700. "license": [
  701. "MIT"
  702. ],
  703. "authors": [
  704. {
  705. "name": "Dragonfly Development Inc.",
  706. "email": "info@dflydev.com",
  707. "homepage": "http://dflydev.com"
  708. },
  709. {
  710. "name": "Beau Simensen",
  711. "email": "beau@dflydev.com",
  712. "homepage": "http://beausimensen.com"
  713. },
  714. {
  715. "name": "Carlos Frutos",
  716. "email": "carlos@kiwing.it",
  717. "homepage": "https://github.com/cfrutos"
  718. }
  719. ],
  720. "description": "Given a deep data structure, access data by dot notation.",
  721. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  722. "keywords": [
  723. "access",
  724. "data",
  725. "dot",
  726. "notation"
  727. ],
  728. "time": "2017-01-20T21:14:22+00:00"
  729. },
  730. {
  731. "name": "doctrine/annotations",
  732. "version": "v1.4.0",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/doctrine/annotations.git",
  736. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  741. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "doctrine/lexer": "1.*",
  746. "php": "^5.6 || ^7.0"
  747. },
  748. "require-dev": {
  749. "doctrine/cache": "1.*",
  750. "phpunit/phpunit": "^5.7"
  751. },
  752. "type": "library",
  753. "extra": {
  754. "branch-alias": {
  755. "dev-master": "1.4.x-dev"
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Roman Borschel",
  770. "email": "roman@code-factory.org"
  771. },
  772. {
  773. "name": "Benjamin Eberlei",
  774. "email": "kontakt@beberlei.de"
  775. },
  776. {
  777. "name": "Guilherme Blanco",
  778. "email": "guilhermeblanco@gmail.com"
  779. },
  780. {
  781. "name": "Jonathan Wage",
  782. "email": "jonwage@gmail.com"
  783. },
  784. {
  785. "name": "Johannes Schmitt",
  786. "email": "schmittjoh@gmail.com"
  787. }
  788. ],
  789. "description": "Docblock Annotations Parser",
  790. "homepage": "http://www.doctrine-project.org",
  791. "keywords": [
  792. "annotations",
  793. "docblock",
  794. "parser"
  795. ],
  796. "time": "2017-02-24T16:22:25+00:00"
  797. },
  798. {
  799. "name": "doctrine/collections",
  800. "version": "v1.4.0",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/doctrine/collections.git",
  804. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  809. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "php": "^5.6 || ^7.0"
  814. },
  815. "require-dev": {
  816. "doctrine/coding-standard": "~0.1@dev",
  817. "phpunit/phpunit": "^5.7"
  818. },
  819. "type": "library",
  820. "extra": {
  821. "branch-alias": {
  822. "dev-master": "1.3.x-dev"
  823. }
  824. },
  825. "autoload": {
  826. "psr-0": {
  827. "Doctrine\\Common\\Collections\\": "lib/"
  828. }
  829. },
  830. "notification-url": "https://packagist.org/downloads/",
  831. "license": [
  832. "MIT"
  833. ],
  834. "authors": [
  835. {
  836. "name": "Roman Borschel",
  837. "email": "roman@code-factory.org"
  838. },
  839. {
  840. "name": "Benjamin Eberlei",
  841. "email": "kontakt@beberlei.de"
  842. },
  843. {
  844. "name": "Guilherme Blanco",
  845. "email": "guilhermeblanco@gmail.com"
  846. },
  847. {
  848. "name": "Jonathan Wage",
  849. "email": "jonwage@gmail.com"
  850. },
  851. {
  852. "name": "Johannes Schmitt",
  853. "email": "schmittjoh@gmail.com"
  854. }
  855. ],
  856. "description": "Collections Abstraction library",
  857. "homepage": "http://www.doctrine-project.org",
  858. "keywords": [
  859. "array",
  860. "collections",
  861. "iterator"
  862. ],
  863. "time": "2017-01-03T10:49:41+00:00"
  864. },
  865. {
  866. "name": "doctrine/instantiator",
  867. "version": "1.0.5",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/doctrine/instantiator.git",
  871. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  876. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": ">=5.3,<8.0-DEV"
  881. },
  882. "require-dev": {
  883. "athletic/athletic": "~0.1.8",
  884. "ext-pdo": "*",
  885. "ext-phar": "*",
  886. "phpunit/phpunit": "~4.0",
  887. "squizlabs/php_codesniffer": "~2.0"
  888. },
  889. "type": "library",
  890. "extra": {
  891. "branch-alias": {
  892. "dev-master": "1.0.x-dev"
  893. }
  894. },
  895. "autoload": {
  896. "psr-4": {
  897. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  898. }
  899. },
  900. "notification-url": "https://packagist.org/downloads/",
  901. "license": [
  902. "MIT"
  903. ],
  904. "authors": [
  905. {
  906. "name": "Marco Pivetta",
  907. "email": "ocramius@gmail.com",
  908. "homepage": "http://ocramius.github.com/"
  909. }
  910. ],
  911. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  912. "homepage": "https://github.com/doctrine/instantiator",
  913. "keywords": [
  914. "constructor",
  915. "instantiate"
  916. ],
  917. "time": "2015-06-14T21:17:01+00:00"
  918. },
  919. {
  920. "name": "doctrine/lexer",
  921. "version": "v1.0.1",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/doctrine/lexer.git",
  925. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  930. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  931. "shasum": ""
  932. },
  933. "require": {
  934. "php": ">=5.3.2"
  935. },
  936. "type": "library",
  937. "extra": {
  938. "branch-alias": {
  939. "dev-master": "1.0.x-dev"
  940. }
  941. },
  942. "autoload": {
  943. "psr-0": {
  944. "Doctrine\\Common\\Lexer\\": "lib/"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "MIT"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Roman Borschel",
  954. "email": "roman@code-factory.org"
  955. },
  956. {
  957. "name": "Guilherme Blanco",
  958. "email": "guilhermeblanco@gmail.com"
  959. },
  960. {
  961. "name": "Johannes Schmitt",
  962. "email": "schmittjoh@gmail.com"
  963. }
  964. ],
  965. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  966. "homepage": "http://www.doctrine-project.org",
  967. "keywords": [
  968. "lexer",
  969. "parser"
  970. ],
  971. "time": "2014-09-09T13:34:57+00:00"
  972. },
  973. {
  974. "name": "epfremme/swagger-php",
  975. "version": "v2.0.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/epfremmer/swagger-php.git",
  979. "reference": "eee28a442b7e6220391ec953d3c9b936354f23bc"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/epfremmer/swagger-php/zipball/eee28a442b7e6220391ec953d3c9b936354f23bc",
  984. "reference": "eee28a442b7e6220391ec953d3c9b936354f23bc",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "doctrine/annotations": "^1.2",
  989. "doctrine/collections": "^1.3",
  990. "jms/serializer": "^1.1",
  991. "php": ">=5.5",
  992. "phpoption/phpoption": "^1.1",
  993. "symfony/yaml": "^2.7|^3.1"
  994. },
  995. "require-dev": {
  996. "mockery/mockery": "^0.9.4",
  997. "phpunit/phpunit": "~4.8|~5.0",
  998. "satooshi/php-coveralls": "^1.0"
  999. },
  1000. "type": "package",
  1001. "autoload": {
  1002. "psr-4": {
  1003. "Epfremme\\Swagger\\": "src/"
  1004. }
  1005. },
  1006. "notification-url": "https://packagist.org/downloads/",
  1007. "license": [
  1008. "MIT"
  1009. ],
  1010. "authors": [
  1011. {
  1012. "name": "Edward Pfremmer",
  1013. "email": "epfremme@nerdery.com"
  1014. }
  1015. ],
  1016. "description": "Library for parsing swagger documentation into PHP entities for use in testing and code generation",
  1017. "time": "2016-09-26T17:24:17+00:00"
  1018. },
  1019. {
  1020. "name": "facebook/webdriver",
  1021. "version": "1.6.0",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/facebook/php-webdriver.git",
  1025. "reference": "bd8c740097eb9f2fc3735250fc1912bc811a954e"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/bd8c740097eb9f2fc3735250fc1912bc811a954e",
  1030. "reference": "bd8c740097eb9f2fc3735250fc1912bc811a954e",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "ext-curl": "*",
  1035. "ext-json": "*",
  1036. "ext-mbstring": "*",
  1037. "ext-zip": "*",
  1038. "php": "^5.6 || ~7.0",
  1039. "symfony/process": "^2.8 || ^3.1 || ^4.0"
  1040. },
  1041. "require-dev": {
  1042. "friendsofphp/php-cs-fixer": "^2.0",
  1043. "jakub-onderka/php-parallel-lint": "^0.9.2",
  1044. "php-coveralls/php-coveralls": "^2.0",
  1045. "php-mock/php-mock-phpunit": "^1.1",
  1046. "phpunit/phpunit": "^5.7",
  1047. "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0",
  1048. "squizlabs/php_codesniffer": "^2.6",
  1049. "symfony/var-dumper": "^3.3 || ^4.0"
  1050. },
  1051. "suggest": {
  1052. "ext-SimpleXML": "For Firefox profile creation"
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "branch-alias": {
  1057. "dev-community": "1.5-dev"
  1058. }
  1059. },
  1060. "autoload": {
  1061. "psr-4": {
  1062. "Facebook\\WebDriver\\": "lib/"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "Apache-2.0"
  1068. ],
  1069. "description": "A PHP client for Selenium WebDriver",
  1070. "homepage": "https://github.com/facebook/php-webdriver",
  1071. "keywords": [
  1072. "facebook",
  1073. "php",
  1074. "selenium",
  1075. "webdriver"
  1076. ],
  1077. "time": "2018-05-16T17:37:13+00:00"
  1078. },
  1079. {
  1080. "name": "flow/jsonpath",
  1081. "version": "0.4.0",
  1082. "source": {
  1083. "type": "git",
  1084. "url": "https://github.com/FlowCommunications/JSONPath.git",
  1085. "reference": "f0222818d5c938e4ab668ab2e2c079bd51a27112"
  1086. },
  1087. "dist": {
  1088. "type": "zip",
  1089. "url": "https://api.github.com/repos/FlowCommunications/JSONPath/zipball/f0222818d5c938e4ab668ab2e2c079bd51a27112",
  1090. "reference": "f0222818d5c938e4ab668ab2e2c079bd51a27112",
  1091. "shasum": ""
  1092. },
  1093. "require": {
  1094. "php": ">=5.4.0"
  1095. },
  1096. "require-dev": {
  1097. "peekmo/jsonpath": "dev-master",
  1098. "phpunit/phpunit": "^4.0"
  1099. },
  1100. "type": "library",
  1101. "autoload": {
  1102. "psr-0": {
  1103. "Flow\\JSONPath": "src/",
  1104. "Flow\\JSONPath\\Test": "tests/"
  1105. }
  1106. },
  1107. "notification-url": "https://packagist.org/downloads/",
  1108. "license": [
  1109. "MIT"
  1110. ],
  1111. "authors": [
  1112. {
  1113. "name": "Stephen Frank",
  1114. "email": "stephen@flowsa.com"
  1115. }
  1116. ],
  1117. "description": "JSONPath implementation for parsing, searching and flattening arrays",
  1118. "time": "2018-03-04T16:39:47+00:00"
  1119. },
  1120. {
  1121. "name": "fzaninotto/faker",
  1122. "version": "v1.8.0",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/fzaninotto/Faker.git",
  1126. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  1131. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  1132. "shasum": ""
  1133. },
  1134. "require": {
  1135. "php": "^5.3.3 || ^7.0"
  1136. },
  1137. "require-dev": {
  1138. "ext-intl": "*",
  1139. "phpunit/phpunit": "^4.8.35 || ^5.7",
  1140. "squizlabs/php_codesniffer": "^1.5"
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-master": "1.8-dev"
  1146. }
  1147. },
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Faker\\": "src/Faker/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "François Zaninotto"
  1160. }
  1161. ],
  1162. "description": "Faker is a PHP library that generates fake data for you.",
  1163. "keywords": [
  1164. "data",
  1165. "faker",
  1166. "fixtures"
  1167. ],
  1168. "time": "2018-07-12T10:23:15+00:00"
  1169. },
  1170. {
  1171. "name": "g1a/composer-test-scenarios",
  1172. "version": "2.2.0",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/g1a/composer-test-scenarios.git",
  1176. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://api.github.com/repos/g1a/composer-test-scenarios/zipball/a166fd15191aceab89f30c097e694b7cf3db4880",
  1181. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880",
  1182. "shasum": ""
  1183. },
  1184. "bin": [
  1185. "scripts/create-scenario",
  1186. "scripts/dependency-licenses",
  1187. "scripts/install-scenario"
  1188. ],
  1189. "type": "library",
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Greg Anderson",
  1197. "email": "greg.1.anderson@greenknowe.org"
  1198. }
  1199. ],
  1200. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  1201. "time": "2018-08-08T23:37:23+00:00"
  1202. },
  1203. {
  1204. "name": "grasmash/expander",
  1205. "version": "1.0.0",
  1206. "source": {
  1207. "type": "git",
  1208. "url": "https://github.com/grasmash/expander.git",
  1209. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  1210. },
  1211. "dist": {
  1212. "type": "zip",
  1213. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1214. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1215. "shasum": ""
  1216. },
  1217. "require": {
  1218. "dflydev/dot-access-data": "^1.1.0",
  1219. "php": ">=5.4"
  1220. },
  1221. "require-dev": {
  1222. "greg-1-anderson/composer-test-scenarios": "^1",
  1223. "phpunit/phpunit": "^4|^5.5.4",
  1224. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1225. "squizlabs/php_codesniffer": "^2.7"
  1226. },
  1227. "type": "library",
  1228. "extra": {
  1229. "branch-alias": {
  1230. "dev-master": "1.x-dev"
  1231. }
  1232. },
  1233. "autoload": {
  1234. "psr-4": {
  1235. "Grasmash\\Expander\\": "src/"
  1236. }
  1237. },
  1238. "notification-url": "https://packagist.org/downloads/",
  1239. "license": [
  1240. "MIT"
  1241. ],
  1242. "authors": [
  1243. {
  1244. "name": "Matthew Grasmick"
  1245. }
  1246. ],
  1247. "description": "Expands internal property references in PHP arrays file.",
  1248. "time": "2017-12-21T22:14:55+00:00"
  1249. },
  1250. {
  1251. "name": "grasmash/yaml-expander",
  1252. "version": "1.4.0",
  1253. "source": {
  1254. "type": "git",
  1255. "url": "https://github.com/grasmash/yaml-expander.git",
  1256. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  1257. },
  1258. "dist": {
  1259. "type": "zip",
  1260. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  1261. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  1262. "shasum": ""
  1263. },
  1264. "require": {
  1265. "dflydev/dot-access-data": "^1.1.0",
  1266. "php": ">=5.4",
  1267. "symfony/yaml": "^2.8.11|^3|^4"
  1268. },
  1269. "require-dev": {
  1270. "greg-1-anderson/composer-test-scenarios": "^1",
  1271. "phpunit/phpunit": "^4.8|^5.5.4",
  1272. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1273. "squizlabs/php_codesniffer": "^2.7"
  1274. },
  1275. "type": "library",
  1276. "extra": {
  1277. "branch-alias": {
  1278. "dev-master": "1.x-dev"
  1279. }
  1280. },
  1281. "autoload": {
  1282. "psr-4": {
  1283. "Grasmash\\YamlExpander\\": "src/"
  1284. }
  1285. },
  1286. "notification-url": "https://packagist.org/downloads/",
  1287. "license": [
  1288. "MIT"
  1289. ],
  1290. "authors": [
  1291. {
  1292. "name": "Matthew Grasmick"
  1293. }
  1294. ],
  1295. "description": "Expands internal property references in a yaml file.",
  1296. "time": "2017-12-16T16:06:03+00:00"
  1297. },
  1298. {
  1299. "name": "guzzlehttp/guzzle",
  1300. "version": "6.3.3",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/guzzle/guzzle.git",
  1304. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1309. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "guzzlehttp/promises": "^1.0",
  1314. "guzzlehttp/psr7": "^1.4",
  1315. "php": ">=5.5"
  1316. },
  1317. "require-dev": {
  1318. "ext-curl": "*",
  1319. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1320. "psr/log": "^1.0"
  1321. },
  1322. "suggest": {
  1323. "psr/log": "Required for using the Log middleware"
  1324. },
  1325. "type": "library",
  1326. "extra": {
  1327. "branch-alias": {
  1328. "dev-master": "6.3-dev"
  1329. }
  1330. },
  1331. "autoload": {
  1332. "files": [
  1333. "src/functions_include.php"
  1334. ],
  1335. "psr-4": {
  1336. "GuzzleHttp\\": "src/"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Michael Dowling",
  1346. "email": "mtdowling@gmail.com",
  1347. "homepage": "https://github.com/mtdowling"
  1348. }
  1349. ],
  1350. "description": "Guzzle is a PHP HTTP client library",
  1351. "homepage": "http://guzzlephp.org/",
  1352. "keywords": [
  1353. "client",
  1354. "curl",
  1355. "framework",
  1356. "http",
  1357. "http client",
  1358. "rest",
  1359. "web service"
  1360. ],
  1361. "time": "2018-04-22T15:46:56+00:00"
  1362. },
  1363. {
  1364. "name": "guzzlehttp/promises",
  1365. "version": "v1.3.1",
  1366. "source": {
  1367. "type": "git",
  1368. "url": "https://github.com/guzzle/promises.git",
  1369. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1370. },
  1371. "dist": {
  1372. "type": "zip",
  1373. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1374. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1375. "shasum": ""
  1376. },
  1377. "require": {
  1378. "php": ">=5.5.0"
  1379. },
  1380. "require-dev": {
  1381. "phpunit/phpunit": "^4.0"
  1382. },
  1383. "type": "library",
  1384. "extra": {
  1385. "branch-alias": {
  1386. "dev-master": "1.4-dev"
  1387. }
  1388. },
  1389. "autoload": {
  1390. "psr-4": {
  1391. "GuzzleHttp\\Promise\\": "src/"
  1392. },
  1393. "files": [
  1394. "src/functions_include.php"
  1395. ]
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "authors": [
  1402. {
  1403. "name": "Michael Dowling",
  1404. "email": "mtdowling@gmail.com",
  1405. "homepage": "https://github.com/mtdowling"
  1406. }
  1407. ],
  1408. "description": "Guzzle promises library",
  1409. "keywords": [
  1410. "promise"
  1411. ],
  1412. "time": "2016-12-20T10:07:11+00:00"
  1413. },
  1414. {
  1415. "name": "guzzlehttp/psr7",
  1416. "version": "1.4.2",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/guzzle/psr7.git",
  1420. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1425. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1426. "shasum": ""
  1427. },
  1428. "require": {
  1429. "php": ">=5.4.0",
  1430. "psr/http-message": "~1.0"
  1431. },
  1432. "provide": {
  1433. "psr/http-message-implementation": "1.0"
  1434. },
  1435. "require-dev": {
  1436. "phpunit/phpunit": "~4.0"
  1437. },
  1438. "type": "library",
  1439. "extra": {
  1440. "branch-alias": {
  1441. "dev-master": "1.4-dev"
  1442. }
  1443. },
  1444. "autoload": {
  1445. "psr-4": {
  1446. "GuzzleHttp\\Psr7\\": "src/"
  1447. },
  1448. "files": [
  1449. "src/functions_include.php"
  1450. ]
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Michael Dowling",
  1459. "email": "mtdowling@gmail.com",
  1460. "homepage": "https://github.com/mtdowling"
  1461. },
  1462. {
  1463. "name": "Tobias Schultze",
  1464. "homepage": "https://github.com/Tobion"
  1465. }
  1466. ],
  1467. "description": "PSR-7 message implementation that also provides common utility methods",
  1468. "keywords": [
  1469. "http",
  1470. "message",
  1471. "request",
  1472. "response",
  1473. "stream",
  1474. "uri",
  1475. "url"
  1476. ],
  1477. "time": "2017-03-20T17:10:46+00:00"
  1478. },
  1479. {
  1480. "name": "jms/metadata",
  1481. "version": "1.7.0",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/schmittjoh/metadata.git",
  1485. "reference": "e5854ab1aa643623dc64adde718a8eec32b957a8"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/e5854ab1aa643623dc64adde718a8eec32b957a8",
  1490. "reference": "e5854ab1aa643623dc64adde718a8eec32b957a8",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "php": ">=5.3.0"
  1495. },
  1496. "require-dev": {
  1497. "doctrine/cache": "~1.0",
  1498. "symfony/cache": "~3.1"
  1499. },
  1500. "type": "library",
  1501. "extra": {
  1502. "branch-alias": {
  1503. "dev-master": "1.5.x-dev"
  1504. }
  1505. },
  1506. "autoload": {
  1507. "psr-0": {
  1508. "Metadata\\": "src/"
  1509. }
  1510. },
  1511. "notification-url": "https://packagist.org/downloads/",
  1512. "license": [
  1513. "MIT"
  1514. ],
  1515. "authors": [
  1516. {
  1517. "name": "Asmir Mustafic",
  1518. "email": "goetas@gmail.com"
  1519. },
  1520. {
  1521. "name": "Johannes M. Schmitt",
  1522. "email": "schmittjoh@gmail.com"
  1523. }
  1524. ],
  1525. "description": "Class/method/property metadata management in PHP",
  1526. "keywords": [
  1527. "annotations",
  1528. "metadata",
  1529. "xml",
  1530. "yaml"
  1531. ],
  1532. "time": "2018-10-26T12:40:10+00:00"
  1533. },
  1534. {
  1535. "name": "jms/parser-lib",
  1536. "version": "1.0.0",
  1537. "source": {
  1538. "type": "git",
  1539. "url": "https://github.com/schmittjoh/parser-lib.git",
  1540. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1541. },
  1542. "dist": {
  1543. "type": "zip",
  1544. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1545. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1546. "shasum": ""
  1547. },
  1548. "require": {
  1549. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1550. },
  1551. "type": "library",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "1.0-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "psr-0": {
  1559. "JMS\\": "src/"
  1560. }
  1561. },
  1562. "notification-url": "https://packagist.org/downloads/",
  1563. "license": [
  1564. "Apache2"
  1565. ],
  1566. "description": "A library for easily creating recursive-descent parsers.",
  1567. "time": "2012-11-18T18:08:43+00:00"
  1568. },
  1569. {
  1570. "name": "jms/serializer",
  1571. "version": "1.13.0",
  1572. "source": {
  1573. "type": "git",
  1574. "url": "https://github.com/schmittjoh/serializer.git",
  1575. "reference": "00863e1d55b411cc33ad3e1de09a4c8d3aae793c"
  1576. },
  1577. "dist": {
  1578. "type": "zip",
  1579. "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/00863e1d55b411cc33ad3e1de09a4c8d3aae793c",
  1580. "reference": "00863e1d55b411cc33ad3e1de09a4c8d3aae793c",
  1581. "shasum": ""
  1582. },
  1583. "require": {
  1584. "doctrine/annotations": "^1.0",
  1585. "doctrine/instantiator": "^1.0.3",
  1586. "jms/metadata": "^1.3",
  1587. "jms/parser-lib": "1.*",
  1588. "php": "^5.5|^7.0",
  1589. "phpcollection/phpcollection": "~0.1",
  1590. "phpoption/phpoption": "^1.1"
  1591. },
  1592. "conflict": {
  1593. "twig/twig": "<1.12"
  1594. },
  1595. "require-dev": {
  1596. "doctrine/orm": "~2.1",
  1597. "doctrine/phpcr-odm": "^1.3|^2.0",
  1598. "ext-pdo_sqlite": "*",
  1599. "jackalope/jackalope-doctrine-dbal": "^1.1.5",
  1600. "phpunit/phpunit": "^4.8|^5.0",
  1601. "propel/propel1": "~1.7",
  1602. "psr/container": "^1.0",
  1603. "symfony/dependency-injection": "^2.7|^3.3|^4.0",
  1604. "symfony/expression-language": "^2.6|^3.0",
  1605. "symfony/filesystem": "^2.1",
  1606. "symfony/form": "~2.1|^3.0",
  1607. "symfony/translation": "^2.1|^3.0",
  1608. "symfony/validator": "^2.2|^3.0",
  1609. "symfony/yaml": "^2.1|^3.0",
  1610. "twig/twig": "~1.12|~2.0"
  1611. },
  1612. "suggest": {
  1613. "doctrine/cache": "Required if you like to use cache functionality.",
  1614. "doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.",
  1615. "symfony/yaml": "Required if you'd like to serialize data to YAML format."
  1616. },
  1617. "type": "library",
  1618. "extra": {
  1619. "branch-alias": {
  1620. "dev-1.x": "1.13-dev"
  1621. }
  1622. },
  1623. "autoload": {
  1624. "psr-0": {
  1625. "JMS\\Serializer": "src/"
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Asmir Mustafic",
  1635. "email": "goetas@gmail.com"
  1636. },
  1637. {
  1638. "name": "Johannes M. Schmitt",
  1639. "email": "schmittjoh@gmail.com"
  1640. }
  1641. ],
  1642. "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
  1643. "homepage": "http://jmsyst.com/libs/serializer",
  1644. "keywords": [
  1645. "deserialization",
  1646. "jaxb",
  1647. "json",
  1648. "serialization",
  1649. "xml"
  1650. ],
  1651. "time": "2018-07-25T13:58:54+00:00"
  1652. },
  1653. {
  1654. "name": "league/container",
  1655. "version": "2.4.1",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/thephpleague/container.git",
  1659. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  1664. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "container-interop/container-interop": "^1.2",
  1669. "php": "^5.4.0 || ^7.0"
  1670. },
  1671. "provide": {
  1672. "container-interop/container-interop-implementation": "^1.2",
  1673. "psr/container-implementation": "^1.0"
  1674. },
  1675. "replace": {
  1676. "orno/di": "~2.0"
  1677. },
  1678. "require-dev": {
  1679. "phpunit/phpunit": "4.*"
  1680. },
  1681. "type": "library",
  1682. "extra": {
  1683. "branch-alias": {
  1684. "dev-2.x": "2.x-dev",
  1685. "dev-1.x": "1.x-dev"
  1686. }
  1687. },
  1688. "autoload": {
  1689. "psr-4": {
  1690. "League\\Container\\": "src"
  1691. }
  1692. },
  1693. "notification-url": "https://packagist.org/downloads/",
  1694. "license": [
  1695. "MIT"
  1696. ],
  1697. "authors": [
  1698. {
  1699. "name": "Phil Bennett",
  1700. "email": "philipobenito@gmail.com",
  1701. "homepage": "http://www.philipobenito.com",
  1702. "role": "Developer"
  1703. }
  1704. ],
  1705. "description": "A fast and intuitive dependency injection container.",
  1706. "homepage": "https://github.com/thephpleague/container",
  1707. "keywords": [
  1708. "container",
  1709. "dependency",
  1710. "di",
  1711. "injection",
  1712. "league",
  1713. "provider",
  1714. "service"
  1715. ],
  1716. "time": "2017-05-10T09:20:27+00:00"
  1717. },
  1718. {
  1719. "name": "monolog/monolog",
  1720. "version": "1.24.0",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://github.com/Seldaek/monolog.git",
  1724. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1729. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1730. "shasum": ""
  1731. },
  1732. "require": {
  1733. "php": ">=5.3.0",
  1734. "psr/log": "~1.0"
  1735. },
  1736. "provide": {
  1737. "psr/log-implementation": "1.0.0"
  1738. },
  1739. "require-dev": {
  1740. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1741. "doctrine/couchdb": "~1.0@dev",
  1742. "graylog2/gelf-php": "~1.0",
  1743. "jakub-onderka/php-parallel-lint": "0.9",
  1744. "php-amqplib/php-amqplib": "~2.4",
  1745. "php-console/php-console": "^3.1.3",
  1746. "phpunit/phpunit": "~4.5",
  1747. "phpunit/phpunit-mock-objects": "2.3.0",
  1748. "ruflin/elastica": ">=0.90 <3.0",
  1749. "sentry/sentry": "^0.13",
  1750. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1751. },
  1752. "suggest": {
  1753. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1754. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1755. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1756. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1757. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1758. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1759. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1760. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1761. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1762. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1763. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1764. },
  1765. "type": "library",
  1766. "extra": {
  1767. "branch-alias": {
  1768. "dev-master": "2.0.x-dev"
  1769. }
  1770. },
  1771. "autoload": {
  1772. "psr-4": {
  1773. "Monolog\\": "src/Monolog"
  1774. }
  1775. },
  1776. "notification-url": "https://packagist.org/downloads/",
  1777. "license": [
  1778. "MIT"
  1779. ],
  1780. "authors": [
  1781. {
  1782. "name": "Jordi Boggiano",
  1783. "email": "j.boggiano@seld.be",
  1784. "homepage": "http://seld.be"
  1785. }
  1786. ],
  1787. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1788. "homepage": "http://github.com/Seldaek/monolog",
  1789. "keywords": [
  1790. "log",
  1791. "logging",
  1792. "psr-3"
  1793. ],
  1794. "time": "2018-11-05T09:00:11+00:00"
  1795. },
  1796. {
  1797. "name": "moontoast/math",
  1798. "version": "1.1.2",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/ramsey/moontoast-math.git",
  1802. "reference": "c2792a25df5cad4ff3d760dd37078fc5b6fccc79"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/c2792a25df5cad4ff3d760dd37078fc5b6fccc79",
  1807. "reference": "c2792a25df5cad4ff3d760dd37078fc5b6fccc79",
  1808. "shasum": ""
  1809. },
  1810. "require": {
  1811. "ext-bcmath": "*",
  1812. "php": ">=5.3.3"
  1813. },
  1814. "require-dev": {
  1815. "jakub-onderka/php-parallel-lint": "^0.9.0",
  1816. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  1817. "satooshi/php-coveralls": "^0.6.1",
  1818. "squizlabs/php_codesniffer": "^2.3"
  1819. },
  1820. "type": "library",
  1821. "autoload": {
  1822. "psr-4": {
  1823. "Moontoast\\Math\\": "src/Moontoast/Math/"
  1824. }
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "Apache-2.0"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "Ben Ramsey",
  1833. "email": "ben@benramsey.com",
  1834. "homepage": "https://benramsey.com"
  1835. }
  1836. ],
  1837. "description": "A mathematics library, providing functionality for large numbers",
  1838. "homepage": "https://github.com/ramsey/moontoast-math",
  1839. "keywords": [
  1840. "bcmath",
  1841. "math"
  1842. ],
  1843. "time": "2017-02-16T16:54:46+00:00"
  1844. },
  1845. {
  1846. "name": "mustache/mustache",
  1847. "version": "v2.12.0",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/bobthecow/mustache.php.git",
  1851. "reference": "fe8fe72e9d580591854de404cc59a1b83ca4d19e"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/fe8fe72e9d580591854de404cc59a1b83ca4d19e",
  1856. "reference": "fe8fe72e9d580591854de404cc59a1b83ca4d19e",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "php": ">=5.2.4"
  1861. },
  1862. "require-dev": {
  1863. "friendsofphp/php-cs-fixer": "~1.11",
  1864. "phpunit/phpunit": "~3.7|~4.0|~5.0"
  1865. },
  1866. "type": "library",
  1867. "autoload": {
  1868. "psr-0": {
  1869. "Mustache": "src/"
  1870. }
  1871. },
  1872. "notification-url": "https://packagist.org/downloads/",
  1873. "license": [
  1874. "MIT"
  1875. ],
  1876. "authors": [
  1877. {
  1878. "name": "Justin Hileman",
  1879. "email": "justin@justinhileman.info",
  1880. "homepage": "http://justinhileman.com"
  1881. }
  1882. ],
  1883. "description": "A Mustache implementation in PHP.",
  1884. "homepage": "https://github.com/bobthecow/mustache.php",
  1885. "keywords": [
  1886. "mustache",
  1887. "templating"
  1888. ],
  1889. "time": "2017-07-11T12:54:05+00:00"
  1890. },
  1891. {
  1892. "name": "myclabs/deep-copy",
  1893. "version": "1.7.0",
  1894. "source": {
  1895. "type": "git",
  1896. "url": "https://github.com/myclabs/DeepCopy.git",
  1897. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  1898. },
  1899. "dist": {
  1900. "type": "zip",
  1901. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  1902. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  1903. "shasum": ""
  1904. },
  1905. "require": {
  1906. "php": "^5.6 || ^7.0"
  1907. },
  1908. "require-dev": {
  1909. "doctrine/collections": "^1.0",
  1910. "doctrine/common": "^2.6",
  1911. "phpunit/phpunit": "^4.1"
  1912. },
  1913. "type": "library",
  1914. "autoload": {
  1915. "psr-4": {
  1916. "DeepCopy\\": "src/DeepCopy/"
  1917. },
  1918. "files": [
  1919. "src/DeepCopy/deep_copy.php"
  1920. ]
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "description": "Create deep copies (clones) of your objects",
  1927. "keywords": [
  1928. "clone",
  1929. "copy",
  1930. "duplicate",
  1931. "object",
  1932. "object graph"
  1933. ],
  1934. "time": "2017-10-19T19:58:43+00:00"
  1935. },
  1936. {
  1937. "name": "paragonie/random_compat",
  1938. "version": "v9.99.99",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/paragonie/random_compat.git",
  1942. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1947. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1948. "shasum": ""
  1949. },
  1950. "require": {
  1951. "php": "^7"
  1952. },
  1953. "require-dev": {
  1954. "phpunit/phpunit": "4.*|5.*",
  1955. "vimeo/psalm": "^1"
  1956. },
  1957. "suggest": {
  1958. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1959. },
  1960. "type": "library",
  1961. "notification-url": "https://packagist.org/downloads/",
  1962. "license": [
  1963. "MIT"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "Paragon Initiative Enterprises",
  1968. "email": "security@paragonie.com",
  1969. "homepage": "https://paragonie.com"
  1970. }
  1971. ],
  1972. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1973. "keywords": [
  1974. "csprng",
  1975. "polyfill",
  1976. "pseudorandom",
  1977. "random"
  1978. ],
  1979. "time": "2018-07-02T15:55:56+00:00"
  1980. },
  1981. {
  1982. "name": "phar-io/manifest",
  1983. "version": "1.0.1",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/phar-io/manifest.git",
  1987. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  1992. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  1993. "shasum": ""
  1994. },
  1995. "require": {
  1996. "ext-dom": "*",
  1997. "ext-phar": "*",
  1998. "phar-io/version": "^1.0.1",
  1999. "php": "^5.6 || ^7.0"
  2000. },
  2001. "type": "library",
  2002. "extra": {
  2003. "branch-alias": {
  2004. "dev-master": "1.0.x-dev"
  2005. }
  2006. },
  2007. "autoload": {
  2008. "classmap": [
  2009. "src/"
  2010. ]
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "BSD-3-Clause"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "Arne Blankerts",
  2019. "email": "arne@blankerts.de",
  2020. "role": "Developer"
  2021. },
  2022. {
  2023. "name": "Sebastian Heuer",
  2024. "email": "sebastian@phpeople.de",
  2025. "role": "Developer"
  2026. },
  2027. {
  2028. "name": "Sebastian Bergmann",
  2029. "email": "sebastian@phpunit.de",
  2030. "role": "Developer"
  2031. }
  2032. ],
  2033. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2034. "time": "2017-03-05T18:14:27+00:00"
  2035. },
  2036. {
  2037. "name": "phar-io/version",
  2038. "version": "1.0.1",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/phar-io/version.git",
  2042. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  2047. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  2048. "shasum": ""
  2049. },
  2050. "require": {
  2051. "php": "^5.6 || ^7.0"
  2052. },
  2053. "type": "library",
  2054. "autoload": {
  2055. "classmap": [
  2056. "src/"
  2057. ]
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "BSD-3-Clause"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Arne Blankerts",
  2066. "email": "arne@blankerts.de",
  2067. "role": "Developer"
  2068. },
  2069. {
  2070. "name": "Sebastian Heuer",
  2071. "email": "sebastian@phpeople.de",
  2072. "role": "Developer"
  2073. },
  2074. {
  2075. "name": "Sebastian Bergmann",
  2076. "email": "sebastian@phpunit.de",
  2077. "role": "Developer"
  2078. }
  2079. ],
  2080. "description": "Library for handling version information and constraints",
  2081. "time": "2017-03-05T17:38:23+00:00"
  2082. },
  2083. {
  2084. "name": "phpcollection/phpcollection",
  2085. "version": "0.5.0",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://github.com/schmittjoh/php-collection.git",
  2089. "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://api.github.com/repos/schmittjoh/php-collection/zipball/f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6",
  2094. "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6",
  2095. "shasum": ""
  2096. },
  2097. "require": {
  2098. "phpoption/phpoption": "1.*"
  2099. },
  2100. "type": "library",
  2101. "extra": {
  2102. "branch-alias": {
  2103. "dev-master": "0.4-dev"
  2104. }
  2105. },
  2106. "autoload": {
  2107. "psr-0": {
  2108. "PhpCollection": "src/"
  2109. }
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "Apache2"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "Johannes M. Schmitt",
  2118. "email": "schmittjoh@gmail.com"
  2119. }
  2120. ],
  2121. "description": "General-Purpose Collection Library for PHP",
  2122. "keywords": [
  2123. "collection",
  2124. "list",
  2125. "map",
  2126. "sequence",
  2127. "set"
  2128. ],
  2129. "time": "2015-05-17T12:39:23+00:00"
  2130. },
  2131. {
  2132. "name": "phpdocumentor/reflection-common",
  2133. "version": "1.0.1",
  2134. "source": {
  2135. "type": "git",
  2136. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2137. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  2138. },
  2139. "dist": {
  2140. "type": "zip",
  2141. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2142. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2143. "shasum": ""
  2144. },
  2145. "require": {
  2146. "php": ">=5.5"
  2147. },
  2148. "require-dev": {
  2149. "phpunit/phpunit": "^4.6"
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "1.0.x-dev"
  2155. }
  2156. },
  2157. "autoload": {
  2158. "psr-4": {
  2159. "phpDocumentor\\Reflection\\": [
  2160. "src"
  2161. ]
  2162. }
  2163. },
  2164. "notification-url": "https://packagist.org/downloads/",
  2165. "license": [
  2166. "MIT"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "Jaap van Otterdijk",
  2171. "email": "opensource@ijaap.nl"
  2172. }
  2173. ],
  2174. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2175. "homepage": "http://www.phpdoc.org",
  2176. "keywords": [
  2177. "FQSEN",
  2178. "phpDocumentor",
  2179. "phpdoc",
  2180. "reflection",
  2181. "static analysis"
  2182. ],
  2183. "time": "2017-09-11T18:02:19+00:00"
  2184. },
  2185. {
  2186. "name": "phpdocumentor/reflection-docblock",
  2187. "version": "4.3.0",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2191. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  2196. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  2197. "shasum": ""
  2198. },
  2199. "require": {
  2200. "php": "^7.0",
  2201. "phpdocumentor/reflection-common": "^1.0.0",
  2202. "phpdocumentor/type-resolver": "^0.4.0",
  2203. "webmozart/assert": "^1.0"
  2204. },
  2205. "require-dev": {
  2206. "doctrine/instantiator": "~1.0.5",
  2207. "mockery/mockery": "^1.0",
  2208. "phpunit/phpunit": "^6.4"
  2209. },
  2210. "type": "library",
  2211. "extra": {
  2212. "branch-alias": {
  2213. "dev-master": "4.x-dev"
  2214. }
  2215. },
  2216. "autoload": {
  2217. "psr-4": {
  2218. "phpDocumentor\\Reflection\\": [
  2219. "src/"
  2220. ]
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Mike van Riel",
  2230. "email": "me@mikevanriel.com"
  2231. }
  2232. ],
  2233. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2234. "time": "2017-11-30T07:14:17+00:00"
  2235. },
  2236. {
  2237. "name": "phpdocumentor/type-resolver",
  2238. "version": "0.4.0",
  2239. "source": {
  2240. "type": "git",
  2241. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2242. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  2243. },
  2244. "dist": {
  2245. "type": "zip",
  2246. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  2247. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  2248. "shasum": ""
  2249. },
  2250. "require": {
  2251. "php": "^5.5 || ^7.0",
  2252. "phpdocumentor/reflection-common": "^1.0"
  2253. },
  2254. "require-dev": {
  2255. "mockery/mockery": "^0.9.4",
  2256. "phpunit/phpunit": "^5.2||^4.8.24"
  2257. },
  2258. "type": "library",
  2259. "extra": {
  2260. "branch-alias": {
  2261. "dev-master": "1.0.x-dev"
  2262. }
  2263. },
  2264. "autoload": {
  2265. "psr-4": {
  2266. "phpDocumentor\\Reflection\\": [
  2267. "src/"
  2268. ]
  2269. }
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Mike van Riel",
  2278. "email": "me@mikevanriel.com"
  2279. }
  2280. ],
  2281. "time": "2017-07-14T14:27:02+00:00"
  2282. },
  2283. {
  2284. "name": "phpoption/phpoption",
  2285. "version": "1.5.0",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://github.com/schmittjoh/php-option.git",
  2289. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2290. },
  2291. "dist": {
  2292. "type": "zip",
  2293. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2294. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2295. "shasum": ""
  2296. },
  2297. "require": {
  2298. "php": ">=5.3.0"
  2299. },
  2300. "require-dev": {
  2301. "phpunit/phpunit": "4.7.*"
  2302. },
  2303. "type": "library",
  2304. "extra": {
  2305. "branch-alias": {
  2306. "dev-master": "1.3-dev"
  2307. }
  2308. },
  2309. "autoload": {
  2310. "psr-0": {
  2311. "PhpOption\\": "src/"
  2312. }
  2313. },
  2314. "notification-url": "https://packagist.org/downloads/",
  2315. "license": [
  2316. "Apache2"
  2317. ],
  2318. "authors": [
  2319. {
  2320. "name": "Johannes M. Schmitt",
  2321. "email": "schmittjoh@gmail.com"
  2322. }
  2323. ],
  2324. "description": "Option Type for PHP",
  2325. "keywords": [
  2326. "language",
  2327. "option",
  2328. "php",
  2329. "type"
  2330. ],
  2331. "time": "2015-07-25T16:39:46+00:00"
  2332. },
  2333. {
  2334. "name": "phpspec/prophecy",
  2335. "version": "1.8.0",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://github.com/phpspec/prophecy.git",
  2339. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  2340. },
  2341. "dist": {
  2342. "type": "zip",
  2343. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  2344. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  2345. "shasum": ""
  2346. },
  2347. "require": {
  2348. "doctrine/instantiator": "^1.0.2",
  2349. "php": "^5.3|^7.0",
  2350. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  2351. "sebastian/comparator": "^1.1|^2.0|^3.0",
  2352. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  2353. },
  2354. "require-dev": {
  2355. "phpspec/phpspec": "^2.5|^3.2",
  2356. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  2357. },
  2358. "type": "library",
  2359. "extra": {
  2360. "branch-alias": {
  2361. "dev-master": "1.8.x-dev"
  2362. }
  2363. },
  2364. "autoload": {
  2365. "psr-0": {
  2366. "Prophecy\\": "src/"
  2367. }
  2368. },
  2369. "notification-url": "https://packagist.org/downloads/",
  2370. "license": [
  2371. "MIT"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "Konstantin Kudryashov",
  2376. "email": "ever.zet@gmail.com",
  2377. "homepage": "http://everzet.com"
  2378. },
  2379. {
  2380. "name": "Marcello Duarte",
  2381. "email": "marcello.duarte@gmail.com"
  2382. }
  2383. ],
  2384. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2385. "homepage": "https://github.com/phpspec/prophecy",
  2386. "keywords": [
  2387. "Double",
  2388. "Dummy",
  2389. "fake",
  2390. "mock",
  2391. "spy",
  2392. "stub"
  2393. ],
  2394. "time": "2018-08-05T17:53:17+00:00"
  2395. },
  2396. {
  2397. "name": "phpunit/php-code-coverage",
  2398. "version": "5.3.2",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2402. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  2407. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "ext-dom": "*",
  2412. "ext-xmlwriter": "*",
  2413. "php": "^7.0",
  2414. "phpunit/php-file-iterator": "^1.4.2",
  2415. "phpunit/php-text-template": "^1.2.1",
  2416. "phpunit/php-token-stream": "^2.0.1",
  2417. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  2418. "sebastian/environment": "^3.0",
  2419. "sebastian/version": "^2.0.1",
  2420. "theseer/tokenizer": "^1.1"
  2421. },
  2422. "require-dev": {
  2423. "phpunit/phpunit": "^6.0"
  2424. },
  2425. "suggest": {
  2426. "ext-xdebug": "^2.5.5"
  2427. },
  2428. "type": "library",
  2429. "extra": {
  2430. "branch-alias": {
  2431. "dev-master": "5.3.x-dev"
  2432. }
  2433. },
  2434. "autoload": {
  2435. "classmap": [
  2436. "src/"
  2437. ]
  2438. },
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "BSD-3-Clause"
  2442. ],
  2443. "authors": [
  2444. {
  2445. "name": "Sebastian Bergmann",
  2446. "email": "sebastian@phpunit.de",
  2447. "role": "lead"
  2448. }
  2449. ],
  2450. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2451. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2452. "keywords": [
  2453. "coverage",
  2454. "testing",
  2455. "xunit"
  2456. ],
  2457. "time": "2018-04-06T15:36:58+00:00"
  2458. },
  2459. {
  2460. "name": "phpunit/php-file-iterator",
  2461. "version": "1.4.5",
  2462. "source": {
  2463. "type": "git",
  2464. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2465. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  2466. },
  2467. "dist": {
  2468. "type": "zip",
  2469. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  2470. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  2471. "shasum": ""
  2472. },
  2473. "require": {
  2474. "php": ">=5.3.3"
  2475. },
  2476. "type": "library",
  2477. "extra": {
  2478. "branch-alias": {
  2479. "dev-master": "1.4.x-dev"
  2480. }
  2481. },
  2482. "autoload": {
  2483. "classmap": [
  2484. "src/"
  2485. ]
  2486. },
  2487. "notification-url": "https://packagist.org/downloads/",
  2488. "license": [
  2489. "BSD-3-Clause"
  2490. ],
  2491. "authors": [
  2492. {
  2493. "name": "Sebastian Bergmann",
  2494. "email": "sb@sebastian-bergmann.de",
  2495. "role": "lead"
  2496. }
  2497. ],
  2498. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2499. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2500. "keywords": [
  2501. "filesystem",
  2502. "iterator"
  2503. ],
  2504. "time": "2017-11-27T13:52:08+00:00"
  2505. },
  2506. {
  2507. "name": "phpunit/php-text-template",
  2508. "version": "1.2.1",
  2509. "source": {
  2510. "type": "git",
  2511. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2512. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2513. },
  2514. "dist": {
  2515. "type": "zip",
  2516. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2517. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2518. "shasum": ""
  2519. },
  2520. "require": {
  2521. "php": ">=5.3.3"
  2522. },
  2523. "type": "library",
  2524. "autoload": {
  2525. "classmap": [
  2526. "src/"
  2527. ]
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "BSD-3-Clause"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Sebastian Bergmann",
  2536. "email": "sebastian@phpunit.de",
  2537. "role": "lead"
  2538. }
  2539. ],
  2540. "description": "Simple template engine.",
  2541. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2542. "keywords": [
  2543. "template"
  2544. ],
  2545. "time": "2015-06-21T13:50:34+00:00"
  2546. },
  2547. {
  2548. "name": "phpunit/php-timer",
  2549. "version": "1.0.9",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2553. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2558. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2559. "shasum": ""
  2560. },
  2561. "require": {
  2562. "php": "^5.3.3 || ^7.0"
  2563. },
  2564. "require-dev": {
  2565. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2566. },
  2567. "type": "library",
  2568. "extra": {
  2569. "branch-alias": {
  2570. "dev-master": "1.0-dev"
  2571. }
  2572. },
  2573. "autoload": {
  2574. "classmap": [
  2575. "src/"
  2576. ]
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "BSD-3-Clause"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Sebastian Bergmann",
  2585. "email": "sb@sebastian-bergmann.de",
  2586. "role": "lead"
  2587. }
  2588. ],
  2589. "description": "Utility class for timing",
  2590. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2591. "keywords": [
  2592. "timer"
  2593. ],
  2594. "time": "2017-02-26T11:10:40+00:00"
  2595. },
  2596. {
  2597. "name": "phpunit/php-token-stream",
  2598. "version": "2.0.2",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2602. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  2607. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  2608. "shasum": ""
  2609. },
  2610. "require": {
  2611. "ext-tokenizer": "*",
  2612. "php": "^7.0"
  2613. },
  2614. "require-dev": {
  2615. "phpunit/phpunit": "^6.2.4"
  2616. },
  2617. "type": "library",
  2618. "extra": {
  2619. "branch-alias": {
  2620. "dev-master": "2.0-dev"
  2621. }
  2622. },
  2623. "autoload": {
  2624. "classmap": [
  2625. "src/"
  2626. ]
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "BSD-3-Clause"
  2631. ],
  2632. "authors": [
  2633. {
  2634. "name": "Sebastian Bergmann",
  2635. "email": "sebastian@phpunit.de"
  2636. }
  2637. ],
  2638. "description": "Wrapper around PHP's tokenizer extension.",
  2639. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2640. "keywords": [
  2641. "tokenizer"
  2642. ],
  2643. "time": "2017-11-27T05:48:46+00:00"
  2644. },
  2645. {
  2646. "name": "phpunit/phpunit",
  2647. "version": "6.5.13",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2651. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  2656. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "ext-dom": "*",
  2661. "ext-json": "*",
  2662. "ext-libxml": "*",
  2663. "ext-mbstring": "*",
  2664. "ext-xml": "*",
  2665. "myclabs/deep-copy": "^1.6.1",
  2666. "phar-io/manifest": "^1.0.1",
  2667. "phar-io/version": "^1.0",
  2668. "php": "^7.0",
  2669. "phpspec/prophecy": "^1.7",
  2670. "phpunit/php-code-coverage": "^5.3",
  2671. "phpunit/php-file-iterator": "^1.4.3",
  2672. "phpunit/php-text-template": "^1.2.1",
  2673. "phpunit/php-timer": "^1.0.9",
  2674. "phpunit/phpunit-mock-objects": "^5.0.9",
  2675. "sebastian/comparator": "^2.1",
  2676. "sebastian/diff": "^2.0",
  2677. "sebastian/environment": "^3.1",
  2678. "sebastian/exporter": "^3.1",
  2679. "sebastian/global-state": "^2.0",
  2680. "sebastian/object-enumerator": "^3.0.3",
  2681. "sebastian/resource-operations": "^1.0",
  2682. "sebastian/version": "^2.0.1"
  2683. },
  2684. "conflict": {
  2685. "phpdocumentor/reflection-docblock": "3.0.2",
  2686. "phpunit/dbunit": "<3.0"
  2687. },
  2688. "require-dev": {
  2689. "ext-pdo": "*"
  2690. },
  2691. "suggest": {
  2692. "ext-xdebug": "*",
  2693. "phpunit/php-invoker": "^1.1"
  2694. },
  2695. "bin": [
  2696. "phpunit"
  2697. ],
  2698. "type": "library",
  2699. "extra": {
  2700. "branch-alias": {
  2701. "dev-master": "6.5.x-dev"
  2702. }
  2703. },
  2704. "autoload": {
  2705. "classmap": [
  2706. "src/"
  2707. ]
  2708. },
  2709. "notification-url": "https://packagist.org/downloads/",
  2710. "license": [
  2711. "BSD-3-Clause"
  2712. ],
  2713. "authors": [
  2714. {
  2715. "name": "Sebastian Bergmann",
  2716. "email": "sebastian@phpunit.de",
  2717. "role": "lead"
  2718. }
  2719. ],
  2720. "description": "The PHP Unit Testing framework.",
  2721. "homepage": "https://phpunit.de/",
  2722. "keywords": [
  2723. "phpunit",
  2724. "testing",
  2725. "xunit"
  2726. ],
  2727. "time": "2018-09-08T15:10:43+00:00"
  2728. },
  2729. {
  2730. "name": "phpunit/phpunit-mock-objects",
  2731. "version": "5.0.10",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  2735. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  2740. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "doctrine/instantiator": "^1.0.5",
  2745. "php": "^7.0",
  2746. "phpunit/php-text-template": "^1.2.1",
  2747. "sebastian/exporter": "^3.1"
  2748. },
  2749. "conflict": {
  2750. "phpunit/phpunit": "<6.0"
  2751. },
  2752. "require-dev": {
  2753. "phpunit/phpunit": "^6.5.11"
  2754. },
  2755. "suggest": {
  2756. "ext-soap": "*"
  2757. },
  2758. "type": "library",
  2759. "extra": {
  2760. "branch-alias": {
  2761. "dev-master": "5.0.x-dev"
  2762. }
  2763. },
  2764. "autoload": {
  2765. "classmap": [
  2766. "src/"
  2767. ]
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "BSD-3-Clause"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Sebastian Bergmann",
  2776. "email": "sebastian@phpunit.de",
  2777. "role": "lead"
  2778. }
  2779. ],
  2780. "description": "Mock Object library for PHPUnit",
  2781. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  2782. "keywords": [
  2783. "mock",
  2784. "xunit"
  2785. ],
  2786. "time": "2018-08-09T05:50:03+00:00"
  2787. },
  2788. {
  2789. "name": "psr/container",
  2790. "version": "1.0.0",
  2791. "source": {
  2792. "type": "git",
  2793. "url": "https://github.com/php-fig/container.git",
  2794. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2795. },
  2796. "dist": {
  2797. "type": "zip",
  2798. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2799. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2800. "shasum": ""
  2801. },
  2802. "require": {
  2803. "php": ">=5.3.0"
  2804. },
  2805. "type": "library",
  2806. "extra": {
  2807. "branch-alias": {
  2808. "dev-master": "1.0.x-dev"
  2809. }
  2810. },
  2811. "autoload": {
  2812. "psr-4": {
  2813. "Psr\\Container\\": "src/"
  2814. }
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "PHP-FIG",
  2823. "homepage": "http://www.php-fig.org/"
  2824. }
  2825. ],
  2826. "description": "Common Container Interface (PHP FIG PSR-11)",
  2827. "homepage": "https://github.com/php-fig/container",
  2828. "keywords": [
  2829. "PSR-11",
  2830. "container",
  2831. "container-interface",
  2832. "container-interop",
  2833. "psr"
  2834. ],
  2835. "time": "2017-02-14T16:28:37+00:00"
  2836. },
  2837. {
  2838. "name": "psr/http-message",
  2839. "version": "1.0.1",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/php-fig/http-message.git",
  2843. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2848. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2849. "shasum": ""
  2850. },
  2851. "require": {
  2852. "php": ">=5.3.0"
  2853. },
  2854. "type": "library",
  2855. "extra": {
  2856. "branch-alias": {
  2857. "dev-master": "1.0.x-dev"
  2858. }
  2859. },
  2860. "autoload": {
  2861. "psr-4": {
  2862. "Psr\\Http\\Message\\": "src/"
  2863. }
  2864. },
  2865. "notification-url": "https://packagist.org/downloads/",
  2866. "license": [
  2867. "MIT"
  2868. ],
  2869. "authors": [
  2870. {
  2871. "name": "PHP-FIG",
  2872. "homepage": "http://www.php-fig.org/"
  2873. }
  2874. ],
  2875. "description": "Common interface for HTTP messages",
  2876. "homepage": "https://github.com/php-fig/http-message",
  2877. "keywords": [
  2878. "http",
  2879. "http-message",
  2880. "psr",
  2881. "psr-7",
  2882. "request",
  2883. "response"
  2884. ],
  2885. "time": "2016-08-06T14:39:51+00:00"
  2886. },
  2887. {
  2888. "name": "psr/log",
  2889. "version": "1.0.2",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://github.com/php-fig/log.git",
  2893. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2898. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2899. "shasum": ""
  2900. },
  2901. "require": {
  2902. "php": ">=5.3.0"
  2903. },
  2904. "type": "library",
  2905. "extra": {
  2906. "branch-alias": {
  2907. "dev-master": "1.0.x-dev"
  2908. }
  2909. },
  2910. "autoload": {
  2911. "psr-4": {
  2912. "Psr\\Log\\": "Psr/Log/"
  2913. }
  2914. },
  2915. "notification-url": "https://packagist.org/downloads/",
  2916. "license": [
  2917. "MIT"
  2918. ],
  2919. "authors": [
  2920. {
  2921. "name": "PHP-FIG",
  2922. "homepage": "http://www.php-fig.org/"
  2923. }
  2924. ],
  2925. "description": "Common interface for logging libraries",
  2926. "homepage": "https://github.com/php-fig/log",
  2927. "keywords": [
  2928. "log",
  2929. "psr",
  2930. "psr-3"
  2931. ],
  2932. "time": "2016-10-10T12:19:37+00:00"
  2933. },
  2934. {
  2935. "name": "ramsey/uuid",
  2936. "version": "3.8.0",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/ramsey/uuid.git",
  2940. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2945. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2946. "shasum": ""
  2947. },
  2948. "require": {
  2949. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  2950. "php": "^5.4 || ^7.0",
  2951. "symfony/polyfill-ctype": "^1.8"
  2952. },
  2953. "replace": {
  2954. "rhumsaa/uuid": "self.version"
  2955. },
  2956. "require-dev": {
  2957. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  2958. "doctrine/annotations": "~1.2.0",
  2959. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  2960. "ircmaxell/random-lib": "^1.1",
  2961. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2962. "mockery/mockery": "^0.9.9",
  2963. "moontoast/math": "^1.1",
  2964. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  2965. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  2966. "squizlabs/php_codesniffer": "^2.3"
  2967. },
  2968. "suggest": {
  2969. "ext-ctype": "Provides support for PHP Ctype functions",
  2970. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2971. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2972. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2973. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2974. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2975. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2976. },
  2977. "type": "library",
  2978. "extra": {
  2979. "branch-alias": {
  2980. "dev-master": "3.x-dev"
  2981. }
  2982. },
  2983. "autoload": {
  2984. "psr-4": {
  2985. "Ramsey\\Uuid\\": "src/"
  2986. }
  2987. },
  2988. "notification-url": "https://packagist.org/downloads/",
  2989. "license": [
  2990. "MIT"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Marijn Huizendveld",
  2995. "email": "marijn.huizendveld@gmail.com"
  2996. },
  2997. {
  2998. "name": "Thibaud Fabre",
  2999. "email": "thibaud@aztech.io"
  3000. },
  3001. {
  3002. "name": "Ben Ramsey",
  3003. "email": "ben@benramsey.com",
  3004. "homepage": "https://benramsey.com"
  3005. }
  3006. ],
  3007. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  3008. "homepage": "https://github.com/ramsey/uuid",
  3009. "keywords": [
  3010. "guid",
  3011. "identifier",
  3012. "uuid"
  3013. ],
  3014. "time": "2018-07-19T23:38:55+00:00"
  3015. },
  3016. {
  3017. "name": "sebastian/code-unit-reverse-lookup",
  3018. "version": "1.0.1",
  3019. "source": {
  3020. "type": "git",
  3021. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3022. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3023. },
  3024. "dist": {
  3025. "type": "zip",
  3026. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3027. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3028. "shasum": ""
  3029. },
  3030. "require": {
  3031. "php": "^5.6 || ^7.0"
  3032. },
  3033. "require-dev": {
  3034. "phpunit/phpunit": "^5.7 || ^6.0"
  3035. },
  3036. "type": "library",
  3037. "extra": {
  3038. "branch-alias": {
  3039. "dev-master": "1.0.x-dev"
  3040. }
  3041. },
  3042. "autoload": {
  3043. "classmap": [
  3044. "src/"
  3045. ]
  3046. },
  3047. "notification-url": "https://packagist.org/downloads/",
  3048. "license": [
  3049. "BSD-3-Clause"
  3050. ],
  3051. "authors": [
  3052. {
  3053. "name": "Sebastian Bergmann",
  3054. "email": "sebastian@phpunit.de"
  3055. }
  3056. ],
  3057. "description": "Looks up which function or method a line of code belongs to",
  3058. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3059. "time": "2017-03-04T06:30:41+00:00"
  3060. },
  3061. {
  3062. "name": "sebastian/comparator",
  3063. "version": "2.1.3",
  3064. "source": {
  3065. "type": "git",
  3066. "url": "https://github.com/sebastianbergmann/comparator.git",
  3067. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  3068. },
  3069. "dist": {
  3070. "type": "zip",
  3071. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  3072. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  3073. "shasum": ""
  3074. },
  3075. "require": {
  3076. "php": "^7.0",
  3077. "sebastian/diff": "^2.0 || ^3.0",
  3078. "sebastian/exporter": "^3.1"
  3079. },
  3080. "require-dev": {
  3081. "phpunit/phpunit": "^6.4"
  3082. },
  3083. "type": "library",
  3084. "extra": {
  3085. "branch-alias": {
  3086. "dev-master": "2.1.x-dev"
  3087. }
  3088. },
  3089. "autoload": {
  3090. "classmap": [
  3091. "src/"
  3092. ]
  3093. },
  3094. "notification-url": "https://packagist.org/downloads/",
  3095. "license": [
  3096. "BSD-3-Clause"
  3097. ],
  3098. "authors": [
  3099. {
  3100. "name": "Jeff Welch",
  3101. "email": "whatthejeff@gmail.com"
  3102. },
  3103. {
  3104. "name": "Volker Dusch",
  3105. "email": "github@wallbash.com"
  3106. },
  3107. {
  3108. "name": "Bernhard Schussek",
  3109. "email": "bschussek@2bepublished.at"
  3110. },
  3111. {
  3112. "name": "Sebastian Bergmann",
  3113. "email": "sebastian@phpunit.de"
  3114. }
  3115. ],
  3116. "description": "Provides the functionality to compare PHP values for equality",
  3117. "homepage": "https://github.com/sebastianbergmann/comparator",
  3118. "keywords": [
  3119. "comparator",
  3120. "compare",
  3121. "equality"
  3122. ],
  3123. "time": "2018-02-01T13:46:46+00:00"
  3124. },
  3125. {
  3126. "name": "sebastian/diff",
  3127. "version": "2.0.1",
  3128. "source": {
  3129. "type": "git",
  3130. "url": "https://github.com/sebastianbergmann/diff.git",
  3131. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  3132. },
  3133. "dist": {
  3134. "type": "zip",
  3135. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3136. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3137. "shasum": ""
  3138. },
  3139. "require": {
  3140. "php": "^7.0"
  3141. },
  3142. "require-dev": {
  3143. "phpunit/phpunit": "^6.2"
  3144. },
  3145. "type": "library",
  3146. "extra": {
  3147. "branch-alias": {
  3148. "dev-master": "2.0-dev"
  3149. }
  3150. },
  3151. "autoload": {
  3152. "classmap": [
  3153. "src/"
  3154. ]
  3155. },
  3156. "notification-url": "https://packagist.org/downloads/",
  3157. "license": [
  3158. "BSD-3-Clause"
  3159. ],
  3160. "authors": [
  3161. {
  3162. "name": "Kore Nordmann",
  3163. "email": "mail@kore-nordmann.de"
  3164. },
  3165. {
  3166. "name": "Sebastian Bergmann",
  3167. "email": "sebastian@phpunit.de"
  3168. }
  3169. ],
  3170. "description": "Diff implementation",
  3171. "homepage": "https://github.com/sebastianbergmann/diff",
  3172. "keywords": [
  3173. "diff"
  3174. ],
  3175. "time": "2017-08-03T08:09:46+00:00"
  3176. },
  3177. {
  3178. "name": "sebastian/environment",
  3179. "version": "3.1.0",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://github.com/sebastianbergmann/environment.git",
  3183. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3188. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3189. "shasum": ""
  3190. },
  3191. "require": {
  3192. "php": "^7.0"
  3193. },
  3194. "require-dev": {
  3195. "phpunit/phpunit": "^6.1"
  3196. },
  3197. "type": "library",
  3198. "extra": {
  3199. "branch-alias": {
  3200. "dev-master": "3.1.x-dev"
  3201. }
  3202. },
  3203. "autoload": {
  3204. "classmap": [
  3205. "src/"
  3206. ]
  3207. },
  3208. "notification-url": "https://packagist.org/downloads/",
  3209. "license": [
  3210. "BSD-3-Clause"
  3211. ],
  3212. "authors": [
  3213. {
  3214. "name": "Sebastian Bergmann",
  3215. "email": "sebastian@phpunit.de"
  3216. }
  3217. ],
  3218. "description": "Provides functionality to handle HHVM/PHP environments",
  3219. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3220. "keywords": [
  3221. "Xdebug",
  3222. "environment",
  3223. "hhvm"
  3224. ],
  3225. "time": "2017-07-01T08:51:00+00:00"
  3226. },
  3227. {
  3228. "name": "sebastian/exporter",
  3229. "version": "3.1.0",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/sebastianbergmann/exporter.git",
  3233. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  3238. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  3239. "shasum": ""
  3240. },
  3241. "require": {
  3242. "php": "^7.0",
  3243. "sebastian/recursion-context": "^3.0"
  3244. },
  3245. "require-dev": {
  3246. "ext-mbstring": "*",
  3247. "phpunit/phpunit": "^6.0"
  3248. },
  3249. "type": "library",
  3250. "extra": {
  3251. "branch-alias": {
  3252. "dev-master": "3.1.x-dev"
  3253. }
  3254. },
  3255. "autoload": {
  3256. "classmap": [
  3257. "src/"
  3258. ]
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "BSD-3-Clause"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Jeff Welch",
  3267. "email": "whatthejeff@gmail.com"
  3268. },
  3269. {
  3270. "name": "Volker Dusch",
  3271. "email": "github@wallbash.com"
  3272. },
  3273. {
  3274. "name": "Bernhard Schussek",
  3275. "email": "bschussek@2bepublished.at"
  3276. },
  3277. {
  3278. "name": "Sebastian Bergmann",
  3279. "email": "sebastian@phpunit.de"
  3280. },
  3281. {
  3282. "name": "Adam Harvey",
  3283. "email": "aharvey@php.net"
  3284. }
  3285. ],
  3286. "description": "Provides the functionality to export PHP variables for visualization",
  3287. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3288. "keywords": [
  3289. "export",
  3290. "exporter"
  3291. ],
  3292. "time": "2017-04-03T13:19:02+00:00"
  3293. },
  3294. {
  3295. "name": "sebastian/global-state",
  3296. "version": "2.0.0",
  3297. "source": {
  3298. "type": "git",
  3299. "url": "https://github.com/sebastianbergmann/global-state.git",
  3300. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  3301. },
  3302. "dist": {
  3303. "type": "zip",
  3304. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3305. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3306. "shasum": ""
  3307. },
  3308. "require": {
  3309. "php": "^7.0"
  3310. },
  3311. "require-dev": {
  3312. "phpunit/phpunit": "^6.0"
  3313. },
  3314. "suggest": {
  3315. "ext-uopz": "*"
  3316. },
  3317. "type": "library",
  3318. "extra": {
  3319. "branch-alias": {
  3320. "dev-master": "2.0-dev"
  3321. }
  3322. },
  3323. "autoload": {
  3324. "classmap": [
  3325. "src/"
  3326. ]
  3327. },
  3328. "notification-url": "https://packagist.org/downloads/",
  3329. "license": [
  3330. "BSD-3-Clause"
  3331. ],
  3332. "authors": [
  3333. {
  3334. "name": "Sebastian Bergmann",
  3335. "email": "sebastian@phpunit.de"
  3336. }
  3337. ],
  3338. "description": "Snapshotting of global state",
  3339. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3340. "keywords": [
  3341. "global state"
  3342. ],
  3343. "time": "2017-04-27T15:39:26+00:00"
  3344. },
  3345. {
  3346. "name": "sebastian/object-enumerator",
  3347. "version": "3.0.3",
  3348. "source": {
  3349. "type": "git",
  3350. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3351. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  3352. },
  3353. "dist": {
  3354. "type": "zip",
  3355. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3356. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3357. "shasum": ""
  3358. },
  3359. "require": {
  3360. "php": "^7.0",
  3361. "sebastian/object-reflector": "^1.1.1",
  3362. "sebastian/recursion-context": "^3.0"
  3363. },
  3364. "require-dev": {
  3365. "phpunit/phpunit": "^6.0"
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-master": "3.0.x-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "classmap": [
  3375. "src/"
  3376. ]
  3377. },
  3378. "notification-url": "https://packagist.org/downloads/",
  3379. "license": [
  3380. "BSD-3-Clause"
  3381. ],
  3382. "authors": [
  3383. {
  3384. "name": "Sebastian Bergmann",
  3385. "email": "sebastian@phpunit.de"
  3386. }
  3387. ],
  3388. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3389. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3390. "time": "2017-08-03T12:35:26+00:00"
  3391. },
  3392. {
  3393. "name": "sebastian/object-reflector",
  3394. "version": "1.1.1",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3398. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  3403. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "php": "^7.0"
  3408. },
  3409. "require-dev": {
  3410. "phpunit/phpunit": "^6.0"
  3411. },
  3412. "type": "library",
  3413. "extra": {
  3414. "branch-alias": {
  3415. "dev-master": "1.1-dev"
  3416. }
  3417. },
  3418. "autoload": {
  3419. "classmap": [
  3420. "src/"
  3421. ]
  3422. },
  3423. "notification-url": "https://packagist.org/downloads/",
  3424. "license": [
  3425. "BSD-3-Clause"
  3426. ],
  3427. "authors": [
  3428. {
  3429. "name": "Sebastian Bergmann",
  3430. "email": "sebastian@phpunit.de"
  3431. }
  3432. ],
  3433. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3434. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3435. "time": "2017-03-29T09:07:27+00:00"
  3436. },
  3437. {
  3438. "name": "sebastian/recursion-context",
  3439. "version": "3.0.0",
  3440. "source": {
  3441. "type": "git",
  3442. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3443. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  3444. },
  3445. "dist": {
  3446. "type": "zip",
  3447. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3448. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3449. "shasum": ""
  3450. },
  3451. "require": {
  3452. "php": "^7.0"
  3453. },
  3454. "require-dev": {
  3455. "phpunit/phpunit": "^6.0"
  3456. },
  3457. "type": "library",
  3458. "extra": {
  3459. "branch-alias": {
  3460. "dev-master": "3.0.x-dev"
  3461. }
  3462. },
  3463. "autoload": {
  3464. "classmap": [
  3465. "src/"
  3466. ]
  3467. },
  3468. "notification-url": "https://packagist.org/downloads/",
  3469. "license": [
  3470. "BSD-3-Clause"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Jeff Welch",
  3475. "email": "whatthejeff@gmail.com"
  3476. },
  3477. {
  3478. "name": "Sebastian Bergmann",
  3479. "email": "sebastian@phpunit.de"
  3480. },
  3481. {
  3482. "name": "Adam Harvey",
  3483. "email": "aharvey@php.net"
  3484. }
  3485. ],
  3486. "description": "Provides functionality to recursively process PHP variables",
  3487. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3488. "time": "2017-03-03T06:23:57+00:00"
  3489. },
  3490. {
  3491. "name": "sebastian/resource-operations",
  3492. "version": "1.0.0",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3496. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3501. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "php": ">=5.6.0"
  3506. },
  3507. "type": "library",
  3508. "extra": {
  3509. "branch-alias": {
  3510. "dev-master": "1.0.x-dev"
  3511. }
  3512. },
  3513. "autoload": {
  3514. "classmap": [
  3515. "src/"
  3516. ]
  3517. },
  3518. "notification-url": "https://packagist.org/downloads/",
  3519. "license": [
  3520. "BSD-3-Clause"
  3521. ],
  3522. "authors": [
  3523. {
  3524. "name": "Sebastian Bergmann",
  3525. "email": "sebastian@phpunit.de"
  3526. }
  3527. ],
  3528. "description": "Provides a list of PHP built-in functions that operate on resources",
  3529. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3530. "time": "2015-07-28T20:34:47+00:00"
  3531. },
  3532. {
  3533. "name": "sebastian/version",
  3534. "version": "2.0.1",
  3535. "source": {
  3536. "type": "git",
  3537. "url": "https://github.com/sebastianbergmann/version.git",
  3538. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3539. },
  3540. "dist": {
  3541. "type": "zip",
  3542. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  3543. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3544. "shasum": ""
  3545. },
  3546. "require": {
  3547. "php": ">=5.6"
  3548. },
  3549. "type": "library",
  3550. "extra": {
  3551. "branch-alias": {
  3552. "dev-master": "2.0.x-dev"
  3553. }
  3554. },
  3555. "autoload": {
  3556. "classmap": [
  3557. "src/"
  3558. ]
  3559. },
  3560. "notification-url": "https://packagist.org/downloads/",
  3561. "license": [
  3562. "BSD-3-Clause"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Sebastian Bergmann",
  3567. "email": "sebastian@phpunit.de",
  3568. "role": "lead"
  3569. }
  3570. ],
  3571. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3572. "homepage": "https://github.com/sebastianbergmann/version",
  3573. "time": "2016-10-03T07:35:21+00:00"
  3574. },
  3575. {
  3576. "name": "symfony/browser-kit",
  3577. "version": "v3.4.18",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://github.com/symfony/browser-kit.git",
  3581. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  3586. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  3587. "shasum": ""
  3588. },
  3589. "require": {
  3590. "php": "^5.5.9|>=7.0.8",
  3591. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  3592. },
  3593. "require-dev": {
  3594. "symfony/css-selector": "~2.8|~3.0|~4.0",
  3595. "symfony/process": "~2.8|~3.0|~4.0"
  3596. },
  3597. "suggest": {
  3598. "symfony/process": ""
  3599. },
  3600. "type": "library",
  3601. "extra": {
  3602. "branch-alias": {
  3603. "dev-master": "3.4-dev"
  3604. }
  3605. },
  3606. "autoload": {
  3607. "psr-4": {
  3608. "Symfony\\Component\\BrowserKit\\": ""
  3609. },
  3610. "exclude-from-classmap": [
  3611. "/Tests/"
  3612. ]
  3613. },
  3614. "notification-url": "https://packagist.org/downloads/",
  3615. "license": [
  3616. "MIT"
  3617. ],
  3618. "authors": [
  3619. {
  3620. "name": "Fabien Potencier",
  3621. "email": "fabien@symfony.com"
  3622. },
  3623. {
  3624. "name": "Symfony Community",
  3625. "homepage": "https://symfony.com/contributors"
  3626. }
  3627. ],
  3628. "description": "Symfony BrowserKit Component",
  3629. "homepage": "https://symfony.com",
  3630. "time": "2018-07-26T09:06:28+00:00"
  3631. },
  3632. {
  3633. "name": "symfony/console",
  3634. "version": "v3.4.18",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/symfony/console.git",
  3638. "reference": "1d228fb4602047d7b26a0554e0d3efd567da5803"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/symfony/console/zipball/1d228fb4602047d7b26a0554e0d3efd567da5803",
  3643. "reference": "1d228fb4602047d7b26a0554e0d3efd567da5803",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "php": "^5.5.9|>=7.0.8",
  3648. "symfony/debug": "~2.8|~3.0|~4.0",
  3649. "symfony/polyfill-mbstring": "~1.0"
  3650. },
  3651. "conflict": {
  3652. "symfony/dependency-injection": "<3.4",
  3653. "symfony/process": "<3.3"
  3654. },
  3655. "require-dev": {
  3656. "psr/log": "~1.0",
  3657. "symfony/config": "~3.3|~4.0",
  3658. "symfony/dependency-injection": "~3.4|~4.0",
  3659. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3660. "symfony/lock": "~3.4|~4.0",
  3661. "symfony/process": "~3.3|~4.0"
  3662. },
  3663. "suggest": {
  3664. "psr/log-implementation": "For using the console logger",
  3665. "symfony/event-dispatcher": "",
  3666. "symfony/lock": "",
  3667. "symfony/process": ""
  3668. },
  3669. "type": "library",
  3670. "extra": {
  3671. "branch-alias": {
  3672. "dev-master": "3.4-dev"
  3673. }
  3674. },
  3675. "autoload": {
  3676. "psr-4": {
  3677. "Symfony\\Component\\Console\\": ""
  3678. },
  3679. "exclude-from-classmap": [
  3680. "/Tests/"
  3681. ]
  3682. },
  3683. "notification-url": "https://packagist.org/downloads/",
  3684. "license": [
  3685. "MIT"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "Fabien Potencier",
  3690. "email": "fabien@symfony.com"
  3691. },
  3692. {
  3693. "name": "Symfony Community",
  3694. "homepage": "https://symfony.com/contributors"
  3695. }
  3696. ],
  3697. "description": "Symfony Console Component",
  3698. "homepage": "https://symfony.com",
  3699. "time": "2018-10-30T16:50:50+00:00"
  3700. },
  3701. {
  3702. "name": "symfony/css-selector",
  3703. "version": "v3.4.18",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/symfony/css-selector.git",
  3707. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/symfony/css-selector/zipball/3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  3712. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  3713. "shasum": ""
  3714. },
  3715. "require": {
  3716. "php": "^5.5.9|>=7.0.8"
  3717. },
  3718. "type": "library",
  3719. "extra": {
  3720. "branch-alias": {
  3721. "dev-master": "3.4-dev"
  3722. }
  3723. },
  3724. "autoload": {
  3725. "psr-4": {
  3726. "Symfony\\Component\\CssSelector\\": ""
  3727. },
  3728. "exclude-from-classmap": [
  3729. "/Tests/"
  3730. ]
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "MIT"
  3735. ],
  3736. "authors": [
  3737. {
  3738. "name": "Jean-François Simon",
  3739. "email": "jeanfrancois.simon@sensiolabs.com"
  3740. },
  3741. {
  3742. "name": "Fabien Potencier",
  3743. "email": "fabien@symfony.com"
  3744. },
  3745. {
  3746. "name": "Symfony Community",
  3747. "homepage": "https://symfony.com/contributors"
  3748. }
  3749. ],
  3750. "description": "Symfony CssSelector Component",
  3751. "homepage": "https://symfony.com",
  3752. "time": "2018-10-02T16:33:53+00:00"
  3753. },
  3754. {
  3755. "name": "symfony/debug",
  3756. "version": "v3.4.18",
  3757. "source": {
  3758. "type": "git",
  3759. "url": "https://github.com/symfony/debug.git",
  3760. "reference": "fe9793af008b651c5441bdeab21ede8172dab097"
  3761. },
  3762. "dist": {
  3763. "type": "zip",
  3764. "url": "https://api.github.com/repos/symfony/debug/zipball/fe9793af008b651c5441bdeab21ede8172dab097",
  3765. "reference": "fe9793af008b651c5441bdeab21ede8172dab097",
  3766. "shasum": ""
  3767. },
  3768. "require": {
  3769. "php": "^5.5.9|>=7.0.8",
  3770. "psr/log": "~1.0"
  3771. },
  3772. "conflict": {
  3773. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  3774. },
  3775. "require-dev": {
  3776. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  3777. },
  3778. "type": "library",
  3779. "extra": {
  3780. "branch-alias": {
  3781. "dev-master": "3.4-dev"
  3782. }
  3783. },
  3784. "autoload": {
  3785. "psr-4": {
  3786. "Symfony\\Component\\Debug\\": ""
  3787. },
  3788. "exclude-from-classmap": [
  3789. "/Tests/"
  3790. ]
  3791. },
  3792. "notification-url": "https://packagist.org/downloads/",
  3793. "license": [
  3794. "MIT"
  3795. ],
  3796. "authors": [
  3797. {
  3798. "name": "Fabien Potencier",
  3799. "email": "fabien@symfony.com"
  3800. },
  3801. {
  3802. "name": "Symfony Community",
  3803. "homepage": "https://symfony.com/contributors"
  3804. }
  3805. ],
  3806. "description": "Symfony Debug Component",
  3807. "homepage": "https://symfony.com",
  3808. "time": "2018-10-31T09:06:03+00:00"
  3809. },
  3810. {
  3811. "name": "symfony/dom-crawler",
  3812. "version": "v3.4.18",
  3813. "source": {
  3814. "type": "git",
  3815. "url": "https://github.com/symfony/dom-crawler.git",
  3816. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722"
  3817. },
  3818. "dist": {
  3819. "type": "zip",
  3820. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c705bee03ade5b47c087807dd9ffaaec8dda2722",
  3821. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722",
  3822. "shasum": ""
  3823. },
  3824. "require": {
  3825. "php": "^5.5.9|>=7.0.8",
  3826. "symfony/polyfill-ctype": "~1.8",
  3827. "symfony/polyfill-mbstring": "~1.0"
  3828. },
  3829. "require-dev": {
  3830. "symfony/css-selector": "~2.8|~3.0|~4.0"
  3831. },
  3832. "suggest": {
  3833. "symfony/css-selector": ""
  3834. },
  3835. "type": "library",
  3836. "extra": {
  3837. "branch-alias": {
  3838. "dev-master": "3.4-dev"
  3839. }
  3840. },
  3841. "autoload": {
  3842. "psr-4": {
  3843. "Symfony\\Component\\DomCrawler\\": ""
  3844. },
  3845. "exclude-from-classmap": [
  3846. "/Tests/"
  3847. ]
  3848. },
  3849. "notification-url": "https://packagist.org/downloads/",
  3850. "license": [
  3851. "MIT"
  3852. ],
  3853. "authors": [
  3854. {
  3855. "name": "Fabien Potencier",
  3856. "email": "fabien@symfony.com"
  3857. },
  3858. {
  3859. "name": "Symfony Community",
  3860. "homepage": "https://symfony.com/contributors"
  3861. }
  3862. ],
  3863. "description": "Symfony DomCrawler Component",
  3864. "homepage": "https://symfony.com",
  3865. "time": "2018-10-02T12:28:39+00:00"
  3866. },
  3867. {
  3868. "name": "symfony/event-dispatcher",
  3869. "version": "v3.4.18",
  3870. "source": {
  3871. "type": "git",
  3872. "url": "https://github.com/symfony/event-dispatcher.git",
  3873. "reference": "db9e829c8f34c3d35cf37fcd4cdb4293bc4a2f14"
  3874. },
  3875. "dist": {
  3876. "type": "zip",
  3877. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/db9e829c8f34c3d35cf37fcd4cdb4293bc4a2f14",
  3878. "reference": "db9e829c8f34c3d35cf37fcd4cdb4293bc4a2f14",
  3879. "shasum": ""
  3880. },
  3881. "require": {
  3882. "php": "^5.5.9|>=7.0.8"
  3883. },
  3884. "conflict": {
  3885. "symfony/dependency-injection": "<3.3"
  3886. },
  3887. "require-dev": {
  3888. "psr/log": "~1.0",
  3889. "symfony/config": "~2.8|~3.0|~4.0",
  3890. "symfony/dependency-injection": "~3.3|~4.0",
  3891. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3892. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  3893. },
  3894. "suggest": {
  3895. "symfony/dependency-injection": "",
  3896. "symfony/http-kernel": ""
  3897. },
  3898. "type": "library",
  3899. "extra": {
  3900. "branch-alias": {
  3901. "dev-master": "3.4-dev"
  3902. }
  3903. },
  3904. "autoload": {
  3905. "psr-4": {
  3906. "Symfony\\Component\\EventDispatcher\\": ""
  3907. },
  3908. "exclude-from-classmap": [
  3909. "/Tests/"
  3910. ]
  3911. },
  3912. "notification-url": "https://packagist.org/downloads/",
  3913. "license": [
  3914. "MIT"
  3915. ],
  3916. "authors": [
  3917. {
  3918. "name": "Fabien Potencier",
  3919. "email": "fabien@symfony.com"
  3920. },
  3921. {
  3922. "name": "Symfony Community",
  3923. "homepage": "https://symfony.com/contributors"
  3924. }
  3925. ],
  3926. "description": "Symfony EventDispatcher Component",
  3927. "homepage": "https://symfony.com",
  3928. "time": "2018-10-30T16:50:50+00:00"
  3929. },
  3930. {
  3931. "name": "symfony/filesystem",
  3932. "version": "v3.4.18",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://github.com/symfony/filesystem.git",
  3936. "reference": "d69930fc337d767607267d57c20a7403d0a822a4"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d69930fc337d767607267d57c20a7403d0a822a4",
  3941. "reference": "d69930fc337d767607267d57c20a7403d0a822a4",
  3942. "shasum": ""
  3943. },
  3944. "require": {
  3945. "php": "^5.5.9|>=7.0.8",
  3946. "symfony/polyfill-ctype": "~1.8"
  3947. },
  3948. "type": "library",
  3949. "extra": {
  3950. "branch-alias": {
  3951. "dev-master": "3.4-dev"
  3952. }
  3953. },
  3954. "autoload": {
  3955. "psr-4": {
  3956. "Symfony\\Component\\Filesystem\\": ""
  3957. },
  3958. "exclude-from-classmap": [
  3959. "/Tests/"
  3960. ]
  3961. },
  3962. "notification-url": "https://packagist.org/downloads/",
  3963. "license": [
  3964. "MIT"
  3965. ],
  3966. "authors": [
  3967. {
  3968. "name": "Fabien Potencier",
  3969. "email": "fabien@symfony.com"
  3970. },
  3971. {
  3972. "name": "Symfony Community",
  3973. "homepage": "https://symfony.com/contributors"
  3974. }
  3975. ],
  3976. "description": "Symfony Filesystem Component",
  3977. "homepage": "https://symfony.com",
  3978. "time": "2018-10-02T12:28:39+00:00"
  3979. },
  3980. {
  3981. "name": "symfony/finder",
  3982. "version": "v3.4.18",
  3983. "source": {
  3984. "type": "git",
  3985. "url": "https://github.com/symfony/finder.git",
  3986. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
  3987. },
  3988. "dist": {
  3989. "type": "zip",
  3990. "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  3991. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  3992. "shasum": ""
  3993. },
  3994. "require": {
  3995. "php": "^5.5.9|>=7.0.8"
  3996. },
  3997. "type": "library",
  3998. "extra": {
  3999. "branch-alias": {
  4000. "dev-master": "3.4-dev"
  4001. }
  4002. },
  4003. "autoload": {
  4004. "psr-4": {
  4005. "Symfony\\Component\\Finder\\": ""
  4006. },
  4007. "exclude-from-classmap": [
  4008. "/Tests/"
  4009. ]
  4010. },
  4011. "notification-url": "https://packagist.org/downloads/",
  4012. "license": [
  4013. "MIT"
  4014. ],
  4015. "authors": [
  4016. {
  4017. "name": "Fabien Potencier",
  4018. "email": "fabien@symfony.com"
  4019. },
  4020. {
  4021. "name": "Symfony Community",
  4022. "homepage": "https://symfony.com/contributors"
  4023. }
  4024. ],
  4025. "description": "Symfony Finder Component",
  4026. "homepage": "https://symfony.com",
  4027. "time": "2018-10-03T08:46:40+00:00"
  4028. },
  4029. {
  4030. "name": "symfony/http-foundation",
  4031. "version": "v3.4.18",
  4032. "source": {
  4033. "type": "git",
  4034. "url": "https://github.com/symfony/http-foundation.git",
  4035. "reference": "5aea7a86ca3203dd7a257e765b4b9c9cfd01c6c0"
  4036. },
  4037. "dist": {
  4038. "type": "zip",
  4039. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5aea7a86ca3203dd7a257e765b4b9c9cfd01c6c0",
  4040. "reference": "5aea7a86ca3203dd7a257e765b4b9c9cfd01c6c0",
  4041. "shasum": ""
  4042. },
  4043. "require": {
  4044. "php": "^5.5.9|>=7.0.8",
  4045. "symfony/polyfill-mbstring": "~1.1",
  4046. "symfony/polyfill-php70": "~1.6"
  4047. },
  4048. "require-dev": {
  4049. "symfony/expression-language": "~2.8|~3.0|~4.0"
  4050. },
  4051. "type": "library",
  4052. "extra": {
  4053. "branch-alias": {
  4054. "dev-master": "3.4-dev"
  4055. }
  4056. },
  4057. "autoload": {
  4058. "psr-4": {
  4059. "Symfony\\Component\\HttpFoundation\\": ""
  4060. },
  4061. "exclude-from-classmap": [
  4062. "/Tests/"
  4063. ]
  4064. },
  4065. "notification-url": "https://packagist.org/downloads/",
  4066. "license": [
  4067. "MIT"
  4068. ],
  4069. "authors": [
  4070. {
  4071. "name": "Fabien Potencier",
  4072. "email": "fabien@symfony.com"
  4073. },
  4074. {
  4075. "name": "Symfony Community",
  4076. "homepage": "https://symfony.com/contributors"
  4077. }
  4078. ],
  4079. "description": "Symfony HttpFoundation Component",
  4080. "homepage": "https://symfony.com",
  4081. "time": "2018-10-31T08:57:11+00:00"
  4082. },
  4083. {
  4084. "name": "symfony/polyfill-ctype",
  4085. "version": "v1.10.0",
  4086. "source": {
  4087. "type": "git",
  4088. "url": "https://github.com/symfony/polyfill-ctype.git",
  4089. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  4090. },
  4091. "dist": {
  4092. "type": "zip",
  4093. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  4094. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  4095. "shasum": ""
  4096. },
  4097. "require": {
  4098. "php": ">=5.3.3"
  4099. },
  4100. "suggest": {
  4101. "ext-ctype": "For best performance"
  4102. },
  4103. "type": "library",
  4104. "extra": {
  4105. "branch-alias": {
  4106. "dev-master": "1.9-dev"
  4107. }
  4108. },
  4109. "autoload": {
  4110. "psr-4": {
  4111. "Symfony\\Polyfill\\Ctype\\": ""
  4112. },
  4113. "files": [
  4114. "bootstrap.php"
  4115. ]
  4116. },
  4117. "notification-url": "https://packagist.org/downloads/",
  4118. "license": [
  4119. "MIT"
  4120. ],
  4121. "authors": [
  4122. {
  4123. "name": "Symfony Community",
  4124. "homepage": "https://symfony.com/contributors"
  4125. },
  4126. {
  4127. "name": "Gert de Pagter",
  4128. "email": "backendtea@gmail.com"
  4129. }
  4130. ],
  4131. "description": "Symfony polyfill for ctype functions",
  4132. "homepage": "https://symfony.com",
  4133. "keywords": [
  4134. "compatibility",
  4135. "ctype",
  4136. "polyfill",
  4137. "portable"
  4138. ],
  4139. "time": "2018-08-06T14:22:27+00:00"
  4140. },
  4141. {
  4142. "name": "symfony/polyfill-mbstring",
  4143. "version": "v1.10.0",
  4144. "source": {
  4145. "type": "git",
  4146. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4147. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  4148. },
  4149. "dist": {
  4150. "type": "zip",
  4151. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  4152. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  4153. "shasum": ""
  4154. },
  4155. "require": {
  4156. "php": ">=5.3.3"
  4157. },
  4158. "suggest": {
  4159. "ext-mbstring": "For best performance"
  4160. },
  4161. "type": "library",
  4162. "extra": {
  4163. "branch-alias": {
  4164. "dev-master": "1.9-dev"
  4165. }
  4166. },
  4167. "autoload": {
  4168. "psr-4": {
  4169. "Symfony\\Polyfill\\Mbstring\\": ""
  4170. },
  4171. "files": [
  4172. "bootstrap.php"
  4173. ]
  4174. },
  4175. "notification-url": "https://packagist.org/downloads/",
  4176. "license": [
  4177. "MIT"
  4178. ],
  4179. "authors": [
  4180. {
  4181. "name": "Nicolas Grekas",
  4182. "email": "p@tchwork.com"
  4183. },
  4184. {
  4185. "name": "Symfony Community",
  4186. "homepage": "https://symfony.com/contributors"
  4187. }
  4188. ],
  4189. "description": "Symfony polyfill for the Mbstring extension",
  4190. "homepage": "https://symfony.com",
  4191. "keywords": [
  4192. "compatibility",
  4193. "mbstring",
  4194. "polyfill",
  4195. "portable",
  4196. "shim"
  4197. ],
  4198. "time": "2018-09-21T13:07:52+00:00"
  4199. },
  4200. {
  4201. "name": "symfony/polyfill-php70",
  4202. "version": "v1.10.0",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://github.com/symfony/polyfill-php70.git",
  4206. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  4211. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  4212. "shasum": ""
  4213. },
  4214. "require": {
  4215. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  4216. "php": ">=5.3.3"
  4217. },
  4218. "type": "library",
  4219. "extra": {
  4220. "branch-alias": {
  4221. "dev-master": "1.9-dev"
  4222. }
  4223. },
  4224. "autoload": {
  4225. "psr-4": {
  4226. "Symfony\\Polyfill\\Php70\\": ""
  4227. },
  4228. "files": [
  4229. "bootstrap.php"
  4230. ],
  4231. "classmap": [
  4232. "Resources/stubs"
  4233. ]
  4234. },
  4235. "notification-url": "https://packagist.org/downloads/",
  4236. "license": [
  4237. "MIT"
  4238. ],
  4239. "authors": [
  4240. {
  4241. "name": "Nicolas Grekas",
  4242. "email": "p@tchwork.com"
  4243. },
  4244. {
  4245. "name": "Symfony Community",
  4246. "homepage": "https://symfony.com/contributors"
  4247. }
  4248. ],
  4249. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4250. "homepage": "https://symfony.com",
  4251. "keywords": [
  4252. "compatibility",
  4253. "polyfill",
  4254. "portable",
  4255. "shim"
  4256. ],
  4257. "time": "2018-09-21T06:26:08+00:00"
  4258. },
  4259. {
  4260. "name": "symfony/process",
  4261. "version": "v3.4.18",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://github.com/symfony/process.git",
  4265. "reference": "35c2914a9f50519bd207164c353ae4d59182c2cb"
  4266. },
  4267. "dist": {
  4268. "type": "zip",
  4269. "url": "https://api.github.com/repos/symfony/process/zipball/35c2914a9f50519bd207164c353ae4d59182c2cb",
  4270. "reference": "35c2914a9f50519bd207164c353ae4d59182c2cb",
  4271. "shasum": ""
  4272. },
  4273. "require": {
  4274. "php": "^5.5.9|>=7.0.8"
  4275. },
  4276. "type": "library",
  4277. "extra": {
  4278. "branch-alias": {
  4279. "dev-master": "3.4-dev"
  4280. }
  4281. },
  4282. "autoload": {
  4283. "psr-4": {
  4284. "Symfony\\Component\\Process\\": ""
  4285. },
  4286. "exclude-from-classmap": [
  4287. "/Tests/"
  4288. ]
  4289. },
  4290. "notification-url": "https://packagist.org/downloads/",
  4291. "license": [
  4292. "MIT"
  4293. ],
  4294. "authors": [
  4295. {
  4296. "name": "Fabien Potencier",
  4297. "email": "fabien@symfony.com"
  4298. },
  4299. {
  4300. "name": "Symfony Community",
  4301. "homepage": "https://symfony.com/contributors"
  4302. }
  4303. ],
  4304. "description": "Symfony Process Component",
  4305. "homepage": "https://symfony.com",
  4306. "time": "2018-10-14T17:33:21+00:00"
  4307. },
  4308. {
  4309. "name": "symfony/yaml",
  4310. "version": "v3.4.18",
  4311. "source": {
  4312. "type": "git",
  4313. "url": "https://github.com/symfony/yaml.git",
  4314. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f"
  4315. },
  4316. "dist": {
  4317. "type": "zip",
  4318. "url": "https://api.github.com/repos/symfony/yaml/zipball/640b6c27fed4066d64b64d5903a86043f4a4de7f",
  4319. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f",
  4320. "shasum": ""
  4321. },
  4322. "require": {
  4323. "php": "^5.5.9|>=7.0.8",
  4324. "symfony/polyfill-ctype": "~1.8"
  4325. },
  4326. "conflict": {
  4327. "symfony/console": "<3.4"
  4328. },
  4329. "require-dev": {
  4330. "symfony/console": "~3.4|~4.0"
  4331. },
  4332. "suggest": {
  4333. "symfony/console": "For validating YAML files using the lint command"
  4334. },
  4335. "type": "library",
  4336. "extra": {
  4337. "branch-alias": {
  4338. "dev-master": "3.4-dev"
  4339. }
  4340. },
  4341. "autoload": {
  4342. "psr-4": {
  4343. "Symfony\\Component\\Yaml\\": ""
  4344. },
  4345. "exclude-from-classmap": [
  4346. "/Tests/"
  4347. ]
  4348. },
  4349. "notification-url": "https://packagist.org/downloads/",
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "Fabien Potencier",
  4356. "email": "fabien@symfony.com"
  4357. },
  4358. {
  4359. "name": "Symfony Community",
  4360. "homepage": "https://symfony.com/contributors"
  4361. }
  4362. ],
  4363. "description": "Symfony Yaml Component",
  4364. "homepage": "https://symfony.com",
  4365. "time": "2018-10-02T16:33:53+00:00"
  4366. },
  4367. {
  4368. "name": "theseer/tokenizer",
  4369. "version": "1.1.0",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/theseer/tokenizer.git",
  4373. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  4378. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "ext-dom": "*",
  4383. "ext-tokenizer": "*",
  4384. "ext-xmlwriter": "*",
  4385. "php": "^7.0"
  4386. },
  4387. "type": "library",
  4388. "autoload": {
  4389. "classmap": [
  4390. "src/"
  4391. ]
  4392. },
  4393. "notification-url": "https://packagist.org/downloads/",
  4394. "license": [
  4395. "BSD-3-Clause"
  4396. ],
  4397. "authors": [
  4398. {
  4399. "name": "Arne Blankerts",
  4400. "email": "arne@blankerts.de",
  4401. "role": "Developer"
  4402. }
  4403. ],
  4404. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4405. "time": "2017-04-07T12:08:54+00:00"
  4406. },
  4407. {
  4408. "name": "vlucas/phpdotenv",
  4409. "version": "v2.5.1",
  4410. "source": {
  4411. "type": "git",
  4412. "url": "https://github.com/vlucas/phpdotenv.git",
  4413. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e"
  4414. },
  4415. "dist": {
  4416. "type": "zip",
  4417. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  4418. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  4419. "shasum": ""
  4420. },
  4421. "require": {
  4422. "php": ">=5.3.9"
  4423. },
  4424. "require-dev": {
  4425. "phpunit/phpunit": "^4.8.35 || ^5.0"
  4426. },
  4427. "type": "library",
  4428. "extra": {
  4429. "branch-alias": {
  4430. "dev-master": "2.5-dev"
  4431. }
  4432. },
  4433. "autoload": {
  4434. "psr-4": {
  4435. "Dotenv\\": "src/"
  4436. }
  4437. },
  4438. "notification-url": "https://packagist.org/downloads/",
  4439. "license": [
  4440. "BSD-3-Clause"
  4441. ],
  4442. "authors": [
  4443. {
  4444. "name": "Vance Lucas",
  4445. "email": "vance@vancelucas.com",
  4446. "homepage": "http://www.vancelucas.com"
  4447. }
  4448. ],
  4449. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4450. "keywords": [
  4451. "dotenv",
  4452. "env",
  4453. "environment"
  4454. ],
  4455. "time": "2018-07-29T20:33:41+00:00"
  4456. },
  4457. {
  4458. "name": "webmozart/assert",
  4459. "version": "1.3.0",
  4460. "source": {
  4461. "type": "git",
  4462. "url": "https://github.com/webmozart/assert.git",
  4463. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  4464. },
  4465. "dist": {
  4466. "type": "zip",
  4467. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  4468. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  4469. "shasum": ""
  4470. },
  4471. "require": {
  4472. "php": "^5.3.3 || ^7.0"
  4473. },
  4474. "require-dev": {
  4475. "phpunit/phpunit": "^4.6",
  4476. "sebastian/version": "^1.0.1"
  4477. },
  4478. "type": "library",
  4479. "extra": {
  4480. "branch-alias": {
  4481. "dev-master": "1.3-dev"
  4482. }
  4483. },
  4484. "autoload": {
  4485. "psr-4": {
  4486. "Webmozart\\Assert\\": "src/"
  4487. }
  4488. },
  4489. "notification-url": "https://packagist.org/downloads/",
  4490. "license": [
  4491. "MIT"
  4492. ],
  4493. "authors": [
  4494. {
  4495. "name": "Bernhard Schussek",
  4496. "email": "bschussek@gmail.com"
  4497. }
  4498. ],
  4499. "description": "Assertions to validate method input/output with nice error messages.",
  4500. "keywords": [
  4501. "assert",
  4502. "check",
  4503. "validate"
  4504. ],
  4505. "time": "2018-01-29T19:49:41+00:00"
  4506. }
  4507. ],
  4508. "packages-dev": [
  4509. {
  4510. "name": "brainmaestro/composer-git-hooks",
  4511. "version": "v2.6.0",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://github.com/BrainMaestro/composer-git-hooks.git",
  4515. "reference": "1ae36cc7c1a4387f026e5f085b3ba63fdf912cb7"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://api.github.com/repos/BrainMaestro/composer-git-hooks/zipball/1ae36cc7c1a4387f026e5f085b3ba63fdf912cb7",
  4520. "reference": "1ae36cc7c1a4387f026e5f085b3ba63fdf912cb7",
  4521. "shasum": ""
  4522. },
  4523. "require": {
  4524. "php": "^5.6 || >=7.0 <7.3",
  4525. "symfony/console": "^3.2 || ^4.0"
  4526. },
  4527. "require-dev": {
  4528. "friendsofphp/php-cs-fixer": "^2.9",
  4529. "phpunit/phpunit": "^5.7|^7.0"
  4530. },
  4531. "bin": [
  4532. "cghooks"
  4533. ],
  4534. "type": "library",
  4535. "extra": {
  4536. "hooks": {
  4537. "pre-commit": "composer check-style",
  4538. "pre-push": [
  4539. "composer test",
  4540. "appver=$(grep -o -P '\\d.\\d.\\d' cghooks)",
  4541. "tag=$(git tag --sort=-v:refname | head -n 1 | tr -d v)",
  4542. "if [ \"$tag\" != \"$appver\" ]; then",
  4543. "echo \"The most recent tag v$tag does not match the application version $appver\n\"",
  4544. "sed -i -E \"s/$appver/$tag/\" cghooks",
  4545. "exit 1",
  4546. "fi"
  4547. ]
  4548. }
  4549. },
  4550. "autoload": {
  4551. "psr-4": {
  4552. "BrainMaestro\\GitHooks\\": "src/"
  4553. },
  4554. "files": [
  4555. "src/helpers.php"
  4556. ]
  4557. },
  4558. "notification-url": "https://packagist.org/downloads/",
  4559. "license": [
  4560. "MIT"
  4561. ],
  4562. "authors": [
  4563. {
  4564. "name": "Ezinwa Okpoechi",
  4565. "email": "brainmaestro@outlook.com"
  4566. }
  4567. ],
  4568. "description": "Easily manage git hooks in your composer config",
  4569. "keywords": [
  4570. "HOOK",
  4571. "composer",
  4572. "git"
  4573. ],
  4574. "time": "2018-10-28T02:55:04+00:00"
  4575. },
  4576. {
  4577. "name": "codacy/coverage",
  4578. "version": "1.4.2",
  4579. "source": {
  4580. "type": "git",
  4581. "url": "https://github.com/codacy/php-codacy-coverage.git",
  4582. "reference": "4988cd098db4d578681bfd3176071931ad475150"
  4583. },
  4584. "dist": {
  4585. "type": "zip",
  4586. "url": "https://api.github.com/repos/codacy/php-codacy-coverage/zipball/4988cd098db4d578681bfd3176071931ad475150",
  4587. "reference": "4988cd098db4d578681bfd3176071931ad475150",
  4588. "shasum": ""
  4589. },
  4590. "require": {
  4591. "gitonomy/gitlib": ">=1.0",
  4592. "php": ">=5.3.3",
  4593. "symfony/console": "~2.5|~3.0|~4.0"
  4594. },
  4595. "require-dev": {
  4596. "phpunit/phpunit": "~6.5"
  4597. },
  4598. "bin": [
  4599. "bin/codacycoverage"
  4600. ],
  4601. "type": "library",
  4602. "autoload": {
  4603. "classmap": [
  4604. "src/"
  4605. ]
  4606. },
  4607. "notification-url": "https://packagist.org/downloads/",
  4608. "license": [
  4609. "MIT"
  4610. ],
  4611. "authors": [
  4612. {
  4613. "name": "Jakob Pupke",
  4614. "email": "jakob.pupke@gmail.com"
  4615. }
  4616. ],
  4617. "description": "Sends PHP test coverage information to Codacy.",
  4618. "homepage": "https://github.com/codacy/php-codacy-coverage",
  4619. "time": "2018-03-22T16:43:39+00:00"
  4620. },
  4621. {
  4622. "name": "codeception/aspect-mock",
  4623. "version": "3.0.2",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/Codeception/AspectMock.git",
  4627. "reference": "130afd10a3d8131d267f393ee1ec322e3e583d67"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/Codeception/AspectMock/zipball/130afd10a3d8131d267f393ee1ec322e3e583d67",
  4632. "reference": "130afd10a3d8131d267f393ee1ec322e3e583d67",
  4633. "shasum": ""
  4634. },
  4635. "require": {
  4636. "goaop/framework": "^2.2.0",
  4637. "php": ">=7.0.0",
  4638. "phpunit/phpunit": "> 6.0.0",
  4639. "symfony/finder": "~2.4|~3.0|~4.0"
  4640. },
  4641. "require-dev": {
  4642. "codeception/base": "^2.4",
  4643. "codeception/specify": "~0.3",
  4644. "codeception/verify": "~0.2"
  4645. },
  4646. "type": "library",
  4647. "autoload": {
  4648. "psr-0": {
  4649. "AspectMock": "src/"
  4650. }
  4651. },
  4652. "notification-url": "https://packagist.org/downloads/",
  4653. "license": [
  4654. "MIT"
  4655. ],
  4656. "authors": [
  4657. {
  4658. "name": "Michael Bodnarchuk",
  4659. "email": "davert@codeception.com"
  4660. }
  4661. ],
  4662. "description": "Experimental Mocking Framework powered by Aspects",
  4663. "time": "2018-10-07T16:21:11+00:00"
  4664. },
  4665. {
  4666. "name": "doctrine/cache",
  4667. "version": "v1.6.2",
  4668. "source": {
  4669. "type": "git",
  4670. "url": "https://github.com/doctrine/cache.git",
  4671. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  4672. },
  4673. "dist": {
  4674. "type": "zip",
  4675. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  4676. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  4677. "shasum": ""
  4678. },
  4679. "require": {
  4680. "php": "~5.5|~7.0"
  4681. },
  4682. "conflict": {
  4683. "doctrine/common": ">2.2,<2.4"
  4684. },
  4685. "require-dev": {
  4686. "phpunit/phpunit": "~4.8|~5.0",
  4687. "predis/predis": "~1.0",
  4688. "satooshi/php-coveralls": "~0.6"
  4689. },
  4690. "type": "library",
  4691. "extra": {
  4692. "branch-alias": {
  4693. "dev-master": "1.6.x-dev"
  4694. }
  4695. },
  4696. "autoload": {
  4697. "psr-4": {
  4698. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  4699. }
  4700. },
  4701. "notification-url": "https://packagist.org/downloads/",
  4702. "license": [
  4703. "MIT"
  4704. ],
  4705. "authors": [
  4706. {
  4707. "name": "Roman Borschel",
  4708. "email": "roman@code-factory.org"
  4709. },
  4710. {
  4711. "name": "Benjamin Eberlei",
  4712. "email": "kontakt@beberlei.de"
  4713. },
  4714. {
  4715. "name": "Guilherme Blanco",
  4716. "email": "guilhermeblanco@gmail.com"
  4717. },
  4718. {
  4719. "name": "Jonathan Wage",
  4720. "email": "jonwage@gmail.com"
  4721. },
  4722. {
  4723. "name": "Johannes Schmitt",
  4724. "email": "schmittjoh@gmail.com"
  4725. }
  4726. ],
  4727. "description": "Caching library offering an object-oriented API for many cache backends",
  4728. "homepage": "http://www.doctrine-project.org",
  4729. "keywords": [
  4730. "cache",
  4731. "caching"
  4732. ],
  4733. "time": "2017-07-22T12:49:21+00:00"
  4734. },
  4735. {
  4736. "name": "gitonomy/gitlib",
  4737. "version": "v1.0.4",
  4738. "source": {
  4739. "type": "git",
  4740. "url": "https://github.com/gitonomy/gitlib.git",
  4741. "reference": "932a960221ae3484a3e82553b3be478e56beb68d"
  4742. },
  4743. "dist": {
  4744. "type": "zip",
  4745. "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/932a960221ae3484a3e82553b3be478e56beb68d",
  4746. "reference": "932a960221ae3484a3e82553b3be478e56beb68d",
  4747. "shasum": ""
  4748. },
  4749. "require": {
  4750. "php": "^5.3 || ^7.0",
  4751. "symfony/process": "^2.3|^3.0|^4.0"
  4752. },
  4753. "require-dev": {
  4754. "phpunit/phpunit": "^4.8.35|^5.7",
  4755. "psr/log": "^1.0"
  4756. },
  4757. "suggest": {
  4758. "psr/log": "Add some log"
  4759. },
  4760. "type": "library",
  4761. "extra": {
  4762. "branch-alias": {
  4763. "dev-master": "1.0-dev"
  4764. }
  4765. },
  4766. "autoload": {
  4767. "psr-4": {
  4768. "Gitonomy\\Git\\": "src/Gitonomy/Git/"
  4769. }
  4770. },
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "MIT"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Alexandre Salomé",
  4778. "email": "alexandre.salome@gmail.com",
  4779. "homepage": "http://alexandre-salome.fr"
  4780. },
  4781. {
  4782. "name": "Julien DIDIER",
  4783. "email": "genzo.wm@gmail.com",
  4784. "homepage": "http://www.jdidier.net"
  4785. }
  4786. ],
  4787. "description": "Library for accessing git",
  4788. "homepage": "http://gitonomy.com",
  4789. "time": "2018-04-22T19:55:36+00:00"
  4790. },
  4791. {
  4792. "name": "goaop/framework",
  4793. "version": "2.2.0",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://github.com/goaop/framework.git",
  4797. "reference": "152abbffffcba72d2d159b892deb40b0829d0f28"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://api.github.com/repos/goaop/framework/zipball/152abbffffcba72d2d159b892deb40b0829d0f28",
  4802. "reference": "152abbffffcba72d2d159b892deb40b0829d0f28",
  4803. "shasum": ""
  4804. },
  4805. "require": {
  4806. "doctrine/annotations": "^1.2.3",
  4807. "doctrine/cache": "^1.5",
  4808. "goaop/parser-reflection": "~1.4",
  4809. "jakubledl/dissect": "~1.0",
  4810. "php": ">=5.6.0"
  4811. },
  4812. "require-dev": {
  4813. "adlawson/vfs": "^0.12",
  4814. "doctrine/orm": "^2.5",
  4815. "phpunit/phpunit": "^5.7",
  4816. "symfony/console": "^2.7|^3.0",
  4817. "symfony/filesystem": "^3.3",
  4818. "symfony/process": "^3.3"
  4819. },
  4820. "suggest": {
  4821. "symfony/console": "Enables the usage of the command-line tool."
  4822. },
  4823. "bin": [
  4824. "bin/aspect"
  4825. ],
  4826. "type": "library",
  4827. "extra": {
  4828. "branch-alias": {
  4829. "dev-master": "2.0-dev"
  4830. }
  4831. },
  4832. "autoload": {
  4833. "psr-4": {
  4834. "Go\\": "src/"
  4835. }
  4836. },
  4837. "notification-url": "https://packagist.org/downloads/",
  4838. "license": [
  4839. "MIT"
  4840. ],
  4841. "authors": [
  4842. {
  4843. "name": "Lisachenko Alexander",
  4844. "homepage": "https://github.com/lisachenko"
  4845. }
  4846. ],
  4847. "description": "Framework for aspect-oriented programming in PHP.",
  4848. "homepage": "http://go.aopphp.com/",
  4849. "keywords": [
  4850. "aop",
  4851. "aspect",
  4852. "library",
  4853. "php"
  4854. ],
  4855. "time": "2018-01-05T23:07:51+00:00"
  4856. },
  4857. {
  4858. "name": "goaop/parser-reflection",
  4859. "version": "1.4.1",
  4860. "source": {
  4861. "type": "git",
  4862. "url": "https://github.com/goaop/parser-reflection.git",
  4863. "reference": "d9c1dcc7ce4a5284fe3530e011faf9c9c10e1166"
  4864. },
  4865. "dist": {
  4866. "type": "zip",
  4867. "url": "https://api.github.com/repos/goaop/parser-reflection/zipball/d9c1dcc7ce4a5284fe3530e011faf9c9c10e1166",
  4868. "reference": "d9c1dcc7ce4a5284fe3530e011faf9c9c10e1166",
  4869. "shasum": ""
  4870. },
  4871. "require": {
  4872. "nikic/php-parser": "^1.2|^2.0|^3.0",
  4873. "php": ">=5.6.0"
  4874. },
  4875. "require-dev": {
  4876. "phpunit/phpunit": "~4.0"
  4877. },
  4878. "type": "library",
  4879. "extra": {
  4880. "branch-alias": {
  4881. "dev-master": "1.x-dev"
  4882. }
  4883. },
  4884. "autoload": {
  4885. "psr-4": {
  4886. "Go\\ParserReflection\\": "src"
  4887. },
  4888. "files": [
  4889. "src/bootstrap.php"
  4890. ],
  4891. "exclude-from-classmap": [
  4892. "/tests/"
  4893. ]
  4894. },
  4895. "notification-url": "https://packagist.org/downloads/",
  4896. "license": [
  4897. "MIT"
  4898. ],
  4899. "authors": [
  4900. {
  4901. "name": "Alexander Lisachenko",
  4902. "email": "lisachenko.it@gmail.com"
  4903. }
  4904. ],
  4905. "description": "Provides reflection information, based on raw source",
  4906. "time": "2018-03-19T15:57:41+00:00"
  4907. },
  4908. {
  4909. "name": "guzzle/guzzle",
  4910. "version": "v3.8.1",
  4911. "source": {
  4912. "type": "git",
  4913. "url": "https://github.com/guzzle/guzzle.git",
  4914. "reference": "4de0618a01b34aa1c8c33a3f13f396dcd3882eba"
  4915. },
  4916. "dist": {
  4917. "type": "zip",
  4918. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/4de0618a01b34aa1c8c33a3f13f396dcd3882eba",
  4919. "reference": "4de0618a01b34aa1c8c33a3f13f396dcd3882eba",
  4920. "shasum": ""
  4921. },
  4922. "require": {
  4923. "ext-curl": "*",
  4924. "php": ">=5.3.3",
  4925. "symfony/event-dispatcher": ">=2.1"
  4926. },
  4927. "replace": {
  4928. "guzzle/batch": "self.version",
  4929. "guzzle/cache": "self.version",
  4930. "guzzle/common": "self.version",
  4931. "guzzle/http": "self.version",
  4932. "guzzle/inflection": "self.version",
  4933. "guzzle/iterator": "self.version",
  4934. "guzzle/log": "self.version",
  4935. "guzzle/parser": "self.version",
  4936. "guzzle/plugin": "self.version",
  4937. "guzzle/plugin-async": "self.version",
  4938. "guzzle/plugin-backoff": "self.version",
  4939. "guzzle/plugin-cache": "self.version",
  4940. "guzzle/plugin-cookie": "self.version",
  4941. "guzzle/plugin-curlauth": "self.version",
  4942. "guzzle/plugin-error-response": "self.version",
  4943. "guzzle/plugin-history": "self.version",
  4944. "guzzle/plugin-log": "self.version",
  4945. "guzzle/plugin-md5": "self.version",
  4946. "guzzle/plugin-mock": "self.version",
  4947. "guzzle/plugin-oauth": "self.version",
  4948. "guzzle/service": "self.version",
  4949. "guzzle/stream": "self.version"
  4950. },
  4951. "require-dev": {
  4952. "doctrine/cache": "*",
  4953. "monolog/monolog": "1.*",
  4954. "phpunit/phpunit": "3.7.*",
  4955. "psr/log": "1.0.*",
  4956. "symfony/class-loader": "*",
  4957. "zendframework/zend-cache": "<2.3",
  4958. "zendframework/zend-log": "<2.3"
  4959. },
  4960. "type": "library",
  4961. "extra": {
  4962. "branch-alias": {
  4963. "dev-master": "3.8-dev"
  4964. }
  4965. },
  4966. "autoload": {
  4967. "psr-0": {
  4968. "Guzzle": "src/",
  4969. "Guzzle\\Tests": "tests/"
  4970. }
  4971. },
  4972. "notification-url": "https://packagist.org/downloads/",
  4973. "license": [
  4974. "MIT"
  4975. ],
  4976. "authors": [
  4977. {
  4978. "name": "Michael Dowling",
  4979. "email": "mtdowling@gmail.com",
  4980. "homepage": "https://github.com/mtdowling"
  4981. },
  4982. {
  4983. "name": "Guzzle Community",
  4984. "homepage": "https://github.com/guzzle/guzzle/contributors"
  4985. }
  4986. ],
  4987. "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
  4988. "homepage": "http://guzzlephp.org/",
  4989. "keywords": [
  4990. "client",
  4991. "curl",
  4992. "framework",
  4993. "http",
  4994. "http client",
  4995. "rest",
  4996. "web service"
  4997. ],
  4998. "abandoned": "guzzlehttp/guzzle",
  4999. "time": "2014-01-28T22:29:15+00:00"
  5000. },
  5001. {
  5002. "name": "jakubledl/dissect",
  5003. "version": "v1.0.1",
  5004. "source": {
  5005. "type": "git",
  5006. "url": "https://github.com/jakubledl/dissect.git",
  5007. "reference": "d3a391de31e45a247e95cef6cf58a91c05af67c4"
  5008. },
  5009. "dist": {
  5010. "type": "zip",
  5011. "url": "https://api.github.com/repos/jakubledl/dissect/zipball/d3a391de31e45a247e95cef6cf58a91c05af67c4",
  5012. "reference": "d3a391de31e45a247e95cef6cf58a91c05af67c4",
  5013. "shasum": ""
  5014. },
  5015. "require": {
  5016. "php": ">=5.3.3"
  5017. },
  5018. "require-dev": {
  5019. "symfony/console": "~2.1"
  5020. },
  5021. "suggest": {
  5022. "symfony/console": "for the command-line tool"
  5023. },
  5024. "bin": [
  5025. "bin/dissect.php",
  5026. "bin/dissect"
  5027. ],
  5028. "type": "library",
  5029. "autoload": {
  5030. "psr-0": {
  5031. "Dissect": [
  5032. "src/"
  5033. ]
  5034. }
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "unlicense"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "Jakub Lédl",
  5043. "email": "jakubledl@gmail.com"
  5044. }
  5045. ],
  5046. "description": "Lexing and parsing in pure PHP",
  5047. "homepage": "https://github.com/jakubledl/dissect",
  5048. "keywords": [
  5049. "ast",
  5050. "lexing",
  5051. "parser",
  5052. "parsing"
  5053. ],
  5054. "time": "2013-01-29T21:29:14+00:00"
  5055. },
  5056. {
  5057. "name": "nikic/php-parser",
  5058. "version": "v3.1.5",
  5059. "source": {
  5060. "type": "git",
  5061. "url": "https://github.com/nikic/PHP-Parser.git",
  5062. "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce"
  5063. },
  5064. "dist": {
  5065. "type": "zip",
  5066. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
  5067. "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
  5068. "shasum": ""
  5069. },
  5070. "require": {
  5071. "ext-tokenizer": "*",
  5072. "php": ">=5.5"
  5073. },
  5074. "require-dev": {
  5075. "phpunit/phpunit": "~4.0|~5.0"
  5076. },
  5077. "bin": [
  5078. "bin/php-parse"
  5079. ],
  5080. "type": "library",
  5081. "extra": {
  5082. "branch-alias": {
  5083. "dev-master": "3.0-dev"
  5084. }
  5085. },
  5086. "autoload": {
  5087. "psr-4": {
  5088. "PhpParser\\": "lib/PhpParser"
  5089. }
  5090. },
  5091. "notification-url": "https://packagist.org/downloads/",
  5092. "license": [
  5093. "BSD-3-Clause"
  5094. ],
  5095. "authors": [
  5096. {
  5097. "name": "Nikita Popov"
  5098. }
  5099. ],
  5100. "description": "A PHP parser written in PHP",
  5101. "keywords": [
  5102. "parser",
  5103. "php"
  5104. ],
  5105. "time": "2018-02-28T20:30:58+00:00"
  5106. },
  5107. {
  5108. "name": "pdepend/pdepend",
  5109. "version": "2.5.2",
  5110. "source": {
  5111. "type": "git",
  5112. "url": "https://github.com/pdepend/pdepend.git",
  5113. "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239"
  5114. },
  5115. "dist": {
  5116. "type": "zip",
  5117. "url": "https://api.github.com/repos/pdepend/pdepend/zipball/9daf26d0368d4a12bed1cacae1a9f3a6f0adf239",
  5118. "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239",
  5119. "shasum": ""
  5120. },
  5121. "require": {
  5122. "php": ">=5.3.7",
  5123. "symfony/config": "^2.3.0|^3|^4",
  5124. "symfony/dependency-injection": "^2.3.0|^3|^4",
  5125. "symfony/filesystem": "^2.3.0|^3|^4"
  5126. },
  5127. "require-dev": {
  5128. "phpunit/phpunit": "^4.8|^5.7",
  5129. "squizlabs/php_codesniffer": "^2.0.0"
  5130. },
  5131. "bin": [
  5132. "src/bin/pdepend"
  5133. ],
  5134. "type": "library",
  5135. "autoload": {
  5136. "psr-4": {
  5137. "PDepend\\": "src/main/php/PDepend"
  5138. }
  5139. },
  5140. "notification-url": "https://packagist.org/downloads/",
  5141. "license": [
  5142. "BSD-3-Clause"
  5143. ],
  5144. "description": "Official version of pdepend to be handled with Composer",
  5145. "time": "2017-12-13T13:21:38+00:00"
  5146. },
  5147. {
  5148. "name": "php-coveralls/php-coveralls",
  5149. "version": "v1.1.0",
  5150. "source": {
  5151. "type": "git",
  5152. "url": "https://github.com/php-coveralls/php-coveralls.git",
  5153. "reference": "37f8f83fe22224eb9d9c6d593cdeb33eedd2a9ad"
  5154. },
  5155. "dist": {
  5156. "type": "zip",
  5157. "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/37f8f83fe22224eb9d9c6d593cdeb33eedd2a9ad",
  5158. "reference": "37f8f83fe22224eb9d9c6d593cdeb33eedd2a9ad",
  5159. "shasum": ""
  5160. },
  5161. "require": {
  5162. "ext-json": "*",
  5163. "ext-simplexml": "*",
  5164. "guzzle/guzzle": "^2.8 || ^3.0",
  5165. "php": "^5.3.3 || ^7.0",
  5166. "psr/log": "^1.0",
  5167. "symfony/config": "^2.1 || ^3.0 || ^4.0",
  5168. "symfony/console": "^2.1 || ^3.0 || ^4.0",
  5169. "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0",
  5170. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  5171. },
  5172. "require-dev": {
  5173. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0"
  5174. },
  5175. "suggest": {
  5176. "symfony/http-kernel": "Allows Symfony integration"
  5177. },
  5178. "bin": [
  5179. "bin/coveralls"
  5180. ],
  5181. "type": "library",
  5182. "autoload": {
  5183. "psr-4": {
  5184. "Satooshi\\": "src/Satooshi/"
  5185. }
  5186. },
  5187. "notification-url": "https://packagist.org/downloads/",
  5188. "license": [
  5189. "MIT"
  5190. ],
  5191. "authors": [
  5192. {
  5193. "name": "Kitamura Satoshi",
  5194. "email": "with.no.parachute@gmail.com",
  5195. "homepage": "https://www.facebook.com/satooshi.jp"
  5196. }
  5197. ],
  5198. "description": "PHP client library for Coveralls API",
  5199. "homepage": "https://github.com/php-coveralls/php-coveralls",
  5200. "keywords": [
  5201. "ci",
  5202. "coverage",
  5203. "github",
  5204. "test"
  5205. ],
  5206. "time": "2017-12-06T23:17:56+00:00"
  5207. },
  5208. {
  5209. "name": "phpmd/phpmd",
  5210. "version": "2.6.0",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/phpmd/phpmd.git",
  5214. "reference": "4e9924b2c157a3eb64395460fcf56b31badc8374"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/phpmd/phpmd/zipball/4e9924b2c157a3eb64395460fcf56b31badc8374",
  5219. "reference": "4e9924b2c157a3eb64395460fcf56b31badc8374",
  5220. "shasum": ""
  5221. },
  5222. "require": {
  5223. "ext-xml": "*",
  5224. "pdepend/pdepend": "^2.5",
  5225. "php": ">=5.3.9"
  5226. },
  5227. "require-dev": {
  5228. "phpunit/phpunit": "^4.0",
  5229. "squizlabs/php_codesniffer": "^2.0"
  5230. },
  5231. "bin": [
  5232. "src/bin/phpmd"
  5233. ],
  5234. "type": "project",
  5235. "autoload": {
  5236. "psr-0": {
  5237. "PHPMD\\": "src/main/php"
  5238. }
  5239. },
  5240. "notification-url": "https://packagist.org/downloads/",
  5241. "license": [
  5242. "BSD-3-Clause"
  5243. ],
  5244. "authors": [
  5245. {
  5246. "name": "Manuel Pichler",
  5247. "email": "github@manuel-pichler.de",
  5248. "homepage": "https://github.com/manuelpichler",
  5249. "role": "Project Founder"
  5250. },
  5251. {
  5252. "name": "Other contributors",
  5253. "homepage": "https://github.com/phpmd/phpmd/graphs/contributors",
  5254. "role": "Contributors"
  5255. },
  5256. {
  5257. "name": "Marc Würth",
  5258. "email": "ravage@bluewin.ch",
  5259. "homepage": "https://github.com/ravage84",
  5260. "role": "Project Maintainer"
  5261. }
  5262. ],
  5263. "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.",
  5264. "homepage": "http://phpmd.org/",
  5265. "keywords": [
  5266. "mess detection",
  5267. "mess detector",
  5268. "pdepend",
  5269. "phpmd",
  5270. "pmd"
  5271. ],
  5272. "time": "2017-01-20T14:41:10+00:00"
  5273. },
  5274. {
  5275. "name": "rregeer/phpunit-coverage-check",
  5276. "version": "0.1.6",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/richardregeer/phpunit-coverage-check.git",
  5280. "reference": "330ae9318e0e60960cfb97c4a0459e3e4a3080e0"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/richardregeer/phpunit-coverage-check/zipball/330ae9318e0e60960cfb97c4a0459e3e4a3080e0",
  5285. "reference": "330ae9318e0e60960cfb97c4a0459e3e4a3080e0",
  5286. "shasum": ""
  5287. },
  5288. "require": {
  5289. "php": ">=5.5.0"
  5290. },
  5291. "bin": [
  5292. "bin/coverage-check"
  5293. ],
  5294. "type": "library",
  5295. "notification-url": "https://packagist.org/downloads/",
  5296. "license": [
  5297. "MIT"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Richard Regeer",
  5302. "email": "rich2309@gmail.com"
  5303. }
  5304. ],
  5305. "description": "Check the code coverage using the clover report of phpunit",
  5306. "keywords": [
  5307. "ci",
  5308. "code coverage",
  5309. "php",
  5310. "phpunit",
  5311. "testing",
  5312. "unittest"
  5313. ],
  5314. "time": "2018-07-29T13:27:58+00:00"
  5315. },
  5316. {
  5317. "name": "sebastian/finder-facade",
  5318. "version": "1.2.2",
  5319. "source": {
  5320. "type": "git",
  5321. "url": "https://github.com/sebastianbergmann/finder-facade.git",
  5322. "reference": "4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f"
  5323. },
  5324. "dist": {
  5325. "type": "zip",
  5326. "url": "https://api.github.com/repos/sebastianbergmann/finder-facade/zipball/4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f",
  5327. "reference": "4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f",
  5328. "shasum": ""
  5329. },
  5330. "require": {
  5331. "symfony/finder": "~2.3|~3.0|~4.0",
  5332. "theseer/fdomdocument": "~1.3"
  5333. },
  5334. "type": "library",
  5335. "autoload": {
  5336. "classmap": [
  5337. "src/"
  5338. ]
  5339. },
  5340. "notification-url": "https://packagist.org/downloads/",
  5341. "license": [
  5342. "BSD-3-Clause"
  5343. ],
  5344. "authors": [
  5345. {
  5346. "name": "Sebastian Bergmann",
  5347. "email": "sebastian@phpunit.de",
  5348. "role": "lead"
  5349. }
  5350. ],
  5351. "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.",
  5352. "homepage": "https://github.com/sebastianbergmann/finder-facade",
  5353. "time": "2017-11-18T17:31:49+00:00"
  5354. },
  5355. {
  5356. "name": "sebastian/phpcpd",
  5357. "version": "3.0.1",
  5358. "source": {
  5359. "type": "git",
  5360. "url": "https://github.com/sebastianbergmann/phpcpd.git",
  5361. "reference": "dfed51c1288790fc957c9433e2f49ab152e8a564"
  5362. },
  5363. "dist": {
  5364. "type": "zip",
  5365. "url": "https://api.github.com/repos/sebastianbergmann/phpcpd/zipball/dfed51c1288790fc957c9433e2f49ab152e8a564",
  5366. "reference": "dfed51c1288790fc957c9433e2f49ab152e8a564",
  5367. "shasum": ""
  5368. },
  5369. "require": {
  5370. "php": "^5.6|^7.0",
  5371. "phpunit/php-timer": "^1.0.6",
  5372. "sebastian/finder-facade": "^1.1",
  5373. "sebastian/version": "^1.0|^2.0",
  5374. "symfony/console": "^2.7|^3.0|^4.0"
  5375. },
  5376. "bin": [
  5377. "phpcpd"
  5378. ],
  5379. "type": "library",
  5380. "extra": {
  5381. "branch-alias": {
  5382. "dev-master": "3.0-dev"
  5383. }
  5384. },
  5385. "autoload": {
  5386. "classmap": [
  5387. "src/"
  5388. ]
  5389. },
  5390. "notification-url": "https://packagist.org/downloads/",
  5391. "license": [
  5392. "BSD-3-Clause"
  5393. ],
  5394. "authors": [
  5395. {
  5396. "name": "Sebastian Bergmann",
  5397. "email": "sebastian@phpunit.de",
  5398. "role": "lead"
  5399. }
  5400. ],
  5401. "description": "Copy/Paste Detector (CPD) for PHP code.",
  5402. "homepage": "https://github.com/sebastianbergmann/phpcpd",
  5403. "time": "2017-11-16T08:49:28+00:00"
  5404. },
  5405. {
  5406. "name": "squizlabs/php_codesniffer",
  5407. "version": "3.3.2",
  5408. "source": {
  5409. "type": "git",
  5410. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  5411. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e"
  5412. },
  5413. "dist": {
  5414. "type": "zip",
  5415. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  5416. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  5417. "shasum": ""
  5418. },
  5419. "require": {
  5420. "ext-simplexml": "*",
  5421. "ext-tokenizer": "*",
  5422. "ext-xmlwriter": "*",
  5423. "php": ">=5.4.0"
  5424. },
  5425. "require-dev": {
  5426. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  5427. },
  5428. "bin": [
  5429. "bin/phpcs",
  5430. "bin/phpcbf"
  5431. ],
  5432. "type": "library",
  5433. "extra": {
  5434. "branch-alias": {
  5435. "dev-master": "3.x-dev"
  5436. }
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "BSD-3-Clause"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "Greg Sherwood",
  5445. "role": "lead"
  5446. }
  5447. ],
  5448. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  5449. "homepage": "http://www.squizlabs.com/php-codesniffer",
  5450. "keywords": [
  5451. "phpcs",
  5452. "standards"
  5453. ],
  5454. "time": "2018-09-23T23:08:17+00:00"
  5455. },
  5456. {
  5457. "name": "symfony/config",
  5458. "version": "v3.4.18",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/symfony/config.git",
  5462. "reference": "99b2fa8acc244e656cdf324ff419fbe6fd300a4d"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/symfony/config/zipball/99b2fa8acc244e656cdf324ff419fbe6fd300a4d",
  5467. "reference": "99b2fa8acc244e656cdf324ff419fbe6fd300a4d",
  5468. "shasum": ""
  5469. },
  5470. "require": {
  5471. "php": "^5.5.9|>=7.0.8",
  5472. "symfony/filesystem": "~2.8|~3.0|~4.0",
  5473. "symfony/polyfill-ctype": "~1.8"
  5474. },
  5475. "conflict": {
  5476. "symfony/dependency-injection": "<3.3",
  5477. "symfony/finder": "<3.3"
  5478. },
  5479. "require-dev": {
  5480. "symfony/dependency-injection": "~3.3|~4.0",
  5481. "symfony/event-dispatcher": "~3.3|~4.0",
  5482. "symfony/finder": "~3.3|~4.0",
  5483. "symfony/yaml": "~3.0|~4.0"
  5484. },
  5485. "suggest": {
  5486. "symfony/yaml": "To use the yaml reference dumper"
  5487. },
  5488. "type": "library",
  5489. "extra": {
  5490. "branch-alias": {
  5491. "dev-master": "3.4-dev"
  5492. }
  5493. },
  5494. "autoload": {
  5495. "psr-4": {
  5496. "Symfony\\Component\\Config\\": ""
  5497. },
  5498. "exclude-from-classmap": [
  5499. "/Tests/"
  5500. ]
  5501. },
  5502. "notification-url": "https://packagist.org/downloads/",
  5503. "license": [
  5504. "MIT"
  5505. ],
  5506. "authors": [
  5507. {
  5508. "name": "Fabien Potencier",
  5509. "email": "fabien@symfony.com"
  5510. },
  5511. {
  5512. "name": "Symfony Community",
  5513. "homepage": "https://symfony.com/contributors"
  5514. }
  5515. ],
  5516. "description": "Symfony Config Component",
  5517. "homepage": "https://symfony.com",
  5518. "time": "2018-10-31T09:06:03+00:00"
  5519. },
  5520. {
  5521. "name": "symfony/dependency-injection",
  5522. "version": "v3.4.18",
  5523. "source": {
  5524. "type": "git",
  5525. "url": "https://github.com/symfony/dependency-injection.git",
  5526. "reference": "9c98452ac7fff4b538956775630bc9701f5384ba"
  5527. },
  5528. "dist": {
  5529. "type": "zip",
  5530. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9c98452ac7fff4b538956775630bc9701f5384ba",
  5531. "reference": "9c98452ac7fff4b538956775630bc9701f5384ba",
  5532. "shasum": ""
  5533. },
  5534. "require": {
  5535. "php": "^5.5.9|>=7.0.8",
  5536. "psr/container": "^1.0"
  5537. },
  5538. "conflict": {
  5539. "symfony/config": "<3.3.7",
  5540. "symfony/finder": "<3.3",
  5541. "symfony/proxy-manager-bridge": "<3.4",
  5542. "symfony/yaml": "<3.4"
  5543. },
  5544. "provide": {
  5545. "psr/container-implementation": "1.0"
  5546. },
  5547. "require-dev": {
  5548. "symfony/config": "~3.3|~4.0",
  5549. "symfony/expression-language": "~2.8|~3.0|~4.0",
  5550. "symfony/yaml": "~3.4|~4.0"
  5551. },
  5552. "suggest": {
  5553. "symfony/config": "",
  5554. "symfony/expression-language": "For using expressions in service container configuration",
  5555. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  5556. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  5557. "symfony/yaml": ""
  5558. },
  5559. "type": "library",
  5560. "extra": {
  5561. "branch-alias": {
  5562. "dev-master": "3.4-dev"
  5563. }
  5564. },
  5565. "autoload": {
  5566. "psr-4": {
  5567. "Symfony\\Component\\DependencyInjection\\": ""
  5568. },
  5569. "exclude-from-classmap": [
  5570. "/Tests/"
  5571. ]
  5572. },
  5573. "notification-url": "https://packagist.org/downloads/",
  5574. "license": [
  5575. "MIT"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Fabien Potencier",
  5580. "email": "fabien@symfony.com"
  5581. },
  5582. {
  5583. "name": "Symfony Community",
  5584. "homepage": "https://symfony.com/contributors"
  5585. }
  5586. ],
  5587. "description": "Symfony DependencyInjection Component",
  5588. "homepage": "https://symfony.com",
  5589. "time": "2018-10-31T10:49:51+00:00"
  5590. },
  5591. {
  5592. "name": "symfony/stopwatch",
  5593. "version": "v3.4.18",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/symfony/stopwatch.git",
  5597. "reference": "05e52a39de52ba690aebaed462b2bc8a9649f0a4"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/05e52a39de52ba690aebaed462b2bc8a9649f0a4",
  5602. "reference": "05e52a39de52ba690aebaed462b2bc8a9649f0a4",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "php": "^5.5.9|>=7.0.8"
  5607. },
  5608. "type": "library",
  5609. "extra": {
  5610. "branch-alias": {
  5611. "dev-master": "3.4-dev"
  5612. }
  5613. },
  5614. "autoload": {
  5615. "psr-4": {
  5616. "Symfony\\Component\\Stopwatch\\": ""
  5617. },
  5618. "exclude-from-classmap": [
  5619. "/Tests/"
  5620. ]
  5621. },
  5622. "notification-url": "https://packagist.org/downloads/",
  5623. "license": [
  5624. "MIT"
  5625. ],
  5626. "authors": [
  5627. {
  5628. "name": "Fabien Potencier",
  5629. "email": "fabien@symfony.com"
  5630. },
  5631. {
  5632. "name": "Symfony Community",
  5633. "homepage": "https://symfony.com/contributors"
  5634. }
  5635. ],
  5636. "description": "Symfony Stopwatch Component",
  5637. "homepage": "https://symfony.com",
  5638. "time": "2018-10-02T12:28:39+00:00"
  5639. },
  5640. {
  5641. "name": "theseer/fdomdocument",
  5642. "version": "1.6.6",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://github.com/theseer/fDOMDocument.git",
  5646. "reference": "6e8203e40a32a9c770bcb62fe37e68b948da6dca"
  5647. },
  5648. "dist": {
  5649. "type": "zip",
  5650. "url": "https://api.github.com/repos/theseer/fDOMDocument/zipball/6e8203e40a32a9c770bcb62fe37e68b948da6dca",
  5651. "reference": "6e8203e40a32a9c770bcb62fe37e68b948da6dca",
  5652. "shasum": ""
  5653. },
  5654. "require": {
  5655. "ext-dom": "*",
  5656. "lib-libxml": "*",
  5657. "php": ">=5.3.3"
  5658. },
  5659. "type": "library",
  5660. "autoload": {
  5661. "classmap": [
  5662. "src/"
  5663. ]
  5664. },
  5665. "notification-url": "https://packagist.org/downloads/",
  5666. "license": [
  5667. "BSD-3-Clause"
  5668. ],
  5669. "authors": [
  5670. {
  5671. "name": "Arne Blankerts",
  5672. "email": "arne@blankerts.de",
  5673. "role": "lead"
  5674. }
  5675. ],
  5676. "description": "The classes contained within this repository extend the standard DOM to use exceptions at all occasions of errors instead of PHP warnings or notices. They also add various custom methods and shortcuts for convenience and to simplify the usage of DOM.",
  5677. "homepage": "https://github.com/theseer/fDOMDocument",
  5678. "time": "2017-06-30T11:53:12+00:00"
  5679. }
  5680. ],
  5681. "aliases": [],
  5682. "minimum-stability": "stable",
  5683. "stability-flags": [],
  5684. "prefer-stable": false,
  5685. "prefer-lowest": false,
  5686. "platform": {
  5687. "php": "7.0.2|7.0.4|~7.0.6|~7.1.0|~7.2.0",
  5688. "ext-curl": "*"
  5689. },
  5690. "platform-dev": []
  5691. }