No Description

installed.json 101KB

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