composer.lock 196 KB

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