composer.lock 126 KB

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