composer.lock 121 KB

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