No Description

composer.lock 109KB

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