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. "content-hash": "911c2a1d7686512c88aba6d6da667259",
  8. "packages": [
  9. {
  10. "name": "dnoegel/php-xdg-base-dir",
  11. "version": "0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  15. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://files.phpcomposer.com/files/dnoegel/php-xdg-base-dir/265b8593498b997dc2d31e75b89f053b5cc9621a.zip",
  20. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.2"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "@stable"
  28. },
  29. "type": "project",
  30. "autoload": {
  31. "psr-4": {
  32. "XdgBaseDir\\": "src/"
  33. }
  34. },
  35. "notification-url": "https://packagist.org/downloads/",
  36. "license": [
  37. "MIT"
  38. ],
  39. "description": "implementation of xdg base directory specification for php",
  40. "time": "2014-10-24T07:27:01+00:00"
  41. },
  42. {
  43. "name": "doctrine/inflector",
  44. "version": "v1.1.0",
  45. "source": {
  46. "type": "git",
  47. "url": "https://github.com/doctrine/inflector.git",
  48. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  49. },
  50. "dist": {
  51. "type": "zip",
  52. "url": "https://files.phpcomposer.com/files/doctrine/inflector/90b2128806bfde671b6952ab8bea493942c1fdae.zip",
  53. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  54. "shasum": ""
  55. },
  56. "require": {
  57. "php": ">=5.3.2"
  58. },
  59. "require-dev": {
  60. "phpunit/phpunit": "4.*"
  61. },
  62. "type": "library",
  63. "extra": {
  64. "branch-alias": {
  65. "dev-master": "1.1.x-dev"
  66. }
  67. },
  68. "autoload": {
  69. "psr-0": {
  70. "Doctrine\\Common\\Inflector\\": "lib/"
  71. }
  72. },
  73. "notification-url": "https://packagist.org/downloads/",
  74. "license": [
  75. "MIT"
  76. ],
  77. "authors": [
  78. {
  79. "name": "Roman Borschel",
  80. "email": "roman@code-factory.org"
  81. },
  82. {
  83. "name": "Benjamin Eberlei",
  84. "email": "kontakt@beberlei.de"
  85. },
  86. {
  87. "name": "Guilherme Blanco",
  88. "email": "guilhermeblanco@gmail.com"
  89. },
  90. {
  91. "name": "Jonathan Wage",
  92. "email": "jonwage@gmail.com"
  93. },
  94. {
  95. "name": "Johannes Schmitt",
  96. "email": "schmittjoh@gmail.com"
  97. }
  98. ],
  99. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  100. "homepage": "http://www.doctrine-project.org",
  101. "keywords": [
  102. "inflection",
  103. "pluralize",
  104. "singularize",
  105. "string"
  106. ],
  107. "time": "2015-11-06T14:35:42+00:00"
  108. },
  109. {
  110. "name": "erusev/parsedown",
  111. "version": "1.6.2",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/erusev/parsedown.git",
  115. "reference": "1bf24f7334fe16c88bf9d467863309ceaf285b01"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://files.phpcomposer.com/files/erusev/parsedown/1bf24f7334fe16c88bf9d467863309ceaf285b01.zip",
  120. "reference": "1bf24f7334fe16c88bf9d467863309ceaf285b01",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": ">=5.3.0"
  125. },
  126. "type": "library",
  127. "autoload": {
  128. "psr-0": {
  129. "Parsedown": ""
  130. }
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "MIT"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Emanuil Rusev",
  139. "email": "hello@erusev.com",
  140. "homepage": "http://erusev.com"
  141. }
  142. ],
  143. "description": "Parser for Markdown.",
  144. "homepage": "http://parsedown.org",
  145. "keywords": [
  146. "markdown",
  147. "parser"
  148. ],
  149. "time": "2017-03-29T16:04:15+00:00"
  150. },
  151. {
  152. "name": "guzzlehttp/guzzle",
  153. "version": "6.2.3",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/guzzle/guzzle.git",
  157. "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://files.phpcomposer.com/files/guzzle/guzzle/8d6c6cc55186db87b7dc5009827429ba4e9dc006.zip",
  162. "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "guzzlehttp/promises": "^1.0",
  167. "guzzlehttp/psr7": "^1.4",
  168. "php": ">=5.5"
  169. },
  170. "require-dev": {
  171. "ext-curl": "*",
  172. "phpunit/phpunit": "^4.0",
  173. "psr/log": "^1.0"
  174. },
  175. "type": "library",
  176. "extra": {
  177. "branch-alias": {
  178. "dev-master": "6.2-dev"
  179. }
  180. },
  181. "autoload": {
  182. "files": [
  183. "src/functions_include.php"
  184. ],
  185. "psr-4": {
  186. "GuzzleHttp\\": "src/"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Michael Dowling",
  196. "email": "mtdowling@gmail.com",
  197. "homepage": "https://github.com/mtdowling"
  198. }
  199. ],
  200. "description": "Guzzle is a PHP HTTP client library",
  201. "homepage": "http://guzzlephp.org/",
  202. "keywords": [
  203. "client",
  204. "curl",
  205. "framework",
  206. "http",
  207. "http client",
  208. "rest",
  209. "web service"
  210. ],
  211. "time": "2017-02-28T22:50:30+00:00"
  212. },
  213. {
  214. "name": "guzzlehttp/promises",
  215. "version": "v1.3.1",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/guzzle/promises.git",
  219. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://files.phpcomposer.com/files/guzzle/promises/a59da6cf61d80060647ff4d3eb2c03a2bc694646.zip",
  224. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": ">=5.5.0"
  229. },
  230. "require-dev": {
  231. "phpunit/phpunit": "^4.0"
  232. },
  233. "type": "library",
  234. "extra": {
  235. "branch-alias": {
  236. "dev-master": "1.4-dev"
  237. }
  238. },
  239. "autoload": {
  240. "psr-4": {
  241. "GuzzleHttp\\Promise\\": "src/"
  242. },
  243. "files": [
  244. "src/functions_include.php"
  245. ]
  246. },
  247. "notification-url": "https://packagist.org/downloads/",
  248. "license": [
  249. "MIT"
  250. ],
  251. "authors": [
  252. {
  253. "name": "Michael Dowling",
  254. "email": "mtdowling@gmail.com",
  255. "homepage": "https://github.com/mtdowling"
  256. }
  257. ],
  258. "description": "Guzzle promises library",
  259. "keywords": [
  260. "promise"
  261. ],
  262. "time": "2016-12-20T10:07:11+00:00"
  263. },
  264. {
  265. "name": "guzzlehttp/psr7",
  266. "version": "1.4.2",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/guzzle/psr7.git",
  270. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://files.phpcomposer.com/files/guzzle/psr7/f5b8a8512e2b58b0071a7280e39f14f72e05d87c.zip",
  275. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "php": ">=5.4.0",
  280. "psr/http-message": "~1.0"
  281. },
  282. "provide": {
  283. "psr/http-message-implementation": "1.0"
  284. },
  285. "require-dev": {
  286. "phpunit/phpunit": "~4.0"
  287. },
  288. "type": "library",
  289. "extra": {
  290. "branch-alias": {
  291. "dev-master": "1.4-dev"
  292. }
  293. },
  294. "autoload": {
  295. "psr-4": {
  296. "GuzzleHttp\\Psr7\\": "src/"
  297. },
  298. "files": [
  299. "src/functions_include.php"
  300. ]
  301. },
  302. "notification-url": "https://packagist.org/downloads/",
  303. "license": [
  304. "MIT"
  305. ],
  306. "authors": [
  307. {
  308. "name": "Michael Dowling",
  309. "email": "mtdowling@gmail.com",
  310. "homepage": "https://github.com/mtdowling"
  311. },
  312. {
  313. "name": "Tobias Schultze",
  314. "homepage": "https://github.com/Tobion"
  315. }
  316. ],
  317. "description": "PSR-7 message implementation that also provides common utility methods",
  318. "keywords": [
  319. "http",
  320. "message",
  321. "request",
  322. "response",
  323. "stream",
  324. "uri",
  325. "url"
  326. ],
  327. "time": "2017-03-20T17:10:46+00:00"
  328. },
  329. {
  330. "name": "jakub-onderka/php-console-color",
  331. "version": "0.1",
  332. "source": {
  333. "type": "git",
  334. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  335. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  336. },
  337. "dist": {
  338. "type": "zip",
  339. "url": "https://files.phpcomposer.com/files/JakubOnderka/PHP-Console-Color/e0b393dacf7703fc36a4efc3df1435485197e6c1.zip",
  340. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  341. "shasum": ""
  342. },
  343. "require": {
  344. "php": ">=5.3.2"
  345. },
  346. "require-dev": {
  347. "jakub-onderka/php-code-style": "1.0",
  348. "jakub-onderka/php-parallel-lint": "0.*",
  349. "jakub-onderka/php-var-dump-check": "0.*",
  350. "phpunit/phpunit": "3.7.*",
  351. "squizlabs/php_codesniffer": "1.*"
  352. },
  353. "type": "library",
  354. "autoload": {
  355. "psr-0": {
  356. "JakubOnderka\\PhpConsoleColor": "src/"
  357. }
  358. },
  359. "notification-url": "https://packagist.org/downloads/",
  360. "license": [
  361. "BSD-2-Clause"
  362. ],
  363. "authors": [
  364. {
  365. "name": "Jakub Onderka",
  366. "email": "jakub.onderka@gmail.com",
  367. "homepage": "http://www.acci.cz"
  368. }
  369. ],
  370. "time": "2014-04-08T15:00:19+00:00"
  371. },
  372. {
  373. "name": "jakub-onderka/php-console-highlighter",
  374. "version": "v0.3.2",
  375. "source": {
  376. "type": "git",
  377. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  378. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  379. },
  380. "dist": {
  381. "type": "zip",
  382. "url": "https://files.phpcomposer.com/files/JakubOnderka/PHP-Console-Highlighter/7daa75df45242c8d5b75a22c00a201e7954e4fb5.zip",
  383. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  384. "shasum": ""
  385. },
  386. "require": {
  387. "jakub-onderka/php-console-color": "~0.1",
  388. "php": ">=5.3.0"
  389. },
  390. "require-dev": {
  391. "jakub-onderka/php-code-style": "~1.0",
  392. "jakub-onderka/php-parallel-lint": "~0.5",
  393. "jakub-onderka/php-var-dump-check": "~0.1",
  394. "phpunit/phpunit": "~4.0",
  395. "squizlabs/php_codesniffer": "~1.5"
  396. },
  397. "type": "library",
  398. "autoload": {
  399. "psr-0": {
  400. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "MIT"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Jakub Onderka",
  410. "email": "acci@acci.cz",
  411. "homepage": "http://www.acci.cz/"
  412. }
  413. ],
  414. "time": "2015-04-20T18:58:01+00:00"
  415. },
  416. {
  417. "name": "laravel/framework",
  418. "version": "v5.4.21",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/laravel/framework.git",
  422. "reference": "2ed668f96d1a6ca42f50d5c87ee9ceecfc0a6eee"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://files.phpcomposer.com/files/laravel/framework/2ed668f96d1a6ca42f50d5c87ee9ceecfc0a6eee.zip",
  427. "reference": "2ed668f96d1a6ca42f50d5c87ee9ceecfc0a6eee",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "doctrine/inflector": "~1.0",
  432. "erusev/parsedown": "~1.6",
  433. "ext-mbstring": "*",
  434. "ext-openssl": "*",
  435. "league/flysystem": "~1.0",
  436. "monolog/monolog": "~1.11",
  437. "mtdowling/cron-expression": "~1.0",
  438. "nesbot/carbon": "~1.20",
  439. "paragonie/random_compat": "~1.4|~2.0",
  440. "php": ">=5.6.4",
  441. "ramsey/uuid": "~3.0",
  442. "swiftmailer/swiftmailer": "~5.4",
  443. "symfony/console": "~3.2",
  444. "symfony/debug": "~3.2",
  445. "symfony/finder": "~3.2",
  446. "symfony/http-foundation": "~3.2",
  447. "symfony/http-kernel": "~3.2",
  448. "symfony/process": "~3.2",
  449. "symfony/routing": "~3.2",
  450. "symfony/var-dumper": "~3.2",
  451. "tijsverkoyen/css-to-inline-styles": "~2.2",
  452. "vlucas/phpdotenv": "~2.2"
  453. },
  454. "replace": {
  455. "illuminate/auth": "self.version",
  456. "illuminate/broadcasting": "self.version",
  457. "illuminate/bus": "self.version",
  458. "illuminate/cache": "self.version",
  459. "illuminate/config": "self.version",
  460. "illuminate/console": "self.version",
  461. "illuminate/container": "self.version",
  462. "illuminate/contracts": "self.version",
  463. "illuminate/cookie": "self.version",
  464. "illuminate/database": "self.version",
  465. "illuminate/encryption": "self.version",
  466. "illuminate/events": "self.version",
  467. "illuminate/exception": "self.version",
  468. "illuminate/filesystem": "self.version",
  469. "illuminate/hashing": "self.version",
  470. "illuminate/http": "self.version",
  471. "illuminate/log": "self.version",
  472. "illuminate/mail": "self.version",
  473. "illuminate/notifications": "self.version",
  474. "illuminate/pagination": "self.version",
  475. "illuminate/pipeline": "self.version",
  476. "illuminate/queue": "self.version",
  477. "illuminate/redis": "self.version",
  478. "illuminate/routing": "self.version",
  479. "illuminate/session": "self.version",
  480. "illuminate/support": "self.version",
  481. "illuminate/translation": "self.version",
  482. "illuminate/validation": "self.version",
  483. "illuminate/view": "self.version",
  484. "tightenco/collect": "self.version"
  485. },
  486. "require-dev": {
  487. "aws/aws-sdk-php": "~3.0",
  488. "doctrine/dbal": "~2.5",
  489. "mockery/mockery": "~0.9.4",
  490. "pda/pheanstalk": "~3.0",
  491. "phpunit/phpunit": "~5.7",
  492. "predis/predis": "~1.0",
  493. "symfony/css-selector": "~3.2",
  494. "symfony/dom-crawler": "~3.2"
  495. },
  496. "suggest": {
  497. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  498. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  499. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  500. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  501. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  502. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  503. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  504. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  505. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  506. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  507. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).",
  508. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.2).",
  509. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.2).",
  510. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (0.2.*)."
  511. },
  512. "type": "library",
  513. "extra": {
  514. "branch-alias": {
  515. "dev-master": "5.4-dev"
  516. }
  517. },
  518. "autoload": {
  519. "files": [
  520. "src/Illuminate/Foundation/helpers.php",
  521. "src/Illuminate/Support/helpers.php"
  522. ],
  523. "psr-4": {
  524. "Illuminate\\": "src/Illuminate/"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Taylor Otwell",
  534. "email": "taylor@laravel.com"
  535. }
  536. ],
  537. "description": "The Laravel Framework.",
  538. "homepage": "https://laravel.com",
  539. "keywords": [
  540. "framework",
  541. "laravel"
  542. ],
  543. "time": "2017-04-28T15:40:01+00:00"
  544. },
  545. {
  546. "name": "laravel/tinker",
  547. "version": "v1.0.0",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/laravel/tinker.git",
  551. "reference": "3d5b675b55b24ccbf86395964042dbe061d5a965"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://files.phpcomposer.com/files/laravel/tinker/3d5b675b55b24ccbf86395964042dbe061d5a965.zip",
  556. "reference": "3d5b675b55b24ccbf86395964042dbe061d5a965",
  557. "shasum": ""
  558. },
  559. "require": {
  560. "illuminate/console": "~5.1",
  561. "illuminate/contracts": "~5.1",
  562. "illuminate/support": "~5.1",
  563. "php": ">=5.5.9",
  564. "psy/psysh": "0.7.*|0.8.*",
  565. "symfony/var-dumper": "~3.0"
  566. },
  567. "require-dev": {
  568. "phpunit/phpunit": "~4.0|~5.0"
  569. },
  570. "suggest": {
  571. "illuminate/database": "The Illuminate Database package (~5.1)."
  572. },
  573. "type": "library",
  574. "extra": {
  575. "branch-alias": {
  576. "dev-master": "1.0-dev"
  577. }
  578. },
  579. "autoload": {
  580. "psr-4": {
  581. "Laravel\\Tinker\\": "src/"
  582. }
  583. },
  584. "notification-url": "https://packagist.org/downloads/",
  585. "license": [
  586. "MIT"
  587. ],
  588. "authors": [
  589. {
  590. "name": "Taylor Otwell",
  591. "email": "taylor@laravel.com"
  592. }
  593. ],
  594. "description": "Powerful REPL for the Laravel framework.",
  595. "keywords": [
  596. "REPL",
  597. "Tinker",
  598. "laravel",
  599. "psysh"
  600. ],
  601. "time": "2016-12-30T18:13:17+00:00"
  602. },
  603. {
  604. "name": "league/flysystem",
  605. "version": "1.0.40",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/thephpleague/flysystem.git",
  609. "reference": "3828f0b24e2c1918bb362d57a53205d6dc8fde61"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://files.phpcomposer.com/files/thephpleague/flysystem/3828f0b24e2c1918bb362d57a53205d6dc8fde61.zip",
  614. "reference": "3828f0b24e2c1918bb362d57a53205d6dc8fde61",
  615. "shasum": ""
  616. },
  617. "require": {
  618. "php": ">=5.5.9"
  619. },
  620. "conflict": {
  621. "league/flysystem-sftp": "<1.0.6"
  622. },
  623. "require-dev": {
  624. "ext-fileinfo": "*",
  625. "mockery/mockery": "~0.9",
  626. "phpspec/phpspec": "^2.2",
  627. "phpunit/phpunit": "~4.8"
  628. },
  629. "suggest": {
  630. "ext-fileinfo": "Required for MimeType",
  631. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  632. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  633. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  634. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  635. "league/flysystem-copy": "Allows you to use Copy.com storage",
  636. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  637. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  638. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  639. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  640. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  641. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage"
  642. },
  643. "type": "library",
  644. "extra": {
  645. "branch-alias": {
  646. "dev-master": "1.1-dev"
  647. }
  648. },
  649. "autoload": {
  650. "psr-4": {
  651. "League\\Flysystem\\": "src/"
  652. }
  653. },
  654. "notification-url": "https://packagist.org/downloads/",
  655. "license": [
  656. "MIT"
  657. ],
  658. "authors": [
  659. {
  660. "name": "Frank de Jonge",
  661. "email": "info@frenky.net"
  662. }
  663. ],
  664. "description": "Filesystem abstraction: Many filesystems, one API.",
  665. "keywords": [
  666. "Cloud Files",
  667. "WebDAV",
  668. "abstraction",
  669. "aws",
  670. "cloud",
  671. "copy.com",
  672. "dropbox",
  673. "file systems",
  674. "files",
  675. "filesystem",
  676. "filesystems",
  677. "ftp",
  678. "rackspace",
  679. "remote",
  680. "s3",
  681. "sftp",
  682. "storage"
  683. ],
  684. "time": "2017-04-28T10:15:08+00:00"
  685. },
  686. {
  687. "name": "monolog/monolog",
  688. "version": "1.22.1",
  689. "source": {
  690. "type": "git",
  691. "url": "https://github.com/Seldaek/monolog.git",
  692. "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0"
  693. },
  694. "dist": {
  695. "type": "zip",
  696. "url": "https://files.phpcomposer.com/files/Seldaek/monolog/1e044bc4b34e91743943479f1be7a1d5eb93add0.zip",
  697. "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0",
  698. "shasum": ""
  699. },
  700. "require": {
  701. "php": ">=5.3.0",
  702. "psr/log": "~1.0"
  703. },
  704. "provide": {
  705. "psr/log-implementation": "1.0.0"
  706. },
  707. "require-dev": {
  708. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  709. "doctrine/couchdb": "~1.0@dev",
  710. "graylog2/gelf-php": "~1.0",
  711. "jakub-onderka/php-parallel-lint": "0.9",
  712. "php-amqplib/php-amqplib": "~2.4",
  713. "php-console/php-console": "^3.1.3",
  714. "phpunit/phpunit": "~4.5",
  715. "phpunit/phpunit-mock-objects": "2.3.0",
  716. "ruflin/elastica": ">=0.90 <3.0",
  717. "sentry/sentry": "^0.13",
  718. "swiftmailer/swiftmailer": "~5.3"
  719. },
  720. "suggest": {
  721. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  722. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  723. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  724. "ext-mongo": "Allow sending log messages to a MongoDB server",
  725. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  726. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  727. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  728. "php-console/php-console": "Allow sending log messages to Google Chrome",
  729. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  730. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  731. "sentry/sentry": "Allow sending log messages to a Sentry server"
  732. },
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "2.0.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Monolog\\": "src/Monolog"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Jordi Boggiano",
  751. "email": "j.boggiano@seld.be",
  752. "homepage": "http://seld.be"
  753. }
  754. ],
  755. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  756. "homepage": "http://github.com/Seldaek/monolog",
  757. "keywords": [
  758. "log",
  759. "logging",
  760. "psr-3"
  761. ],
  762. "time": "2017-03-13T07:08:03+00:00"
  763. },
  764. {
  765. "name": "mtdowling/cron-expression",
  766. "version": "v1.2.0",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/mtdowling/cron-expression.git",
  770. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://files.phpcomposer.com/files/mtdowling/cron-expression/9504fa9ea681b586028adaaa0877db4aecf32bad.zip",
  775. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "php": ">=5.3.2"
  780. },
  781. "require-dev": {
  782. "phpunit/phpunit": "~4.0|~5.0"
  783. },
  784. "type": "library",
  785. "autoload": {
  786. "psr-4": {
  787. "Cron\\": "src/Cron/"
  788. }
  789. },
  790. "notification-url": "https://packagist.org/downloads/",
  791. "license": [
  792. "MIT"
  793. ],
  794. "authors": [
  795. {
  796. "name": "Michael Dowling",
  797. "email": "mtdowling@gmail.com",
  798. "homepage": "https://github.com/mtdowling"
  799. }
  800. ],
  801. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  802. "keywords": [
  803. "cron",
  804. "schedule"
  805. ],
  806. "time": "2017-01-23T04:29:33+00:00"
  807. },
  808. {
  809. "name": "nesbot/carbon",
  810. "version": "1.22.1",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/briannesbitt/Carbon.git",
  814. "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://files.phpcomposer.com/files/briannesbitt/Carbon/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc.zip",
  819. "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
  820. "shasum": ""
  821. },
  822. "require": {
  823. "php": ">=5.3.0",
  824. "symfony/translation": "~2.6 || ~3.0"
  825. },
  826. "require-dev": {
  827. "friendsofphp/php-cs-fixer": "~2",
  828. "phpunit/phpunit": "~4.0 || ~5.0"
  829. },
  830. "type": "library",
  831. "extra": {
  832. "branch-alias": {
  833. "dev-master": "1.23-dev"
  834. }
  835. },
  836. "autoload": {
  837. "psr-4": {
  838. "Carbon\\": "src/Carbon/"
  839. }
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Brian Nesbitt",
  848. "email": "brian@nesbot.com",
  849. "homepage": "http://nesbot.com"
  850. }
  851. ],
  852. "description": "A simple API extension for DateTime.",
  853. "homepage": "http://carbon.nesbot.com",
  854. "keywords": [
  855. "date",
  856. "datetime",
  857. "time"
  858. ],
  859. "time": "2017-01-16T07:55:07+00:00"
  860. },
  861. {
  862. "name": "nikic/php-parser",
  863. "version": "v3.0.5",
  864. "source": {
  865. "type": "git",
  866. "url": "https://github.com/nikic/PHP-Parser.git",
  867. "reference": "2b9e2f71b722f7c53918ab0c25f7646c2013f17d"
  868. },
  869. "dist": {
  870. "type": "zip",
  871. "url": "https://files.phpcomposer.com/files/nikic/PHP-Parser/2b9e2f71b722f7c53918ab0c25f7646c2013f17d.zip",
  872. "reference": "2b9e2f71b722f7c53918ab0c25f7646c2013f17d",
  873. "shasum": ""
  874. },
  875. "require": {
  876. "ext-tokenizer": "*",
  877. "php": ">=5.5"
  878. },
  879. "require-dev": {
  880. "phpunit/phpunit": "~4.0|~5.0"
  881. },
  882. "bin": [
  883. "bin/php-parse"
  884. ],
  885. "type": "library",
  886. "extra": {
  887. "branch-alias": {
  888. "dev-master": "3.0-dev"
  889. }
  890. },
  891. "autoload": {
  892. "psr-4": {
  893. "PhpParser\\": "lib/PhpParser"
  894. }
  895. },
  896. "notification-url": "https://packagist.org/downloads/",
  897. "license": [
  898. "BSD-3-Clause"
  899. ],
  900. "authors": [
  901. {
  902. "name": "Nikita Popov"
  903. }
  904. ],
  905. "description": "A PHP parser written in PHP",
  906. "keywords": [
  907. "parser",
  908. "php"
  909. ],
  910. "time": "2017-03-05T18:23:57+00:00"
  911. },
  912. {
  913. "name": "paragonie/random_compat",
  914. "version": "v2.0.10",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/paragonie/random_compat.git",
  918. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://files.phpcomposer.com/files/paragonie/random_compat/634bae8e911eefa89c1abfbf1b66da679ac8f54d.zip",
  923. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "php": ">=5.2.0"
  928. },
  929. "require-dev": {
  930. "phpunit/phpunit": "4.*|5.*"
  931. },
  932. "suggest": {
  933. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  934. },
  935. "type": "library",
  936. "autoload": {
  937. "files": [
  938. "lib/random.php"
  939. ]
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Paragon Initiative Enterprises",
  948. "email": "security@paragonie.com",
  949. "homepage": "https://paragonie.com"
  950. }
  951. ],
  952. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  953. "keywords": [
  954. "csprng",
  955. "pseudorandom",
  956. "random"
  957. ],
  958. "time": "2017-03-13T16:27:32+00:00"
  959. },
  960. {
  961. "name": "psr/http-message",
  962. "version": "1.0.1",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/php-fig/http-message.git",
  966. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://files.phpcomposer.com/files/php-fig/http-message/f6561bf28d520154e4b0ec72be95418abe6d9363.zip",
  971. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "php": ">=5.3.0"
  976. },
  977. "type": "library",
  978. "extra": {
  979. "branch-alias": {
  980. "dev-master": "1.0.x-dev"
  981. }
  982. },
  983. "autoload": {
  984. "psr-4": {
  985. "Psr\\Http\\Message\\": "src/"
  986. }
  987. },
  988. "notification-url": "https://packagist.org/downloads/",
  989. "license": [
  990. "MIT"
  991. ],
  992. "authors": [
  993. {
  994. "name": "PHP-FIG",
  995. "homepage": "http://www.php-fig.org/"
  996. }
  997. ],
  998. "description": "Common interface for HTTP messages",
  999. "homepage": "https://github.com/php-fig/http-message",
  1000. "keywords": [
  1001. "http",
  1002. "http-message",
  1003. "psr",
  1004. "psr-7",
  1005. "request",
  1006. "response"
  1007. ],
  1008. "time": "2016-08-06T14:39:51+00:00"
  1009. },
  1010. {
  1011. "name": "psr/log",
  1012. "version": "1.0.2",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/php-fig/log.git",
  1016. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://files.phpcomposer.com/files/php-fig/log/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d.zip",
  1021. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "php": ">=5.3.0"
  1026. },
  1027. "type": "library",
  1028. "extra": {
  1029. "branch-alias": {
  1030. "dev-master": "1.0.x-dev"
  1031. }
  1032. },
  1033. "autoload": {
  1034. "psr-4": {
  1035. "Psr\\Log\\": "Psr/Log/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "PHP-FIG",
  1045. "homepage": "http://www.php-fig.org/"
  1046. }
  1047. ],
  1048. "description": "Common interface for logging libraries",
  1049. "homepage": "https://github.com/php-fig/log",
  1050. "keywords": [
  1051. "log",
  1052. "psr",
  1053. "psr-3"
  1054. ],
  1055. "time": "2016-10-10T12:19:37+00:00"
  1056. },
  1057. {
  1058. "name": "psy/psysh",
  1059. "version": "v0.8.3",
  1060. "source": {
  1061. "type": "git",
  1062. "url": "https://github.com/bobthecow/psysh.git",
  1063. "reference": "1dd4bbbc64d71e7ec075ffe82b42d9e096dc8d5e"
  1064. },
  1065. "dist": {
  1066. "type": "zip",
  1067. "url": "https://files.phpcomposer.com/files/bobthecow/psysh/1dd4bbbc64d71e7ec075ffe82b42d9e096dc8d5e.zip",
  1068. "reference": "1dd4bbbc64d71e7ec075ffe82b42d9e096dc8d5e",
  1069. "shasum": ""
  1070. },
  1071. "require": {
  1072. "dnoegel/php-xdg-base-dir": "0.1",
  1073. "jakub-onderka/php-console-highlighter": "0.3.*",
  1074. "nikic/php-parser": "~1.3|~2.0|~3.0",
  1075. "php": ">=5.3.9",
  1076. "symfony/console": "~2.3.10|^2.4.2|~3.0",
  1077. "symfony/var-dumper": "~2.7|~3.0"
  1078. },
  1079. "require-dev": {
  1080. "friendsofphp/php-cs-fixer": "~1.11",
  1081. "hoa/console": "~3.16|~1.14",
  1082. "phpunit/phpunit": "~4.4|~5.0",
  1083. "symfony/finder": "~2.1|~3.0"
  1084. },
  1085. "suggest": {
  1086. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1087. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1088. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1089. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1090. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1091. },
  1092. "bin": [
  1093. "bin/psysh"
  1094. ],
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-develop": "0.9.x-dev"
  1099. }
  1100. },
  1101. "autoload": {
  1102. "files": [
  1103. "src/Psy/functions.php"
  1104. ],
  1105. "psr-4": {
  1106. "Psy\\": "src/Psy/"
  1107. }
  1108. },
  1109. "notification-url": "https://packagist.org/downloads/",
  1110. "license": [
  1111. "MIT"
  1112. ],
  1113. "authors": [
  1114. {
  1115. "name": "Justin Hileman",
  1116. "email": "justin@justinhileman.info",
  1117. "homepage": "http://justinhileman.com"
  1118. }
  1119. ],
  1120. "description": "An interactive shell for modern PHP.",
  1121. "homepage": "http://psysh.org",
  1122. "keywords": [
  1123. "REPL",
  1124. "console",
  1125. "interactive",
  1126. "shell"
  1127. ],
  1128. "time": "2017-03-19T21:40:44+00:00"
  1129. },
  1130. {
  1131. "name": "ramsey/uuid",
  1132. "version": "3.6.1",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/ramsey/uuid.git",
  1136. "reference": "4ae32dd9ab8860a4bbd750ad269cba7f06f7934e"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://files.phpcomposer.com/files/ramsey/uuid/4ae32dd9ab8860a4bbd750ad269cba7f06f7934e.zip",
  1141. "reference": "4ae32dd9ab8860a4bbd750ad269cba7f06f7934e",
  1142. "shasum": ""
  1143. },
  1144. "require": {
  1145. "paragonie/random_compat": "^1.0|^2.0",
  1146. "php": "^5.4 || ^7.0"
  1147. },
  1148. "replace": {
  1149. "rhumsaa/uuid": "self.version"
  1150. },
  1151. "require-dev": {
  1152. "apigen/apigen": "^4.1",
  1153. "codeception/aspect-mock": "^1.0 | ^2.0",
  1154. "doctrine/annotations": "~1.2.0",
  1155. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ^2.1",
  1156. "ircmaxell/random-lib": "^1.1",
  1157. "jakub-onderka/php-parallel-lint": "^0.9.0",
  1158. "mockery/mockery": "^0.9.4",
  1159. "moontoast/math": "^1.1",
  1160. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  1161. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  1162. "satooshi/php-coveralls": "^0.6.1",
  1163. "squizlabs/php_codesniffer": "^2.3"
  1164. },
  1165. "suggest": {
  1166. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1167. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1168. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1169. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1170. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1171. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1172. },
  1173. "type": "library",
  1174. "extra": {
  1175. "branch-alias": {
  1176. "dev-master": "3.x-dev"
  1177. }
  1178. },
  1179. "autoload": {
  1180. "psr-4": {
  1181. "Ramsey\\Uuid\\": "src/"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Marijn Huizendveld",
  1191. "email": "marijn.huizendveld@gmail.com"
  1192. },
  1193. {
  1194. "name": "Thibaud Fabre",
  1195. "email": "thibaud@aztech.io"
  1196. },
  1197. {
  1198. "name": "Ben Ramsey",
  1199. "email": "ben@benramsey.com",
  1200. "homepage": "https://benramsey.com"
  1201. }
  1202. ],
  1203. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1204. "homepage": "https://github.com/ramsey/uuid",
  1205. "keywords": [
  1206. "guid",
  1207. "identifier",
  1208. "uuid"
  1209. ],
  1210. "time": "2017-03-26T20:37:53+00:00"
  1211. },
  1212. {
  1213. "name": "swiftmailer/swiftmailer",
  1214. "version": "v5.4.7",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1218. "reference": "56db4ed32a6d5c9824c3ecc1d2e538f663f47eb4"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://files.phpcomposer.com/files/swiftmailer/swiftmailer/56db4ed32a6d5c9824c3ecc1d2e538f663f47eb4.zip",
  1223. "reference": "56db4ed32a6d5c9824c3ecc1d2e538f663f47eb4",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": ">=5.3.3"
  1228. },
  1229. "require-dev": {
  1230. "mockery/mockery": "~0.9.1",
  1231. "symfony/phpunit-bridge": "~3.2"
  1232. },
  1233. "type": "library",
  1234. "extra": {
  1235. "branch-alias": {
  1236. "dev-master": "5.4-dev"
  1237. }
  1238. },
  1239. "autoload": {
  1240. "files": [
  1241. "lib/swift_required.php"
  1242. ]
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "authors": [
  1249. {
  1250. "name": "Chris Corbyn"
  1251. },
  1252. {
  1253. "name": "Fabien Potencier",
  1254. "email": "fabien@symfony.com"
  1255. }
  1256. ],
  1257. "description": "Swiftmailer, free feature-rich PHP mailer",
  1258. "homepage": "http://swiftmailer.org",
  1259. "keywords": [
  1260. "email",
  1261. "mail",
  1262. "mailer"
  1263. ],
  1264. "time": "2017-04-20T17:32:18+00:00"
  1265. },
  1266. {
  1267. "name": "symfony/console",
  1268. "version": "v3.2.7",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/symfony/console.git",
  1272. "reference": "c30243cc51f726812be3551316b109a2f5deaf8d"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://files.phpcomposer.com/files/symfony/console/c30243cc51f726812be3551316b109a2f5deaf8d.zip",
  1277. "reference": "c30243cc51f726812be3551316b109a2f5deaf8d",
  1278. "shasum": ""
  1279. },
  1280. "require": {
  1281. "php": ">=5.5.9",
  1282. "symfony/debug": "~2.8|~3.0",
  1283. "symfony/polyfill-mbstring": "~1.0"
  1284. },
  1285. "require-dev": {
  1286. "psr/log": "~1.0",
  1287. "symfony/event-dispatcher": "~2.8|~3.0",
  1288. "symfony/filesystem": "~2.8|~3.0",
  1289. "symfony/process": "~2.8|~3.0"
  1290. },
  1291. "suggest": {
  1292. "psr/log": "For using the console logger",
  1293. "symfony/event-dispatcher": "",
  1294. "symfony/filesystem": "",
  1295. "symfony/process": ""
  1296. },
  1297. "type": "library",
  1298. "extra": {
  1299. "branch-alias": {
  1300. "dev-master": "3.2-dev"
  1301. }
  1302. },
  1303. "autoload": {
  1304. "psr-4": {
  1305. "Symfony\\Component\\Console\\": ""
  1306. },
  1307. "exclude-from-classmap": [
  1308. "/Tests/"
  1309. ]
  1310. },
  1311. "notification-url": "https://packagist.org/downloads/",
  1312. "license": [
  1313. "MIT"
  1314. ],
  1315. "authors": [
  1316. {
  1317. "name": "Fabien Potencier",
  1318. "email": "fabien@symfony.com"
  1319. },
  1320. {
  1321. "name": "Symfony Community",
  1322. "homepage": "https://symfony.com/contributors"
  1323. }
  1324. ],
  1325. "description": "Symfony Console Component",
  1326. "homepage": "https://symfony.com",
  1327. "time": "2017-04-04T14:33:42+00:00"
  1328. },
  1329. {
  1330. "name": "symfony/css-selector",
  1331. "version": "v3.2.7",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/symfony/css-selector.git",
  1335. "reference": "a48f13dc83c168f1253a5d2a5a4fb46c36244c4c"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://files.phpcomposer.com/files/symfony/css-selector/a48f13dc83c168f1253a5d2a5a4fb46c36244c4c.zip",
  1340. "reference": "a48f13dc83c168f1253a5d2a5a4fb46c36244c4c",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "php": ">=5.5.9"
  1345. },
  1346. "type": "library",
  1347. "extra": {
  1348. "branch-alias": {
  1349. "dev-master": "3.2-dev"
  1350. }
  1351. },
  1352. "autoload": {
  1353. "psr-4": {
  1354. "Symfony\\Component\\CssSelector\\": ""
  1355. },
  1356. "exclude-from-classmap": [
  1357. "/Tests/"
  1358. ]
  1359. },
  1360. "notification-url": "https://packagist.org/downloads/",
  1361. "license": [
  1362. "MIT"
  1363. ],
  1364. "authors": [
  1365. {
  1366. "name": "Jean-François Simon",
  1367. "email": "jeanfrancois.simon@sensiolabs.com"
  1368. },
  1369. {
  1370. "name": "Fabien Potencier",
  1371. "email": "fabien@symfony.com"
  1372. },
  1373. {
  1374. "name": "Symfony Community",
  1375. "homepage": "https://symfony.com/contributors"
  1376. }
  1377. ],
  1378. "description": "Symfony CssSelector Component",
  1379. "homepage": "https://symfony.com",
  1380. "time": "2017-02-21T09:12:04+00:00"
  1381. },
  1382. {
  1383. "name": "symfony/debug",
  1384. "version": "v3.2.7",
  1385. "source": {
  1386. "type": "git",
  1387. "url": "https://github.com/symfony/debug.git",
  1388. "reference": "56f613406446a4a0a031475cfd0a01751de22659"
  1389. },
  1390. "dist": {
  1391. "type": "zip",
  1392. "url": "https://files.phpcomposer.com/files/symfony/debug/56f613406446a4a0a031475cfd0a01751de22659.zip",
  1393. "reference": "56f613406446a4a0a031475cfd0a01751de22659",
  1394. "shasum": ""
  1395. },
  1396. "require": {
  1397. "php": ">=5.5.9",
  1398. "psr/log": "~1.0"
  1399. },
  1400. "conflict": {
  1401. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1402. },
  1403. "require-dev": {
  1404. "symfony/class-loader": "~2.8|~3.0",
  1405. "symfony/http-kernel": "~2.8|~3.0"
  1406. },
  1407. "type": "library",
  1408. "extra": {
  1409. "branch-alias": {
  1410. "dev-master": "3.2-dev"
  1411. }
  1412. },
  1413. "autoload": {
  1414. "psr-4": {
  1415. "Symfony\\Component\\Debug\\": ""
  1416. },
  1417. "exclude-from-classmap": [
  1418. "/Tests/"
  1419. ]
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Fabien Potencier",
  1428. "email": "fabien@symfony.com"
  1429. },
  1430. {
  1431. "name": "Symfony Community",
  1432. "homepage": "https://symfony.com/contributors"
  1433. }
  1434. ],
  1435. "description": "Symfony Debug Component",
  1436. "homepage": "https://symfony.com",
  1437. "time": "2017-03-28T21:38:24+00:00"
  1438. },
  1439. {
  1440. "name": "symfony/event-dispatcher",
  1441. "version": "v3.2.7",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://github.com/symfony/event-dispatcher.git",
  1445. "reference": "154bb1ef7b0e42ccc792bd53edbce18ed73440ca"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://files.phpcomposer.com/files/symfony/event-dispatcher/154bb1ef7b0e42ccc792bd53edbce18ed73440ca.zip",
  1450. "reference": "154bb1ef7b0e42ccc792bd53edbce18ed73440ca",
  1451. "shasum": ""
  1452. },
  1453. "require": {
  1454. "php": ">=5.5.9"
  1455. },
  1456. "require-dev": {
  1457. "psr/log": "~1.0",
  1458. "symfony/config": "~2.8|~3.0",
  1459. "symfony/dependency-injection": "~2.8|~3.0",
  1460. "symfony/expression-language": "~2.8|~3.0",
  1461. "symfony/stopwatch": "~2.8|~3.0"
  1462. },
  1463. "suggest": {
  1464. "symfony/dependency-injection": "",
  1465. "symfony/http-kernel": ""
  1466. },
  1467. "type": "library",
  1468. "extra": {
  1469. "branch-alias": {
  1470. "dev-master": "3.2-dev"
  1471. }
  1472. },
  1473. "autoload": {
  1474. "psr-4": {
  1475. "Symfony\\Component\\EventDispatcher\\": ""
  1476. },
  1477. "exclude-from-classmap": [
  1478. "/Tests/"
  1479. ]
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "MIT"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "Fabien Potencier",
  1488. "email": "fabien@symfony.com"
  1489. },
  1490. {
  1491. "name": "Symfony Community",
  1492. "homepage": "https://symfony.com/contributors"
  1493. }
  1494. ],
  1495. "description": "Symfony EventDispatcher Component",
  1496. "homepage": "https://symfony.com",
  1497. "time": "2017-04-04T07:26:27+00:00"
  1498. },
  1499. {
  1500. "name": "symfony/finder",
  1501. "version": "v3.2.7",
  1502. "source": {
  1503. "type": "git",
  1504. "url": "https://github.com/symfony/finder.git",
  1505. "reference": "b20900ce5ea164cd9314af52725b0bb5a758217a"
  1506. },
  1507. "dist": {
  1508. "type": "zip",
  1509. "url": "https://files.phpcomposer.com/files/symfony/finder/b20900ce5ea164cd9314af52725b0bb5a758217a.zip",
  1510. "reference": "b20900ce5ea164cd9314af52725b0bb5a758217a",
  1511. "shasum": ""
  1512. },
  1513. "require": {
  1514. "php": ">=5.5.9"
  1515. },
  1516. "type": "library",
  1517. "extra": {
  1518. "branch-alias": {
  1519. "dev-master": "3.2-dev"
  1520. }
  1521. },
  1522. "autoload": {
  1523. "psr-4": {
  1524. "Symfony\\Component\\Finder\\": ""
  1525. },
  1526. "exclude-from-classmap": [
  1527. "/Tests/"
  1528. ]
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "Fabien Potencier",
  1537. "email": "fabien@symfony.com"
  1538. },
  1539. {
  1540. "name": "Symfony Community",
  1541. "homepage": "https://symfony.com/contributors"
  1542. }
  1543. ],
  1544. "description": "Symfony Finder Component",
  1545. "homepage": "https://symfony.com",
  1546. "time": "2017-03-20T09:32:19+00:00"
  1547. },
  1548. {
  1549. "name": "symfony/http-foundation",
  1550. "version": "v3.2.7",
  1551. "source": {
  1552. "type": "git",
  1553. "url": "https://github.com/symfony/http-foundation.git",
  1554. "reference": "cb0b6418f588952c9290b3df4ca650f1b7ab570a"
  1555. },
  1556. "dist": {
  1557. "type": "zip",
  1558. "url": "https://files.phpcomposer.com/files/symfony/http-foundation/cb0b6418f588952c9290b3df4ca650f1b7ab570a.zip",
  1559. "reference": "cb0b6418f588952c9290b3df4ca650f1b7ab570a",
  1560. "shasum": ""
  1561. },
  1562. "require": {
  1563. "php": ">=5.5.9",
  1564. "symfony/polyfill-mbstring": "~1.1"
  1565. },
  1566. "require-dev": {
  1567. "symfony/expression-language": "~2.8|~3.0"
  1568. },
  1569. "type": "library",
  1570. "extra": {
  1571. "branch-alias": {
  1572. "dev-master": "3.2-dev"
  1573. }
  1574. },
  1575. "autoload": {
  1576. "psr-4": {
  1577. "Symfony\\Component\\HttpFoundation\\": ""
  1578. },
  1579. "exclude-from-classmap": [
  1580. "/Tests/"
  1581. ]
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Fabien Potencier",
  1590. "email": "fabien@symfony.com"
  1591. },
  1592. {
  1593. "name": "Symfony Community",
  1594. "homepage": "https://symfony.com/contributors"
  1595. }
  1596. ],
  1597. "description": "Symfony HttpFoundation Component",
  1598. "homepage": "https://symfony.com",
  1599. "time": "2017-04-04T15:30:56+00:00"
  1600. },
  1601. {
  1602. "name": "symfony/http-kernel",
  1603. "version": "v3.2.7",
  1604. "source": {
  1605. "type": "git",
  1606. "url": "https://github.com/symfony/http-kernel.git",
  1607. "reference": "8285ab5faf1306b1a5ebcf287fe91c231a6de88e"
  1608. },
  1609. "dist": {
  1610. "type": "zip",
  1611. "url": "https://files.phpcomposer.com/files/symfony/http-kernel/8285ab5faf1306b1a5ebcf287fe91c231a6de88e.zip",
  1612. "reference": "8285ab5faf1306b1a5ebcf287fe91c231a6de88e",
  1613. "shasum": ""
  1614. },
  1615. "require": {
  1616. "php": ">=5.5.9",
  1617. "psr/log": "~1.0",
  1618. "symfony/debug": "~2.8|~3.0",
  1619. "symfony/event-dispatcher": "~2.8|~3.0",
  1620. "symfony/http-foundation": "~2.8.13|~3.1.6|~3.2"
  1621. },
  1622. "conflict": {
  1623. "symfony/config": "<2.8"
  1624. },
  1625. "require-dev": {
  1626. "symfony/browser-kit": "~2.8|~3.0",
  1627. "symfony/class-loader": "~2.8|~3.0",
  1628. "symfony/config": "~2.8|~3.0",
  1629. "symfony/console": "~2.8|~3.0",
  1630. "symfony/css-selector": "~2.8|~3.0",
  1631. "symfony/dependency-injection": "~2.8|~3.0",
  1632. "symfony/dom-crawler": "~2.8|~3.0",
  1633. "symfony/expression-language": "~2.8|~3.0",
  1634. "symfony/finder": "~2.8|~3.0",
  1635. "symfony/process": "~2.8|~3.0",
  1636. "symfony/routing": "~2.8|~3.0",
  1637. "symfony/stopwatch": "~2.8|~3.0",
  1638. "symfony/templating": "~2.8|~3.0",
  1639. "symfony/translation": "~2.8|~3.0",
  1640. "symfony/var-dumper": "~3.2"
  1641. },
  1642. "suggest": {
  1643. "symfony/browser-kit": "",
  1644. "symfony/class-loader": "",
  1645. "symfony/config": "",
  1646. "symfony/console": "",
  1647. "symfony/dependency-injection": "",
  1648. "symfony/finder": "",
  1649. "symfony/var-dumper": ""
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-master": "3.2-dev"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-4": {
  1659. "Symfony\\Component\\HttpKernel\\": ""
  1660. },
  1661. "exclude-from-classmap": [
  1662. "/Tests/"
  1663. ]
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Fabien Potencier",
  1672. "email": "fabien@symfony.com"
  1673. },
  1674. {
  1675. "name": "Symfony Community",
  1676. "homepage": "https://symfony.com/contributors"
  1677. }
  1678. ],
  1679. "description": "Symfony HttpKernel Component",
  1680. "homepage": "https://symfony.com",
  1681. "time": "2017-04-05T12:52:03+00:00"
  1682. },
  1683. {
  1684. "name": "symfony/polyfill-mbstring",
  1685. "version": "v1.3.0",
  1686. "source": {
  1687. "type": "git",
  1688. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1689. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"
  1690. },
  1691. "dist": {
  1692. "type": "zip",
  1693. "url": "https://files.phpcomposer.com/files/symfony/polyfill-mbstring/e79d363049d1c2128f133a2667e4f4190904f7f4.zip",
  1694. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",
  1695. "shasum": ""
  1696. },
  1697. "require": {
  1698. "php": ">=5.3.3"
  1699. },
  1700. "suggest": {
  1701. "ext-mbstring": "For best performance"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-master": "1.3-dev"
  1707. }
  1708. },
  1709. "autoload": {
  1710. "psr-4": {
  1711. "Symfony\\Polyfill\\Mbstring\\": ""
  1712. },
  1713. "files": [
  1714. "bootstrap.php"
  1715. ]
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "MIT"
  1720. ],
  1721. "authors": [
  1722. {
  1723. "name": "Nicolas Grekas",
  1724. "email": "p@tchwork.com"
  1725. },
  1726. {
  1727. "name": "Symfony Community",
  1728. "homepage": "https://symfony.com/contributors"
  1729. }
  1730. ],
  1731. "description": "Symfony polyfill for the Mbstring extension",
  1732. "homepage": "https://symfony.com",
  1733. "keywords": [
  1734. "compatibility",
  1735. "mbstring",
  1736. "polyfill",
  1737. "portable",
  1738. "shim"
  1739. ],
  1740. "time": "2016-11-14T01:06:16+00:00"
  1741. },
  1742. {
  1743. "name": "symfony/process",
  1744. "version": "v3.2.7",
  1745. "source": {
  1746. "type": "git",
  1747. "url": "https://github.com/symfony/process.git",
  1748. "reference": "57fdaa55827ae14d617550ebe71a820f0a5e2282"
  1749. },
  1750. "dist": {
  1751. "type": "zip",
  1752. "url": "https://files.phpcomposer.com/files/symfony/process/57fdaa55827ae14d617550ebe71a820f0a5e2282.zip",
  1753. "reference": "57fdaa55827ae14d617550ebe71a820f0a5e2282",
  1754. "shasum": ""
  1755. },
  1756. "require": {
  1757. "php": ">=5.5.9"
  1758. },
  1759. "type": "library",
  1760. "extra": {
  1761. "branch-alias": {
  1762. "dev-master": "3.2-dev"
  1763. }
  1764. },
  1765. "autoload": {
  1766. "psr-4": {
  1767. "Symfony\\Component\\Process\\": ""
  1768. },
  1769. "exclude-from-classmap": [
  1770. "/Tests/"
  1771. ]
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "Fabien Potencier",
  1780. "email": "fabien@symfony.com"
  1781. },
  1782. {
  1783. "name": "Symfony Community",
  1784. "homepage": "https://symfony.com/contributors"
  1785. }
  1786. ],
  1787. "description": "Symfony Process Component",
  1788. "homepage": "https://symfony.com",
  1789. "time": "2017-03-27T18:07:02+00:00"
  1790. },
  1791. {
  1792. "name": "symfony/routing",
  1793. "version": "v3.2.7",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/symfony/routing.git",
  1797. "reference": "d6605f9a5767bc5bc4895e1c762ba93964608aee"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://files.phpcomposer.com/files/symfony/routing/d6605f9a5767bc5bc4895e1c762ba93964608aee.zip",
  1802. "reference": "d6605f9a5767bc5bc4895e1c762ba93964608aee",
  1803. "shasum": ""
  1804. },
  1805. "require": {
  1806. "php": ">=5.5.9"
  1807. },
  1808. "conflict": {
  1809. "symfony/config": "<2.8"
  1810. },
  1811. "require-dev": {
  1812. "doctrine/annotations": "~1.0",
  1813. "doctrine/common": "~2.2",
  1814. "psr/log": "~1.0",
  1815. "symfony/config": "~2.8|~3.0",
  1816. "symfony/expression-language": "~2.8|~3.0",
  1817. "symfony/http-foundation": "~2.8|~3.0",
  1818. "symfony/yaml": "~2.8|~3.0"
  1819. },
  1820. "suggest": {
  1821. "doctrine/annotations": "For using the annotation loader",
  1822. "symfony/config": "For using the all-in-one router or any loader",
  1823. "symfony/dependency-injection": "For loading routes from a service",
  1824. "symfony/expression-language": "For using expression matching",
  1825. "symfony/http-foundation": "For using a Symfony Request object",
  1826. "symfony/yaml": "For using the YAML loader"
  1827. },
  1828. "type": "library",
  1829. "extra": {
  1830. "branch-alias": {
  1831. "dev-master": "3.2-dev"
  1832. }
  1833. },
  1834. "autoload": {
  1835. "psr-4": {
  1836. "Symfony\\Component\\Routing\\": ""
  1837. },
  1838. "exclude-from-classmap": [
  1839. "/Tests/"
  1840. ]
  1841. },
  1842. "notification-url": "https://packagist.org/downloads/",
  1843. "license": [
  1844. "MIT"
  1845. ],
  1846. "authors": [
  1847. {
  1848. "name": "Fabien Potencier",
  1849. "email": "fabien@symfony.com"
  1850. },
  1851. {
  1852. "name": "Symfony Community",
  1853. "homepage": "https://symfony.com/contributors"
  1854. }
  1855. ],
  1856. "description": "Symfony Routing Component",
  1857. "homepage": "https://symfony.com",
  1858. "keywords": [
  1859. "router",
  1860. "routing",
  1861. "uri",
  1862. "url"
  1863. ],
  1864. "time": "2017-03-02T15:58:09+00:00"
  1865. },
  1866. {
  1867. "name": "symfony/translation",
  1868. "version": "v3.2.7",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/symfony/translation.git",
  1872. "reference": "c740eee70783d2af4d3d6b70d5146f209e6b4d13"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://files.phpcomposer.com/files/symfony/translation/c740eee70783d2af4d3d6b70d5146f209e6b4d13.zip",
  1877. "reference": "c740eee70783d2af4d3d6b70d5146f209e6b4d13",
  1878. "shasum": ""
  1879. },
  1880. "require": {
  1881. "php": ">=5.5.9",
  1882. "symfony/polyfill-mbstring": "~1.0"
  1883. },
  1884. "conflict": {
  1885. "symfony/config": "<2.8"
  1886. },
  1887. "require-dev": {
  1888. "psr/log": "~1.0",
  1889. "symfony/config": "~2.8|~3.0",
  1890. "symfony/intl": "^2.8.18|^3.2.5",
  1891. "symfony/yaml": "~2.8|~3.0"
  1892. },
  1893. "suggest": {
  1894. "psr/log": "To use logging capability in translator",
  1895. "symfony/config": "",
  1896. "symfony/yaml": ""
  1897. },
  1898. "type": "library",
  1899. "extra": {
  1900. "branch-alias": {
  1901. "dev-master": "3.2-dev"
  1902. }
  1903. },
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Symfony\\Component\\Translation\\": ""
  1907. },
  1908. "exclude-from-classmap": [
  1909. "/Tests/"
  1910. ]
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "authors": [
  1917. {
  1918. "name": "Fabien Potencier",
  1919. "email": "fabien@symfony.com"
  1920. },
  1921. {
  1922. "name": "Symfony Community",
  1923. "homepage": "https://symfony.com/contributors"
  1924. }
  1925. ],
  1926. "description": "Symfony Translation Component",
  1927. "homepage": "https://symfony.com",
  1928. "time": "2017-03-21T21:44:32+00:00"
  1929. },
  1930. {
  1931. "name": "symfony/var-dumper",
  1932. "version": "v3.2.7",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/symfony/var-dumper.git",
  1936. "reference": "81dce20f69a8b40427e1f4e6462178df87cafc03"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://files.phpcomposer.com/files/symfony/var-dumper/81dce20f69a8b40427e1f4e6462178df87cafc03.zip",
  1941. "reference": "81dce20f69a8b40427e1f4e6462178df87cafc03",
  1942. "shasum": ""
  1943. },
  1944. "require": {
  1945. "php": ">=5.5.9",
  1946. "symfony/polyfill-mbstring": "~1.0"
  1947. },
  1948. "conflict": {
  1949. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  1950. },
  1951. "require-dev": {
  1952. "twig/twig": "~1.20|~2.0"
  1953. },
  1954. "suggest": {
  1955. "ext-symfony_debug": ""
  1956. },
  1957. "type": "library",
  1958. "extra": {
  1959. "branch-alias": {
  1960. "dev-master": "3.2-dev"
  1961. }
  1962. },
  1963. "autoload": {
  1964. "files": [
  1965. "Resources/functions/dump.php"
  1966. ],
  1967. "psr-4": {
  1968. "Symfony\\Component\\VarDumper\\": ""
  1969. },
  1970. "exclude-from-classmap": [
  1971. "/Tests/"
  1972. ]
  1973. },
  1974. "notification-url": "https://packagist.org/downloads/",
  1975. "license": [
  1976. "MIT"
  1977. ],
  1978. "authors": [
  1979. {
  1980. "name": "Nicolas Grekas",
  1981. "email": "p@tchwork.com"
  1982. },
  1983. {
  1984. "name": "Symfony Community",
  1985. "homepage": "https://symfony.com/contributors"
  1986. }
  1987. ],
  1988. "description": "Symfony mechanism for exploring and dumping PHP variables",
  1989. "homepage": "https://symfony.com",
  1990. "keywords": [
  1991. "debug",
  1992. "dump"
  1993. ],
  1994. "time": "2017-03-12T16:07:05+00:00"
  1995. },
  1996. {
  1997. "name": "tijsverkoyen/css-to-inline-styles",
  1998. "version": "2.2.0",
  1999. "source": {
  2000. "type": "git",
  2001. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  2002. "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b"
  2003. },
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://files.phpcomposer.com/files/tijsverkoyen/CssToInlineStyles/ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b.zip",
  2007. "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b",
  2008. "shasum": ""
  2009. },
  2010. "require": {
  2011. "php": "^5.5 || ^7",
  2012. "symfony/css-selector": "^2.7|~3.0"
  2013. },
  2014. "require-dev": {
  2015. "phpunit/phpunit": "~4.8|5.1.*"
  2016. },
  2017. "type": "library",
  2018. "extra": {
  2019. "branch-alias": {
  2020. "dev-master": "2.0.x-dev"
  2021. }
  2022. },
  2023. "autoload": {
  2024. "psr-4": {
  2025. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  2026. }
  2027. },
  2028. "notification-url": "https://packagist.org/downloads/",
  2029. "license": [
  2030. "BSD-3-Clause"
  2031. ],
  2032. "authors": [
  2033. {
  2034. "name": "Tijs Verkoyen",
  2035. "email": "css_to_inline_styles@verkoyen.eu",
  2036. "role": "Developer"
  2037. }
  2038. ],
  2039. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  2040. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  2041. "time": "2016-09-20T12:50:39+00:00"
  2042. },
  2043. {
  2044. "name": "vlucas/phpdotenv",
  2045. "version": "v2.4.0",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/vlucas/phpdotenv.git",
  2049. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://files.phpcomposer.com/files/vlucas/phpdotenv/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c.zip",
  2054. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "php": ">=5.3.9"
  2059. },
  2060. "require-dev": {
  2061. "phpunit/phpunit": "^4.8 || ^5.0"
  2062. },
  2063. "type": "library",
  2064. "extra": {
  2065. "branch-alias": {
  2066. "dev-master": "2.4-dev"
  2067. }
  2068. },
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Dotenv\\": "src/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "BSD-3-Clause-Attribution"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "Vance Lucas",
  2081. "email": "vance@vancelucas.com",
  2082. "homepage": "http://www.vancelucas.com"
  2083. }
  2084. ],
  2085. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2086. "keywords": [
  2087. "dotenv",
  2088. "env",
  2089. "environment"
  2090. ],
  2091. "time": "2016-09-01T10:05:43+00:00"
  2092. }
  2093. ],
  2094. "packages-dev": [
  2095. {
  2096. "name": "doctrine/instantiator",
  2097. "version": "1.0.5",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/doctrine/instantiator.git",
  2101. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://files.phpcomposer.com/files/doctrine/instantiator/8e884e78f9f0eb1329e445619e04456e64d8051d.zip",
  2106. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "php": ">=5.3,<8.0-DEV"
  2111. },
  2112. "require-dev": {
  2113. "athletic/athletic": "~0.1.8",
  2114. "ext-pdo": "*",
  2115. "ext-phar": "*",
  2116. "phpunit/phpunit": "~4.0",
  2117. "squizlabs/php_codesniffer": "~2.0"
  2118. },
  2119. "type": "library",
  2120. "extra": {
  2121. "branch-alias": {
  2122. "dev-master": "1.0.x-dev"
  2123. }
  2124. },
  2125. "autoload": {
  2126. "psr-4": {
  2127. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2128. }
  2129. },
  2130. "notification-url": "https://packagist.org/downloads/",
  2131. "license": [
  2132. "MIT"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "Marco Pivetta",
  2137. "email": "ocramius@gmail.com",
  2138. "homepage": "http://ocramius.github.com/"
  2139. }
  2140. ],
  2141. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2142. "homepage": "https://github.com/doctrine/instantiator",
  2143. "keywords": [
  2144. "constructor",
  2145. "instantiate"
  2146. ],
  2147. "time": "2015-06-14T21:17:01+00:00"
  2148. },
  2149. {
  2150. "name": "fzaninotto/faker",
  2151. "version": "v1.6.0",
  2152. "source": {
  2153. "type": "git",
  2154. "url": "https://github.com/fzaninotto/Faker.git",
  2155. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"
  2156. },
  2157. "dist": {
  2158. "type": "zip",
  2159. "url": "https://files.phpcomposer.com/files/fzaninotto/Faker/44f9a286a04b80c76a4e5fb7aad8bb539b920123.zip",
  2160. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  2161. "shasum": ""
  2162. },
  2163. "require": {
  2164. "php": "^5.3.3|^7.0"
  2165. },
  2166. "require-dev": {
  2167. "ext-intl": "*",
  2168. "phpunit/phpunit": "~4.0",
  2169. "squizlabs/php_codesniffer": "~1.5"
  2170. },
  2171. "type": "library",
  2172. "extra": {
  2173. "branch-alias": []
  2174. },
  2175. "autoload": {
  2176. "psr-4": {
  2177. "Faker\\": "src/Faker/"
  2178. }
  2179. },
  2180. "notification-url": "https://packagist.org/downloads/",
  2181. "license": [
  2182. "MIT"
  2183. ],
  2184. "authors": [
  2185. {
  2186. "name": "François Zaninotto"
  2187. }
  2188. ],
  2189. "description": "Faker is a PHP library that generates fake data for you.",
  2190. "keywords": [
  2191. "data",
  2192. "faker",
  2193. "fixtures"
  2194. ],
  2195. "time": "2016-04-29T12:21:54+00:00"
  2196. },
  2197. {
  2198. "name": "hamcrest/hamcrest-php",
  2199. "version": "v1.2.2",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/hamcrest/hamcrest-php.git",
  2203. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://files.phpcomposer.com/files/hamcrest/hamcrest-php/b37020aa976fa52d3de9aa904aa2522dc518f79c.zip",
  2208. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": ">=5.3.2"
  2213. },
  2214. "replace": {
  2215. "cordoval/hamcrest-php": "*",
  2216. "davedevelopment/hamcrest-php": "*",
  2217. "kodova/hamcrest-php": "*"
  2218. },
  2219. "require-dev": {
  2220. "phpunit/php-file-iterator": "1.3.3",
  2221. "satooshi/php-coveralls": "dev-master"
  2222. },
  2223. "type": "library",
  2224. "autoload": {
  2225. "classmap": [
  2226. "hamcrest"
  2227. ],
  2228. "files": [
  2229. "hamcrest/Hamcrest.php"
  2230. ]
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "BSD"
  2235. ],
  2236. "description": "This is the PHP port of Hamcrest Matchers",
  2237. "keywords": [
  2238. "test"
  2239. ],
  2240. "time": "2015-05-11T14:41:42+00:00"
  2241. },
  2242. {
  2243. "name": "mockery/mockery",
  2244. "version": "0.9.9",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/mockery/mockery.git",
  2248. "reference": "6fdb61243844dc924071d3404bb23994ea0b6856"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://files.phpcomposer.com/files/mockery/mockery/6fdb61243844dc924071d3404bb23994ea0b6856.zip",
  2253. "reference": "6fdb61243844dc924071d3404bb23994ea0b6856",
  2254. "shasum": ""
  2255. },
  2256. "require": {
  2257. "hamcrest/hamcrest-php": "~1.1",
  2258. "lib-pcre": ">=7.0",
  2259. "php": ">=5.3.2"
  2260. },
  2261. "require-dev": {
  2262. "phpunit/phpunit": "~4.0"
  2263. },
  2264. "type": "library",
  2265. "extra": {
  2266. "branch-alias": {
  2267. "dev-master": "0.9.x-dev"
  2268. }
  2269. },
  2270. "autoload": {
  2271. "psr-0": {
  2272. "Mockery": "library/"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "BSD-3-Clause"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "Pádraic Brady",
  2282. "email": "padraic.brady@gmail.com",
  2283. "homepage": "http://blog.astrumfutura.com"
  2284. },
  2285. {
  2286. "name": "Dave Marshall",
  2287. "email": "dave.marshall@atstsolutions.co.uk",
  2288. "homepage": "http://davedevelopment.co.uk"
  2289. }
  2290. ],
  2291. "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
  2292. "homepage": "http://github.com/padraic/mockery",
  2293. "keywords": [
  2294. "BDD",
  2295. "TDD",
  2296. "library",
  2297. "mock",
  2298. "mock objects",
  2299. "mockery",
  2300. "stub",
  2301. "test",
  2302. "test double",
  2303. "testing"
  2304. ],
  2305. "time": "2017-02-28T12:52:32+00:00"
  2306. },
  2307. {
  2308. "name": "myclabs/deep-copy",
  2309. "version": "1.6.1",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/myclabs/DeepCopy.git",
  2313. "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://files.phpcomposer.com/files/myclabs/DeepCopy/8e6e04167378abf1ddb4d3522d8755c5fd90d102.zip",
  2318. "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102",
  2319. "shasum": ""
  2320. },
  2321. "require": {
  2322. "php": ">=5.4.0"
  2323. },
  2324. "require-dev": {
  2325. "doctrine/collections": "1.*",
  2326. "phpunit/phpunit": "~4.1"
  2327. },
  2328. "type": "library",
  2329. "autoload": {
  2330. "psr-4": {
  2331. "DeepCopy\\": "src/DeepCopy/"
  2332. }
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "description": "Create deep copies (clones) of your objects",
  2339. "homepage": "https://github.com/myclabs/DeepCopy",
  2340. "keywords": [
  2341. "clone",
  2342. "copy",
  2343. "duplicate",
  2344. "object",
  2345. "object graph"
  2346. ],
  2347. "time": "2017-04-12T18:52:22+00:00"
  2348. },
  2349. {
  2350. "name": "phpdocumentor/reflection-common",
  2351. "version": "1.0",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2355. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://files.phpcomposer.com/files/phpDocumentor/ReflectionCommon/144c307535e82c8fdcaacbcfc1d6d8eeb896687c.zip",
  2360. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "php": ">=5.5"
  2365. },
  2366. "require-dev": {
  2367. "phpunit/phpunit": "^4.6"
  2368. },
  2369. "type": "library",
  2370. "extra": {
  2371. "branch-alias": {
  2372. "dev-master": "1.0.x-dev"
  2373. }
  2374. },
  2375. "autoload": {
  2376. "psr-4": {
  2377. "phpDocumentor\\Reflection\\": [
  2378. "src"
  2379. ]
  2380. }
  2381. },
  2382. "notification-url": "https://packagist.org/downloads/",
  2383. "license": [
  2384. "MIT"
  2385. ],
  2386. "authors": [
  2387. {
  2388. "name": "Jaap van Otterdijk",
  2389. "email": "opensource@ijaap.nl"
  2390. }
  2391. ],
  2392. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2393. "homepage": "http://www.phpdoc.org",
  2394. "keywords": [
  2395. "FQSEN",
  2396. "phpDocumentor",
  2397. "phpdoc",
  2398. "reflection",
  2399. "static analysis"
  2400. ],
  2401. "time": "2015-12-27T11:43:31+00:00"
  2402. },
  2403. {
  2404. "name": "phpdocumentor/reflection-docblock",
  2405. "version": "3.1.1",
  2406. "source": {
  2407. "type": "git",
  2408. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2409. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e"
  2410. },
  2411. "dist": {
  2412. "type": "zip",
  2413. "url": "https://files.phpcomposer.com/files/phpDocumentor/ReflectionDocBlock/8331b5efe816ae05461b7ca1e721c01b46bafb3e.zip",
  2414. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  2415. "shasum": ""
  2416. },
  2417. "require": {
  2418. "php": ">=5.5",
  2419. "phpdocumentor/reflection-common": "^1.0@dev",
  2420. "phpdocumentor/type-resolver": "^0.2.0",
  2421. "webmozart/assert": "^1.0"
  2422. },
  2423. "require-dev": {
  2424. "mockery/mockery": "^0.9.4",
  2425. "phpunit/phpunit": "^4.4"
  2426. },
  2427. "type": "library",
  2428. "autoload": {
  2429. "psr-4": {
  2430. "phpDocumentor\\Reflection\\": [
  2431. "src/"
  2432. ]
  2433. }
  2434. },
  2435. "notification-url": "https://packagist.org/downloads/",
  2436. "license": [
  2437. "MIT"
  2438. ],
  2439. "authors": [
  2440. {
  2441. "name": "Mike van Riel",
  2442. "email": "me@mikevanriel.com"
  2443. }
  2444. ],
  2445. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2446. "time": "2016-09-30T07:12:33+00:00"
  2447. },
  2448. {
  2449. "name": "phpdocumentor/type-resolver",
  2450. "version": "0.2.1",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2454. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://files.phpcomposer.com/files/phpDocumentor/TypeResolver/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb.zip",
  2459. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  2460. "shasum": ""
  2461. },
  2462. "require": {
  2463. "php": ">=5.5",
  2464. "phpdocumentor/reflection-common": "^1.0"
  2465. },
  2466. "require-dev": {
  2467. "mockery/mockery": "^0.9.4",
  2468. "phpunit/phpunit": "^5.2||^4.8.24"
  2469. },
  2470. "type": "library",
  2471. "extra": {
  2472. "branch-alias": {
  2473. "dev-master": "1.0.x-dev"
  2474. }
  2475. },
  2476. "autoload": {
  2477. "psr-4": {
  2478. "phpDocumentor\\Reflection\\": [
  2479. "src/"
  2480. ]
  2481. }
  2482. },
  2483. "notification-url": "https://packagist.org/downloads/",
  2484. "license": [
  2485. "MIT"
  2486. ],
  2487. "authors": [
  2488. {
  2489. "name": "Mike van Riel",
  2490. "email": "me@mikevanriel.com"
  2491. }
  2492. ],
  2493. "time": "2016-11-25T06:54:22+00:00"
  2494. },
  2495. {
  2496. "name": "phpspec/prophecy",
  2497. "version": "v1.7.0",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/phpspec/prophecy.git",
  2501. "reference": "93d39f1f7f9326d746203c7c056f300f7f126073"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://files.phpcomposer.com/files/phpspec/prophecy/93d39f1f7f9326d746203c7c056f300f7f126073.zip",
  2506. "reference": "93d39f1f7f9326d746203c7c056f300f7f126073",
  2507. "shasum": ""
  2508. },
  2509. "require": {
  2510. "doctrine/instantiator": "^1.0.2",
  2511. "php": "^5.3|^7.0",
  2512. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  2513. "sebastian/comparator": "^1.1|^2.0",
  2514. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  2515. },
  2516. "require-dev": {
  2517. "phpspec/phpspec": "^2.5|^3.2",
  2518. "phpunit/phpunit": "^4.8 || ^5.6.5"
  2519. },
  2520. "type": "library",
  2521. "extra": {
  2522. "branch-alias": {
  2523. "dev-master": "1.6.x-dev"
  2524. }
  2525. },
  2526. "autoload": {
  2527. "psr-0": {
  2528. "Prophecy\\": "src/"
  2529. }
  2530. },
  2531. "notification-url": "https://packagist.org/downloads/",
  2532. "license": [
  2533. "MIT"
  2534. ],
  2535. "authors": [
  2536. {
  2537. "name": "Konstantin Kudryashov",
  2538. "email": "ever.zet@gmail.com",
  2539. "homepage": "http://everzet.com"
  2540. },
  2541. {
  2542. "name": "Marcello Duarte",
  2543. "email": "marcello.duarte@gmail.com"
  2544. }
  2545. ],
  2546. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2547. "homepage": "https://github.com/phpspec/prophecy",
  2548. "keywords": [
  2549. "Double",
  2550. "Dummy",
  2551. "fake",
  2552. "mock",
  2553. "spy",
  2554. "stub"
  2555. ],
  2556. "time": "2017-03-02T20:05:34+00:00"
  2557. },
  2558. {
  2559. "name": "phpunit/php-code-coverage",
  2560. "version": "4.0.8",
  2561. "source": {
  2562. "type": "git",
  2563. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2564. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
  2565. },
  2566. "dist": {
  2567. "type": "zip",
  2568. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-code-coverage/ef7b2f56815df854e66ceaee8ebe9393ae36a40d.zip",
  2569. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  2570. "shasum": ""
  2571. },
  2572. "require": {
  2573. "ext-dom": "*",
  2574. "ext-xmlwriter": "*",
  2575. "php": "^5.6 || ^7.0",
  2576. "phpunit/php-file-iterator": "^1.3",
  2577. "phpunit/php-text-template": "^1.2",
  2578. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  2579. "sebastian/code-unit-reverse-lookup": "^1.0",
  2580. "sebastian/environment": "^1.3.2 || ^2.0",
  2581. "sebastian/version": "^1.0 || ^2.0"
  2582. },
  2583. "require-dev": {
  2584. "ext-xdebug": "^2.1.4",
  2585. "phpunit/phpunit": "^5.7"
  2586. },
  2587. "suggest": {
  2588. "ext-xdebug": "^2.5.1"
  2589. },
  2590. "type": "library",
  2591. "extra": {
  2592. "branch-alias": {
  2593. "dev-master": "4.0.x-dev"
  2594. }
  2595. },
  2596. "autoload": {
  2597. "classmap": [
  2598. "src/"
  2599. ]
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "BSD-3-Clause"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "Sebastian Bergmann",
  2608. "email": "sb@sebastian-bergmann.de",
  2609. "role": "lead"
  2610. }
  2611. ],
  2612. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2613. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2614. "keywords": [
  2615. "coverage",
  2616. "testing",
  2617. "xunit"
  2618. ],
  2619. "time": "2017-04-02T07:44:40+00:00"
  2620. },
  2621. {
  2622. "name": "phpunit/php-file-iterator",
  2623. "version": "1.4.2",
  2624. "source": {
  2625. "type": "git",
  2626. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2627. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
  2628. },
  2629. "dist": {
  2630. "type": "zip",
  2631. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-file-iterator/3cc8f69b3028d0f96a9078e6295d86e9bf019be5.zip",
  2632. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  2633. "shasum": ""
  2634. },
  2635. "require": {
  2636. "php": ">=5.3.3"
  2637. },
  2638. "type": "library",
  2639. "extra": {
  2640. "branch-alias": {
  2641. "dev-master": "1.4.x-dev"
  2642. }
  2643. },
  2644. "autoload": {
  2645. "classmap": [
  2646. "src/"
  2647. ]
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "BSD-3-Clause"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Sebastian Bergmann",
  2656. "email": "sb@sebastian-bergmann.de",
  2657. "role": "lead"
  2658. }
  2659. ],
  2660. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2661. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2662. "keywords": [
  2663. "filesystem",
  2664. "iterator"
  2665. ],
  2666. "time": "2016-10-03T07:40:28+00:00"
  2667. },
  2668. {
  2669. "name": "phpunit/php-text-template",
  2670. "version": "1.2.1",
  2671. "source": {
  2672. "type": "git",
  2673. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2674. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2675. },
  2676. "dist": {
  2677. "type": "zip",
  2678. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-text-template/31f8b717e51d9a2afca6c9f046f5d69fc27c8686.zip",
  2679. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2680. "shasum": ""
  2681. },
  2682. "require": {
  2683. "php": ">=5.3.3"
  2684. },
  2685. "type": "library",
  2686. "autoload": {
  2687. "classmap": [
  2688. "src/"
  2689. ]
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "BSD-3-Clause"
  2694. ],
  2695. "authors": [
  2696. {
  2697. "name": "Sebastian Bergmann",
  2698. "email": "sebastian@phpunit.de",
  2699. "role": "lead"
  2700. }
  2701. ],
  2702. "description": "Simple template engine.",
  2703. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2704. "keywords": [
  2705. "template"
  2706. ],
  2707. "time": "2015-06-21T13:50:34+00:00"
  2708. },
  2709. {
  2710. "name": "phpunit/php-timer",
  2711. "version": "1.0.9",
  2712. "source": {
  2713. "type": "git",
  2714. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2715. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  2716. },
  2717. "dist": {
  2718. "type": "zip",
  2719. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-timer/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f.zip",
  2720. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2721. "shasum": ""
  2722. },
  2723. "require": {
  2724. "php": "^5.3.3 || ^7.0"
  2725. },
  2726. "require-dev": {
  2727. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2728. },
  2729. "type": "library",
  2730. "extra": {
  2731. "branch-alias": {
  2732. "dev-master": "1.0-dev"
  2733. }
  2734. },
  2735. "autoload": {
  2736. "classmap": [
  2737. "src/"
  2738. ]
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "BSD-3-Clause"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Sebastian Bergmann",
  2747. "email": "sb@sebastian-bergmann.de",
  2748. "role": "lead"
  2749. }
  2750. ],
  2751. "description": "Utility class for timing",
  2752. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2753. "keywords": [
  2754. "timer"
  2755. ],
  2756. "time": "2017-02-26T11:10:40+00:00"
  2757. },
  2758. {
  2759. "name": "phpunit/php-token-stream",
  2760. "version": "1.4.11",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2764. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-token-stream/e03f8f67534427a787e21a385a67ec3ca6978ea7.zip",
  2769. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",
  2770. "shasum": ""
  2771. },
  2772. "require": {
  2773. "ext-tokenizer": "*",
  2774. "php": ">=5.3.3"
  2775. },
  2776. "require-dev": {
  2777. "phpunit/phpunit": "~4.2"
  2778. },
  2779. "type": "library",
  2780. "extra": {
  2781. "branch-alias": {
  2782. "dev-master": "1.4-dev"
  2783. }
  2784. },
  2785. "autoload": {
  2786. "classmap": [
  2787. "src/"
  2788. ]
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "BSD-3-Clause"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Sebastian Bergmann",
  2797. "email": "sebastian@phpunit.de"
  2798. }
  2799. ],
  2800. "description": "Wrapper around PHP's tokenizer extension.",
  2801. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2802. "keywords": [
  2803. "tokenizer"
  2804. ],
  2805. "time": "2017-02-27T10:12:30+00:00"
  2806. },
  2807. {
  2808. "name": "phpunit/phpunit",
  2809. "version": "5.7.19",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2813. "reference": "69c4f49ff376af2692bad9cebd883d17ebaa98a1"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://files.phpcomposer.com/files/sebastianbergmann/phpunit/69c4f49ff376af2692bad9cebd883d17ebaa98a1.zip",
  2818. "reference": "69c4f49ff376af2692bad9cebd883d17ebaa98a1",
  2819. "shasum": ""
  2820. },
  2821. "require": {
  2822. "ext-dom": "*",
  2823. "ext-json": "*",
  2824. "ext-libxml": "*",
  2825. "ext-mbstring": "*",
  2826. "ext-xml": "*",
  2827. "myclabs/deep-copy": "~1.3",
  2828. "php": "^5.6 || ^7.0",
  2829. "phpspec/prophecy": "^1.6.2",
  2830. "phpunit/php-code-coverage": "^4.0.4",
  2831. "phpunit/php-file-iterator": "~1.4",
  2832. "phpunit/php-text-template": "~1.2",
  2833. "phpunit/php-timer": "^1.0.6",
  2834. "phpunit/phpunit-mock-objects": "^3.2",
  2835. "sebastian/comparator": "^1.2.4",
  2836. "sebastian/diff": "~1.2",
  2837. "sebastian/environment": "^1.3.4 || ^2.0",
  2838. "sebastian/exporter": "~2.0",
  2839. "sebastian/global-state": "^1.1",
  2840. "sebastian/object-enumerator": "~2.0",
  2841. "sebastian/resource-operations": "~1.0",
  2842. "sebastian/version": "~1.0.3|~2.0",
  2843. "symfony/yaml": "~2.1|~3.0"
  2844. },
  2845. "conflict": {
  2846. "phpdocumentor/reflection-docblock": "3.0.2"
  2847. },
  2848. "require-dev": {
  2849. "ext-pdo": "*"
  2850. },
  2851. "suggest": {
  2852. "ext-xdebug": "*",
  2853. "phpunit/php-invoker": "~1.1"
  2854. },
  2855. "bin": [
  2856. "phpunit"
  2857. ],
  2858. "type": "library",
  2859. "extra": {
  2860. "branch-alias": {
  2861. "dev-master": "5.7.x-dev"
  2862. }
  2863. },
  2864. "autoload": {
  2865. "classmap": [
  2866. "src/"
  2867. ]
  2868. },
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "BSD-3-Clause"
  2872. ],
  2873. "authors": [
  2874. {
  2875. "name": "Sebastian Bergmann",
  2876. "email": "sebastian@phpunit.de",
  2877. "role": "lead"
  2878. }
  2879. ],
  2880. "description": "The PHP Unit Testing framework.",
  2881. "homepage": "https://phpunit.de/",
  2882. "keywords": [
  2883. "phpunit",
  2884. "testing",
  2885. "xunit"
  2886. ],
  2887. "time": "2017-04-03T02:22:27+00:00"
  2888. },
  2889. {
  2890. "name": "phpunit/phpunit-mock-objects",
  2891. "version": "3.4.3",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  2895. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://files.phpcomposer.com/files/sebastianbergmann/phpunit-mock-objects/3ab72b65b39b491e0c011e2e09bb2206c2aa8e24.zip",
  2900. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  2901. "shasum": ""
  2902. },
  2903. "require": {
  2904. "doctrine/instantiator": "^1.0.2",
  2905. "php": "^5.6 || ^7.0",
  2906. "phpunit/php-text-template": "^1.2",
  2907. "sebastian/exporter": "^1.2 || ^2.0"
  2908. },
  2909. "conflict": {
  2910. "phpunit/phpunit": "<5.4.0"
  2911. },
  2912. "require-dev": {
  2913. "phpunit/phpunit": "^5.4"
  2914. },
  2915. "suggest": {
  2916. "ext-soap": "*"
  2917. },
  2918. "type": "library",
  2919. "extra": {
  2920. "branch-alias": {
  2921. "dev-master": "3.2.x-dev"
  2922. }
  2923. },
  2924. "autoload": {
  2925. "classmap": [
  2926. "src/"
  2927. ]
  2928. },
  2929. "notification-url": "https://packagist.org/downloads/",
  2930. "license": [
  2931. "BSD-3-Clause"
  2932. ],
  2933. "authors": [
  2934. {
  2935. "name": "Sebastian Bergmann",
  2936. "email": "sb@sebastian-bergmann.de",
  2937. "role": "lead"
  2938. }
  2939. ],
  2940. "description": "Mock Object library for PHPUnit",
  2941. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  2942. "keywords": [
  2943. "mock",
  2944. "xunit"
  2945. ],
  2946. "time": "2016-12-08T20:27:08+00:00"
  2947. },
  2948. {
  2949. "name": "sebastian/code-unit-reverse-lookup",
  2950. "version": "1.0.1",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  2954. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://files.phpcomposer.com/files/sebastianbergmann/code-unit-reverse-lookup/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18.zip",
  2959. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  2960. "shasum": ""
  2961. },
  2962. "require": {
  2963. "php": "^5.6 || ^7.0"
  2964. },
  2965. "require-dev": {
  2966. "phpunit/phpunit": "^5.7 || ^6.0"
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-master": "1.0.x-dev"
  2972. }
  2973. },
  2974. "autoload": {
  2975. "classmap": [
  2976. "src/"
  2977. ]
  2978. },
  2979. "notification-url": "https://packagist.org/downloads/",
  2980. "license": [
  2981. "BSD-3-Clause"
  2982. ],
  2983. "authors": [
  2984. {
  2985. "name": "Sebastian Bergmann",
  2986. "email": "sebastian@phpunit.de"
  2987. }
  2988. ],
  2989. "description": "Looks up which function or method a line of code belongs to",
  2990. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2991. "time": "2017-03-04T06:30:41+00:00"
  2992. },
  2993. {
  2994. "name": "sebastian/comparator",
  2995. "version": "1.2.4",
  2996. "source": {
  2997. "type": "git",
  2998. "url": "https://github.com/sebastianbergmann/comparator.git",
  2999. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  3000. },
  3001. "dist": {
  3002. "type": "zip",
  3003. "url": "https://files.phpcomposer.com/files/sebastianbergmann/comparator/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be.zip",
  3004. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  3005. "shasum": ""
  3006. },
  3007. "require": {
  3008. "php": ">=5.3.3",
  3009. "sebastian/diff": "~1.2",
  3010. "sebastian/exporter": "~1.2 || ~2.0"
  3011. },
  3012. "require-dev": {
  3013. "phpunit/phpunit": "~4.4"
  3014. },
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "1.2.x-dev"
  3019. }
  3020. },
  3021. "autoload": {
  3022. "classmap": [
  3023. "src/"
  3024. ]
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "BSD-3-Clause"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Jeff Welch",
  3033. "email": "whatthejeff@gmail.com"
  3034. },
  3035. {
  3036. "name": "Volker Dusch",
  3037. "email": "github@wallbash.com"
  3038. },
  3039. {
  3040. "name": "Bernhard Schussek",
  3041. "email": "bschussek@2bepublished.at"
  3042. },
  3043. {
  3044. "name": "Sebastian Bergmann",
  3045. "email": "sebastian@phpunit.de"
  3046. }
  3047. ],
  3048. "description": "Provides the functionality to compare PHP values for equality",
  3049. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  3050. "keywords": [
  3051. "comparator",
  3052. "compare",
  3053. "equality"
  3054. ],
  3055. "time": "2017-01-29T09:50:25+00:00"
  3056. },
  3057. {
  3058. "name": "sebastian/diff",
  3059. "version": "1.4.1",
  3060. "source": {
  3061. "type": "git",
  3062. "url": "https://github.com/sebastianbergmann/diff.git",
  3063. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  3064. },
  3065. "dist": {
  3066. "type": "zip",
  3067. "url": "https://files.phpcomposer.com/files/sebastianbergmann/diff/13edfd8706462032c2f52b4b862974dd46b71c9e.zip",
  3068. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  3069. "shasum": ""
  3070. },
  3071. "require": {
  3072. "php": ">=5.3.3"
  3073. },
  3074. "require-dev": {
  3075. "phpunit/phpunit": "~4.8"
  3076. },
  3077. "type": "library",
  3078. "extra": {
  3079. "branch-alias": {
  3080. "dev-master": "1.4-dev"
  3081. }
  3082. },
  3083. "autoload": {
  3084. "classmap": [
  3085. "src/"
  3086. ]
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "BSD-3-Clause"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "Kore Nordmann",
  3095. "email": "mail@kore-nordmann.de"
  3096. },
  3097. {
  3098. "name": "Sebastian Bergmann",
  3099. "email": "sebastian@phpunit.de"
  3100. }
  3101. ],
  3102. "description": "Diff implementation",
  3103. "homepage": "https://github.com/sebastianbergmann/diff",
  3104. "keywords": [
  3105. "diff"
  3106. ],
  3107. "time": "2015-12-08T07:14:41+00:00"
  3108. },
  3109. {
  3110. "name": "sebastian/environment",
  3111. "version": "2.0.0",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://github.com/sebastianbergmann/environment.git",
  3115. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://files.phpcomposer.com/files/sebastianbergmann/environment/5795ffe5dc5b02460c3e34222fee8cbe245d8fac.zip",
  3120. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  3121. "shasum": ""
  3122. },
  3123. "require": {
  3124. "php": "^5.6 || ^7.0"
  3125. },
  3126. "require-dev": {
  3127. "phpunit/phpunit": "^5.0"
  3128. },
  3129. "type": "library",
  3130. "extra": {
  3131. "branch-alias": {
  3132. "dev-master": "2.0.x-dev"
  3133. }
  3134. },
  3135. "autoload": {
  3136. "classmap": [
  3137. "src/"
  3138. ]
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "BSD-3-Clause"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Sebastian Bergmann",
  3147. "email": "sebastian@phpunit.de"
  3148. }
  3149. ],
  3150. "description": "Provides functionality to handle HHVM/PHP environments",
  3151. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3152. "keywords": [
  3153. "Xdebug",
  3154. "environment",
  3155. "hhvm"
  3156. ],
  3157. "time": "2016-11-26T07:53:53+00:00"
  3158. },
  3159. {
  3160. "name": "sebastian/exporter",
  3161. "version": "2.0.0",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/sebastianbergmann/exporter.git",
  3165. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://files.phpcomposer.com/files/sebastianbergmann/exporter/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4.zip",
  3170. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  3171. "shasum": ""
  3172. },
  3173. "require": {
  3174. "php": ">=5.3.3",
  3175. "sebastian/recursion-context": "~2.0"
  3176. },
  3177. "require-dev": {
  3178. "ext-mbstring": "*",
  3179. "phpunit/phpunit": "~4.4"
  3180. },
  3181. "type": "library",
  3182. "extra": {
  3183. "branch-alias": {
  3184. "dev-master": "2.0.x-dev"
  3185. }
  3186. },
  3187. "autoload": {
  3188. "classmap": [
  3189. "src/"
  3190. ]
  3191. },
  3192. "notification-url": "https://packagist.org/downloads/",
  3193. "license": [
  3194. "BSD-3-Clause"
  3195. ],
  3196. "authors": [
  3197. {
  3198. "name": "Jeff Welch",
  3199. "email": "whatthejeff@gmail.com"
  3200. },
  3201. {
  3202. "name": "Volker Dusch",
  3203. "email": "github@wallbash.com"
  3204. },
  3205. {
  3206. "name": "Bernhard Schussek",
  3207. "email": "bschussek@2bepublished.at"
  3208. },
  3209. {
  3210. "name": "Sebastian Bergmann",
  3211. "email": "sebastian@phpunit.de"
  3212. },
  3213. {
  3214. "name": "Adam Harvey",
  3215. "email": "aharvey@php.net"
  3216. }
  3217. ],
  3218. "description": "Provides the functionality to export PHP variables for visualization",
  3219. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3220. "keywords": [
  3221. "export",
  3222. "exporter"
  3223. ],
  3224. "time": "2016-11-19T08:54:04+00:00"
  3225. },
  3226. {
  3227. "name": "sebastian/global-state",
  3228. "version": "1.1.1",
  3229. "source": {
  3230. "type": "git",
  3231. "url": "https://github.com/sebastianbergmann/global-state.git",
  3232. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3233. },
  3234. "dist": {
  3235. "type": "zip",
  3236. "url": "https://files.phpcomposer.com/files/sebastianbergmann/global-state/bc37d50fea7d017d3d340f230811c9f1d7280af4.zip",
  3237. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3238. "shasum": ""
  3239. },
  3240. "require": {
  3241. "php": ">=5.3.3"
  3242. },
  3243. "require-dev": {
  3244. "phpunit/phpunit": "~4.2"
  3245. },
  3246. "suggest": {
  3247. "ext-uopz": "*"
  3248. },
  3249. "type": "library",
  3250. "extra": {
  3251. "branch-alias": {
  3252. "dev-master": "1.0-dev"
  3253. }
  3254. },
  3255. "autoload": {
  3256. "classmap": [
  3257. "src/"
  3258. ]
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "BSD-3-Clause"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Sebastian Bergmann",
  3267. "email": "sebastian@phpunit.de"
  3268. }
  3269. ],
  3270. "description": "Snapshotting of global state",
  3271. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3272. "keywords": [
  3273. "global state"
  3274. ],
  3275. "time": "2015-10-12T03:26:01+00:00"
  3276. },
  3277. {
  3278. "name": "sebastian/object-enumerator",
  3279. "version": "2.0.1",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3283. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://files.phpcomposer.com/files/sebastianbergmann/object-enumerator/1311872ac850040a79c3c058bea3e22d0f09cbb7.zip",
  3288. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  3289. "shasum": ""
  3290. },
  3291. "require": {
  3292. "php": ">=5.6",
  3293. "sebastian/recursion-context": "~2.0"
  3294. },
  3295. "require-dev": {
  3296. "phpunit/phpunit": "~5"
  3297. },
  3298. "type": "library",
  3299. "extra": {
  3300. "branch-alias": {
  3301. "dev-master": "2.0.x-dev"
  3302. }
  3303. },
  3304. "autoload": {
  3305. "classmap": [
  3306. "src/"
  3307. ]
  3308. },
  3309. "notification-url": "https://packagist.org/downloads/",
  3310. "license": [
  3311. "BSD-3-Clause"
  3312. ],
  3313. "authors": [
  3314. {
  3315. "name": "Sebastian Bergmann",
  3316. "email": "sebastian@phpunit.de"
  3317. }
  3318. ],
  3319. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3320. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3321. "time": "2017-02-18T15:18:39+00:00"
  3322. },
  3323. {
  3324. "name": "sebastian/recursion-context",
  3325. "version": "2.0.0",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3329. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://files.phpcomposer.com/files/sebastianbergmann/recursion-context/2c3ba150cbec723aa057506e73a8d33bdb286c9a.zip",
  3334. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  3335. "shasum": ""
  3336. },
  3337. "require": {
  3338. "php": ">=5.3.3"
  3339. },
  3340. "require-dev": {
  3341. "phpunit/phpunit": "~4.4"
  3342. },
  3343. "type": "library",
  3344. "extra": {
  3345. "branch-alias": {
  3346. "dev-master": "2.0.x-dev"
  3347. }
  3348. },
  3349. "autoload": {
  3350. "classmap": [
  3351. "src/"
  3352. ]
  3353. },
  3354. "notification-url": "https://packagist.org/downloads/",
  3355. "license": [
  3356. "BSD-3-Clause"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "Jeff Welch",
  3361. "email": "whatthejeff@gmail.com"
  3362. },
  3363. {
  3364. "name": "Sebastian Bergmann",
  3365. "email": "sebastian@phpunit.de"
  3366. },
  3367. {
  3368. "name": "Adam Harvey",
  3369. "email": "aharvey@php.net"
  3370. }
  3371. ],
  3372. "description": "Provides functionality to recursively process PHP variables",
  3373. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3374. "time": "2016-11-19T07:33:16+00:00"
  3375. },
  3376. {
  3377. "name": "sebastian/resource-operations",
  3378. "version": "1.0.0",
  3379. "source": {
  3380. "type": "git",
  3381. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3382. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  3383. },
  3384. "dist": {
  3385. "type": "zip",
  3386. "url": "https://files.phpcomposer.com/files/sebastianbergmann/resource-operations/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52.zip",
  3387. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3388. "shasum": ""
  3389. },
  3390. "require": {
  3391. "php": ">=5.6.0"
  3392. },
  3393. "type": "library",
  3394. "extra": {
  3395. "branch-alias": {
  3396. "dev-master": "1.0.x-dev"
  3397. }
  3398. },
  3399. "autoload": {
  3400. "classmap": [
  3401. "src/"
  3402. ]
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "BSD-3-Clause"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Sebastian Bergmann",
  3411. "email": "sebastian@phpunit.de"
  3412. }
  3413. ],
  3414. "description": "Provides a list of PHP built-in functions that operate on resources",
  3415. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3416. "time": "2015-07-28T20:34:47+00:00"
  3417. },
  3418. {
  3419. "name": "sebastian/version",
  3420. "version": "2.0.1",
  3421. "source": {
  3422. "type": "git",
  3423. "url": "https://github.com/sebastianbergmann/version.git",
  3424. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3425. },
  3426. "dist": {
  3427. "type": "zip",
  3428. "url": "https://files.phpcomposer.com/files/sebastianbergmann/version/99732be0ddb3361e16ad77b68ba41efc8e979019.zip",
  3429. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3430. "shasum": ""
  3431. },
  3432. "require": {
  3433. "php": ">=5.6"
  3434. },
  3435. "type": "library",
  3436. "extra": {
  3437. "branch-alias": {
  3438. "dev-master": "2.0.x-dev"
  3439. }
  3440. },
  3441. "autoload": {
  3442. "classmap": [
  3443. "src/"
  3444. ]
  3445. },
  3446. "notification-url": "https://packagist.org/downloads/",
  3447. "license": [
  3448. "BSD-3-Clause"
  3449. ],
  3450. "authors": [
  3451. {
  3452. "name": "Sebastian Bergmann",
  3453. "email": "sebastian@phpunit.de",
  3454. "role": "lead"
  3455. }
  3456. ],
  3457. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3458. "homepage": "https://github.com/sebastianbergmann/version",
  3459. "time": "2016-10-03T07:35:21+00:00"
  3460. },
  3461. {
  3462. "name": "symfony/yaml",
  3463. "version": "v3.2.7",
  3464. "source": {
  3465. "type": "git",
  3466. "url": "https://github.com/symfony/yaml.git",
  3467. "reference": "62b4cdb99d52cb1ff253c465eb1532a80cebb621"
  3468. },
  3469. "dist": {
  3470. "type": "zip",
  3471. "url": "https://files.phpcomposer.com/files/symfony/yaml/62b4cdb99d52cb1ff253c465eb1532a80cebb621.zip",
  3472. "reference": "62b4cdb99d52cb1ff253c465eb1532a80cebb621",
  3473. "shasum": ""
  3474. },
  3475. "require": {
  3476. "php": ">=5.5.9"
  3477. },
  3478. "require-dev": {
  3479. "symfony/console": "~2.8|~3.0"
  3480. },
  3481. "suggest": {
  3482. "symfony/console": "For validating YAML files using the lint command"
  3483. },
  3484. "type": "library",
  3485. "extra": {
  3486. "branch-alias": {
  3487. "dev-master": "3.2-dev"
  3488. }
  3489. },
  3490. "autoload": {
  3491. "psr-4": {
  3492. "Symfony\\Component\\Yaml\\": ""
  3493. },
  3494. "exclude-from-classmap": [
  3495. "/Tests/"
  3496. ]
  3497. },
  3498. "notification-url": "https://packagist.org/downloads/",
  3499. "license": [
  3500. "MIT"
  3501. ],
  3502. "authors": [
  3503. {
  3504. "name": "Fabien Potencier",
  3505. "email": "fabien@symfony.com"
  3506. },
  3507. {
  3508. "name": "Symfony Community",
  3509. "homepage": "https://symfony.com/contributors"
  3510. }
  3511. ],
  3512. "description": "Symfony Yaml Component",
  3513. "homepage": "https://symfony.com",
  3514. "time": "2017-03-20T09:45:15+00:00"
  3515. },
  3516. {
  3517. "name": "webmozart/assert",
  3518. "version": "1.2.0",
  3519. "source": {
  3520. "type": "git",
  3521. "url": "https://github.com/webmozart/assert.git",
  3522. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  3523. },
  3524. "dist": {
  3525. "type": "zip",
  3526. "url": "https://files.phpcomposer.com/files/webmozart/assert/2db61e59ff05fe5126d152bd0655c9ea113e550f.zip",
  3527. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  3528. "shasum": ""
  3529. },
  3530. "require": {
  3531. "php": "^5.3.3 || ^7.0"
  3532. },
  3533. "require-dev": {
  3534. "phpunit/phpunit": "^4.6",
  3535. "sebastian/version": "^1.0.1"
  3536. },
  3537. "type": "library",
  3538. "extra": {
  3539. "branch-alias": {
  3540. "dev-master": "1.3-dev"
  3541. }
  3542. },
  3543. "autoload": {
  3544. "psr-4": {
  3545. "Webmozart\\Assert\\": "src/"
  3546. }
  3547. },
  3548. "notification-url": "https://packagist.org/downloads/",
  3549. "license": [
  3550. "MIT"
  3551. ],
  3552. "authors": [
  3553. {
  3554. "name": "Bernhard Schussek",
  3555. "email": "bschussek@gmail.com"
  3556. }
  3557. ],
  3558. "description": "Assertions to validate method input/output with nice error messages.",
  3559. "keywords": [
  3560. "assert",
  3561. "check",
  3562. "validate"
  3563. ],
  3564. "time": "2016-11-23T20:04:58+00: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.6.4"
  3574. },
  3575. "platform-dev": []
  3576. }