composer.lock 122 KB

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