composer.lock 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152
  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": "a56c75855d5a15e695be31783278179d",
  8. "packages": [
  9. {
  10. "name": "cilex/cilex",
  11. "version": "1.1.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Cilex/Cilex.git",
  15. "reference": "7acd965a609a56d0345e8b6071c261fbdb926cb5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Cilex/Cilex/zipball/7acd965a609a56d0345e8b6071c261fbdb926cb5",
  20. "reference": "7acd965a609a56d0345e8b6071c261fbdb926cb5",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "cilex/console-service-provider": "1.*",
  25. "php": ">=5.3.3",
  26. "pimple/pimple": "~1.0",
  27. "symfony/finder": "~2.1",
  28. "symfony/process": "~2.1"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "3.7.*",
  32. "symfony/validator": "~2.1"
  33. },
  34. "suggest": {
  35. "monolog/monolog": ">=1.0.0",
  36. "symfony/validator": ">=1.0.0",
  37. "symfony/yaml": ">=1.0.0"
  38. },
  39. "type": "library",
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "1.0-dev"
  43. }
  44. },
  45. "autoload": {
  46. "psr-0": {
  47. "Cilex": "src/"
  48. }
  49. },
  50. "notification-url": "https://packagist.org/downloads/",
  51. "license": [
  52. "MIT"
  53. ],
  54. "authors": [
  55. {
  56. "name": "Mike van Riel",
  57. "email": "mike.vanriel@naenius.com"
  58. }
  59. ],
  60. "description": "The PHP micro-framework for Command line tools based on the Symfony2 Components",
  61. "homepage": "http://cilex.github.com",
  62. "keywords": [
  63. "cli",
  64. "microframework"
  65. ],
  66. "time": "2014-03-29T14:03:13+00:00"
  67. },
  68. {
  69. "name": "cilex/console-service-provider",
  70. "version": "1.0.0",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/Cilex/console-service-provider.git",
  74. "reference": "25ee3d1875243d38e1a3448ff94bdf944f70d24e"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/Cilex/console-service-provider/zipball/25ee3d1875243d38e1a3448ff94bdf944f70d24e",
  79. "reference": "25ee3d1875243d38e1a3448ff94bdf944f70d24e",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "php": ">=5.3.3",
  84. "pimple/pimple": "1.*@dev",
  85. "symfony/console": "~2.1"
  86. },
  87. "require-dev": {
  88. "cilex/cilex": "1.*@dev",
  89. "silex/silex": "1.*@dev"
  90. },
  91. "type": "library",
  92. "extra": {
  93. "branch-alias": {
  94. "dev-master": "1.0-dev"
  95. }
  96. },
  97. "autoload": {
  98. "psr-0": {
  99. "Cilex\\Provider\\Console": "src"
  100. }
  101. },
  102. "notification-url": "https://packagist.org/downloads/",
  103. "license": [
  104. "MIT"
  105. ],
  106. "authors": [
  107. {
  108. "name": "Beau Simensen",
  109. "email": "beau@dflydev.com",
  110. "homepage": "http://beausimensen.com"
  111. },
  112. {
  113. "name": "Mike van Riel",
  114. "email": "mike.vanriel@naenius.com"
  115. }
  116. ],
  117. "description": "Console Service Provider",
  118. "keywords": [
  119. "cilex",
  120. "console",
  121. "pimple",
  122. "service-provider",
  123. "silex"
  124. ],
  125. "time": "2012-12-19T10:50:58+00:00"
  126. },
  127. {
  128. "name": "container-interop/container-interop",
  129. "version": "1.2.0",
  130. "source": {
  131. "type": "git",
  132. "url": "https://github.com/container-interop/container-interop.git",
  133. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  134. },
  135. "dist": {
  136. "type": "zip",
  137. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  138. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  139. "shasum": ""
  140. },
  141. "require": {
  142. "psr/container": "^1.0"
  143. },
  144. "type": "library",
  145. "autoload": {
  146. "psr-4": {
  147. "Interop\\Container\\": "src/Interop/Container/"
  148. }
  149. },
  150. "notification-url": "https://packagist.org/downloads/",
  151. "license": [
  152. "MIT"
  153. ],
  154. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  155. "homepage": "https://github.com/container-interop/container-interop",
  156. "time": "2017-02-14T19:40:03+00:00"
  157. },
  158. {
  159. "name": "doctrine/annotations",
  160. "version": "v1.4.0",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/doctrine/annotations.git",
  164. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  169. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "doctrine/lexer": "1.*",
  174. "php": "^5.6 || ^7.0"
  175. },
  176. "require-dev": {
  177. "doctrine/cache": "1.*",
  178. "phpunit/phpunit": "^5.7"
  179. },
  180. "type": "library",
  181. "extra": {
  182. "branch-alias": {
  183. "dev-master": "1.4.x-dev"
  184. }
  185. },
  186. "autoload": {
  187. "psr-4": {
  188. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Roman Borschel",
  198. "email": "roman@code-factory.org"
  199. },
  200. {
  201. "name": "Benjamin Eberlei",
  202. "email": "kontakt@beberlei.de"
  203. },
  204. {
  205. "name": "Guilherme Blanco",
  206. "email": "guilhermeblanco@gmail.com"
  207. },
  208. {
  209. "name": "Jonathan Wage",
  210. "email": "jonwage@gmail.com"
  211. },
  212. {
  213. "name": "Johannes Schmitt",
  214. "email": "schmittjoh@gmail.com"
  215. }
  216. ],
  217. "description": "Docblock Annotations Parser",
  218. "homepage": "http://www.doctrine-project.org",
  219. "keywords": [
  220. "annotations",
  221. "docblock",
  222. "parser"
  223. ],
  224. "time": "2017-02-24T16:22:25+00:00"
  225. },
  226. {
  227. "name": "doctrine/instantiator",
  228. "version": "1.0.5",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/doctrine/instantiator.git",
  232. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  237. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "php": ">=5.3,<8.0-DEV"
  242. },
  243. "require-dev": {
  244. "athletic/athletic": "~0.1.8",
  245. "ext-pdo": "*",
  246. "ext-phar": "*",
  247. "phpunit/phpunit": "~4.0",
  248. "squizlabs/php_codesniffer": "~2.0"
  249. },
  250. "type": "library",
  251. "extra": {
  252. "branch-alias": {
  253. "dev-master": "1.0.x-dev"
  254. }
  255. },
  256. "autoload": {
  257. "psr-4": {
  258. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "MIT"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Marco Pivetta",
  268. "email": "ocramius@gmail.com",
  269. "homepage": "http://ocramius.github.com/"
  270. }
  271. ],
  272. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  273. "homepage": "https://github.com/doctrine/instantiator",
  274. "keywords": [
  275. "constructor",
  276. "instantiate"
  277. ],
  278. "time": "2015-06-14T21:17:01+00:00"
  279. },
  280. {
  281. "name": "doctrine/lexer",
  282. "version": "v1.0.1",
  283. "source": {
  284. "type": "git",
  285. "url": "https://github.com/doctrine/lexer.git",
  286. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  287. },
  288. "dist": {
  289. "type": "zip",
  290. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  291. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  292. "shasum": ""
  293. },
  294. "require": {
  295. "php": ">=5.3.2"
  296. },
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-master": "1.0.x-dev"
  301. }
  302. },
  303. "autoload": {
  304. "psr-0": {
  305. "Doctrine\\Common\\Lexer\\": "lib/"
  306. }
  307. },
  308. "notification-url": "https://packagist.org/downloads/",
  309. "license": [
  310. "MIT"
  311. ],
  312. "authors": [
  313. {
  314. "name": "Roman Borschel",
  315. "email": "roman@code-factory.org"
  316. },
  317. {
  318. "name": "Guilherme Blanco",
  319. "email": "guilhermeblanco@gmail.com"
  320. },
  321. {
  322. "name": "Johannes Schmitt",
  323. "email": "schmittjoh@gmail.com"
  324. }
  325. ],
  326. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  327. "homepage": "http://www.doctrine-project.org",
  328. "keywords": [
  329. "lexer",
  330. "parser"
  331. ],
  332. "time": "2014-09-09T13:34:57+00:00"
  333. },
  334. {
  335. "name": "erusev/parsedown",
  336. "version": "1.7.1",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/erusev/parsedown.git",
  340. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  345. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "ext-mbstring": "*",
  350. "php": ">=5.3.0"
  351. },
  352. "require-dev": {
  353. "phpunit/phpunit": "^4.8.35"
  354. },
  355. "type": "library",
  356. "autoload": {
  357. "psr-0": {
  358. "Parsedown": ""
  359. }
  360. },
  361. "notification-url": "https://packagist.org/downloads/",
  362. "license": [
  363. "MIT"
  364. ],
  365. "authors": [
  366. {
  367. "name": "Emanuil Rusev",
  368. "email": "hello@erusev.com",
  369. "homepage": "http://erusev.com"
  370. }
  371. ],
  372. "description": "Parser for Markdown.",
  373. "homepage": "http://parsedown.org",
  374. "keywords": [
  375. "markdown",
  376. "parser"
  377. ],
  378. "time": "2018-03-08T01:11:30+00:00"
  379. },
  380. {
  381. "name": "evert/phpdoc-md",
  382. "version": "0.2.0",
  383. "source": {
  384. "type": "git",
  385. "url": "https://github.com/evert/phpdoc-md.git",
  386. "reference": "afa89bd55de9d27abcfebaf3a3c0097f7590dd11"
  387. },
  388. "dist": {
  389. "type": "zip",
  390. "url": "https://api.github.com/repos/evert/phpdoc-md/zipball/afa89bd55de9d27abcfebaf3a3c0097f7590dd11",
  391. "reference": "afa89bd55de9d27abcfebaf3a3c0097f7590dd11",
  392. "shasum": ""
  393. },
  394. "require": {
  395. "php": ">=5.3.1",
  396. "twig/twig": "~1.2|2.0"
  397. },
  398. "require-dev": {
  399. "phpdocumentor/phpdocumentor": "~2.8.0",
  400. "sabre/cs": "~0.0.5"
  401. },
  402. "bin": [
  403. "bin/phpdocmd"
  404. ],
  405. "type": "library",
  406. "autoload": {
  407. "psr-4": {
  408. "PHPDocMD\\": "src/"
  409. }
  410. },
  411. "notification-url": "https://packagist.org/downloads/",
  412. "license": [
  413. "MIT"
  414. ],
  415. "authors": [
  416. {
  417. "name": "Evert Pot",
  418. "email": "evert@rooftopsolutions.nl",
  419. "homepage": "http://www.rooftopsolutions.nl/",
  420. "role": "Developer"
  421. }
  422. ],
  423. "description": "PHP documentation generator, with markdown output",
  424. "homepage": "https://github.com/evert/phpdoc-md",
  425. "keywords": [
  426. "markdown",
  427. "php",
  428. "phpdoc"
  429. ],
  430. "time": "2016-02-11T22:08:37+00:00"
  431. },
  432. {
  433. "name": "herrera-io/json",
  434. "version": "1.0.3",
  435. "source": {
  436. "type": "git",
  437. "url": "https://github.com/kherge-php/json.git",
  438. "reference": "60c696c9370a1e5136816ca557c17f82a6fa83f1"
  439. },
  440. "dist": {
  441. "type": "zip",
  442. "url": "https://api.github.com/repos/kherge-php/json/zipball/60c696c9370a1e5136816ca557c17f82a6fa83f1",
  443. "reference": "60c696c9370a1e5136816ca557c17f82a6fa83f1",
  444. "shasum": ""
  445. },
  446. "require": {
  447. "ext-json": "*",
  448. "justinrainbow/json-schema": ">=1.0,<2.0-dev",
  449. "php": ">=5.3.3",
  450. "seld/jsonlint": ">=1.0,<2.0-dev"
  451. },
  452. "require-dev": {
  453. "herrera-io/phpunit-test-case": "1.*",
  454. "mikey179/vfsstream": "1.1.0",
  455. "phpunit/phpunit": "3.7.*"
  456. },
  457. "type": "library",
  458. "extra": {
  459. "branch-alias": {
  460. "dev-master": "1.0-dev"
  461. }
  462. },
  463. "autoload": {
  464. "files": [
  465. "src/lib/json_version.php"
  466. ],
  467. "psr-0": {
  468. "Herrera\\Json": "src/lib"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Kevin Herrera",
  478. "email": "kevin@herrera.io",
  479. "homepage": "http://kevin.herrera.io"
  480. }
  481. ],
  482. "description": "A library for simplifying JSON linting and validation.",
  483. "homepage": "http://herrera-io.github.com/php-json",
  484. "keywords": [
  485. "json",
  486. "lint",
  487. "schema",
  488. "validate"
  489. ],
  490. "abandoned": "kherge/json",
  491. "time": "2013-10-30T16:51:34+00:00"
  492. },
  493. {
  494. "name": "herrera-io/phar-update",
  495. "version": "1.0.3",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/kherge-abandoned/php-phar-update.git",
  499. "reference": "00a79e1d5b8cf3c080a2e3becf1ddf7a7fea025b"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/kherge-abandoned/php-phar-update/zipball/00a79e1d5b8cf3c080a2e3becf1ddf7a7fea025b",
  504. "reference": "00a79e1d5b8cf3c080a2e3becf1ddf7a7fea025b",
  505. "shasum": ""
  506. },
  507. "require": {
  508. "herrera-io/json": "1.*",
  509. "kherge/version": "1.*",
  510. "php": ">=5.3.3"
  511. },
  512. "require-dev": {
  513. "herrera-io/phpunit-test-case": "1.*",
  514. "mikey179/vfsstream": "1.1.0",
  515. "phpunit/phpunit": "3.7.*"
  516. },
  517. "type": "library",
  518. "extra": {
  519. "branch-alias": {
  520. "dev-master": "1.0-dev"
  521. }
  522. },
  523. "autoload": {
  524. "files": [
  525. "src/lib/constants.php"
  526. ],
  527. "psr-0": {
  528. "Herrera\\Phar\\Update": "src/lib"
  529. }
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "MIT"
  534. ],
  535. "authors": [
  536. {
  537. "name": "Kevin Herrera",
  538. "email": "kevin@herrera.io",
  539. "homepage": "http://kevin.herrera.io"
  540. }
  541. ],
  542. "description": "A library for self-updating Phars.",
  543. "homepage": "http://herrera-io.github.com/php-phar-update",
  544. "keywords": [
  545. "phar",
  546. "update"
  547. ],
  548. "abandoned": true,
  549. "time": "2013-10-30T17:23:01+00:00"
  550. },
  551. {
  552. "name": "jms/metadata",
  553. "version": "1.6.0",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/schmittjoh/metadata.git",
  557. "reference": "6a06970a10e0a532fb52d3959547123b84a3b3ab"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/6a06970a10e0a532fb52d3959547123b84a3b3ab",
  562. "reference": "6a06970a10e0a532fb52d3959547123b84a3b3ab",
  563. "shasum": ""
  564. },
  565. "require": {
  566. "php": ">=5.3.0"
  567. },
  568. "require-dev": {
  569. "doctrine/cache": "~1.0",
  570. "symfony/cache": "~3.1"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "branch-alias": {
  575. "dev-master": "1.5.x-dev"
  576. }
  577. },
  578. "autoload": {
  579. "psr-0": {
  580. "Metadata\\": "src/"
  581. }
  582. },
  583. "notification-url": "https://packagist.org/downloads/",
  584. "license": [
  585. "Apache-2.0"
  586. ],
  587. "authors": [
  588. {
  589. "name": "Johannes M. Schmitt",
  590. "email": "schmittjoh@gmail.com"
  591. }
  592. ],
  593. "description": "Class/method/property metadata management in PHP",
  594. "keywords": [
  595. "annotations",
  596. "metadata",
  597. "xml",
  598. "yaml"
  599. ],
  600. "time": "2016-12-05T10:18:33+00:00"
  601. },
  602. {
  603. "name": "jms/parser-lib",
  604. "version": "1.0.0",
  605. "source": {
  606. "type": "git",
  607. "url": "https://github.com/schmittjoh/parser-lib.git",
  608. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  609. },
  610. "dist": {
  611. "type": "zip",
  612. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  613. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  614. "shasum": ""
  615. },
  616. "require": {
  617. "phpoption/phpoption": ">=0.9,<2.0-dev"
  618. },
  619. "type": "library",
  620. "extra": {
  621. "branch-alias": {
  622. "dev-master": "1.0-dev"
  623. }
  624. },
  625. "autoload": {
  626. "psr-0": {
  627. "JMS\\": "src/"
  628. }
  629. },
  630. "notification-url": "https://packagist.org/downloads/",
  631. "license": [
  632. "Apache2"
  633. ],
  634. "description": "A library for easily creating recursive-descent parsers.",
  635. "time": "2012-11-18T18:08:43+00:00"
  636. },
  637. {
  638. "name": "jms/serializer",
  639. "version": "1.12.1",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/schmittjoh/serializer.git",
  643. "reference": "93d6e03fcb71d45854cc44b5a84d645c02c5d763"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/93d6e03fcb71d45854cc44b5a84d645c02c5d763",
  648. "reference": "93d6e03fcb71d45854cc44b5a84d645c02c5d763",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "doctrine/annotations": "^1.0",
  653. "doctrine/instantiator": "^1.0.3",
  654. "jms/metadata": "^1.3",
  655. "jms/parser-lib": "1.*",
  656. "php": "^5.5|^7.0",
  657. "phpcollection/phpcollection": "~0.1",
  658. "phpoption/phpoption": "^1.1"
  659. },
  660. "conflict": {
  661. "twig/twig": "<1.12"
  662. },
  663. "require-dev": {
  664. "doctrine/orm": "~2.1",
  665. "doctrine/phpcr-odm": "^1.3|^2.0",
  666. "ext-pdo_sqlite": "*",
  667. "jackalope/jackalope-doctrine-dbal": "^1.1.5",
  668. "phpunit/phpunit": "^4.8|^5.0",
  669. "propel/propel1": "~1.7",
  670. "psr/container": "^1.0",
  671. "symfony/dependency-injection": "^2.7|^3.3|^4.0",
  672. "symfony/expression-language": "^2.6|^3.0",
  673. "symfony/filesystem": "^2.1",
  674. "symfony/form": "~2.1|^3.0",
  675. "symfony/translation": "^2.1|^3.0",
  676. "symfony/validator": "^2.2|^3.0",
  677. "symfony/yaml": "^2.1|^3.0",
  678. "twig/twig": "~1.12|~2.0"
  679. },
  680. "suggest": {
  681. "doctrine/cache": "Required if you like to use cache functionality.",
  682. "doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.",
  683. "symfony/yaml": "Required if you'd like to serialize data to YAML format."
  684. },
  685. "type": "library",
  686. "extra": {
  687. "branch-alias": {
  688. "dev-1.x": "1.11-dev"
  689. }
  690. },
  691. "autoload": {
  692. "psr-0": {
  693. "JMS\\Serializer": "src/"
  694. }
  695. },
  696. "notification-url": "https://packagist.org/downloads/",
  697. "license": [
  698. "MIT"
  699. ],
  700. "authors": [
  701. {
  702. "name": "Asmir Mustafic",
  703. "email": "goetas@gmail.com"
  704. },
  705. {
  706. "name": "Johannes M. Schmitt",
  707. "email": "schmittjoh@gmail.com"
  708. }
  709. ],
  710. "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
  711. "homepage": "http://jmsyst.com/libs/serializer",
  712. "keywords": [
  713. "deserialization",
  714. "jaxb",
  715. "json",
  716. "serialization",
  717. "xml"
  718. ],
  719. "time": "2018-06-01T12:10:12+00:00"
  720. },
  721. {
  722. "name": "justinrainbow/json-schema",
  723. "version": "1.6.1",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/justinrainbow/json-schema.git",
  727. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/cc84765fb7317f6b07bd8ac78364747f95b86341",
  732. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "php": ">=5.3.29"
  737. },
  738. "require-dev": {
  739. "json-schema/json-schema-test-suite": "1.1.0",
  740. "phpdocumentor/phpdocumentor": "~2",
  741. "phpunit/phpunit": "~3.7"
  742. },
  743. "bin": [
  744. "bin/validate-json"
  745. ],
  746. "type": "library",
  747. "extra": {
  748. "branch-alias": {
  749. "dev-master": "1.6.x-dev"
  750. }
  751. },
  752. "autoload": {
  753. "psr-4": {
  754. "JsonSchema\\": "src/JsonSchema/"
  755. }
  756. },
  757. "notification-url": "https://packagist.org/downloads/",
  758. "license": [
  759. "BSD-3-Clause"
  760. ],
  761. "authors": [
  762. {
  763. "name": "Bruno Prieto Reis",
  764. "email": "bruno.p.reis@gmail.com"
  765. },
  766. {
  767. "name": "Justin Rainbow",
  768. "email": "justin.rainbow@gmail.com"
  769. },
  770. {
  771. "name": "Igor Wiedler",
  772. "email": "igor@wiedler.ch"
  773. },
  774. {
  775. "name": "Robert Schönthal",
  776. "email": "seroscho@googlemail.com"
  777. }
  778. ],
  779. "description": "A library to validate a json schema.",
  780. "homepage": "https://github.com/justinrainbow/json-schema",
  781. "keywords": [
  782. "json",
  783. "schema"
  784. ],
  785. "time": "2016-01-25T15:43:01+00:00"
  786. },
  787. {
  788. "name": "kherge/version",
  789. "version": "1.0.1",
  790. "source": {
  791. "type": "git",
  792. "url": "https://github.com/kherge-abandoned/Version.git",
  793. "reference": "f07cf83f8ce533be8f93d2893d96d674bbeb7e30"
  794. },
  795. "dist": {
  796. "type": "zip",
  797. "url": "https://api.github.com/repos/kherge-abandoned/Version/zipball/f07cf83f8ce533be8f93d2893d96d674bbeb7e30",
  798. "reference": "f07cf83f8ce533be8f93d2893d96d674bbeb7e30",
  799. "shasum": ""
  800. },
  801. "require": {
  802. "php": ">=5.3.3"
  803. },
  804. "type": "library",
  805. "extra": {
  806. "branch-alias": {
  807. "dev-master": "1.0-dev"
  808. }
  809. },
  810. "autoload": {
  811. "psr-0": {
  812. "KevinGH\\Version": "src/lib/"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "MIT"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Kevin Herrera",
  822. "email": "me@kevingh.com"
  823. }
  824. ],
  825. "description": "A parsing and comparison library for semantic versioning.",
  826. "homepage": "http://github.com/kherge/Version",
  827. "abandoned": true,
  828. "time": "2012-08-16T17:13:03+00:00"
  829. },
  830. {
  831. "name": "monolog/monolog",
  832. "version": "1.23.0",
  833. "source": {
  834. "type": "git",
  835. "url": "https://github.com/Seldaek/monolog.git",
  836. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  837. },
  838. "dist": {
  839. "type": "zip",
  840. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  841. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  842. "shasum": ""
  843. },
  844. "require": {
  845. "php": ">=5.3.0",
  846. "psr/log": "~1.0"
  847. },
  848. "provide": {
  849. "psr/log-implementation": "1.0.0"
  850. },
  851. "require-dev": {
  852. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  853. "doctrine/couchdb": "~1.0@dev",
  854. "graylog2/gelf-php": "~1.0",
  855. "jakub-onderka/php-parallel-lint": "0.9",
  856. "php-amqplib/php-amqplib": "~2.4",
  857. "php-console/php-console": "^3.1.3",
  858. "phpunit/phpunit": "~4.5",
  859. "phpunit/phpunit-mock-objects": "2.3.0",
  860. "ruflin/elastica": ">=0.90 <3.0",
  861. "sentry/sentry": "^0.13",
  862. "swiftmailer/swiftmailer": "^5.3|^6.0"
  863. },
  864. "suggest": {
  865. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  866. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  867. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  868. "ext-mongo": "Allow sending log messages to a MongoDB server",
  869. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  870. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  871. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  872. "php-console/php-console": "Allow sending log messages to Google Chrome",
  873. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  874. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  875. "sentry/sentry": "Allow sending log messages to a Sentry server"
  876. },
  877. "type": "library",
  878. "extra": {
  879. "branch-alias": {
  880. "dev-master": "2.0.x-dev"
  881. }
  882. },
  883. "autoload": {
  884. "psr-4": {
  885. "Monolog\\": "src/Monolog"
  886. }
  887. },
  888. "notification-url": "https://packagist.org/downloads/",
  889. "license": [
  890. "MIT"
  891. ],
  892. "authors": [
  893. {
  894. "name": "Jordi Boggiano",
  895. "email": "j.boggiano@seld.be",
  896. "homepage": "http://seld.be"
  897. }
  898. ],
  899. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  900. "homepage": "http://github.com/Seldaek/monolog",
  901. "keywords": [
  902. "log",
  903. "logging",
  904. "psr-3"
  905. ],
  906. "time": "2017-06-19T01:22:40+00:00"
  907. },
  908. {
  909. "name": "nikic/php-parser",
  910. "version": "v1.4.1",
  911. "source": {
  912. "type": "git",
  913. "url": "https://github.com/nikic/PHP-Parser.git",
  914. "reference": "f78af2c9c86107aa1a34cd1dbb5bbe9eeb0d9f51"
  915. },
  916. "dist": {
  917. "type": "zip",
  918. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f78af2c9c86107aa1a34cd1dbb5bbe9eeb0d9f51",
  919. "reference": "f78af2c9c86107aa1a34cd1dbb5bbe9eeb0d9f51",
  920. "shasum": ""
  921. },
  922. "require": {
  923. "ext-tokenizer": "*",
  924. "php": ">=5.3"
  925. },
  926. "type": "library",
  927. "extra": {
  928. "branch-alias": {
  929. "dev-master": "1.4-dev"
  930. }
  931. },
  932. "autoload": {
  933. "files": [
  934. "lib/bootstrap.php"
  935. ]
  936. },
  937. "notification-url": "https://packagist.org/downloads/",
  938. "license": [
  939. "BSD-3-Clause"
  940. ],
  941. "authors": [
  942. {
  943. "name": "Nikita Popov"
  944. }
  945. ],
  946. "description": "A PHP parser written in PHP",
  947. "keywords": [
  948. "parser",
  949. "php"
  950. ],
  951. "time": "2015-09-19T14:15:08+00:00"
  952. },
  953. {
  954. "name": "phpcollection/phpcollection",
  955. "version": "0.5.0",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/schmittjoh/php-collection.git",
  959. "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/schmittjoh/php-collection/zipball/f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6",
  964. "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "phpoption/phpoption": "1.*"
  969. },
  970. "type": "library",
  971. "extra": {
  972. "branch-alias": {
  973. "dev-master": "0.4-dev"
  974. }
  975. },
  976. "autoload": {
  977. "psr-0": {
  978. "PhpCollection": "src/"
  979. }
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "Apache2"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Johannes M. Schmitt",
  988. "email": "schmittjoh@gmail.com"
  989. }
  990. ],
  991. "description": "General-Purpose Collection Library for PHP",
  992. "keywords": [
  993. "collection",
  994. "list",
  995. "map",
  996. "sequence",
  997. "set"
  998. ],
  999. "time": "2015-05-17T12:39:23+00:00"
  1000. },
  1001. {
  1002. "name": "phpdocumentor/fileset",
  1003. "version": "1.0.0",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/phpDocumentor/Fileset.git",
  1007. "reference": "bfa78d8fa9763dfce6d0e5d3730c1d8ab25d34b0"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/phpDocumentor/Fileset/zipball/bfa78d8fa9763dfce6d0e5d3730c1d8ab25d34b0",
  1012. "reference": "bfa78d8fa9763dfce6d0e5d3730c1d8ab25d34b0",
  1013. "shasum": ""
  1014. },
  1015. "require": {
  1016. "php": ">=5.3.3",
  1017. "symfony/finder": "~2.1"
  1018. },
  1019. "require-dev": {
  1020. "phpunit/phpunit": "~3.7"
  1021. },
  1022. "type": "library",
  1023. "autoload": {
  1024. "psr-0": {
  1025. "phpDocumentor": [
  1026. "src/",
  1027. "tests/unit/"
  1028. ]
  1029. }
  1030. },
  1031. "notification-url": "https://packagist.org/downloads/",
  1032. "license": [
  1033. "MIT"
  1034. ],
  1035. "description": "Fileset component for collecting a set of files given directories and file paths",
  1036. "homepage": "http://www.phpdoc.org",
  1037. "keywords": [
  1038. "files",
  1039. "fileset",
  1040. "phpdoc"
  1041. ],
  1042. "time": "2013-08-06T21:07:42+00:00"
  1043. },
  1044. {
  1045. "name": "phpdocumentor/graphviz",
  1046. "version": "1.0.4",
  1047. "source": {
  1048. "type": "git",
  1049. "url": "https://github.com/phpDocumentor/GraphViz.git",
  1050. "reference": "a906a90a9f230535f25ea31caf81b2323956283f"
  1051. },
  1052. "dist": {
  1053. "type": "zip",
  1054. "url": "https://api.github.com/repos/phpDocumentor/GraphViz/zipball/a906a90a9f230535f25ea31caf81b2323956283f",
  1055. "reference": "a906a90a9f230535f25ea31caf81b2323956283f",
  1056. "shasum": ""
  1057. },
  1058. "require": {
  1059. "php": ">=5.3.3"
  1060. },
  1061. "require-dev": {
  1062. "phpunit/phpunit": "~4.0"
  1063. },
  1064. "type": "library",
  1065. "autoload": {
  1066. "psr-0": {
  1067. "phpDocumentor": [
  1068. "src/",
  1069. "tests/unit"
  1070. ]
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "Mike van Riel",
  1080. "email": "mike.vanriel@naenius.com"
  1081. }
  1082. ],
  1083. "time": "2016-02-02T13:00:08+00:00"
  1084. },
  1085. {
  1086. "name": "phpdocumentor/phpdocumentor",
  1087. "version": "v2.9.0",
  1088. "source": {
  1089. "type": "git",
  1090. "url": "https://github.com/phpDocumentor/phpDocumentor2.git",
  1091. "reference": "be607da0eef9b9249c43c5b4820d25d631c73667"
  1092. },
  1093. "dist": {
  1094. "type": "zip",
  1095. "url": "https://api.github.com/repos/phpDocumentor/phpDocumentor2/zipball/be607da0eef9b9249c43c5b4820d25d631c73667",
  1096. "reference": "be607da0eef9b9249c43c5b4820d25d631c73667",
  1097. "shasum": ""
  1098. },
  1099. "require": {
  1100. "cilex/cilex": "~1.0",
  1101. "erusev/parsedown": "~1.0",
  1102. "herrera-io/phar-update": "1.0.3",
  1103. "jms/serializer": ">=0.12",
  1104. "monolog/monolog": "~1.6",
  1105. "php": ">=5.3.3",
  1106. "phpdocumentor/fileset": "~1.0",
  1107. "phpdocumentor/graphviz": "~1.0",
  1108. "phpdocumentor/reflection": "^3.0",
  1109. "phpdocumentor/reflection-docblock": "~2.0",
  1110. "symfony/config": "~2.3",
  1111. "symfony/console": "~2.3",
  1112. "symfony/event-dispatcher": "~2.1",
  1113. "symfony/process": "~2.0",
  1114. "symfony/stopwatch": "~2.3",
  1115. "symfony/validator": "~2.2",
  1116. "twig/twig": "~1.3",
  1117. "zendframework/zend-cache": "~2.1",
  1118. "zendframework/zend-config": "~2.1",
  1119. "zendframework/zend-filter": "~2.1",
  1120. "zendframework/zend-i18n": "~2.1",
  1121. "zendframework/zend-serializer": "~2.1",
  1122. "zendframework/zend-servicemanager": "~2.1",
  1123. "zendframework/zend-stdlib": "~2.1",
  1124. "zetacomponents/document": ">=1.3.1"
  1125. },
  1126. "require-dev": {
  1127. "behat/behat": "~3.0",
  1128. "mikey179/vfsstream": "~1.2",
  1129. "mockery/mockery": "~0.9@dev",
  1130. "phpunit/phpunit": "~4.0",
  1131. "squizlabs/php_codesniffer": "~1.4",
  1132. "symfony/expression-language": "~2.4"
  1133. },
  1134. "suggest": {
  1135. "ext-twig": "Enabling the twig extension improves the generation of twig based templates.",
  1136. "ext-xslcache": "Enabling the XSLCache extension improves the generation of xml based templates."
  1137. },
  1138. "bin": [
  1139. "bin/phpdoc.php",
  1140. "bin/phpdoc"
  1141. ],
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-develop": "2.9-dev"
  1146. }
  1147. },
  1148. "autoload": {
  1149. "psr-0": {
  1150. "phpDocumentor": [
  1151. "src/",
  1152. "tests/unit/"
  1153. ],
  1154. "Cilex\\Provider": [
  1155. "src/"
  1156. ]
  1157. }
  1158. },
  1159. "notification-url": "https://packagist.org/downloads/",
  1160. "license": [
  1161. "MIT"
  1162. ],
  1163. "description": "Documentation Generator for PHP",
  1164. "homepage": "http://www.phpdoc.org",
  1165. "keywords": [
  1166. "api",
  1167. "application",
  1168. "dga",
  1169. "documentation",
  1170. "phpdoc"
  1171. ],
  1172. "time": "2016-05-22T09:50:56+00:00"
  1173. },
  1174. {
  1175. "name": "phpdocumentor/reflection",
  1176. "version": "3.0.1",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/phpDocumentor/Reflection.git",
  1180. "reference": "793bfd92d9a0fc96ae9608fb3e947c3f59fb3a0d"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://api.github.com/repos/phpDocumentor/Reflection/zipball/793bfd92d9a0fc96ae9608fb3e947c3f59fb3a0d",
  1185. "reference": "793bfd92d9a0fc96ae9608fb3e947c3f59fb3a0d",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "nikic/php-parser": "^1.0",
  1190. "php": ">=5.3.3",
  1191. "phpdocumentor/reflection-docblock": "~2.0",
  1192. "psr/log": "~1.0"
  1193. },
  1194. "require-dev": {
  1195. "behat/behat": "~2.4",
  1196. "mockery/mockery": "~0.8",
  1197. "phpunit/phpunit": "~4.0"
  1198. },
  1199. "type": "library",
  1200. "extra": {
  1201. "branch-alias": {
  1202. "dev-master": "1.0.x-dev"
  1203. }
  1204. },
  1205. "autoload": {
  1206. "psr-0": {
  1207. "phpDocumentor": [
  1208. "src/",
  1209. "tests/unit/",
  1210. "tests/mocks/"
  1211. ]
  1212. }
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "MIT"
  1217. ],
  1218. "description": "Reflection library to do Static Analysis for PHP Projects",
  1219. "homepage": "http://www.phpdoc.org",
  1220. "keywords": [
  1221. "phpDocumentor",
  1222. "phpdoc",
  1223. "reflection",
  1224. "static analysis"
  1225. ],
  1226. "time": "2016-05-21T08:42:32+00:00"
  1227. },
  1228. {
  1229. "name": "phpdocumentor/reflection-docblock",
  1230. "version": "2.0.5",
  1231. "source": {
  1232. "type": "git",
  1233. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1234. "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b"
  1235. },
  1236. "dist": {
  1237. "type": "zip",
  1238. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  1239. "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  1240. "shasum": ""
  1241. },
  1242. "require": {
  1243. "php": ">=5.3.3"
  1244. },
  1245. "require-dev": {
  1246. "phpunit/phpunit": "~4.0"
  1247. },
  1248. "suggest": {
  1249. "dflydev/markdown": "~1.0",
  1250. "erusev/parsedown": "~1.0"
  1251. },
  1252. "type": "library",
  1253. "extra": {
  1254. "branch-alias": {
  1255. "dev-master": "2.0.x-dev"
  1256. }
  1257. },
  1258. "autoload": {
  1259. "psr-0": {
  1260. "phpDocumentor": [
  1261. "src/"
  1262. ]
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Mike van Riel",
  1272. "email": "mike.vanriel@naenius.com"
  1273. }
  1274. ],
  1275. "time": "2016-01-25T08:17:30+00:00"
  1276. },
  1277. {
  1278. "name": "phpoption/phpoption",
  1279. "version": "1.5.0",
  1280. "source": {
  1281. "type": "git",
  1282. "url": "https://github.com/schmittjoh/php-option.git",
  1283. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  1284. },
  1285. "dist": {
  1286. "type": "zip",
  1287. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  1288. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  1289. "shasum": ""
  1290. },
  1291. "require": {
  1292. "php": ">=5.3.0"
  1293. },
  1294. "require-dev": {
  1295. "phpunit/phpunit": "4.7.*"
  1296. },
  1297. "type": "library",
  1298. "extra": {
  1299. "branch-alias": {
  1300. "dev-master": "1.3-dev"
  1301. }
  1302. },
  1303. "autoload": {
  1304. "psr-0": {
  1305. "PhpOption\\": "src/"
  1306. }
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "Apache2"
  1311. ],
  1312. "authors": [
  1313. {
  1314. "name": "Johannes M. Schmitt",
  1315. "email": "schmittjoh@gmail.com"
  1316. }
  1317. ],
  1318. "description": "Option Type for PHP",
  1319. "keywords": [
  1320. "language",
  1321. "option",
  1322. "php",
  1323. "type"
  1324. ],
  1325. "time": "2015-07-25T16:39:46+00:00"
  1326. },
  1327. {
  1328. "name": "pimple/pimple",
  1329. "version": "v1.1.1",
  1330. "source": {
  1331. "type": "git",
  1332. "url": "https://github.com/silexphp/Pimple.git",
  1333. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d"
  1334. },
  1335. "dist": {
  1336. "type": "zip",
  1337. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  1338. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  1339. "shasum": ""
  1340. },
  1341. "require": {
  1342. "php": ">=5.3.0"
  1343. },
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-master": "1.1.x-dev"
  1348. }
  1349. },
  1350. "autoload": {
  1351. "psr-0": {
  1352. "Pimple": "lib/"
  1353. }
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "authors": [
  1360. {
  1361. "name": "Fabien Potencier",
  1362. "email": "fabien@symfony.com"
  1363. }
  1364. ],
  1365. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  1366. "homepage": "http://pimple.sensiolabs.org",
  1367. "keywords": [
  1368. "container",
  1369. "dependency injection"
  1370. ],
  1371. "time": "2013-11-22T08:30:29+00:00"
  1372. },
  1373. {
  1374. "name": "psr/cache",
  1375. "version": "1.0.1",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/php-fig/cache.git",
  1379. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1384. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "php": ">=5.3.0"
  1389. },
  1390. "type": "library",
  1391. "extra": {
  1392. "branch-alias": {
  1393. "dev-master": "1.0.x-dev"
  1394. }
  1395. },
  1396. "autoload": {
  1397. "psr-4": {
  1398. "Psr\\Cache\\": "src/"
  1399. }
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "PHP-FIG",
  1408. "homepage": "http://www.php-fig.org/"
  1409. }
  1410. ],
  1411. "description": "Common interface for caching libraries",
  1412. "keywords": [
  1413. "cache",
  1414. "psr",
  1415. "psr-6"
  1416. ],
  1417. "time": "2016-08-06T20:24:11+00:00"
  1418. },
  1419. {
  1420. "name": "psr/container",
  1421. "version": "1.0.0",
  1422. "source": {
  1423. "type": "git",
  1424. "url": "https://github.com/php-fig/container.git",
  1425. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1426. },
  1427. "dist": {
  1428. "type": "zip",
  1429. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1430. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1431. "shasum": ""
  1432. },
  1433. "require": {
  1434. "php": ">=5.3.0"
  1435. },
  1436. "type": "library",
  1437. "extra": {
  1438. "branch-alias": {
  1439. "dev-master": "1.0.x-dev"
  1440. }
  1441. },
  1442. "autoload": {
  1443. "psr-4": {
  1444. "Psr\\Container\\": "src/"
  1445. }
  1446. },
  1447. "notification-url": "https://packagist.org/downloads/",
  1448. "license": [
  1449. "MIT"
  1450. ],
  1451. "authors": [
  1452. {
  1453. "name": "PHP-FIG",
  1454. "homepage": "http://www.php-fig.org/"
  1455. }
  1456. ],
  1457. "description": "Common Container Interface (PHP FIG PSR-11)",
  1458. "homepage": "https://github.com/php-fig/container",
  1459. "keywords": [
  1460. "PSR-11",
  1461. "container",
  1462. "container-interface",
  1463. "container-interop",
  1464. "psr"
  1465. ],
  1466. "time": "2017-02-14T16:28:37+00:00"
  1467. },
  1468. {
  1469. "name": "psr/log",
  1470. "version": "1.0.2",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/php-fig/log.git",
  1474. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1479. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "php": ">=5.3.0"
  1484. },
  1485. "type": "library",
  1486. "extra": {
  1487. "branch-alias": {
  1488. "dev-master": "1.0.x-dev"
  1489. }
  1490. },
  1491. "autoload": {
  1492. "psr-4": {
  1493. "Psr\\Log\\": "Psr/Log/"
  1494. }
  1495. },
  1496. "notification-url": "https://packagist.org/downloads/",
  1497. "license": [
  1498. "MIT"
  1499. ],
  1500. "authors": [
  1501. {
  1502. "name": "PHP-FIG",
  1503. "homepage": "http://www.php-fig.org/"
  1504. }
  1505. ],
  1506. "description": "Common interface for logging libraries",
  1507. "homepage": "https://github.com/php-fig/log",
  1508. "keywords": [
  1509. "log",
  1510. "psr",
  1511. "psr-3"
  1512. ],
  1513. "time": "2016-10-10T12:19:37+00:00"
  1514. },
  1515. {
  1516. "name": "psr/simple-cache",
  1517. "version": "1.0.1",
  1518. "source": {
  1519. "type": "git",
  1520. "url": "https://github.com/php-fig/simple-cache.git",
  1521. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1522. },
  1523. "dist": {
  1524. "type": "zip",
  1525. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1526. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1527. "shasum": ""
  1528. },
  1529. "require": {
  1530. "php": ">=5.3.0"
  1531. },
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-master": "1.0.x-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Psr\\SimpleCache\\": "src/"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "authors": [
  1548. {
  1549. "name": "PHP-FIG",
  1550. "homepage": "http://www.php-fig.org/"
  1551. }
  1552. ],
  1553. "description": "Common interfaces for simple caching",
  1554. "keywords": [
  1555. "cache",
  1556. "caching",
  1557. "psr",
  1558. "psr-16",
  1559. "simple-cache"
  1560. ],
  1561. "time": "2017-10-23T01:57:42+00:00"
  1562. },
  1563. {
  1564. "name": "seld/jsonlint",
  1565. "version": "1.7.1",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/Seldaek/jsonlint.git",
  1569. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  1574. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "php": "^5.3 || ^7.0"
  1579. },
  1580. "require-dev": {
  1581. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1582. },
  1583. "bin": [
  1584. "bin/jsonlint"
  1585. ],
  1586. "type": "library",
  1587. "autoload": {
  1588. "psr-4": {
  1589. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  1590. }
  1591. },
  1592. "notification-url": "https://packagist.org/downloads/",
  1593. "license": [
  1594. "MIT"
  1595. ],
  1596. "authors": [
  1597. {
  1598. "name": "Jordi Boggiano",
  1599. "email": "j.boggiano@seld.be",
  1600. "homepage": "http://seld.be"
  1601. }
  1602. ],
  1603. "description": "JSON Linter",
  1604. "keywords": [
  1605. "json",
  1606. "linter",
  1607. "parser",
  1608. "validator"
  1609. ],
  1610. "time": "2018-01-24T12:46:19+00:00"
  1611. },
  1612. {
  1613. "name": "symfony/config",
  1614. "version": "v2.8.42",
  1615. "source": {
  1616. "type": "git",
  1617. "url": "https://github.com/symfony/config.git",
  1618. "reference": "93bdf96d0e3c9b29740bf9050e7a996b443c8436"
  1619. },
  1620. "dist": {
  1621. "type": "zip",
  1622. "url": "https://api.github.com/repos/symfony/config/zipball/93bdf96d0e3c9b29740bf9050e7a996b443c8436",
  1623. "reference": "93bdf96d0e3c9b29740bf9050e7a996b443c8436",
  1624. "shasum": ""
  1625. },
  1626. "require": {
  1627. "php": ">=5.3.9",
  1628. "symfony/filesystem": "~2.3|~3.0.0",
  1629. "symfony/polyfill-ctype": "~1.8"
  1630. },
  1631. "require-dev": {
  1632. "symfony/yaml": "~2.7|~3.0.0"
  1633. },
  1634. "suggest": {
  1635. "symfony/yaml": "To use the yaml reference dumper"
  1636. },
  1637. "type": "library",
  1638. "extra": {
  1639. "branch-alias": {
  1640. "dev-master": "2.8-dev"
  1641. }
  1642. },
  1643. "autoload": {
  1644. "psr-4": {
  1645. "Symfony\\Component\\Config\\": ""
  1646. },
  1647. "exclude-from-classmap": [
  1648. "/Tests/"
  1649. ]
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "MIT"
  1654. ],
  1655. "authors": [
  1656. {
  1657. "name": "Fabien Potencier",
  1658. "email": "fabien@symfony.com"
  1659. },
  1660. {
  1661. "name": "Symfony Community",
  1662. "homepage": "https://symfony.com/contributors"
  1663. }
  1664. ],
  1665. "description": "Symfony Config Component",
  1666. "homepage": "https://symfony.com",
  1667. "time": "2018-05-01T22:52:40+00:00"
  1668. },
  1669. {
  1670. "name": "symfony/console",
  1671. "version": "v2.8.42",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://github.com/symfony/console.git",
  1675. "reference": "e8e59b74ad1274714dad2748349b55e3e6e630c7"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://api.github.com/repos/symfony/console/zipball/e8e59b74ad1274714dad2748349b55e3e6e630c7",
  1680. "reference": "e8e59b74ad1274714dad2748349b55e3e6e630c7",
  1681. "shasum": ""
  1682. },
  1683. "require": {
  1684. "php": ">=5.3.9",
  1685. "symfony/debug": "^2.7.2|~3.0.0",
  1686. "symfony/polyfill-mbstring": "~1.0"
  1687. },
  1688. "require-dev": {
  1689. "psr/log": "~1.0",
  1690. "symfony/event-dispatcher": "~2.1|~3.0.0",
  1691. "symfony/process": "~2.1|~3.0.0"
  1692. },
  1693. "suggest": {
  1694. "psr/log-implementation": "For using the console logger",
  1695. "symfony/event-dispatcher": "",
  1696. "symfony/process": ""
  1697. },
  1698. "type": "library",
  1699. "extra": {
  1700. "branch-alias": {
  1701. "dev-master": "2.8-dev"
  1702. }
  1703. },
  1704. "autoload": {
  1705. "psr-4": {
  1706. "Symfony\\Component\\Console\\": ""
  1707. },
  1708. "exclude-from-classmap": [
  1709. "/Tests/"
  1710. ]
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Fabien Potencier",
  1719. "email": "fabien@symfony.com"
  1720. },
  1721. {
  1722. "name": "Symfony Community",
  1723. "homepage": "https://symfony.com/contributors"
  1724. }
  1725. ],
  1726. "description": "Symfony Console Component",
  1727. "homepage": "https://symfony.com",
  1728. "time": "2018-05-15T21:17:45+00:00"
  1729. },
  1730. {
  1731. "name": "symfony/debug",
  1732. "version": "v3.0.9",
  1733. "source": {
  1734. "type": "git",
  1735. "url": "https://github.com/symfony/debug.git",
  1736. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a"
  1737. },
  1738. "dist": {
  1739. "type": "zip",
  1740. "url": "https://api.github.com/repos/symfony/debug/zipball/697c527acd9ea1b2d3efac34d9806bf255278b0a",
  1741. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a",
  1742. "shasum": ""
  1743. },
  1744. "require": {
  1745. "php": ">=5.5.9",
  1746. "psr/log": "~1.0"
  1747. },
  1748. "conflict": {
  1749. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1750. },
  1751. "require-dev": {
  1752. "symfony/class-loader": "~2.8|~3.0",
  1753. "symfony/http-kernel": "~2.8|~3.0"
  1754. },
  1755. "type": "library",
  1756. "extra": {
  1757. "branch-alias": {
  1758. "dev-master": "3.0-dev"
  1759. }
  1760. },
  1761. "autoload": {
  1762. "psr-4": {
  1763. "Symfony\\Component\\Debug\\": ""
  1764. },
  1765. "exclude-from-classmap": [
  1766. "/Tests/"
  1767. ]
  1768. },
  1769. "notification-url": "https://packagist.org/downloads/",
  1770. "license": [
  1771. "MIT"
  1772. ],
  1773. "authors": [
  1774. {
  1775. "name": "Fabien Potencier",
  1776. "email": "fabien@symfony.com"
  1777. },
  1778. {
  1779. "name": "Symfony Community",
  1780. "homepage": "https://symfony.com/contributors"
  1781. }
  1782. ],
  1783. "description": "Symfony Debug Component",
  1784. "homepage": "https://symfony.com",
  1785. "time": "2016-07-30T07:22:48+00:00"
  1786. },
  1787. {
  1788. "name": "symfony/event-dispatcher",
  1789. "version": "v2.8.42",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/symfony/event-dispatcher.git",
  1793. "reference": "9b69aad7d4c086dc94ebade2d5eb9145da5dac8c"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9b69aad7d4c086dc94ebade2d5eb9145da5dac8c",
  1798. "reference": "9b69aad7d4c086dc94ebade2d5eb9145da5dac8c",
  1799. "shasum": ""
  1800. },
  1801. "require": {
  1802. "php": ">=5.3.9"
  1803. },
  1804. "require-dev": {
  1805. "psr/log": "~1.0",
  1806. "symfony/config": "^2.0.5|~3.0.0",
  1807. "symfony/dependency-injection": "~2.6|~3.0.0",
  1808. "symfony/expression-language": "~2.6|~3.0.0",
  1809. "symfony/stopwatch": "~2.3|~3.0.0"
  1810. },
  1811. "suggest": {
  1812. "symfony/dependency-injection": "",
  1813. "symfony/http-kernel": ""
  1814. },
  1815. "type": "library",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-master": "2.8-dev"
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-4": {
  1823. "Symfony\\Component\\EventDispatcher\\": ""
  1824. },
  1825. "exclude-from-classmap": [
  1826. "/Tests/"
  1827. ]
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Fabien Potencier",
  1836. "email": "fabien@symfony.com"
  1837. },
  1838. {
  1839. "name": "Symfony Community",
  1840. "homepage": "https://symfony.com/contributors"
  1841. }
  1842. ],
  1843. "description": "Symfony EventDispatcher Component",
  1844. "homepage": "https://symfony.com",
  1845. "time": "2018-04-06T07:35:03+00:00"
  1846. },
  1847. {
  1848. "name": "symfony/filesystem",
  1849. "version": "v3.0.9",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://github.com/symfony/filesystem.git",
  1853. "reference": "b2da5009d9bacbd91d83486aa1f44c793a8c380d"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b2da5009d9bacbd91d83486aa1f44c793a8c380d",
  1858. "reference": "b2da5009d9bacbd91d83486aa1f44c793a8c380d",
  1859. "shasum": ""
  1860. },
  1861. "require": {
  1862. "php": ">=5.5.9"
  1863. },
  1864. "type": "library",
  1865. "extra": {
  1866. "branch-alias": {
  1867. "dev-master": "3.0-dev"
  1868. }
  1869. },
  1870. "autoload": {
  1871. "psr-4": {
  1872. "Symfony\\Component\\Filesystem\\": ""
  1873. },
  1874. "exclude-from-classmap": [
  1875. "/Tests/"
  1876. ]
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "Fabien Potencier",
  1885. "email": "fabien@symfony.com"
  1886. },
  1887. {
  1888. "name": "Symfony Community",
  1889. "homepage": "https://symfony.com/contributors"
  1890. }
  1891. ],
  1892. "description": "Symfony Filesystem Component",
  1893. "homepage": "https://symfony.com",
  1894. "time": "2016-07-20T05:43:46+00:00"
  1895. },
  1896. {
  1897. "name": "symfony/finder",
  1898. "version": "v2.8.42",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/symfony/finder.git",
  1902. "reference": "995cd7c28a0778cece02e2133b4d813dc509dfc3"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/symfony/finder/zipball/995cd7c28a0778cece02e2133b4d813dc509dfc3",
  1907. "reference": "995cd7c28a0778cece02e2133b4d813dc509dfc3",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "php": ">=5.3.9"
  1912. },
  1913. "type": "library",
  1914. "extra": {
  1915. "branch-alias": {
  1916. "dev-master": "2.8-dev"
  1917. }
  1918. },
  1919. "autoload": {
  1920. "psr-4": {
  1921. "Symfony\\Component\\Finder\\": ""
  1922. },
  1923. "exclude-from-classmap": [
  1924. "/Tests/"
  1925. ]
  1926. },
  1927. "notification-url": "https://packagist.org/downloads/",
  1928. "license": [
  1929. "MIT"
  1930. ],
  1931. "authors": [
  1932. {
  1933. "name": "Fabien Potencier",
  1934. "email": "fabien@symfony.com"
  1935. },
  1936. {
  1937. "name": "Symfony Community",
  1938. "homepage": "https://symfony.com/contributors"
  1939. }
  1940. ],
  1941. "description": "Symfony Finder Component",
  1942. "homepage": "https://symfony.com",
  1943. "time": "2018-06-19T11:07:17+00:00"
  1944. },
  1945. {
  1946. "name": "symfony/polyfill-ctype",
  1947. "version": "v1.8.0",
  1948. "source": {
  1949. "type": "git",
  1950. "url": "https://github.com/symfony/polyfill-ctype.git",
  1951. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae"
  1952. },
  1953. "dist": {
  1954. "type": "zip",
  1955. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  1956. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  1957. "shasum": ""
  1958. },
  1959. "require": {
  1960. "php": ">=5.3.3"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-master": "1.8-dev"
  1966. }
  1967. },
  1968. "autoload": {
  1969. "psr-4": {
  1970. "Symfony\\Polyfill\\Ctype\\": ""
  1971. },
  1972. "files": [
  1973. "bootstrap.php"
  1974. ]
  1975. },
  1976. "notification-url": "https://packagist.org/downloads/",
  1977. "license": [
  1978. "MIT"
  1979. ],
  1980. "authors": [
  1981. {
  1982. "name": "Symfony Community",
  1983. "homepage": "https://symfony.com/contributors"
  1984. },
  1985. {
  1986. "name": "Gert de Pagter",
  1987. "email": "BackEndTea@gmail.com"
  1988. }
  1989. ],
  1990. "description": "Symfony polyfill for ctype functions",
  1991. "homepage": "https://symfony.com",
  1992. "keywords": [
  1993. "compatibility",
  1994. "ctype",
  1995. "polyfill",
  1996. "portable"
  1997. ],
  1998. "time": "2018-04-30T19:57:29+00:00"
  1999. },
  2000. {
  2001. "name": "symfony/polyfill-mbstring",
  2002. "version": "v1.8.0",
  2003. "source": {
  2004. "type": "git",
  2005. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2006. "reference": "3296adf6a6454a050679cde90f95350ad604b171"
  2007. },
  2008. "dist": {
  2009. "type": "zip",
  2010. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171",
  2011. "reference": "3296adf6a6454a050679cde90f95350ad604b171",
  2012. "shasum": ""
  2013. },
  2014. "require": {
  2015. "php": ">=5.3.3"
  2016. },
  2017. "suggest": {
  2018. "ext-mbstring": "For best performance"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-master": "1.8-dev"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Symfony\\Polyfill\\Mbstring\\": ""
  2029. },
  2030. "files": [
  2031. "bootstrap.php"
  2032. ]
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Nicolas Grekas",
  2041. "email": "p@tchwork.com"
  2042. },
  2043. {
  2044. "name": "Symfony Community",
  2045. "homepage": "https://symfony.com/contributors"
  2046. }
  2047. ],
  2048. "description": "Symfony polyfill for the Mbstring extension",
  2049. "homepage": "https://symfony.com",
  2050. "keywords": [
  2051. "compatibility",
  2052. "mbstring",
  2053. "polyfill",
  2054. "portable",
  2055. "shim"
  2056. ],
  2057. "time": "2018-04-26T10:06:28+00:00"
  2058. },
  2059. {
  2060. "name": "symfony/process",
  2061. "version": "v2.8.42",
  2062. "source": {
  2063. "type": "git",
  2064. "url": "https://github.com/symfony/process.git",
  2065. "reference": "542d88b350c42750fdc14e73860ee96dd423e95d"
  2066. },
  2067. "dist": {
  2068. "type": "zip",
  2069. "url": "https://api.github.com/repos/symfony/process/zipball/542d88b350c42750fdc14e73860ee96dd423e95d",
  2070. "reference": "542d88b350c42750fdc14e73860ee96dd423e95d",
  2071. "shasum": ""
  2072. },
  2073. "require": {
  2074. "php": ">=5.3.9"
  2075. },
  2076. "type": "library",
  2077. "extra": {
  2078. "branch-alias": {
  2079. "dev-master": "2.8-dev"
  2080. }
  2081. },
  2082. "autoload": {
  2083. "psr-4": {
  2084. "Symfony\\Component\\Process\\": ""
  2085. },
  2086. "exclude-from-classmap": [
  2087. "/Tests/"
  2088. ]
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "MIT"
  2093. ],
  2094. "authors": [
  2095. {
  2096. "name": "Fabien Potencier",
  2097. "email": "fabien@symfony.com"
  2098. },
  2099. {
  2100. "name": "Symfony Community",
  2101. "homepage": "https://symfony.com/contributors"
  2102. }
  2103. ],
  2104. "description": "Symfony Process Component",
  2105. "homepage": "https://symfony.com",
  2106. "time": "2018-05-27T07:40:52+00:00"
  2107. },
  2108. {
  2109. "name": "symfony/stopwatch",
  2110. "version": "v2.8.42",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/symfony/stopwatch.git",
  2114. "reference": "57021208ad9830f8f8390c1a9d7bb390f32be89e"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/57021208ad9830f8f8390c1a9d7bb390f32be89e",
  2119. "reference": "57021208ad9830f8f8390c1a9d7bb390f32be89e",
  2120. "shasum": ""
  2121. },
  2122. "require": {
  2123. "php": ">=5.3.9"
  2124. },
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "2.8-dev"
  2129. }
  2130. },
  2131. "autoload": {
  2132. "psr-4": {
  2133. "Symfony\\Component\\Stopwatch\\": ""
  2134. },
  2135. "exclude-from-classmap": [
  2136. "/Tests/"
  2137. ]
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "MIT"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Fabien Potencier",
  2146. "email": "fabien@symfony.com"
  2147. },
  2148. {
  2149. "name": "Symfony Community",
  2150. "homepage": "https://symfony.com/contributors"
  2151. }
  2152. ],
  2153. "description": "Symfony Stopwatch Component",
  2154. "homepage": "https://symfony.com",
  2155. "time": "2018-01-03T07:36:31+00:00"
  2156. },
  2157. {
  2158. "name": "symfony/translation",
  2159. "version": "v3.0.9",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/symfony/translation.git",
  2163. "reference": "eee6c664853fd0576f21ae25725cfffeafe83f26"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://api.github.com/repos/symfony/translation/zipball/eee6c664853fd0576f21ae25725cfffeafe83f26",
  2168. "reference": "eee6c664853fd0576f21ae25725cfffeafe83f26",
  2169. "shasum": ""
  2170. },
  2171. "require": {
  2172. "php": ">=5.5.9",
  2173. "symfony/polyfill-mbstring": "~1.0"
  2174. },
  2175. "conflict": {
  2176. "symfony/config": "<2.8"
  2177. },
  2178. "require-dev": {
  2179. "psr/log": "~1.0",
  2180. "symfony/config": "~2.8|~3.0",
  2181. "symfony/intl": "~2.8|~3.0",
  2182. "symfony/yaml": "~2.8|~3.0"
  2183. },
  2184. "suggest": {
  2185. "psr/log": "To use logging capability in translator",
  2186. "symfony/config": "",
  2187. "symfony/yaml": ""
  2188. },
  2189. "type": "library",
  2190. "extra": {
  2191. "branch-alias": {
  2192. "dev-master": "3.0-dev"
  2193. }
  2194. },
  2195. "autoload": {
  2196. "psr-4": {
  2197. "Symfony\\Component\\Translation\\": ""
  2198. },
  2199. "exclude-from-classmap": [
  2200. "/Tests/"
  2201. ]
  2202. },
  2203. "notification-url": "https://packagist.org/downloads/",
  2204. "license": [
  2205. "MIT"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "Fabien Potencier",
  2210. "email": "fabien@symfony.com"
  2211. },
  2212. {
  2213. "name": "Symfony Community",
  2214. "homepage": "https://symfony.com/contributors"
  2215. }
  2216. ],
  2217. "description": "Symfony Translation Component",
  2218. "homepage": "https://symfony.com",
  2219. "time": "2016-07-30T07:22:48+00:00"
  2220. },
  2221. {
  2222. "name": "symfony/validator",
  2223. "version": "v2.8.42",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/symfony/validator.git",
  2227. "reference": "3fa2355675f1ebc074589b83478480745342c970"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/symfony/validator/zipball/3fa2355675f1ebc074589b83478480745342c970",
  2232. "reference": "3fa2355675f1ebc074589b83478480745342c970",
  2233. "shasum": ""
  2234. },
  2235. "require": {
  2236. "php": ">=5.3.9",
  2237. "symfony/polyfill-ctype": "~1.8",
  2238. "symfony/polyfill-mbstring": "~1.0",
  2239. "symfony/translation": "~2.4|~3.0.0"
  2240. },
  2241. "require-dev": {
  2242. "doctrine/annotations": "~1.0",
  2243. "doctrine/cache": "~1.0",
  2244. "egulias/email-validator": "^1.2.1",
  2245. "symfony/config": "~2.2|~3.0.0",
  2246. "symfony/expression-language": "~2.4|~3.0.0",
  2247. "symfony/http-foundation": "~2.3|~3.0.0",
  2248. "symfony/intl": "~2.7.25|^2.8.18|~3.2.5",
  2249. "symfony/property-access": "~2.3|~3.0.0",
  2250. "symfony/yaml": "^2.0.5|~3.0.0"
  2251. },
  2252. "suggest": {
  2253. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  2254. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  2255. "egulias/email-validator": "Strict (RFC compliant) email validation",
  2256. "symfony/config": "",
  2257. "symfony/expression-language": "For using the 2.4 Expression validator",
  2258. "symfony/http-foundation": "",
  2259. "symfony/intl": "",
  2260. "symfony/property-access": "For using the 2.4 Validator API",
  2261. "symfony/yaml": ""
  2262. },
  2263. "type": "library",
  2264. "extra": {
  2265. "branch-alias": {
  2266. "dev-master": "2.8-dev"
  2267. }
  2268. },
  2269. "autoload": {
  2270. "psr-4": {
  2271. "Symfony\\Component\\Validator\\": ""
  2272. },
  2273. "exclude-from-classmap": [
  2274. "/Tests/"
  2275. ]
  2276. },
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "MIT"
  2280. ],
  2281. "authors": [
  2282. {
  2283. "name": "Fabien Potencier",
  2284. "email": "fabien@symfony.com"
  2285. },
  2286. {
  2287. "name": "Symfony Community",
  2288. "homepage": "https://symfony.com/contributors"
  2289. }
  2290. ],
  2291. "description": "Symfony Validator Component",
  2292. "homepage": "https://symfony.com",
  2293. "time": "2018-06-19T08:02:14+00:00"
  2294. },
  2295. {
  2296. "name": "twig/twig",
  2297. "version": "v1.35.4",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/twigphp/Twig.git",
  2301. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  2306. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "php": ">=5.3.3",
  2311. "symfony/polyfill-ctype": "^1.8"
  2312. },
  2313. "require-dev": {
  2314. "psr/container": "^1.0",
  2315. "symfony/debug": "^2.7",
  2316. "symfony/phpunit-bridge": "^3.3"
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-master": "1.35-dev"
  2322. }
  2323. },
  2324. "autoload": {
  2325. "psr-0": {
  2326. "Twig_": "lib/"
  2327. },
  2328. "psr-4": {
  2329. "Twig\\": "src/"
  2330. }
  2331. },
  2332. "notification-url": "https://packagist.org/downloads/",
  2333. "license": [
  2334. "BSD-3-Clause"
  2335. ],
  2336. "authors": [
  2337. {
  2338. "name": "Fabien Potencier",
  2339. "email": "fabien@symfony.com",
  2340. "homepage": "http://fabien.potencier.org",
  2341. "role": "Lead Developer"
  2342. },
  2343. {
  2344. "name": "Armin Ronacher",
  2345. "email": "armin.ronacher@active-4.com",
  2346. "role": "Project Founder"
  2347. },
  2348. {
  2349. "name": "Twig Team",
  2350. "homepage": "https://twig.symfony.com/contributors",
  2351. "role": "Contributors"
  2352. }
  2353. ],
  2354. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2355. "homepage": "https://twig.symfony.com",
  2356. "keywords": [
  2357. "templating"
  2358. ],
  2359. "time": "2018-07-13T07:12:17+00:00"
  2360. },
  2361. {
  2362. "name": "zendframework/zend-cache",
  2363. "version": "2.8.2",
  2364. "source": {
  2365. "type": "git",
  2366. "url": "https://github.com/zendframework/zend-cache.git",
  2367. "reference": "4983dff629956490c78b88adcc8ece4711d7d8a3"
  2368. },
  2369. "dist": {
  2370. "type": "zip",
  2371. "url": "https://api.github.com/repos/zendframework/zend-cache/zipball/4983dff629956490c78b88adcc8ece4711d7d8a3",
  2372. "reference": "4983dff629956490c78b88adcc8ece4711d7d8a3",
  2373. "shasum": ""
  2374. },
  2375. "require": {
  2376. "php": "^5.6 || ^7.0",
  2377. "psr/cache": "^1.0",
  2378. "psr/simple-cache": "^1.0",
  2379. "zendframework/zend-eventmanager": "^2.6.3 || ^3.2",
  2380. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  2381. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  2382. },
  2383. "provide": {
  2384. "psr/cache-implementation": "1.0",
  2385. "psr/simple-cache-implementation": "1.0"
  2386. },
  2387. "require-dev": {
  2388. "cache/integration-tests": "^0.16",
  2389. "phpbench/phpbench": "^0.13",
  2390. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2391. "zendframework/zend-coding-standard": "~1.0.0",
  2392. "zendframework/zend-serializer": "^2.6",
  2393. "zendframework/zend-session": "^2.7.4"
  2394. },
  2395. "suggest": {
  2396. "ext-apc": "APC or compatible extension, to use the APC storage adapter",
  2397. "ext-apcu": "APCU >= 5.1.0, to use the APCu storage adapter",
  2398. "ext-dba": "DBA, to use the DBA storage adapter",
  2399. "ext-memcache": "Memcache >= 2.0.0 to use the Memcache storage adapter",
  2400. "ext-memcached": "Memcached >= 1.0.0 to use the Memcached storage adapter",
  2401. "ext-mongo": "Mongo, to use MongoDb storage adapter",
  2402. "ext-mongodb": "MongoDB, to use the ExtMongoDb storage adapter",
  2403. "ext-redis": "Redis, to use Redis storage adapter",
  2404. "ext-wincache": "WinCache, to use the WinCache storage adapter",
  2405. "ext-xcache": "XCache, to use the XCache storage adapter",
  2406. "mongodb/mongodb": "Required for use with the ext-mongodb adapter",
  2407. "mongofill/mongofill": "Alternative to ext-mongo - a pure PHP implementation designed as a drop in replacement",
  2408. "zendframework/zend-serializer": "Zend\\Serializer component",
  2409. "zendframework/zend-session": "Zend\\Session component"
  2410. },
  2411. "type": "library",
  2412. "extra": {
  2413. "branch-alias": {
  2414. "dev-master": "2.8.x-dev",
  2415. "dev-develop": "2.9.x-dev"
  2416. },
  2417. "zf": {
  2418. "component": "Zend\\Cache",
  2419. "config-provider": "Zend\\Cache\\ConfigProvider"
  2420. }
  2421. },
  2422. "autoload": {
  2423. "files": [
  2424. "autoload/patternPluginManagerPolyfill.php"
  2425. ],
  2426. "psr-4": {
  2427. "Zend\\Cache\\": "src/"
  2428. }
  2429. },
  2430. "notification-url": "https://packagist.org/downloads/",
  2431. "license": [
  2432. "BSD-3-Clause"
  2433. ],
  2434. "description": "Caching implementation with a variety of storage options, as well as codified caching strategies for callbacks, classes, and output",
  2435. "keywords": [
  2436. "ZendFramework",
  2437. "cache",
  2438. "psr-16",
  2439. "psr-6",
  2440. "zf"
  2441. ],
  2442. "time": "2018-05-01T21:58:00+00:00"
  2443. },
  2444. {
  2445. "name": "zendframework/zend-config",
  2446. "version": "2.6.0",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://github.com/zendframework/zend-config.git",
  2450. "reference": "2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://api.github.com/repos/zendframework/zend-config/zipball/2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d",
  2455. "reference": "2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d",
  2456. "shasum": ""
  2457. },
  2458. "require": {
  2459. "php": "^5.5 || ^7.0",
  2460. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  2461. },
  2462. "require-dev": {
  2463. "fabpot/php-cs-fixer": "1.7.*",
  2464. "phpunit/phpunit": "~4.0",
  2465. "zendframework/zend-filter": "^2.6",
  2466. "zendframework/zend-i18n": "^2.5",
  2467. "zendframework/zend-json": "^2.6.1",
  2468. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  2469. },
  2470. "suggest": {
  2471. "zendframework/zend-filter": "Zend\\Filter component",
  2472. "zendframework/zend-i18n": "Zend\\I18n component",
  2473. "zendframework/zend-json": "Zend\\Json to use the Json reader or writer classes",
  2474. "zendframework/zend-servicemanager": "Zend\\ServiceManager for use with the Config Factory to retrieve reader and writer instances"
  2475. },
  2476. "type": "library",
  2477. "extra": {
  2478. "branch-alias": {
  2479. "dev-master": "2.6-dev",
  2480. "dev-develop": "2.7-dev"
  2481. }
  2482. },
  2483. "autoload": {
  2484. "psr-4": {
  2485. "Zend\\Config\\": "src/"
  2486. }
  2487. },
  2488. "notification-url": "https://packagist.org/downloads/",
  2489. "license": [
  2490. "BSD-3-Clause"
  2491. ],
  2492. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  2493. "homepage": "https://github.com/zendframework/zend-config",
  2494. "keywords": [
  2495. "config",
  2496. "zf2"
  2497. ],
  2498. "time": "2016-02-04T23:01:10+00:00"
  2499. },
  2500. {
  2501. "name": "zendframework/zend-eventmanager",
  2502. "version": "3.2.1",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/zendframework/zend-eventmanager.git",
  2506. "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
  2511. "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "php": "^5.6 || ^7.0"
  2516. },
  2517. "require-dev": {
  2518. "athletic/athletic": "^0.1",
  2519. "container-interop/container-interop": "^1.1.0",
  2520. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2521. "zendframework/zend-coding-standard": "~1.0.0",
  2522. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  2523. },
  2524. "suggest": {
  2525. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  2526. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  2527. },
  2528. "type": "library",
  2529. "extra": {
  2530. "branch-alias": {
  2531. "dev-master": "3.2-dev",
  2532. "dev-develop": "3.3-dev"
  2533. }
  2534. },
  2535. "autoload": {
  2536. "psr-4": {
  2537. "Zend\\EventManager\\": "src/"
  2538. }
  2539. },
  2540. "notification-url": "https://packagist.org/downloads/",
  2541. "license": [
  2542. "BSD-3-Clause"
  2543. ],
  2544. "description": "Trigger and listen to events within a PHP application",
  2545. "homepage": "https://github.com/zendframework/zend-eventmanager",
  2546. "keywords": [
  2547. "event",
  2548. "eventmanager",
  2549. "events",
  2550. "zf2"
  2551. ],
  2552. "time": "2018-04-25T15:33:34+00:00"
  2553. },
  2554. {
  2555. "name": "zendframework/zend-filter",
  2556. "version": "2.8.0",
  2557. "source": {
  2558. "type": "git",
  2559. "url": "https://github.com/zendframework/zend-filter.git",
  2560. "reference": "7b997dbe79459f1652deccc8786d7407fb66caa9"
  2561. },
  2562. "dist": {
  2563. "type": "zip",
  2564. "url": "https://api.github.com/repos/zendframework/zend-filter/zipball/7b997dbe79459f1652deccc8786d7407fb66caa9",
  2565. "reference": "7b997dbe79459f1652deccc8786d7407fb66caa9",
  2566. "shasum": ""
  2567. },
  2568. "require": {
  2569. "php": "^5.6 || ^7.0",
  2570. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  2571. },
  2572. "conflict": {
  2573. "zendframework/zend-validator": "<2.10.1"
  2574. },
  2575. "require-dev": {
  2576. "pear/archive_tar": "^1.4.3",
  2577. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  2578. "zendframework/zend-coding-standard": "~1.0.0",
  2579. "zendframework/zend-crypt": "^3.2.1",
  2580. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  2581. "zendframework/zend-uri": "^2.6"
  2582. },
  2583. "suggest": {
  2584. "zendframework/zend-crypt": "Zend\\Crypt component, for encryption filters",
  2585. "zendframework/zend-i18n": "Zend\\I18n component for filters depending on i18n functionality",
  2586. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for using the filter chain functionality",
  2587. "zendframework/zend-uri": "Zend\\Uri component, for the UriNormalize filter"
  2588. },
  2589. "type": "library",
  2590. "extra": {
  2591. "branch-alias": {
  2592. "dev-master": "2.8.x-dev",
  2593. "dev-develop": "2.9.x-dev"
  2594. },
  2595. "zf": {
  2596. "component": "Zend\\Filter",
  2597. "config-provider": "Zend\\Filter\\ConfigProvider"
  2598. }
  2599. },
  2600. "autoload": {
  2601. "psr-4": {
  2602. "Zend\\Filter\\": "src/"
  2603. }
  2604. },
  2605. "notification-url": "https://packagist.org/downloads/",
  2606. "license": [
  2607. "BSD-3-Clause"
  2608. ],
  2609. "description": "provides a set of commonly needed data filters",
  2610. "keywords": [
  2611. "ZendFramework",
  2612. "filter",
  2613. "zf"
  2614. ],
  2615. "time": "2018-04-11T16:20:04+00:00"
  2616. },
  2617. {
  2618. "name": "zendframework/zend-hydrator",
  2619. "version": "1.1.0",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://github.com/zendframework/zend-hydrator.git",
  2623. "reference": "22652e1661a5a10b3f564cf7824a2206cf5a4a65"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://api.github.com/repos/zendframework/zend-hydrator/zipball/22652e1661a5a10b3f564cf7824a2206cf5a4a65",
  2628. "reference": "22652e1661a5a10b3f564cf7824a2206cf5a4a65",
  2629. "shasum": ""
  2630. },
  2631. "require": {
  2632. "php": "^5.5 || ^7.0",
  2633. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  2634. },
  2635. "require-dev": {
  2636. "phpunit/phpunit": "~4.0",
  2637. "squizlabs/php_codesniffer": "^2.0@dev",
  2638. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  2639. "zendframework/zend-filter": "^2.6",
  2640. "zendframework/zend-inputfilter": "^2.6",
  2641. "zendframework/zend-serializer": "^2.6.1",
  2642. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  2643. },
  2644. "suggest": {
  2645. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0, to support aggregate hydrator usage",
  2646. "zendframework/zend-filter": "^2.6, to support naming strategy hydrator usage",
  2647. "zendframework/zend-serializer": "^2.6.1, to use the SerializableStrategy",
  2648. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3, to support hydrator plugin manager usage"
  2649. },
  2650. "type": "library",
  2651. "extra": {
  2652. "branch-alias": {
  2653. "dev-release-1.0": "1.0-dev",
  2654. "dev-release-1.1": "1.1-dev",
  2655. "dev-master": "2.0-dev",
  2656. "dev-develop": "2.1-dev"
  2657. }
  2658. },
  2659. "autoload": {
  2660. "psr-4": {
  2661. "Zend\\Hydrator\\": "src/"
  2662. }
  2663. },
  2664. "notification-url": "https://packagist.org/downloads/",
  2665. "license": [
  2666. "BSD-3-Clause"
  2667. ],
  2668. "homepage": "https://github.com/zendframework/zend-hydrator",
  2669. "keywords": [
  2670. "hydrator",
  2671. "zf2"
  2672. ],
  2673. "time": "2016-02-18T22:38:26+00:00"
  2674. },
  2675. {
  2676. "name": "zendframework/zend-i18n",
  2677. "version": "2.9.0",
  2678. "source": {
  2679. "type": "git",
  2680. "url": "https://github.com/zendframework/zend-i18n.git",
  2681. "reference": "6d69af5a04e1a4de7250043cb1322f077a0cdb7f"
  2682. },
  2683. "dist": {
  2684. "type": "zip",
  2685. "url": "https://api.github.com/repos/zendframework/zend-i18n/zipball/6d69af5a04e1a4de7250043cb1322f077a0cdb7f",
  2686. "reference": "6d69af5a04e1a4de7250043cb1322f077a0cdb7f",
  2687. "shasum": ""
  2688. },
  2689. "require": {
  2690. "php": "^5.6 || ^7.0",
  2691. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  2692. },
  2693. "require-dev": {
  2694. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2695. "zendframework/zend-cache": "^2.6.1",
  2696. "zendframework/zend-coding-standard": "~1.0.0",
  2697. "zendframework/zend-config": "^2.6",
  2698. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  2699. "zendframework/zend-filter": "^2.6.1",
  2700. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  2701. "zendframework/zend-validator": "^2.6",
  2702. "zendframework/zend-view": "^2.6.3"
  2703. },
  2704. "suggest": {
  2705. "ext-intl": "Required for most features of Zend\\I18n; included in default builds of PHP",
  2706. "zendframework/zend-cache": "Zend\\Cache component",
  2707. "zendframework/zend-config": "Zend\\Config component",
  2708. "zendframework/zend-eventmanager": "You should install this package to use the events in the translator",
  2709. "zendframework/zend-filter": "You should install this package to use the provided filters",
  2710. "zendframework/zend-i18n-resources": "Translation resources",
  2711. "zendframework/zend-servicemanager": "Zend\\ServiceManager component",
  2712. "zendframework/zend-validator": "You should install this package to use the provided validators",
  2713. "zendframework/zend-view": "You should install this package to use the provided view helpers"
  2714. },
  2715. "type": "library",
  2716. "extra": {
  2717. "branch-alias": {
  2718. "dev-master": "2.9.x-dev",
  2719. "dev-develop": "2.10.x-dev"
  2720. },
  2721. "zf": {
  2722. "component": "Zend\\I18n",
  2723. "config-provider": "Zend\\I18n\\ConfigProvider"
  2724. }
  2725. },
  2726. "autoload": {
  2727. "psr-4": {
  2728. "Zend\\I18n\\": "src/"
  2729. }
  2730. },
  2731. "notification-url": "https://packagist.org/downloads/",
  2732. "license": [
  2733. "BSD-3-Clause"
  2734. ],
  2735. "description": "Provide translations for your application, and filter and validate internationalized values",
  2736. "keywords": [
  2737. "ZendFramework",
  2738. "i18n",
  2739. "zf"
  2740. ],
  2741. "time": "2018-05-16T16:39:13+00:00"
  2742. },
  2743. {
  2744. "name": "zendframework/zend-json",
  2745. "version": "3.1.0",
  2746. "source": {
  2747. "type": "git",
  2748. "url": "https://github.com/zendframework/zend-json.git",
  2749. "reference": "4dd940e8e6f32f1d36ea6b0677ea57c540c7c19c"
  2750. },
  2751. "dist": {
  2752. "type": "zip",
  2753. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/4dd940e8e6f32f1d36ea6b0677ea57c540c7c19c",
  2754. "reference": "4dd940e8e6f32f1d36ea6b0677ea57c540c7c19c",
  2755. "shasum": ""
  2756. },
  2757. "require": {
  2758. "php": "^5.6 || ^7.0"
  2759. },
  2760. "require-dev": {
  2761. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  2762. "zendframework/zend-coding-standard": "~1.0.0",
  2763. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  2764. },
  2765. "suggest": {
  2766. "zendframework/zend-json-server": "For implementing JSON-RPC servers",
  2767. "zendframework/zend-xml2json": "For converting XML documents to JSON"
  2768. },
  2769. "type": "library",
  2770. "extra": {
  2771. "branch-alias": {
  2772. "dev-master": "3.1.x-dev",
  2773. "dev-develop": "3.2.x-dev"
  2774. }
  2775. },
  2776. "autoload": {
  2777. "psr-4": {
  2778. "Zend\\Json\\": "src/"
  2779. }
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "BSD-3-Clause"
  2784. ],
  2785. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  2786. "keywords": [
  2787. "ZendFramework",
  2788. "json",
  2789. "zf"
  2790. ],
  2791. "time": "2018-01-04T17:51:34+00:00"
  2792. },
  2793. {
  2794. "name": "zendframework/zend-serializer",
  2795. "version": "2.9.0",
  2796. "source": {
  2797. "type": "git",
  2798. "url": "https://github.com/zendframework/zend-serializer.git",
  2799. "reference": "0172690db48d8935edaf625c4cba38b79719892c"
  2800. },
  2801. "dist": {
  2802. "type": "zip",
  2803. "url": "https://api.github.com/repos/zendframework/zend-serializer/zipball/0172690db48d8935edaf625c4cba38b79719892c",
  2804. "reference": "0172690db48d8935edaf625c4cba38b79719892c",
  2805. "shasum": ""
  2806. },
  2807. "require": {
  2808. "php": "^5.6 || ^7.0",
  2809. "zendframework/zend-json": "^2.5 || ^3.0",
  2810. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  2811. },
  2812. "require-dev": {
  2813. "phpunit/phpunit": "^5.7.25 || ^6.4.4",
  2814. "zendframework/zend-coding-standard": "~1.0.0",
  2815. "zendframework/zend-math": "^2.6 || ^3.0",
  2816. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  2817. },
  2818. "suggest": {
  2819. "zendframework/zend-math": "(^2.6 || ^3.0) To support Python Pickle serialization",
  2820. "zendframework/zend-servicemanager": "(^2.7.5 || ^3.0.3) To support plugin manager support"
  2821. },
  2822. "type": "library",
  2823. "extra": {
  2824. "branch-alias": {
  2825. "dev-master": "2.9.x-dev",
  2826. "dev-develop": "2.10.x-dev"
  2827. },
  2828. "zf": {
  2829. "component": "Zend\\Serializer",
  2830. "config-provider": "Zend\\Serializer\\ConfigProvider"
  2831. }
  2832. },
  2833. "autoload": {
  2834. "psr-4": {
  2835. "Zend\\Serializer\\": "src/"
  2836. }
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "BSD-3-Clause"
  2841. ],
  2842. "description": "provides an adapter based interface to simply generate storable representation of PHP types by different facilities, and recover",
  2843. "keywords": [
  2844. "ZendFramework",
  2845. "serializer",
  2846. "zf"
  2847. ],
  2848. "time": "2018-05-14T18:45:18+00:00"
  2849. },
  2850. {
  2851. "name": "zendframework/zend-servicemanager",
  2852. "version": "2.7.11",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/zendframework/zend-servicemanager.git",
  2856. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  2861. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  2862. "shasum": ""
  2863. },
  2864. "require": {
  2865. "container-interop/container-interop": "~1.0",
  2866. "php": "^5.5 || ^7.0"
  2867. },
  2868. "require-dev": {
  2869. "athletic/athletic": "dev-master",
  2870. "fabpot/php-cs-fixer": "1.7.*",
  2871. "phpunit/phpunit": "~4.0",
  2872. "zendframework/zend-di": "~2.5",
  2873. "zendframework/zend-mvc": "~2.5"
  2874. },
  2875. "suggest": {
  2876. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  2877. "zendframework/zend-di": "Zend\\Di component"
  2878. },
  2879. "type": "library",
  2880. "extra": {
  2881. "branch-alias": {
  2882. "dev-master": "2.7-dev",
  2883. "dev-develop": "3.0-dev"
  2884. }
  2885. },
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Zend\\ServiceManager\\": "src/"
  2889. }
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "BSD-3-Clause"
  2894. ],
  2895. "homepage": "https://github.com/zendframework/zend-servicemanager",
  2896. "keywords": [
  2897. "servicemanager",
  2898. "zf2"
  2899. ],
  2900. "time": "2018-06-22T14:49:54+00:00"
  2901. },
  2902. {
  2903. "name": "zendframework/zend-stdlib",
  2904. "version": "2.7.7",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/zendframework/zend-stdlib.git",
  2908. "reference": "0e44eb46788f65e09e077eb7f44d2659143bcc1f"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/0e44eb46788f65e09e077eb7f44d2659143bcc1f",
  2913. "reference": "0e44eb46788f65e09e077eb7f44d2659143bcc1f",
  2914. "shasum": ""
  2915. },
  2916. "require": {
  2917. "php": "^5.5 || ^7.0",
  2918. "zendframework/zend-hydrator": "~1.1"
  2919. },
  2920. "require-dev": {
  2921. "athletic/athletic": "~0.1",
  2922. "fabpot/php-cs-fixer": "1.7.*",
  2923. "phpunit/phpunit": "~4.0",
  2924. "zendframework/zend-config": "~2.5",
  2925. "zendframework/zend-eventmanager": "~2.5",
  2926. "zendframework/zend-filter": "~2.5",
  2927. "zendframework/zend-inputfilter": "~2.5",
  2928. "zendframework/zend-serializer": "~2.5",
  2929. "zendframework/zend-servicemanager": "~2.5"
  2930. },
  2931. "suggest": {
  2932. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  2933. "zendframework/zend-filter": "To support naming strategy hydrator usage",
  2934. "zendframework/zend-serializer": "Zend\\Serializer component",
  2935. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  2936. },
  2937. "type": "library",
  2938. "extra": {
  2939. "branch-alias": {
  2940. "dev-release-2.7": "2.7-dev",
  2941. "dev-master": "3.0-dev",
  2942. "dev-develop": "3.1-dev"
  2943. }
  2944. },
  2945. "autoload": {
  2946. "psr-4": {
  2947. "Zend\\Stdlib\\": "src/"
  2948. }
  2949. },
  2950. "notification-url": "https://packagist.org/downloads/",
  2951. "license": [
  2952. "BSD-3-Clause"
  2953. ],
  2954. "homepage": "https://github.com/zendframework/zend-stdlib",
  2955. "keywords": [
  2956. "stdlib",
  2957. "zf2"
  2958. ],
  2959. "time": "2016-04-12T21:17:31+00:00"
  2960. },
  2961. {
  2962. "name": "zetacomponents/base",
  2963. "version": "1.9.1",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://github.com/zetacomponents/Base.git",
  2967. "reference": "489e20235989ddc97fdd793af31ac803972454f1"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://api.github.com/repos/zetacomponents/Base/zipball/489e20235989ddc97fdd793af31ac803972454f1",
  2972. "reference": "489e20235989ddc97fdd793af31ac803972454f1",
  2973. "shasum": ""
  2974. },
  2975. "require-dev": {
  2976. "phpunit/phpunit": "~5.7",
  2977. "zetacomponents/unit-test": "*"
  2978. },
  2979. "type": "library",
  2980. "autoload": {
  2981. "classmap": [
  2982. "src"
  2983. ]
  2984. },
  2985. "notification-url": "https://packagist.org/downloads/",
  2986. "license": [
  2987. "Apache-2.0"
  2988. ],
  2989. "authors": [
  2990. {
  2991. "name": "Sergey Alexeev"
  2992. },
  2993. {
  2994. "name": "Sebastian Bergmann"
  2995. },
  2996. {
  2997. "name": "Jan Borsodi"
  2998. },
  2999. {
  3000. "name": "Raymond Bosman"
  3001. },
  3002. {
  3003. "name": "Frederik Holljen"
  3004. },
  3005. {
  3006. "name": "Kore Nordmann"
  3007. },
  3008. {
  3009. "name": "Derick Rethans"
  3010. },
  3011. {
  3012. "name": "Vadym Savchuk"
  3013. },
  3014. {
  3015. "name": "Tobias Schlitt"
  3016. },
  3017. {
  3018. "name": "Alexandru Stanoi"
  3019. }
  3020. ],
  3021. "description": "The Base package provides the basic infrastructure that all packages rely on. Therefore every component relies on this package.",
  3022. "homepage": "https://github.com/zetacomponents",
  3023. "time": "2017-11-28T11:30:00+00:00"
  3024. },
  3025. {
  3026. "name": "zetacomponents/document",
  3027. "version": "1.3.1",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/zetacomponents/Document.git",
  3031. "reference": "688abfde573cf3fe0730f82538fbd7aa9fc95bc8"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/zetacomponents/Document/zipball/688abfde573cf3fe0730f82538fbd7aa9fc95bc8",
  3036. "reference": "688abfde573cf3fe0730f82538fbd7aa9fc95bc8",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "zetacomponents/base": "*"
  3041. },
  3042. "require-dev": {
  3043. "zetacomponents/unit-test": "dev-master"
  3044. },
  3045. "type": "library",
  3046. "autoload": {
  3047. "classmap": [
  3048. "src"
  3049. ]
  3050. },
  3051. "notification-url": "https://packagist.org/downloads/",
  3052. "license": [
  3053. "Apache-2.0"
  3054. ],
  3055. "authors": [
  3056. {
  3057. "name": "Sebastian Bergmann"
  3058. },
  3059. {
  3060. "name": "Kore Nordmann"
  3061. },
  3062. {
  3063. "name": "Derick Rethans"
  3064. },
  3065. {
  3066. "name": "Tobias Schlitt"
  3067. },
  3068. {
  3069. "name": "Alexandru Stanoi"
  3070. }
  3071. ],
  3072. "description": "The Document components provides a general conversion framework for different semantic document markup languages like XHTML, Docbook, RST and similar.",
  3073. "homepage": "https://github.com/zetacomponents",
  3074. "time": "2013-12-19T11:40:00+00:00"
  3075. }
  3076. ],
  3077. "packages-dev": [
  3078. {
  3079. "name": "myclabs/deep-copy",
  3080. "version": "1.7.0",
  3081. "source": {
  3082. "type": "git",
  3083. "url": "https://github.com/myclabs/DeepCopy.git",
  3084. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  3085. },
  3086. "dist": {
  3087. "type": "zip",
  3088. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  3089. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  3090. "shasum": ""
  3091. },
  3092. "require": {
  3093. "php": "^5.6 || ^7.0"
  3094. },
  3095. "require-dev": {
  3096. "doctrine/collections": "^1.0",
  3097. "doctrine/common": "^2.6",
  3098. "phpunit/phpunit": "^4.1"
  3099. },
  3100. "type": "library",
  3101. "autoload": {
  3102. "psr-4": {
  3103. "DeepCopy\\": "src/DeepCopy/"
  3104. },
  3105. "files": [
  3106. "src/DeepCopy/deep_copy.php"
  3107. ]
  3108. },
  3109. "notification-url": "https://packagist.org/downloads/",
  3110. "license": [
  3111. "MIT"
  3112. ],
  3113. "description": "Create deep copies (clones) of your objects",
  3114. "keywords": [
  3115. "clone",
  3116. "copy",
  3117. "duplicate",
  3118. "object",
  3119. "object graph"
  3120. ],
  3121. "time": "2017-10-19T19:58:43+00:00"
  3122. },
  3123. {
  3124. "name": "phpspec/prophecy",
  3125. "version": "1.7.6",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://github.com/phpspec/prophecy.git",
  3129. "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
  3134. "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
  3135. "shasum": ""
  3136. },
  3137. "require": {
  3138. "doctrine/instantiator": "^1.0.2",
  3139. "php": "^5.3|^7.0",
  3140. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  3141. "sebastian/comparator": "^1.1|^2.0|^3.0",
  3142. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  3143. },
  3144. "require-dev": {
  3145. "phpspec/phpspec": "^2.5|^3.2",
  3146. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  3147. },
  3148. "type": "library",
  3149. "extra": {
  3150. "branch-alias": {
  3151. "dev-master": "1.7.x-dev"
  3152. }
  3153. },
  3154. "autoload": {
  3155. "psr-0": {
  3156. "Prophecy\\": "src/"
  3157. }
  3158. },
  3159. "notification-url": "https://packagist.org/downloads/",
  3160. "license": [
  3161. "MIT"
  3162. ],
  3163. "authors": [
  3164. {
  3165. "name": "Konstantin Kudryashov",
  3166. "email": "ever.zet@gmail.com",
  3167. "homepage": "http://everzet.com"
  3168. },
  3169. {
  3170. "name": "Marcello Duarte",
  3171. "email": "marcello.duarte@gmail.com"
  3172. }
  3173. ],
  3174. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3175. "homepage": "https://github.com/phpspec/prophecy",
  3176. "keywords": [
  3177. "Double",
  3178. "Dummy",
  3179. "fake",
  3180. "mock",
  3181. "spy",
  3182. "stub"
  3183. ],
  3184. "time": "2018-04-18T13:57:24+00:00"
  3185. },
  3186. {
  3187. "name": "phpunit/php-code-coverage",
  3188. "version": "4.0.8",
  3189. "source": {
  3190. "type": "git",
  3191. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3192. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
  3193. },
  3194. "dist": {
  3195. "type": "zip",
  3196. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  3197. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  3198. "shasum": ""
  3199. },
  3200. "require": {
  3201. "ext-dom": "*",
  3202. "ext-xmlwriter": "*",
  3203. "php": "^5.6 || ^7.0",
  3204. "phpunit/php-file-iterator": "^1.3",
  3205. "phpunit/php-text-template": "^1.2",
  3206. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  3207. "sebastian/code-unit-reverse-lookup": "^1.0",
  3208. "sebastian/environment": "^1.3.2 || ^2.0",
  3209. "sebastian/version": "^1.0 || ^2.0"
  3210. },
  3211. "require-dev": {
  3212. "ext-xdebug": "^2.1.4",
  3213. "phpunit/phpunit": "^5.7"
  3214. },
  3215. "suggest": {
  3216. "ext-xdebug": "^2.5.1"
  3217. },
  3218. "type": "library",
  3219. "extra": {
  3220. "branch-alias": {
  3221. "dev-master": "4.0.x-dev"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "classmap": [
  3226. "src/"
  3227. ]
  3228. },
  3229. "notification-url": "https://packagist.org/downloads/",
  3230. "license": [
  3231. "BSD-3-Clause"
  3232. ],
  3233. "authors": [
  3234. {
  3235. "name": "Sebastian Bergmann",
  3236. "email": "sb@sebastian-bergmann.de",
  3237. "role": "lead"
  3238. }
  3239. ],
  3240. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3241. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3242. "keywords": [
  3243. "coverage",
  3244. "testing",
  3245. "xunit"
  3246. ],
  3247. "time": "2017-04-02T07:44:40+00:00"
  3248. },
  3249. {
  3250. "name": "phpunit/php-file-iterator",
  3251. "version": "1.4.5",
  3252. "source": {
  3253. "type": "git",
  3254. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3255. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  3256. },
  3257. "dist": {
  3258. "type": "zip",
  3259. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3260. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3261. "shasum": ""
  3262. },
  3263. "require": {
  3264. "php": ">=5.3.3"
  3265. },
  3266. "type": "library",
  3267. "extra": {
  3268. "branch-alias": {
  3269. "dev-master": "1.4.x-dev"
  3270. }
  3271. },
  3272. "autoload": {
  3273. "classmap": [
  3274. "src/"
  3275. ]
  3276. },
  3277. "notification-url": "https://packagist.org/downloads/",
  3278. "license": [
  3279. "BSD-3-Clause"
  3280. ],
  3281. "authors": [
  3282. {
  3283. "name": "Sebastian Bergmann",
  3284. "email": "sb@sebastian-bergmann.de",
  3285. "role": "lead"
  3286. }
  3287. ],
  3288. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3289. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3290. "keywords": [
  3291. "filesystem",
  3292. "iterator"
  3293. ],
  3294. "time": "2017-11-27T13:52:08+00:00"
  3295. },
  3296. {
  3297. "name": "phpunit/php-text-template",
  3298. "version": "1.2.1",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3302. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3307. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3308. "shasum": ""
  3309. },
  3310. "require": {
  3311. "php": ">=5.3.3"
  3312. },
  3313. "type": "library",
  3314. "autoload": {
  3315. "classmap": [
  3316. "src/"
  3317. ]
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "BSD-3-Clause"
  3322. ],
  3323. "authors": [
  3324. {
  3325. "name": "Sebastian Bergmann",
  3326. "email": "sebastian@phpunit.de",
  3327. "role": "lead"
  3328. }
  3329. ],
  3330. "description": "Simple template engine.",
  3331. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3332. "keywords": [
  3333. "template"
  3334. ],
  3335. "time": "2015-06-21T13:50:34+00:00"
  3336. },
  3337. {
  3338. "name": "phpunit/php-timer",
  3339. "version": "1.0.9",
  3340. "source": {
  3341. "type": "git",
  3342. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3343. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  3344. },
  3345. "dist": {
  3346. "type": "zip",
  3347. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3348. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3349. "shasum": ""
  3350. },
  3351. "require": {
  3352. "php": "^5.3.3 || ^7.0"
  3353. },
  3354. "require-dev": {
  3355. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3356. },
  3357. "type": "library",
  3358. "extra": {
  3359. "branch-alias": {
  3360. "dev-master": "1.0-dev"
  3361. }
  3362. },
  3363. "autoload": {
  3364. "classmap": [
  3365. "src/"
  3366. ]
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "BSD-3-Clause"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Sebastian Bergmann",
  3375. "email": "sb@sebastian-bergmann.de",
  3376. "role": "lead"
  3377. }
  3378. ],
  3379. "description": "Utility class for timing",
  3380. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3381. "keywords": [
  3382. "timer"
  3383. ],
  3384. "time": "2017-02-26T11:10:40+00:00"
  3385. },
  3386. {
  3387. "name": "phpunit/php-token-stream",
  3388. "version": "1.4.12",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3392. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  3397. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  3398. "shasum": ""
  3399. },
  3400. "require": {
  3401. "ext-tokenizer": "*",
  3402. "php": ">=5.3.3"
  3403. },
  3404. "require-dev": {
  3405. "phpunit/phpunit": "~4.2"
  3406. },
  3407. "type": "library",
  3408. "extra": {
  3409. "branch-alias": {
  3410. "dev-master": "1.4-dev"
  3411. }
  3412. },
  3413. "autoload": {
  3414. "classmap": [
  3415. "src/"
  3416. ]
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "BSD-3-Clause"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "Sebastian Bergmann",
  3425. "email": "sebastian@phpunit.de"
  3426. }
  3427. ],
  3428. "description": "Wrapper around PHP's tokenizer extension.",
  3429. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3430. "keywords": [
  3431. "tokenizer"
  3432. ],
  3433. "time": "2017-12-04T08:55:13+00:00"
  3434. },
  3435. {
  3436. "name": "phpunit/phpunit",
  3437. "version": "5.7.27",
  3438. "source": {
  3439. "type": "git",
  3440. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3441. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
  3442. },
  3443. "dist": {
  3444. "type": "zip",
  3445. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  3446. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  3447. "shasum": ""
  3448. },
  3449. "require": {
  3450. "ext-dom": "*",
  3451. "ext-json": "*",
  3452. "ext-libxml": "*",
  3453. "ext-mbstring": "*",
  3454. "ext-xml": "*",
  3455. "myclabs/deep-copy": "~1.3",
  3456. "php": "^5.6 || ^7.0",
  3457. "phpspec/prophecy": "^1.6.2",
  3458. "phpunit/php-code-coverage": "^4.0.4",
  3459. "phpunit/php-file-iterator": "~1.4",
  3460. "phpunit/php-text-template": "~1.2",
  3461. "phpunit/php-timer": "^1.0.6",
  3462. "phpunit/phpunit-mock-objects": "^3.2",
  3463. "sebastian/comparator": "^1.2.4",
  3464. "sebastian/diff": "^1.4.3",
  3465. "sebastian/environment": "^1.3.4 || ^2.0",
  3466. "sebastian/exporter": "~2.0",
  3467. "sebastian/global-state": "^1.1",
  3468. "sebastian/object-enumerator": "~2.0",
  3469. "sebastian/resource-operations": "~1.0",
  3470. "sebastian/version": "^1.0.6|^2.0.1",
  3471. "symfony/yaml": "~2.1|~3.0|~4.0"
  3472. },
  3473. "conflict": {
  3474. "phpdocumentor/reflection-docblock": "3.0.2"
  3475. },
  3476. "require-dev": {
  3477. "ext-pdo": "*"
  3478. },
  3479. "suggest": {
  3480. "ext-xdebug": "*",
  3481. "phpunit/php-invoker": "~1.1"
  3482. },
  3483. "bin": [
  3484. "phpunit"
  3485. ],
  3486. "type": "library",
  3487. "extra": {
  3488. "branch-alias": {
  3489. "dev-master": "5.7.x-dev"
  3490. }
  3491. },
  3492. "autoload": {
  3493. "classmap": [
  3494. "src/"
  3495. ]
  3496. },
  3497. "notification-url": "https://packagist.org/downloads/",
  3498. "license": [
  3499. "BSD-3-Clause"
  3500. ],
  3501. "authors": [
  3502. {
  3503. "name": "Sebastian Bergmann",
  3504. "email": "sebastian@phpunit.de",
  3505. "role": "lead"
  3506. }
  3507. ],
  3508. "description": "The PHP Unit Testing framework.",
  3509. "homepage": "https://phpunit.de/",
  3510. "keywords": [
  3511. "phpunit",
  3512. "testing",
  3513. "xunit"
  3514. ],
  3515. "time": "2018-02-01T05:50:59+00:00"
  3516. },
  3517. {
  3518. "name": "phpunit/phpunit-mock-objects",
  3519. "version": "3.4.4",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3523. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
  3528. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "doctrine/instantiator": "^1.0.2",
  3533. "php": "^5.6 || ^7.0",
  3534. "phpunit/php-text-template": "^1.2",
  3535. "sebastian/exporter": "^1.2 || ^2.0"
  3536. },
  3537. "conflict": {
  3538. "phpunit/phpunit": "<5.4.0"
  3539. },
  3540. "require-dev": {
  3541. "phpunit/phpunit": "^5.4"
  3542. },
  3543. "suggest": {
  3544. "ext-soap": "*"
  3545. },
  3546. "type": "library",
  3547. "extra": {
  3548. "branch-alias": {
  3549. "dev-master": "3.2.x-dev"
  3550. }
  3551. },
  3552. "autoload": {
  3553. "classmap": [
  3554. "src/"
  3555. ]
  3556. },
  3557. "notification-url": "https://packagist.org/downloads/",
  3558. "license": [
  3559. "BSD-3-Clause"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "Sebastian Bergmann",
  3564. "email": "sb@sebastian-bergmann.de",
  3565. "role": "lead"
  3566. }
  3567. ],
  3568. "description": "Mock Object library for PHPUnit",
  3569. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3570. "keywords": [
  3571. "mock",
  3572. "xunit"
  3573. ],
  3574. "time": "2017-06-30T09:13:00+00:00"
  3575. },
  3576. {
  3577. "name": "sebastian/code-unit-reverse-lookup",
  3578. "version": "1.0.1",
  3579. "source": {
  3580. "type": "git",
  3581. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3582. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3583. },
  3584. "dist": {
  3585. "type": "zip",
  3586. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3587. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3588. "shasum": ""
  3589. },
  3590. "require": {
  3591. "php": "^5.6 || ^7.0"
  3592. },
  3593. "require-dev": {
  3594. "phpunit/phpunit": "^5.7 || ^6.0"
  3595. },
  3596. "type": "library",
  3597. "extra": {
  3598. "branch-alias": {
  3599. "dev-master": "1.0.x-dev"
  3600. }
  3601. },
  3602. "autoload": {
  3603. "classmap": [
  3604. "src/"
  3605. ]
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "BSD-3-Clause"
  3610. ],
  3611. "authors": [
  3612. {
  3613. "name": "Sebastian Bergmann",
  3614. "email": "sebastian@phpunit.de"
  3615. }
  3616. ],
  3617. "description": "Looks up which function or method a line of code belongs to",
  3618. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3619. "time": "2017-03-04T06:30:41+00:00"
  3620. },
  3621. {
  3622. "name": "sebastian/comparator",
  3623. "version": "1.2.4",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/sebastianbergmann/comparator.git",
  3627. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  3632. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "php": ">=5.3.3",
  3637. "sebastian/diff": "~1.2",
  3638. "sebastian/exporter": "~1.2 || ~2.0"
  3639. },
  3640. "require-dev": {
  3641. "phpunit/phpunit": "~4.4"
  3642. },
  3643. "type": "library",
  3644. "extra": {
  3645. "branch-alias": {
  3646. "dev-master": "1.2.x-dev"
  3647. }
  3648. },
  3649. "autoload": {
  3650. "classmap": [
  3651. "src/"
  3652. ]
  3653. },
  3654. "notification-url": "https://packagist.org/downloads/",
  3655. "license": [
  3656. "BSD-3-Clause"
  3657. ],
  3658. "authors": [
  3659. {
  3660. "name": "Jeff Welch",
  3661. "email": "whatthejeff@gmail.com"
  3662. },
  3663. {
  3664. "name": "Volker Dusch",
  3665. "email": "github@wallbash.com"
  3666. },
  3667. {
  3668. "name": "Bernhard Schussek",
  3669. "email": "bschussek@2bepublished.at"
  3670. },
  3671. {
  3672. "name": "Sebastian Bergmann",
  3673. "email": "sebastian@phpunit.de"
  3674. }
  3675. ],
  3676. "description": "Provides the functionality to compare PHP values for equality",
  3677. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  3678. "keywords": [
  3679. "comparator",
  3680. "compare",
  3681. "equality"
  3682. ],
  3683. "time": "2017-01-29T09:50:25+00:00"
  3684. },
  3685. {
  3686. "name": "sebastian/diff",
  3687. "version": "1.4.3",
  3688. "source": {
  3689. "type": "git",
  3690. "url": "https://github.com/sebastianbergmann/diff.git",
  3691. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  3692. },
  3693. "dist": {
  3694. "type": "zip",
  3695. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  3696. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  3697. "shasum": ""
  3698. },
  3699. "require": {
  3700. "php": "^5.3.3 || ^7.0"
  3701. },
  3702. "require-dev": {
  3703. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3704. },
  3705. "type": "library",
  3706. "extra": {
  3707. "branch-alias": {
  3708. "dev-master": "1.4-dev"
  3709. }
  3710. },
  3711. "autoload": {
  3712. "classmap": [
  3713. "src/"
  3714. ]
  3715. },
  3716. "notification-url": "https://packagist.org/downloads/",
  3717. "license": [
  3718. "BSD-3-Clause"
  3719. ],
  3720. "authors": [
  3721. {
  3722. "name": "Kore Nordmann",
  3723. "email": "mail@kore-nordmann.de"
  3724. },
  3725. {
  3726. "name": "Sebastian Bergmann",
  3727. "email": "sebastian@phpunit.de"
  3728. }
  3729. ],
  3730. "description": "Diff implementation",
  3731. "homepage": "https://github.com/sebastianbergmann/diff",
  3732. "keywords": [
  3733. "diff"
  3734. ],
  3735. "time": "2017-05-22T07:24:03+00:00"
  3736. },
  3737. {
  3738. "name": "sebastian/environment",
  3739. "version": "2.0.0",
  3740. "source": {
  3741. "type": "git",
  3742. "url": "https://github.com/sebastianbergmann/environment.git",
  3743. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  3744. },
  3745. "dist": {
  3746. "type": "zip",
  3747. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  3748. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  3749. "shasum": ""
  3750. },
  3751. "require": {
  3752. "php": "^5.6 || ^7.0"
  3753. },
  3754. "require-dev": {
  3755. "phpunit/phpunit": "^5.0"
  3756. },
  3757. "type": "library",
  3758. "extra": {
  3759. "branch-alias": {
  3760. "dev-master": "2.0.x-dev"
  3761. }
  3762. },
  3763. "autoload": {
  3764. "classmap": [
  3765. "src/"
  3766. ]
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "BSD-3-Clause"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "Sebastian Bergmann",
  3775. "email": "sebastian@phpunit.de"
  3776. }
  3777. ],
  3778. "description": "Provides functionality to handle HHVM/PHP environments",
  3779. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3780. "keywords": [
  3781. "Xdebug",
  3782. "environment",
  3783. "hhvm"
  3784. ],
  3785. "time": "2016-11-26T07:53:53+00:00"
  3786. },
  3787. {
  3788. "name": "sebastian/exporter",
  3789. "version": "2.0.0",
  3790. "source": {
  3791. "type": "git",
  3792. "url": "https://github.com/sebastianbergmann/exporter.git",
  3793. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  3794. },
  3795. "dist": {
  3796. "type": "zip",
  3797. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  3798. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  3799. "shasum": ""
  3800. },
  3801. "require": {
  3802. "php": ">=5.3.3",
  3803. "sebastian/recursion-context": "~2.0"
  3804. },
  3805. "require-dev": {
  3806. "ext-mbstring": "*",
  3807. "phpunit/phpunit": "~4.4"
  3808. },
  3809. "type": "library",
  3810. "extra": {
  3811. "branch-alias": {
  3812. "dev-master": "2.0.x-dev"
  3813. }
  3814. },
  3815. "autoload": {
  3816. "classmap": [
  3817. "src/"
  3818. ]
  3819. },
  3820. "notification-url": "https://packagist.org/downloads/",
  3821. "license": [
  3822. "BSD-3-Clause"
  3823. ],
  3824. "authors": [
  3825. {
  3826. "name": "Jeff Welch",
  3827. "email": "whatthejeff@gmail.com"
  3828. },
  3829. {
  3830. "name": "Volker Dusch",
  3831. "email": "github@wallbash.com"
  3832. },
  3833. {
  3834. "name": "Bernhard Schussek",
  3835. "email": "bschussek@2bepublished.at"
  3836. },
  3837. {
  3838. "name": "Sebastian Bergmann",
  3839. "email": "sebastian@phpunit.de"
  3840. },
  3841. {
  3842. "name": "Adam Harvey",
  3843. "email": "aharvey@php.net"
  3844. }
  3845. ],
  3846. "description": "Provides the functionality to export PHP variables for visualization",
  3847. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3848. "keywords": [
  3849. "export",
  3850. "exporter"
  3851. ],
  3852. "time": "2016-11-19T08:54:04+00:00"
  3853. },
  3854. {
  3855. "name": "sebastian/global-state",
  3856. "version": "1.1.1",
  3857. "source": {
  3858. "type": "git",
  3859. "url": "https://github.com/sebastianbergmann/global-state.git",
  3860. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3861. },
  3862. "dist": {
  3863. "type": "zip",
  3864. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3865. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3866. "shasum": ""
  3867. },
  3868. "require": {
  3869. "php": ">=5.3.3"
  3870. },
  3871. "require-dev": {
  3872. "phpunit/phpunit": "~4.2"
  3873. },
  3874. "suggest": {
  3875. "ext-uopz": "*"
  3876. },
  3877. "type": "library",
  3878. "extra": {
  3879. "branch-alias": {
  3880. "dev-master": "1.0-dev"
  3881. }
  3882. },
  3883. "autoload": {
  3884. "classmap": [
  3885. "src/"
  3886. ]
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "BSD-3-Clause"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "Sebastian Bergmann",
  3895. "email": "sebastian@phpunit.de"
  3896. }
  3897. ],
  3898. "description": "Snapshotting of global state",
  3899. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3900. "keywords": [
  3901. "global state"
  3902. ],
  3903. "time": "2015-10-12T03:26:01+00:00"
  3904. },
  3905. {
  3906. "name": "sebastian/object-enumerator",
  3907. "version": "2.0.1",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3911. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
  3916. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  3917. "shasum": ""
  3918. },
  3919. "require": {
  3920. "php": ">=5.6",
  3921. "sebastian/recursion-context": "~2.0"
  3922. },
  3923. "require-dev": {
  3924. "phpunit/phpunit": "~5"
  3925. },
  3926. "type": "library",
  3927. "extra": {
  3928. "branch-alias": {
  3929. "dev-master": "2.0.x-dev"
  3930. }
  3931. },
  3932. "autoload": {
  3933. "classmap": [
  3934. "src/"
  3935. ]
  3936. },
  3937. "notification-url": "https://packagist.org/downloads/",
  3938. "license": [
  3939. "BSD-3-Clause"
  3940. ],
  3941. "authors": [
  3942. {
  3943. "name": "Sebastian Bergmann",
  3944. "email": "sebastian@phpunit.de"
  3945. }
  3946. ],
  3947. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3948. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3949. "time": "2017-02-18T15:18:39+00:00"
  3950. },
  3951. {
  3952. "name": "sebastian/recursion-context",
  3953. "version": "2.0.0",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3957. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  3962. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  3963. "shasum": ""
  3964. },
  3965. "require": {
  3966. "php": ">=5.3.3"
  3967. },
  3968. "require-dev": {
  3969. "phpunit/phpunit": "~4.4"
  3970. },
  3971. "type": "library",
  3972. "extra": {
  3973. "branch-alias": {
  3974. "dev-master": "2.0.x-dev"
  3975. }
  3976. },
  3977. "autoload": {
  3978. "classmap": [
  3979. "src/"
  3980. ]
  3981. },
  3982. "notification-url": "https://packagist.org/downloads/",
  3983. "license": [
  3984. "BSD-3-Clause"
  3985. ],
  3986. "authors": [
  3987. {
  3988. "name": "Jeff Welch",
  3989. "email": "whatthejeff@gmail.com"
  3990. },
  3991. {
  3992. "name": "Sebastian Bergmann",
  3993. "email": "sebastian@phpunit.de"
  3994. },
  3995. {
  3996. "name": "Adam Harvey",
  3997. "email": "aharvey@php.net"
  3998. }
  3999. ],
  4000. "description": "Provides functionality to recursively process PHP variables",
  4001. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4002. "time": "2016-11-19T07:33:16+00:00"
  4003. },
  4004. {
  4005. "name": "sebastian/resource-operations",
  4006. "version": "1.0.0",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4010. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  4015. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  4016. "shasum": ""
  4017. },
  4018. "require": {
  4019. "php": ">=5.6.0"
  4020. },
  4021. "type": "library",
  4022. "extra": {
  4023. "branch-alias": {
  4024. "dev-master": "1.0.x-dev"
  4025. }
  4026. },
  4027. "autoload": {
  4028. "classmap": [
  4029. "src/"
  4030. ]
  4031. },
  4032. "notification-url": "https://packagist.org/downloads/",
  4033. "license": [
  4034. "BSD-3-Clause"
  4035. ],
  4036. "authors": [
  4037. {
  4038. "name": "Sebastian Bergmann",
  4039. "email": "sebastian@phpunit.de"
  4040. }
  4041. ],
  4042. "description": "Provides a list of PHP built-in functions that operate on resources",
  4043. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4044. "time": "2015-07-28T20:34:47+00:00"
  4045. },
  4046. {
  4047. "name": "sebastian/version",
  4048. "version": "2.0.1",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://github.com/sebastianbergmann/version.git",
  4052. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4053. },
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4057. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4058. "shasum": ""
  4059. },
  4060. "require": {
  4061. "php": ">=5.6"
  4062. },
  4063. "type": "library",
  4064. "extra": {
  4065. "branch-alias": {
  4066. "dev-master": "2.0.x-dev"
  4067. }
  4068. },
  4069. "autoload": {
  4070. "classmap": [
  4071. "src/"
  4072. ]
  4073. },
  4074. "notification-url": "https://packagist.org/downloads/",
  4075. "license": [
  4076. "BSD-3-Clause"
  4077. ],
  4078. "authors": [
  4079. {
  4080. "name": "Sebastian Bergmann",
  4081. "email": "sebastian@phpunit.de",
  4082. "role": "lead"
  4083. }
  4084. ],
  4085. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4086. "homepage": "https://github.com/sebastianbergmann/version",
  4087. "time": "2016-10-03T07:35:21+00:00"
  4088. },
  4089. {
  4090. "name": "symfony/yaml",
  4091. "version": "v3.3.17",
  4092. "source": {
  4093. "type": "git",
  4094. "url": "https://github.com/symfony/yaml.git",
  4095. "reference": "af615970e265543a26ee712c958404eb9b7ac93d"
  4096. },
  4097. "dist": {
  4098. "type": "zip",
  4099. "url": "https://api.github.com/repos/symfony/yaml/zipball/af615970e265543a26ee712c958404eb9b7ac93d",
  4100. "reference": "af615970e265543a26ee712c958404eb9b7ac93d",
  4101. "shasum": ""
  4102. },
  4103. "require": {
  4104. "php": "^5.5.9|>=7.0.8"
  4105. },
  4106. "require-dev": {
  4107. "symfony/console": "~2.8|~3.0"
  4108. },
  4109. "suggest": {
  4110. "symfony/console": "For validating YAML files using the lint command"
  4111. },
  4112. "type": "library",
  4113. "extra": {
  4114. "branch-alias": {
  4115. "dev-master": "3.3-dev"
  4116. }
  4117. },
  4118. "autoload": {
  4119. "psr-4": {
  4120. "Symfony\\Component\\Yaml\\": ""
  4121. },
  4122. "exclude-from-classmap": [
  4123. "/Tests/"
  4124. ]
  4125. },
  4126. "notification-url": "https://packagist.org/downloads/",
  4127. "license": [
  4128. "MIT"
  4129. ],
  4130. "authors": [
  4131. {
  4132. "name": "Fabien Potencier",
  4133. "email": "fabien@symfony.com"
  4134. },
  4135. {
  4136. "name": "Symfony Community",
  4137. "homepage": "https://symfony.com/contributors"
  4138. }
  4139. ],
  4140. "description": "Symfony Yaml Component",
  4141. "homepage": "https://symfony.com",
  4142. "time": "2018-01-20T15:04:53+00:00"
  4143. }
  4144. ],
  4145. "aliases": [],
  4146. "minimum-stability": "stable",
  4147. "stability-flags": [],
  4148. "prefer-stable": false,
  4149. "prefer-lowest": false,
  4150. "platform": [],
  4151. "platform-dev": []
  4152. }