installed.json 105 KB

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