You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 81KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "9a7345836efc0be2b7744d5ba70d6bc7",
  8. "content-hash": "1a9b9c11d49ec832bbc9545e92914be7",
  9. "packages": [
  10. {
  11. "name": "danielstjules/stringy",
  12. "version": "1.10.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/danielstjules/Stringy.git",
  16. "reference": "4749c205db47ee5b32e8d1adf6d9aff8db6caf3b"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/4749c205db47ee5b32e8d1adf6d9aff8db6caf3b",
  21. "reference": "4749c205db47ee5b32e8d1adf6d9aff8db6caf3b",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "ext-mbstring": "*",
  26. "php": ">=5.3.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "~4.0"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Stringy\\": "src/"
  35. },
  36. "files": [
  37. "src/Create.php"
  38. ]
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Daniel St. Jules",
  47. "email": "danielst.jules@gmail.com",
  48. "homepage": "http://www.danielstjules.com"
  49. }
  50. ],
  51. "description": "A string manipulation library with multibyte support",
  52. "homepage": "https://github.com/danielstjules/Stringy",
  53. "keywords": [
  54. "UTF",
  55. "helpers",
  56. "manipulation",
  57. "methods",
  58. "multibyte",
  59. "string",
  60. "utf-8",
  61. "utility",
  62. "utils"
  63. ],
  64. "time": "2015-07-23 00:54:12"
  65. },
  66. {
  67. "name": "doctrine/inflector",
  68. "version": "v1.1.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/doctrine/inflector.git",
  72. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  77. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  78. "shasum": ""
  79. },
  80. "require": {
  81. "php": ">=5.3.2"
  82. },
  83. "require-dev": {
  84. "phpunit/phpunit": "4.*"
  85. },
  86. "type": "library",
  87. "extra": {
  88. "branch-alias": {
  89. "dev-master": "1.1.x-dev"
  90. }
  91. },
  92. "autoload": {
  93. "psr-0": {
  94. "Doctrine\\Common\\Inflector\\": "lib/"
  95. }
  96. },
  97. "notification-url": "https://packagist.org/downloads/",
  98. "license": [
  99. "MIT"
  100. ],
  101. "authors": [
  102. {
  103. "name": "Roman Borschel",
  104. "email": "roman@code-factory.org"
  105. },
  106. {
  107. "name": "Benjamin Eberlei",
  108. "email": "kontakt@beberlei.de"
  109. },
  110. {
  111. "name": "Guilherme Blanco",
  112. "email": "guilhermeblanco@gmail.com"
  113. },
  114. {
  115. "name": "Jonathan Wage",
  116. "email": "jonwage@gmail.com"
  117. },
  118. {
  119. "name": "Johannes Schmitt",
  120. "email": "schmittjoh@gmail.com"
  121. }
  122. ],
  123. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  124. "homepage": "http://www.doctrine-project.org",
  125. "keywords": [
  126. "inflection",
  127. "pluralize",
  128. "singularize",
  129. "string"
  130. ],
  131. "time": "2015-11-06 14:35:42"
  132. },
  133. {
  134. "name": "illuminate/auth",
  135. "version": "v5.1.22",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/illuminate/auth.git",
  139. "reference": "ed926c9ad2b54164c0183a3a63f77f5f0ea0986a"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/illuminate/auth/zipball/ed926c9ad2b54164c0183a3a63f77f5f0ea0986a",
  144. "reference": "ed926c9ad2b54164c0183a3a63f77f5f0ea0986a",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "illuminate/contracts": "5.1.*",
  149. "illuminate/http": "5.1.*",
  150. "illuminate/session": "5.1.*",
  151. "illuminate/support": "5.1.*",
  152. "nesbot/carbon": "~1.19",
  153. "php": ">=5.5.9"
  154. },
  155. "suggest": {
  156. "illuminate/console": "Required to use the auth:clear-resets command (5.1.*)."
  157. },
  158. "type": "library",
  159. "extra": {
  160. "branch-alias": {
  161. "dev-master": "5.1-dev"
  162. }
  163. },
  164. "autoload": {
  165. "psr-4": {
  166. "Illuminate\\Auth\\": ""
  167. }
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "MIT"
  172. ],
  173. "authors": [
  174. {
  175. "name": "Taylor Otwell",
  176. "email": "taylorotwell@gmail.com"
  177. }
  178. ],
  179. "description": "The Illuminate Auth package.",
  180. "homepage": "http://laravel.com",
  181. "time": "2015-10-19 06:01:02"
  182. },
  183. {
  184. "name": "illuminate/broadcasting",
  185. "version": "v5.1.22",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/illuminate/broadcasting.git",
  189. "reference": "c5eb4e0730dbe34aabff238507d3e8144c6625a2"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/c5eb4e0730dbe34aabff238507d3e8144c6625a2",
  194. "reference": "c5eb4e0730dbe34aabff238507d3e8144c6625a2",
  195. "shasum": ""
  196. },
  197. "require": {
  198. "illuminate/contracts": "5.1.*",
  199. "illuminate/support": "5.1.*",
  200. "php": ">=5.5.9"
  201. },
  202. "suggest": {
  203. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0)."
  204. },
  205. "type": "library",
  206. "extra": {
  207. "branch-alias": {
  208. "dev-master": "5.1-dev"
  209. }
  210. },
  211. "autoload": {
  212. "psr-4": {
  213. "Illuminate\\Broadcasting\\": ""
  214. }
  215. },
  216. "notification-url": "https://packagist.org/downloads/",
  217. "license": [
  218. "MIT"
  219. ],
  220. "authors": [
  221. {
  222. "name": "Taylor Otwell",
  223. "email": "taylorotwell@gmail.com"
  224. }
  225. ],
  226. "description": "The Illuminate Broadcasting package.",
  227. "homepage": "http://laravel.com",
  228. "time": "2015-10-08 01:12:55"
  229. },
  230. {
  231. "name": "illuminate/bus",
  232. "version": "v5.1.22",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/illuminate/bus.git",
  236. "reference": "83fecbefb010c30e1cd2fef1290316000cdc742d"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/illuminate/bus/zipball/83fecbefb010c30e1cd2fef1290316000cdc742d",
  241. "reference": "83fecbefb010c30e1cd2fef1290316000cdc742d",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "illuminate/contracts": "5.1.*",
  246. "illuminate/pipeline": "5.1.*",
  247. "illuminate/support": "5.1.*",
  248. "php": ">=5.5.9"
  249. },
  250. "type": "library",
  251. "extra": {
  252. "branch-alias": {
  253. "dev-master": "5.1-dev"
  254. }
  255. },
  256. "autoload": {
  257. "psr-4": {
  258. "Illuminate\\Bus\\": ""
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "MIT"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Taylor Otwell",
  268. "email": "taylorotwell@gmail.com"
  269. }
  270. ],
  271. "description": "The Illuminate Bus package.",
  272. "homepage": "http://laravel.com",
  273. "time": "2015-10-19 06:01:02"
  274. },
  275. {
  276. "name": "illuminate/cache",
  277. "version": "v5.1.22",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/illuminate/cache.git",
  281. "reference": "6ffa99bbc2c6dccb1e50ed5219a30aea6d02f0d3"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/illuminate/cache/zipball/6ffa99bbc2c6dccb1e50ed5219a30aea6d02f0d3",
  286. "reference": "6ffa99bbc2c6dccb1e50ed5219a30aea6d02f0d3",
  287. "shasum": ""
  288. },
  289. "require": {
  290. "illuminate/contracts": "5.1.*",
  291. "illuminate/support": "5.1.*",
  292. "nesbot/carbon": "~1.19",
  293. "php": ">=5.5.9"
  294. },
  295. "suggest": {
  296. "illuminate/database": "Required to use the database cache driver (5.1.*).",
  297. "illuminate/filesystem": "Required to use the file cache driver (5.1.*).",
  298. "illuminate/redis": "Required to use the redis cache driver (5.1.*)."
  299. },
  300. "type": "library",
  301. "extra": {
  302. "branch-alias": {
  303. "dev-master": "5.1-dev"
  304. }
  305. },
  306. "autoload": {
  307. "psr-4": {
  308. "Illuminate\\Cache\\": ""
  309. }
  310. },
  311. "notification-url": "https://packagist.org/downloads/",
  312. "license": [
  313. "MIT"
  314. ],
  315. "authors": [
  316. {
  317. "name": "Taylor Otwell",
  318. "email": "taylorotwell@gmail.com"
  319. }
  320. ],
  321. "description": "The Illuminate Cache package.",
  322. "homepage": "http://laravel.com",
  323. "time": "2015-10-06 17:04:59"
  324. },
  325. {
  326. "name": "illuminate/config",
  327. "version": "v5.1.22",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/illuminate/config.git",
  331. "reference": "de6c1cc0f2745645dec3f8bab0e43a3aa141d12d"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/illuminate/config/zipball/de6c1cc0f2745645dec3f8bab0e43a3aa141d12d",
  336. "reference": "de6c1cc0f2745645dec3f8bab0e43a3aa141d12d",
  337. "shasum": ""
  338. },
  339. "require": {
  340. "illuminate/contracts": "5.1.*",
  341. "illuminate/filesystem": "5.1.*",
  342. "illuminate/support": "5.1.*",
  343. "php": ">=5.5.9"
  344. },
  345. "type": "library",
  346. "extra": {
  347. "branch-alias": {
  348. "dev-master": "5.1-dev"
  349. }
  350. },
  351. "autoload": {
  352. "psr-4": {
  353. "Illuminate\\Config\\": ""
  354. }
  355. },
  356. "notification-url": "https://packagist.org/downloads/",
  357. "license": [
  358. "MIT"
  359. ],
  360. "authors": [
  361. {
  362. "name": "Taylor Otwell",
  363. "email": "taylorotwell@gmail.com"
  364. }
  365. ],
  366. "description": "The Illuminate Config package.",
  367. "homepage": "http://laravel.com",
  368. "time": "2015-06-18 02:16:31"
  369. },
  370. {
  371. "name": "illuminate/console",
  372. "version": "v5.1.22",
  373. "source": {
  374. "type": "git",
  375. "url": "https://github.com/illuminate/console.git",
  376. "reference": "c712f03ce8fdfbc90ff3587ba31a0b8e3914ddb0"
  377. },
  378. "dist": {
  379. "type": "zip",
  380. "url": "https://api.github.com/repos/illuminate/console/zipball/c712f03ce8fdfbc90ff3587ba31a0b8e3914ddb0",
  381. "reference": "c712f03ce8fdfbc90ff3587ba31a0b8e3914ddb0",
  382. "shasum": ""
  383. },
  384. "require": {
  385. "illuminate/contracts": "5.1.*",
  386. "illuminate/support": "5.1.*",
  387. "nesbot/carbon": "~1.19",
  388. "php": ">=5.5.9",
  389. "symfony/console": "2.7.*"
  390. },
  391. "suggest": {
  392. "guzzlehttp/guzzle": "Required to use the thenPing method on schedules (~5.3|~6.0).",
  393. "mtdowling/cron-expression": "Required to use scheduling component (~1.0).",
  394. "symfony/process": "Required to use scheduling component (2.7.*)."
  395. },
  396. "type": "library",
  397. "extra": {
  398. "branch-alias": {
  399. "dev-master": "5.1-dev"
  400. }
  401. },
  402. "autoload": {
  403. "psr-4": {
  404. "Illuminate\\Console\\": ""
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Taylor Otwell",
  414. "email": "taylorotwell@gmail.com"
  415. }
  416. ],
  417. "description": "The Illuminate Console package.",
  418. "homepage": "http://laravel.com",
  419. "time": "2015-10-20 21:16:46"
  420. },
  421. {
  422. "name": "illuminate/container",
  423. "version": "v5.1.22",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/illuminate/container.git",
  427. "reference": "bb2cd1d9c6cb7c4ce80b8d89f899e086f5a4f65b"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/illuminate/container/zipball/bb2cd1d9c6cb7c4ce80b8d89f899e086f5a4f65b",
  432. "reference": "bb2cd1d9c6cb7c4ce80b8d89f899e086f5a4f65b",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "illuminate/contracts": "5.1.*",
  437. "php": ">=5.5.9"
  438. },
  439. "type": "library",
  440. "extra": {
  441. "branch-alias": {
  442. "dev-master": "5.1-dev"
  443. }
  444. },
  445. "autoload": {
  446. "psr-4": {
  447. "Illuminate\\Container\\": ""
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Taylor Otwell",
  457. "email": "taylorotwell@gmail.com"
  458. }
  459. ],
  460. "description": "The Illuminate Container package.",
  461. "homepage": "http://laravel.com",
  462. "time": "2015-10-19 06:01:02"
  463. },
  464. {
  465. "name": "illuminate/contracts",
  466. "version": "v5.1.22",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/illuminate/contracts.git",
  470. "reference": "e2b71fdbeeb3438748dca5f497e205888788a883"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/illuminate/contracts/zipball/e2b71fdbeeb3438748dca5f497e205888788a883",
  475. "reference": "e2b71fdbeeb3438748dca5f497e205888788a883",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">=5.5.9"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-master": "5.1-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Illuminate\\Contracts\\": ""
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Taylor Otwell",
  499. "email": "taylorotwell@gmail.com"
  500. }
  501. ],
  502. "description": "The Illuminate Contracts package.",
  503. "homepage": "http://laravel.com",
  504. "time": "2015-09-24 11:16:48"
  505. },
  506. {
  507. "name": "illuminate/cookie",
  508. "version": "v5.1.22",
  509. "source": {
  510. "type": "git",
  511. "url": "https://github.com/illuminate/cookie.git",
  512. "reference": "8ded782fcb8f0affa9fc53bc6646a88b9acb615a"
  513. },
  514. "dist": {
  515. "type": "zip",
  516. "url": "https://api.github.com/repos/illuminate/cookie/zipball/8ded782fcb8f0affa9fc53bc6646a88b9acb615a",
  517. "reference": "8ded782fcb8f0affa9fc53bc6646a88b9acb615a",
  518. "shasum": ""
  519. },
  520. "require": {
  521. "illuminate/contracts": "5.1.*",
  522. "illuminate/support": "5.1.*",
  523. "php": ">=5.5.9",
  524. "symfony/http-foundation": "2.7.*",
  525. "symfony/http-kernel": "2.7.*"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "branch-alias": {
  530. "dev-master": "5.1-dev"
  531. }
  532. },
  533. "autoload": {
  534. "psr-4": {
  535. "Illuminate\\Cookie\\": ""
  536. }
  537. },
  538. "notification-url": "https://packagist.org/downloads/",
  539. "license": [
  540. "MIT"
  541. ],
  542. "authors": [
  543. {
  544. "name": "Taylor Otwell",
  545. "email": "taylorotwell@gmail.com"
  546. }
  547. ],
  548. "description": "The Illuminate Cookie package.",
  549. "homepage": "http://laravel.com",
  550. "time": "2015-09-22 11:44:48"
  551. },
  552. {
  553. "name": "illuminate/database",
  554. "version": "v5.1.22",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/illuminate/database.git",
  558. "reference": "f82f4009e5776a8b0a580fca881694a778b229e6"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/illuminate/database/zipball/f82f4009e5776a8b0a580fca881694a778b229e6",
  563. "reference": "f82f4009e5776a8b0a580fca881694a778b229e6",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "illuminate/container": "5.1.*",
  568. "illuminate/contracts": "5.1.*",
  569. "illuminate/support": "5.1.*",
  570. "nesbot/carbon": "~1.19",
  571. "php": ">=5.5.9"
  572. },
  573. "suggest": {
  574. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
  575. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  576. "illuminate/console": "Required to use the database commands (5.1.*).",
  577. "illuminate/events": "Required to use the observers with Eloquent (5.1.*).",
  578. "illuminate/filesystem": "Required to use the migrations (5.1.*)."
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "5.1-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Illuminate\\Database\\": ""
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Taylor Otwell",
  598. "email": "taylorotwell@gmail.com"
  599. }
  600. ],
  601. "description": "The Illuminate Database package.",
  602. "homepage": "http://laravel.com",
  603. "keywords": [
  604. "database",
  605. "laravel",
  606. "orm",
  607. "sql"
  608. ],
  609. "time": "2015-10-28 21:57:04"
  610. },
  611. {
  612. "name": "illuminate/encryption",
  613. "version": "v5.1.22",
  614. "source": {
  615. "type": "git",
  616. "url": "https://github.com/illuminate/encryption.git",
  617. "reference": "c10405ee5ec354b1d888e52dca6adeee6bac8476"
  618. },
  619. "dist": {
  620. "type": "zip",
  621. "url": "https://api.github.com/repos/illuminate/encryption/zipball/c10405ee5ec354b1d888e52dca6adeee6bac8476",
  622. "reference": "c10405ee5ec354b1d888e52dca6adeee6bac8476",
  623. "shasum": ""
  624. },
  625. "require": {
  626. "ext-mbstring": "*",
  627. "ext-openssl": "*",
  628. "illuminate/contracts": "5.1.*",
  629. "illuminate/support": "5.1.*",
  630. "php": ">=5.5.9"
  631. },
  632. "suggest": {
  633. "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (^1.0.6)."
  634. },
  635. "type": "library",
  636. "extra": {
  637. "branch-alias": {
  638. "dev-master": "5.1-dev"
  639. }
  640. },
  641. "autoload": {
  642. "psr-4": {
  643. "Illuminate\\Encryption\\": ""
  644. }
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "MIT"
  649. ],
  650. "authors": [
  651. {
  652. "name": "Taylor Otwell",
  653. "email": "taylorotwell@gmail.com"
  654. }
  655. ],
  656. "description": "The Illuminate Encryption package.",
  657. "homepage": "http://laravel.com",
  658. "time": "2015-10-16 21:40:18"
  659. },
  660. {
  661. "name": "illuminate/events",
  662. "version": "v5.1.22",
  663. "source": {
  664. "type": "git",
  665. "url": "https://github.com/illuminate/events.git",
  666. "reference": "fdb64e091b635bf1525c157f1cfdd19cbca508c9"
  667. },
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://api.github.com/repos/illuminate/events/zipball/fdb64e091b635bf1525c157f1cfdd19cbca508c9",
  671. "reference": "fdb64e091b635bf1525c157f1cfdd19cbca508c9",
  672. "shasum": ""
  673. },
  674. "require": {
  675. "illuminate/container": "5.1.*",
  676. "illuminate/contracts": "5.1.*",
  677. "illuminate/support": "5.1.*",
  678. "php": ">=5.5.9"
  679. },
  680. "type": "library",
  681. "extra": {
  682. "branch-alias": {
  683. "dev-master": "5.1-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "Illuminate\\Events\\": ""
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Taylor Otwell",
  698. "email": "taylorotwell@gmail.com"
  699. }
  700. ],
  701. "description": "The Illuminate Events package.",
  702. "homepage": "http://laravel.com",
  703. "time": "2015-09-23 13:19:23"
  704. },
  705. {
  706. "name": "illuminate/filesystem",
  707. "version": "v5.1.22",
  708. "source": {
  709. "type": "git",
  710. "url": "https://github.com/illuminate/filesystem.git",
  711. "reference": "d2df6ede91e6af495674f2def38170330319819f"
  712. },
  713. "dist": {
  714. "type": "zip",
  715. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/d2df6ede91e6af495674f2def38170330319819f",
  716. "reference": "d2df6ede91e6af495674f2def38170330319819f",
  717. "shasum": ""
  718. },
  719. "require": {
  720. "illuminate/contracts": "5.1.*",
  721. "illuminate/support": "5.1.*",
  722. "php": ">=5.5.9",
  723. "symfony/finder": "2.7.*"
  724. },
  725. "suggest": {
  726. "league/flysystem": "Required to use the Flysystem local and FTP drivers (~1.0).",
  727. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  728. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0)."
  729. },
  730. "type": "library",
  731. "extra": {
  732. "branch-alias": {
  733. "dev-master": "5.1-dev"
  734. }
  735. },
  736. "autoload": {
  737. "psr-4": {
  738. "Illuminate\\Filesystem\\": ""
  739. }
  740. },
  741. "notification-url": "https://packagist.org/downloads/",
  742. "license": [
  743. "MIT"
  744. ],
  745. "authors": [
  746. {
  747. "name": "Taylor Otwell",
  748. "email": "taylorotwell@gmail.com"
  749. }
  750. ],
  751. "description": "The Illuminate Filesystem package.",
  752. "homepage": "http://laravel.com",
  753. "time": "2015-10-19 06:01:02"
  754. },
  755. {
  756. "name": "illuminate/hashing",
  757. "version": "v5.1.22",
  758. "source": {
  759. "type": "git",
  760. "url": "https://github.com/illuminate/hashing.git",
  761. "reference": "86d12970c19823809314eae180939de62d4fab2c"
  762. },
  763. "dist": {
  764. "type": "zip",
  765. "url": "https://api.github.com/repos/illuminate/hashing/zipball/86d12970c19823809314eae180939de62d4fab2c",
  766. "reference": "86d12970c19823809314eae180939de62d4fab2c",
  767. "shasum": ""
  768. },
  769. "require": {
  770. "illuminate/contracts": "5.1.*",
  771. "illuminate/support": "5.1.*",
  772. "php": ">=5.5.9"
  773. },
  774. "type": "library",
  775. "extra": {
  776. "branch-alias": {
  777. "dev-master": "5.1-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "Illuminate\\Hashing\\": ""
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Taylor Otwell",
  792. "email": "taylorotwell@gmail.com"
  793. }
  794. ],
  795. "description": "The Illuminate Hashing package.",
  796. "homepage": "http://laravel.com",
  797. "time": "2015-07-16 20:28:10"
  798. },
  799. {
  800. "name": "illuminate/http",
  801. "version": "v5.1.22",
  802. "source": {
  803. "type": "git",
  804. "url": "https://github.com/illuminate/http.git",
  805. "reference": "b30fa1af5d1a7b525cc801ac41436179e43d52ee"
  806. },
  807. "dist": {
  808. "type": "zip",
  809. "url": "https://api.github.com/repos/illuminate/http/zipball/b30fa1af5d1a7b525cc801ac41436179e43d52ee",
  810. "reference": "b30fa1af5d1a7b525cc801ac41436179e43d52ee",
  811. "shasum": ""
  812. },
  813. "require": {
  814. "illuminate/session": "5.1.*",
  815. "illuminate/support": "5.1.*",
  816. "php": ">=5.5.9",
  817. "symfony/http-foundation": "2.7.*",
  818. "symfony/http-kernel": "2.7.*"
  819. },
  820. "type": "library",
  821. "extra": {
  822. "branch-alias": {
  823. "dev-master": "5.1-dev"
  824. }
  825. },
  826. "autoload": {
  827. "psr-4": {
  828. "Illuminate\\Http\\": ""
  829. }
  830. },
  831. "notification-url": "https://packagist.org/downloads/",
  832. "license": [
  833. "MIT"
  834. ],
  835. "authors": [
  836. {
  837. "name": "Taylor Otwell",
  838. "email": "taylorotwell@gmail.com"
  839. }
  840. ],
  841. "description": "The Illuminate Http package.",
  842. "homepage": "http://laravel.com",
  843. "time": "2015-10-19 06:01:02"
  844. },
  845. {
  846. "name": "illuminate/pagination",
  847. "version": "v5.1.22",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/illuminate/pagination.git",
  851. "reference": "3ed65ae58f191f2819a44c1b0e1408dcc847948f"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/illuminate/pagination/zipball/3ed65ae58f191f2819a44c1b0e1408dcc847948f",
  856. "reference": "3ed65ae58f191f2819a44c1b0e1408dcc847948f",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "illuminate/contracts": "5.1.*",
  861. "illuminate/support": "5.1.*",
  862. "php": ">=5.5.9"
  863. },
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-master": "5.1-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "Illuminate\\Pagination\\": ""
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Taylor Otwell",
  882. "email": "taylorotwell@gmail.com"
  883. }
  884. ],
  885. "description": "The Illuminate Pagination package.",
  886. "homepage": "http://laravel.com",
  887. "time": "2015-10-19 06:01:02"
  888. },
  889. {
  890. "name": "illuminate/pipeline",
  891. "version": "v5.1.22",
  892. "source": {
  893. "type": "git",
  894. "url": "https://github.com/illuminate/pipeline.git",
  895. "reference": "2725b0523b50415e1d20aea7297d205f65b53e27"
  896. },
  897. "dist": {
  898. "type": "zip",
  899. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/2725b0523b50415e1d20aea7297d205f65b53e27",
  900. "reference": "2725b0523b50415e1d20aea7297d205f65b53e27",
  901. "shasum": ""
  902. },
  903. "require": {
  904. "illuminate/contracts": "5.1.*",
  905. "illuminate/support": "5.1.*",
  906. "php": ">=5.5.9"
  907. },
  908. "type": "library",
  909. "extra": {
  910. "branch-alias": {
  911. "dev-master": "5.1-dev"
  912. }
  913. },
  914. "autoload": {
  915. "psr-4": {
  916. "Illuminate\\Pipeline\\": ""
  917. }
  918. },
  919. "notification-url": "https://packagist.org/downloads/",
  920. "license": [
  921. "MIT"
  922. ],
  923. "authors": [
  924. {
  925. "name": "Taylor Otwell",
  926. "email": "taylorotwell@gmail.com"
  927. }
  928. ],
  929. "description": "The Illuminate Pipeline package.",
  930. "homepage": "http://laravel.com",
  931. "time": "2015-10-05 21:58:27"
  932. },
  933. {
  934. "name": "illuminate/queue",
  935. "version": "v5.1.22",
  936. "source": {
  937. "type": "git",
  938. "url": "https://github.com/illuminate/queue.git",
  939. "reference": "189b1cfaf7f08dce381b4ebbf16b0602a1efcdda"
  940. },
  941. "dist": {
  942. "type": "zip",
  943. "url": "https://api.github.com/repos/illuminate/queue/zipball/189b1cfaf7f08dce381b4ebbf16b0602a1efcdda",
  944. "reference": "189b1cfaf7f08dce381b4ebbf16b0602a1efcdda",
  945. "shasum": ""
  946. },
  947. "require": {
  948. "illuminate/console": "5.1.*",
  949. "illuminate/container": "5.1.*",
  950. "illuminate/contracts": "5.1.*",
  951. "illuminate/http": "5.1.*",
  952. "illuminate/support": "5.1.*",
  953. "nesbot/carbon": "~1.19",
  954. "php": ">=5.5.9",
  955. "symfony/process": "2.7.*"
  956. },
  957. "suggest": {
  958. "aws/aws-sdk-php": "Required to use the SQS queue driver (~3.0).",
  959. "illuminate/redis": "Required to use the redis queue driver (5.1.*).",
  960. "iron-io/iron_mq": "Required to use the iron queue driver (~2.0).",
  961. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0)."
  962. },
  963. "type": "library",
  964. "extra": {
  965. "branch-alias": {
  966. "dev-master": "5.1-dev"
  967. }
  968. },
  969. "autoload": {
  970. "psr-4": {
  971. "Illuminate\\Queue\\": ""
  972. },
  973. "classmap": [
  974. "IlluminateQueueClosure.php"
  975. ]
  976. },
  977. "notification-url": "https://packagist.org/downloads/",
  978. "license": [
  979. "MIT"
  980. ],
  981. "authors": [
  982. {
  983. "name": "Taylor Otwell",
  984. "email": "taylorotwell@gmail.com"
  985. }
  986. ],
  987. "description": "The Illuminate Queue package.",
  988. "homepage": "http://laravel.com",
  989. "time": "2015-10-28 19:38:40"
  990. },
  991. {
  992. "name": "illuminate/session",
  993. "version": "v5.1.22",
  994. "source": {
  995. "type": "git",
  996. "url": "https://github.com/illuminate/session.git",
  997. "reference": "a719532f1ba75c352e1254743f4a9ed9a2b8412c"
  998. },
  999. "dist": {
  1000. "type": "zip",
  1001. "url": "https://api.github.com/repos/illuminate/session/zipball/a719532f1ba75c352e1254743f4a9ed9a2b8412c",
  1002. "reference": "a719532f1ba75c352e1254743f4a9ed9a2b8412c",
  1003. "shasum": ""
  1004. },
  1005. "require": {
  1006. "illuminate/contracts": "5.1.*",
  1007. "illuminate/support": "5.1.*",
  1008. "nesbot/carbon": "~1.19",
  1009. "php": ">=5.5.9",
  1010. "symfony/finder": "2.7.*",
  1011. "symfony/http-foundation": "2.7.*"
  1012. },
  1013. "suggest": {
  1014. "illuminate/console": "Required to use the session:table command (5.1.*)."
  1015. },
  1016. "type": "library",
  1017. "extra": {
  1018. "branch-alias": {
  1019. "dev-master": "5.1-dev"
  1020. }
  1021. },
  1022. "autoload": {
  1023. "psr-4": {
  1024. "Illuminate\\Session\\": ""
  1025. }
  1026. },
  1027. "notification-url": "https://packagist.org/downloads/",
  1028. "license": [
  1029. "MIT"
  1030. ],
  1031. "authors": [
  1032. {
  1033. "name": "Taylor Otwell",
  1034. "email": "taylorotwell@gmail.com"
  1035. }
  1036. ],
  1037. "description": "The Illuminate Session package.",
  1038. "homepage": "http://laravel.com",
  1039. "time": "2015-10-19 06:01:02"
  1040. },
  1041. {
  1042. "name": "illuminate/support",
  1043. "version": "v5.1.22",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/illuminate/support.git",
  1047. "reference": "d52a832d3f4b025b82f954cbdef8ee24f6a77e77"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/illuminate/support/zipball/d52a832d3f4b025b82f954cbdef8ee24f6a77e77",
  1052. "reference": "d52a832d3f4b025b82f954cbdef8ee24f6a77e77",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "danielstjules/stringy": "~1.8",
  1057. "doctrine/inflector": "~1.0",
  1058. "ext-mbstring": "*",
  1059. "illuminate/contracts": "5.1.*",
  1060. "php": ">=5.5.9"
  1061. },
  1062. "suggest": {
  1063. "jeremeamia/superclosure": "Required to be able to serialize closures (~2.0).",
  1064. "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (^1.0.6).",
  1065. "symfony/var-dumper": "Required to use the dd function (2.7.*)."
  1066. },
  1067. "type": "library",
  1068. "extra": {
  1069. "branch-alias": {
  1070. "dev-master": "5.1-dev"
  1071. }
  1072. },
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Illuminate\\Support\\": ""
  1076. },
  1077. "files": [
  1078. "helpers.php"
  1079. ]
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "MIT"
  1084. ],
  1085. "authors": [
  1086. {
  1087. "name": "Taylor Otwell",
  1088. "email": "taylorotwell@gmail.com"
  1089. }
  1090. ],
  1091. "description": "The Illuminate Support package.",
  1092. "homepage": "http://laravel.com",
  1093. "time": "2015-10-19 06:01:02"
  1094. },
  1095. {
  1096. "name": "illuminate/translation",
  1097. "version": "v5.1.22",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/illuminate/translation.git",
  1101. "reference": "81bf81fcb3ccc18e7aeabaefdbb7306581439fcc"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/illuminate/translation/zipball/81bf81fcb3ccc18e7aeabaefdbb7306581439fcc",
  1106. "reference": "81bf81fcb3ccc18e7aeabaefdbb7306581439fcc",
  1107. "shasum": ""
  1108. },
  1109. "require": {
  1110. "illuminate/filesystem": "5.1.*",
  1111. "illuminate/support": "5.1.*",
  1112. "php": ">=5.5.9",
  1113. "symfony/translation": "2.7.*"
  1114. },
  1115. "type": "library",
  1116. "extra": {
  1117. "branch-alias": {
  1118. "dev-master": "5.1-dev"
  1119. }
  1120. },
  1121. "autoload": {
  1122. "psr-4": {
  1123. "Illuminate\\Translation\\": ""
  1124. }
  1125. },
  1126. "notification-url": "https://packagist.org/downloads/",
  1127. "license": [
  1128. "MIT"
  1129. ],
  1130. "authors": [
  1131. {
  1132. "name": "Taylor Otwell",
  1133. "email": "taylorotwell@gmail.com"
  1134. }
  1135. ],
  1136. "description": "The Illuminate Translation package.",
  1137. "homepage": "http://laravel.com",
  1138. "time": "2015-08-01 00:02:33"
  1139. },
  1140. {
  1141. "name": "illuminate/validation",
  1142. "version": "v5.1.22",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/illuminate/validation.git",
  1146. "reference": "66151dde43b34fc2800f8201a73f61f889c77084"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/illuminate/validation/zipball/66151dde43b34fc2800f8201a73f61f889c77084",
  1151. "reference": "66151dde43b34fc2800f8201a73f61f889c77084",
  1152. "shasum": ""
  1153. },
  1154. "require": {
  1155. "illuminate/container": "5.1.*",
  1156. "illuminate/contracts": "5.1.*",
  1157. "illuminate/support": "5.1.*",
  1158. "php": ">=5.5.9",
  1159. "symfony/http-foundation": "2.7.*",
  1160. "symfony/translation": "2.7.*"
  1161. },
  1162. "suggest": {
  1163. "illuminate/database": "Required to use the database presence verifier (5.1.*)."
  1164. },
  1165. "type": "library",
  1166. "extra": {
  1167. "branch-alias": {
  1168. "dev-master": "5.1-dev"
  1169. }
  1170. },
  1171. "autoload": {
  1172. "psr-4": {
  1173. "Illuminate\\Validation\\": ""
  1174. }
  1175. },
  1176. "notification-url": "https://packagist.org/downloads/",
  1177. "license": [
  1178. "MIT"
  1179. ],
  1180. "authors": [
  1181. {
  1182. "name": "Taylor Otwell",
  1183. "email": "taylorotwell@gmail.com"
  1184. }
  1185. ],
  1186. "description": "The Illuminate Validation package.",
  1187. "homepage": "http://laravel.com",
  1188. "time": "2015-10-23 08:21:26"
  1189. },
  1190. {
  1191. "name": "illuminate/view",
  1192. "version": "v5.1.22",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/illuminate/view.git",
  1196. "reference": "50e3027b470c8d92d433b6de0b1f227c232eda46"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/illuminate/view/zipball/50e3027b470c8d92d433b6de0b1f227c232eda46",
  1201. "reference": "50e3027b470c8d92d433b6de0b1f227c232eda46",
  1202. "shasum": ""
  1203. },
  1204. "require": {
  1205. "illuminate/container": "5.1.*",
  1206. "illuminate/contracts": "5.1.*",
  1207. "illuminate/events": "5.1.*",
  1208. "illuminate/filesystem": "5.1.*",
  1209. "illuminate/support": "5.1.*",
  1210. "php": ">=5.5.9"
  1211. },
  1212. "type": "library",
  1213. "extra": {
  1214. "branch-alias": {
  1215. "dev-master": "5.1-dev"
  1216. }
  1217. },
  1218. "autoload": {
  1219. "psr-4": {
  1220. "Illuminate\\View\\": ""
  1221. }
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "license": [
  1225. "MIT"
  1226. ],
  1227. "authors": [
  1228. {
  1229. "name": "Taylor Otwell",
  1230. "email": "taylorotwell@gmail.com"
  1231. }
  1232. ],
  1233. "description": "The Illuminate View package.",
  1234. "homepage": "http://laravel.com",
  1235. "time": "2015-10-19 06:01:02"
  1236. },
  1237. {
  1238. "name": "laravel/lumen-framework",
  1239. "version": "5.1.x-dev",
  1240. "source": {
  1241. "type": "git",
  1242. "url": "https://github.com/laravel/lumen-framework.git",
  1243. "reference": "9db8768e0cf8cc1b3717770aed781d3635c57c64"
  1244. },
  1245. "dist": {
  1246. "type": "zip",
  1247. "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/9db8768e0cf8cc1b3717770aed781d3635c57c64",
  1248. "reference": "9db8768e0cf8cc1b3717770aed781d3635c57c64",
  1249. "shasum": ""
  1250. },
  1251. "require": {
  1252. "illuminate/auth": "5.1.*",
  1253. "illuminate/broadcasting": "5.1.*",
  1254. "illuminate/bus": "5.1.*",
  1255. "illuminate/cache": "5.1.*",
  1256. "illuminate/config": "5.1.*",
  1257. "illuminate/console": "5.1.*",
  1258. "illuminate/container": "5.1.*",
  1259. "illuminate/contracts": "5.1.*",
  1260. "illuminate/cookie": "5.1.*",
  1261. "illuminate/database": "5.1.*",
  1262. "illuminate/encryption": "5.1.*",
  1263. "illuminate/events": "5.1.*",
  1264. "illuminate/filesystem": "5.1.*",
  1265. "illuminate/hashing": "5.1.*",
  1266. "illuminate/http": "5.1.*",
  1267. "illuminate/pagination": "5.1.*",
  1268. "illuminate/queue": "5.1.*",
  1269. "illuminate/session": "5.1.*",
  1270. "illuminate/support": "5.1.*",
  1271. "illuminate/translation": "5.1.*",
  1272. "illuminate/validation": "5.1.*",
  1273. "illuminate/view": "5.1.*",
  1274. "monolog/monolog": "~1.0",
  1275. "mtdowling/cron-expression": "~1.0",
  1276. "nikic/fast-route": "0.4.*",
  1277. "paragonie/random_compat": "~1.1",
  1278. "php": ">=5.5.9",
  1279. "symfony/dom-crawler": "2.7.*",
  1280. "symfony/http-foundation": "2.7.*",
  1281. "symfony/http-kernel": "2.7.*",
  1282. "symfony/var-dumper": "2.7.*"
  1283. },
  1284. "require-dev": {
  1285. "mockery/mockery": "~0.9",
  1286. "phpunit/phpunit": "~4.0"
  1287. },
  1288. "suggest": {
  1289. "vlucas/phpdotenv": "Required to use .env files (~1.0)."
  1290. },
  1291. "type": "library",
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Laravel\\Lumen\\": "src/"
  1295. },
  1296. "classmap": [
  1297. "src/Foundation"
  1298. ],
  1299. "files": [
  1300. "src/helpers.php"
  1301. ]
  1302. },
  1303. "notification-url": "https://packagist.org/downloads/",
  1304. "license": [
  1305. "MIT"
  1306. ],
  1307. "authors": [
  1308. {
  1309. "name": "Taylor Otwell",
  1310. "email": "taylorotwell@gmail.com"
  1311. }
  1312. ],
  1313. "description": "The Laravel Lumen Framework.",
  1314. "homepage": "http://laravel.com",
  1315. "keywords": [
  1316. "framework",
  1317. "laravel",
  1318. "lumen"
  1319. ],
  1320. "time": "2015-11-10 14:20:41"
  1321. },
  1322. {
  1323. "name": "luticate/utils",
  1324. "version": "0.1.0",
  1325. "source": {
  1326. "type": "git",
  1327. "url": "https://git.rthoni.com/luticate/utils.git",
  1328. "reference": "77f8da42593221de01feb281c793d7f4180456cb"
  1329. },
  1330. "type": "library",
  1331. "autoload": {
  1332. "psr-4": {
  1333. "Luticate\\": "src/"
  1334. }
  1335. },
  1336. "authors": [
  1337. {
  1338. "name": "Robin THONI",
  1339. "email": "robin@rthoni.com"
  1340. }
  1341. ],
  1342. "description": "Luticate user management system utils",
  1343. "time": "2015-11-11 14:40:48"
  1344. },
  1345. {
  1346. "name": "monolog/monolog",
  1347. "version": "1.17.2",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/Seldaek/monolog.git",
  1351. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1356. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1357. "shasum": ""
  1358. },
  1359. "require": {
  1360. "php": ">=5.3.0",
  1361. "psr/log": "~1.0"
  1362. },
  1363. "provide": {
  1364. "psr/log-implementation": "1.0.0"
  1365. },
  1366. "require-dev": {
  1367. "aws/aws-sdk-php": "^2.4.9",
  1368. "doctrine/couchdb": "~1.0@dev",
  1369. "graylog2/gelf-php": "~1.0",
  1370. "jakub-onderka/php-parallel-lint": "0.9",
  1371. "php-console/php-console": "^3.1.3",
  1372. "phpunit/phpunit": "~4.5",
  1373. "phpunit/phpunit-mock-objects": "2.3.0",
  1374. "raven/raven": "^0.13",
  1375. "ruflin/elastica": ">=0.90 <3.0",
  1376. "swiftmailer/swiftmailer": "~5.3",
  1377. "videlalvaro/php-amqplib": "~2.4"
  1378. },
  1379. "suggest": {
  1380. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1381. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1382. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1383. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1384. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1385. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1386. "raven/raven": "Allow sending log messages to a Sentry server",
  1387. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1388. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1389. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1390. },
  1391. "type": "library",
  1392. "extra": {
  1393. "branch-alias": {
  1394. "dev-master": "1.16.x-dev"
  1395. }
  1396. },
  1397. "autoload": {
  1398. "psr-4": {
  1399. "Monolog\\": "src/Monolog"
  1400. }
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "MIT"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "Jordi Boggiano",
  1409. "email": "j.boggiano@seld.be",
  1410. "homepage": "http://seld.be"
  1411. }
  1412. ],
  1413. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1414. "homepage": "http://github.com/Seldaek/monolog",
  1415. "keywords": [
  1416. "log",
  1417. "logging",
  1418. "psr-3"
  1419. ],
  1420. "time": "2015-10-14 12:51:02"
  1421. },
  1422. {
  1423. "name": "mtdowling/cron-expression",
  1424. "version": "v1.0.4",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/mtdowling/cron-expression.git",
  1428. "reference": "fd92e883195e5dfa77720b1868cf084b08be4412"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/fd92e883195e5dfa77720b1868cf084b08be4412",
  1433. "reference": "fd92e883195e5dfa77720b1868cf084b08be4412",
  1434. "shasum": ""
  1435. },
  1436. "require": {
  1437. "php": ">=5.3.2"
  1438. },
  1439. "require-dev": {
  1440. "phpunit/phpunit": "4.*"
  1441. },
  1442. "type": "library",
  1443. "autoload": {
  1444. "psr-0": {
  1445. "Cron": "src/"
  1446. }
  1447. },
  1448. "notification-url": "https://packagist.org/downloads/",
  1449. "license": [
  1450. "MIT"
  1451. ],
  1452. "authors": [
  1453. {
  1454. "name": "Michael Dowling",
  1455. "email": "mtdowling@gmail.com",
  1456. "homepage": "https://github.com/mtdowling"
  1457. }
  1458. ],
  1459. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1460. "keywords": [
  1461. "cron",
  1462. "schedule"
  1463. ],
  1464. "time": "2015-01-11 23:07:46"
  1465. },
  1466. {
  1467. "name": "nesbot/carbon",
  1468. "version": "1.21.0",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/briannesbitt/Carbon.git",
  1472. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  1477. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  1478. "shasum": ""
  1479. },
  1480. "require": {
  1481. "php": ">=5.3.0",
  1482. "symfony/translation": "~2.6|~3.0"
  1483. },
  1484. "require-dev": {
  1485. "phpunit/phpunit": "~4.0|~5.0"
  1486. },
  1487. "type": "library",
  1488. "autoload": {
  1489. "psr-4": {
  1490. "Carbon\\": "src/Carbon/"
  1491. }
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "MIT"
  1496. ],
  1497. "authors": [
  1498. {
  1499. "name": "Brian Nesbitt",
  1500. "email": "brian@nesbot.com",
  1501. "homepage": "http://nesbot.com"
  1502. }
  1503. ],
  1504. "description": "A simple API extension for DateTime.",
  1505. "homepage": "http://carbon.nesbot.com",
  1506. "keywords": [
  1507. "date",
  1508. "datetime",
  1509. "time"
  1510. ],
  1511. "time": "2015-11-04 20:07:17"
  1512. },
  1513. {
  1514. "name": "nikic/fast-route",
  1515. "version": "v0.4.0",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/nikic/FastRoute.git",
  1519. "reference": "f26a8f7788f25c0e3e9b1579d38d7ccab2755320"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/f26a8f7788f25c0e3e9b1579d38d7ccab2755320",
  1524. "reference": "f26a8f7788f25c0e3e9b1579d38d7ccab2755320",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "php": ">=5.4.0"
  1529. },
  1530. "type": "library",
  1531. "autoload": {
  1532. "psr-4": {
  1533. "FastRoute\\": "src/"
  1534. },
  1535. "files": [
  1536. "src/functions.php"
  1537. ]
  1538. },
  1539. "notification-url": "https://packagist.org/downloads/",
  1540. "license": [
  1541. "BSD-3-Clause"
  1542. ],
  1543. "authors": [
  1544. {
  1545. "name": "Nikita Popov",
  1546. "email": "nikic@php.net"
  1547. }
  1548. ],
  1549. "description": "Fast request router for PHP",
  1550. "keywords": [
  1551. "router",
  1552. "routing"
  1553. ],
  1554. "time": "2015-02-26 15:33:07"
  1555. },
  1556. {
  1557. "name": "paragonie/random_compat",
  1558. "version": "1.1.0",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/paragonie/random_compat.git",
  1562. "reference": "19f765b66c6fbb56ee3b11bc16d52e38eebdc295"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/19f765b66c6fbb56ee3b11bc16d52e38eebdc295",
  1567. "reference": "19f765b66c6fbb56ee3b11bc16d52e38eebdc295",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=5.2.0"
  1572. },
  1573. "require-dev": {
  1574. "phpunit/phpunit": "4.*|5.*"
  1575. },
  1576. "suggest": {
  1577. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1578. },
  1579. "type": "library",
  1580. "autoload": {
  1581. "files": [
  1582. "lib/random.php"
  1583. ]
  1584. },
  1585. "notification-url": "https://packagist.org/downloads/",
  1586. "license": [
  1587. "MIT"
  1588. ],
  1589. "authors": [
  1590. {
  1591. "name": "Paragon Initiative Enterprises",
  1592. "email": "security@paragonie.com",
  1593. "homepage": "https://paragonie.com"
  1594. }
  1595. ],
  1596. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1597. "keywords": [
  1598. "csprng",
  1599. "pseudorandom",
  1600. "random"
  1601. ],
  1602. "time": "2015-11-10 00:45:41"
  1603. },
  1604. {
  1605. "name": "psr/log",
  1606. "version": "1.0.0",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/php-fig/log.git",
  1610. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  1615. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  1616. "shasum": ""
  1617. },
  1618. "type": "library",
  1619. "autoload": {
  1620. "psr-0": {
  1621. "Psr\\Log\\": ""
  1622. }
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "authors": [
  1629. {
  1630. "name": "PHP-FIG",
  1631. "homepage": "http://www.php-fig.org/"
  1632. }
  1633. ],
  1634. "description": "Common interface for logging libraries",
  1635. "keywords": [
  1636. "log",
  1637. "psr",
  1638. "psr-3"
  1639. ],
  1640. "time": "2012-12-21 11:40:51"
  1641. },
  1642. {
  1643. "name": "symfony/console",
  1644. "version": "v2.7.6",
  1645. "source": {
  1646. "type": "git",
  1647. "url": "https://github.com/symfony/console.git",
  1648. "reference": "5efd632294c8320ea52492db22292ff853a43766"
  1649. },
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://api.github.com/repos/symfony/console/zipball/5efd632294c8320ea52492db22292ff853a43766",
  1653. "reference": "5efd632294c8320ea52492db22292ff853a43766",
  1654. "shasum": ""
  1655. },
  1656. "require": {
  1657. "php": ">=5.3.9"
  1658. },
  1659. "require-dev": {
  1660. "psr/log": "~1.0",
  1661. "symfony/event-dispatcher": "~2.1",
  1662. "symfony/process": "~2.1"
  1663. },
  1664. "suggest": {
  1665. "psr/log": "For using the console logger",
  1666. "symfony/event-dispatcher": "",
  1667. "symfony/process": ""
  1668. },
  1669. "type": "library",
  1670. "extra": {
  1671. "branch-alias": {
  1672. "dev-master": "2.7-dev"
  1673. }
  1674. },
  1675. "autoload": {
  1676. "psr-4": {
  1677. "Symfony\\Component\\Console\\": ""
  1678. }
  1679. },
  1680. "notification-url": "https://packagist.org/downloads/",
  1681. "license": [
  1682. "MIT"
  1683. ],
  1684. "authors": [
  1685. {
  1686. "name": "Fabien Potencier",
  1687. "email": "fabien@symfony.com"
  1688. },
  1689. {
  1690. "name": "Symfony Community",
  1691. "homepage": "https://symfony.com/contributors"
  1692. }
  1693. ],
  1694. "description": "Symfony Console Component",
  1695. "homepage": "https://symfony.com",
  1696. "time": "2015-10-20 14:38:46"
  1697. },
  1698. {
  1699. "name": "symfony/debug",
  1700. "version": "v2.7.6",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/symfony/debug.git",
  1704. "reference": "fb9e6887db716939f41af0ba8ef38a1582eb501b"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/symfony/debug/zipball/fb9e6887db716939f41af0ba8ef38a1582eb501b",
  1709. "reference": "fb9e6887db716939f41af0ba8ef38a1582eb501b",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "php": ">=5.3.9",
  1714. "psr/log": "~1.0"
  1715. },
  1716. "conflict": {
  1717. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1718. },
  1719. "require-dev": {
  1720. "symfony/class-loader": "~2.2",
  1721. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2"
  1722. },
  1723. "type": "library",
  1724. "extra": {
  1725. "branch-alias": {
  1726. "dev-master": "2.7-dev"
  1727. }
  1728. },
  1729. "autoload": {
  1730. "psr-4": {
  1731. "Symfony\\Component\\Debug\\": ""
  1732. }
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Fabien Potencier",
  1741. "email": "fabien@symfony.com"
  1742. },
  1743. {
  1744. "name": "Symfony Community",
  1745. "homepage": "https://symfony.com/contributors"
  1746. }
  1747. ],
  1748. "description": "Symfony Debug Component",
  1749. "homepage": "https://symfony.com",
  1750. "time": "2015-10-11 09:39:48"
  1751. },
  1752. {
  1753. "name": "symfony/dom-crawler",
  1754. "version": "v2.7.6",
  1755. "source": {
  1756. "type": "git",
  1757. "url": "https://github.com/symfony/dom-crawler.git",
  1758. "reference": "5fef7d8b80d8f9992df99d8ee283f420484c9612"
  1759. },
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/5fef7d8b80d8f9992df99d8ee283f420484c9612",
  1763. "reference": "5fef7d8b80d8f9992df99d8ee283f420484c9612",
  1764. "shasum": ""
  1765. },
  1766. "require": {
  1767. "php": ">=5.3.9"
  1768. },
  1769. "require-dev": {
  1770. "symfony/css-selector": "~2.3"
  1771. },
  1772. "suggest": {
  1773. "symfony/css-selector": ""
  1774. },
  1775. "type": "library",
  1776. "extra": {
  1777. "branch-alias": {
  1778. "dev-master": "2.7-dev"
  1779. }
  1780. },
  1781. "autoload": {
  1782. "psr-4": {
  1783. "Symfony\\Component\\DomCrawler\\": ""
  1784. }
  1785. },
  1786. "notification-url": "https://packagist.org/downloads/",
  1787. "license": [
  1788. "MIT"
  1789. ],
  1790. "authors": [
  1791. {
  1792. "name": "Fabien Potencier",
  1793. "email": "fabien@symfony.com"
  1794. },
  1795. {
  1796. "name": "Symfony Community",
  1797. "homepage": "https://symfony.com/contributors"
  1798. }
  1799. ],
  1800. "description": "Symfony DomCrawler Component",
  1801. "homepage": "https://symfony.com",
  1802. "time": "2015-10-11 09:39:48"
  1803. },
  1804. {
  1805. "name": "symfony/event-dispatcher",
  1806. "version": "v2.7.6",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/symfony/event-dispatcher.git",
  1810. "reference": "87a5db5ea887763fa3a31a5471b512ff1596d9b8"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87a5db5ea887763fa3a31a5471b512ff1596d9b8",
  1815. "reference": "87a5db5ea887763fa3a31a5471b512ff1596d9b8",
  1816. "shasum": ""
  1817. },
  1818. "require": {
  1819. "php": ">=5.3.9"
  1820. },
  1821. "require-dev": {
  1822. "psr/log": "~1.0",
  1823. "symfony/config": "~2.0,>=2.0.5",
  1824. "symfony/dependency-injection": "~2.6",
  1825. "symfony/expression-language": "~2.6",
  1826. "symfony/stopwatch": "~2.3"
  1827. },
  1828. "suggest": {
  1829. "symfony/dependency-injection": "",
  1830. "symfony/http-kernel": ""
  1831. },
  1832. "type": "library",
  1833. "extra": {
  1834. "branch-alias": {
  1835. "dev-master": "2.7-dev"
  1836. }
  1837. },
  1838. "autoload": {
  1839. "psr-4": {
  1840. "Symfony\\Component\\EventDispatcher\\": ""
  1841. }
  1842. },
  1843. "notification-url": "https://packagist.org/downloads/",
  1844. "license": [
  1845. "MIT"
  1846. ],
  1847. "authors": [
  1848. {
  1849. "name": "Fabien Potencier",
  1850. "email": "fabien@symfony.com"
  1851. },
  1852. {
  1853. "name": "Symfony Community",
  1854. "homepage": "https://symfony.com/contributors"
  1855. }
  1856. ],
  1857. "description": "Symfony EventDispatcher Component",
  1858. "homepage": "https://symfony.com",
  1859. "time": "2015-10-11 09:39:48"
  1860. },
  1861. {
  1862. "name": "symfony/finder",
  1863. "version": "v2.7.6",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/symfony/finder.git",
  1867. "reference": "2ffb4e9598db3c48eb6d0ae73b04bbf09280c59d"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/symfony/finder/zipball/2ffb4e9598db3c48eb6d0ae73b04bbf09280c59d",
  1872. "reference": "2ffb4e9598db3c48eb6d0ae73b04bbf09280c59d",
  1873. "shasum": ""
  1874. },
  1875. "require": {
  1876. "php": ">=5.3.9"
  1877. },
  1878. "type": "library",
  1879. "extra": {
  1880. "branch-alias": {
  1881. "dev-master": "2.7-dev"
  1882. }
  1883. },
  1884. "autoload": {
  1885. "psr-4": {
  1886. "Symfony\\Component\\Finder\\": ""
  1887. }
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "Fabien Potencier",
  1896. "email": "fabien@symfony.com"
  1897. },
  1898. {
  1899. "name": "Symfony Community",
  1900. "homepage": "https://symfony.com/contributors"
  1901. }
  1902. ],
  1903. "description": "Symfony Finder Component",
  1904. "homepage": "https://symfony.com",
  1905. "time": "2015-10-11 09:39:48"
  1906. },
  1907. {
  1908. "name": "symfony/http-foundation",
  1909. "version": "v2.7.6",
  1910. "source": {
  1911. "type": "git",
  1912. "url": "https://github.com/symfony/http-foundation.git",
  1913. "reference": "7598eea151ae3d4134df1f9957364b17809eea75"
  1914. },
  1915. "dist": {
  1916. "type": "zip",
  1917. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7598eea151ae3d4134df1f9957364b17809eea75",
  1918. "reference": "7598eea151ae3d4134df1f9957364b17809eea75",
  1919. "shasum": ""
  1920. },
  1921. "require": {
  1922. "php": ">=5.3.9"
  1923. },
  1924. "require-dev": {
  1925. "symfony/expression-language": "~2.4"
  1926. },
  1927. "type": "library",
  1928. "extra": {
  1929. "branch-alias": {
  1930. "dev-master": "2.7-dev"
  1931. }
  1932. },
  1933. "autoload": {
  1934. "psr-4": {
  1935. "Symfony\\Component\\HttpFoundation\\": ""
  1936. },
  1937. "classmap": [
  1938. "Resources/stubs"
  1939. ]
  1940. },
  1941. "notification-url": "https://packagist.org/downloads/",
  1942. "license": [
  1943. "MIT"
  1944. ],
  1945. "authors": [
  1946. {
  1947. "name": "Fabien Potencier",
  1948. "email": "fabien@symfony.com"
  1949. },
  1950. {
  1951. "name": "Symfony Community",
  1952. "homepage": "https://symfony.com/contributors"
  1953. }
  1954. ],
  1955. "description": "Symfony HttpFoundation Component",
  1956. "homepage": "https://symfony.com",
  1957. "time": "2015-10-23 14:47:27"
  1958. },
  1959. {
  1960. "name": "symfony/http-kernel",
  1961. "version": "v2.7.6",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/symfony/http-kernel.git",
  1965. "reference": "4260f2273a446a6715063dc9ca89fd0c475c2f77"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4260f2273a446a6715063dc9ca89fd0c475c2f77",
  1970. "reference": "4260f2273a446a6715063dc9ca89fd0c475c2f77",
  1971. "shasum": ""
  1972. },
  1973. "require": {
  1974. "php": ">=5.3.9",
  1975. "psr/log": "~1.0",
  1976. "symfony/debug": "~2.6,>=2.6.2",
  1977. "symfony/event-dispatcher": "~2.6,>=2.6.7",
  1978. "symfony/http-foundation": "~2.5,>=2.5.4"
  1979. },
  1980. "conflict": {
  1981. "symfony/config": "<2.7"
  1982. },
  1983. "require-dev": {
  1984. "symfony/browser-kit": "~2.3",
  1985. "symfony/class-loader": "~2.1",
  1986. "symfony/config": "~2.7",
  1987. "symfony/console": "~2.3",
  1988. "symfony/css-selector": "~2.0,>=2.0.5",
  1989. "symfony/dependency-injection": "~2.2",
  1990. "symfony/dom-crawler": "~2.0,>=2.0.5",
  1991. "symfony/expression-language": "~2.4",
  1992. "symfony/finder": "~2.0,>=2.0.5",
  1993. "symfony/process": "~2.0,>=2.0.5",
  1994. "symfony/routing": "~2.2",
  1995. "symfony/stopwatch": "~2.3",
  1996. "symfony/templating": "~2.2",
  1997. "symfony/translation": "~2.0,>=2.0.5",
  1998. "symfony/var-dumper": "~2.6"
  1999. },
  2000. "suggest": {
  2001. "symfony/browser-kit": "",
  2002. "symfony/class-loader": "",
  2003. "symfony/config": "",
  2004. "symfony/console": "",
  2005. "symfony/dependency-injection": "",
  2006. "symfony/finder": "",
  2007. "symfony/var-dumper": ""
  2008. },
  2009. "type": "library",
  2010. "extra": {
  2011. "branch-alias": {
  2012. "dev-master": "2.7-dev"
  2013. }
  2014. },
  2015. "autoload": {
  2016. "psr-4": {
  2017. "Symfony\\Component\\HttpKernel\\": ""
  2018. }
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "Fabien Potencier",
  2027. "email": "fabien@symfony.com"
  2028. },
  2029. {
  2030. "name": "Symfony Community",
  2031. "homepage": "https://symfony.com/contributors"
  2032. }
  2033. ],
  2034. "description": "Symfony HttpKernel Component",
  2035. "homepage": "https://symfony.com",
  2036. "time": "2015-10-27 19:07:21"
  2037. },
  2038. {
  2039. "name": "symfony/process",
  2040. "version": "v2.7.6",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/symfony/process.git",
  2044. "reference": "4a959dd4e19c2c5d7512689413921e0a74386ec7"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/symfony/process/zipball/4a959dd4e19c2c5d7512689413921e0a74386ec7",
  2049. "reference": "4a959dd4e19c2c5d7512689413921e0a74386ec7",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "php": ">=5.3.9"
  2054. },
  2055. "type": "library",
  2056. "extra": {
  2057. "branch-alias": {
  2058. "dev-master": "2.7-dev"
  2059. }
  2060. },
  2061. "autoload": {
  2062. "psr-4": {
  2063. "Symfony\\Component\\Process\\": ""
  2064. }
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "MIT"
  2069. ],
  2070. "authors": [
  2071. {
  2072. "name": "Fabien Potencier",
  2073. "email": "fabien@symfony.com"
  2074. },
  2075. {
  2076. "name": "Symfony Community",
  2077. "homepage": "https://symfony.com/contributors"
  2078. }
  2079. ],
  2080. "description": "Symfony Process Component",
  2081. "homepage": "https://symfony.com",
  2082. "time": "2015-10-23 14:47:27"
  2083. },
  2084. {
  2085. "name": "symfony/translation",
  2086. "version": "v2.7.6",
  2087. "source": {
  2088. "type": "git",
  2089. "url": "https://github.com/symfony/translation.git",
  2090. "reference": "6ccd9289ec1c71d01a49d83480de3b5293ce30c8"
  2091. },
  2092. "dist": {
  2093. "type": "zip",
  2094. "url": "https://api.github.com/repos/symfony/translation/zipball/6ccd9289ec1c71d01a49d83480de3b5293ce30c8",
  2095. "reference": "6ccd9289ec1c71d01a49d83480de3b5293ce30c8",
  2096. "shasum": ""
  2097. },
  2098. "require": {
  2099. "php": ">=5.3.9"
  2100. },
  2101. "conflict": {
  2102. "symfony/config": "<2.7"
  2103. },
  2104. "require-dev": {
  2105. "psr/log": "~1.0",
  2106. "symfony/config": "~2.7",
  2107. "symfony/intl": "~2.4",
  2108. "symfony/yaml": "~2.2"
  2109. },
  2110. "suggest": {
  2111. "psr/log": "To use logging capability in translator",
  2112. "symfony/config": "",
  2113. "symfony/yaml": ""
  2114. },
  2115. "type": "library",
  2116. "extra": {
  2117. "branch-alias": {
  2118. "dev-master": "2.7-dev"
  2119. }
  2120. },
  2121. "autoload": {
  2122. "psr-4": {
  2123. "Symfony\\Component\\Translation\\": ""
  2124. }
  2125. },
  2126. "notification-url": "https://packagist.org/downloads/",
  2127. "license": [
  2128. "MIT"
  2129. ],
  2130. "authors": [
  2131. {
  2132. "name": "Fabien Potencier",
  2133. "email": "fabien@symfony.com"
  2134. },
  2135. {
  2136. "name": "Symfony Community",
  2137. "homepage": "https://symfony.com/contributors"
  2138. }
  2139. ],
  2140. "description": "Symfony Translation Component",
  2141. "homepage": "https://symfony.com",
  2142. "time": "2015-10-27 15:38:06"
  2143. },
  2144. {
  2145. "name": "symfony/var-dumper",
  2146. "version": "v2.7.6",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://github.com/symfony/var-dumper.git",
  2150. "reference": "eb033050050916b6bfa51be71009ef67b16046c9"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb033050050916b6bfa51be71009ef67b16046c9",
  2155. "reference": "eb033050050916b6bfa51be71009ef67b16046c9",
  2156. "shasum": ""
  2157. },
  2158. "require": {
  2159. "php": ">=5.3.9"
  2160. },
  2161. "suggest": {
  2162. "ext-symfony_debug": ""
  2163. },
  2164. "type": "library",
  2165. "extra": {
  2166. "branch-alias": {
  2167. "dev-master": "2.7-dev"
  2168. }
  2169. },
  2170. "autoload": {
  2171. "files": [
  2172. "Resources/functions/dump.php"
  2173. ],
  2174. "psr-4": {
  2175. "Symfony\\Component\\VarDumper\\": ""
  2176. }
  2177. },
  2178. "notification-url": "https://packagist.org/downloads/",
  2179. "license": [
  2180. "MIT"
  2181. ],
  2182. "authors": [
  2183. {
  2184. "name": "Nicolas Grekas",
  2185. "email": "p@tchwork.com"
  2186. },
  2187. {
  2188. "name": "Symfony Community",
  2189. "homepage": "https://symfony.com/contributors"
  2190. }
  2191. ],
  2192. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2193. "homepage": "https://symfony.com",
  2194. "keywords": [
  2195. "debug",
  2196. "dump"
  2197. ],
  2198. "time": "2015-10-25 17:17:38"
  2199. },
  2200. {
  2201. "name": "twig/twig",
  2202. "version": "1.x-dev",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://github.com/twigphp/Twig.git",
  2206. "reference": "b7c124bae00ab0a019a084c6b99f1df023bcb996"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://api.github.com/repos/twigphp/Twig/zipball/b7c124bae00ab0a019a084c6b99f1df023bcb996",
  2211. "reference": "b7c124bae00ab0a019a084c6b99f1df023bcb996",
  2212. "shasum": ""
  2213. },
  2214. "require": {
  2215. "php": ">=5.2.7"
  2216. },
  2217. "require-dev": {
  2218. "symfony/debug": "~2.7",
  2219. "symfony/phpunit-bridge": "~2.7"
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "1.23-dev"
  2225. }
  2226. },
  2227. "autoload": {
  2228. "psr-0": {
  2229. "Twig_": "lib/"
  2230. }
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "BSD-3-Clause"
  2235. ],
  2236. "authors": [
  2237. {
  2238. "name": "Fabien Potencier",
  2239. "email": "fabien@symfony.com",
  2240. "homepage": "http://fabien.potencier.org",
  2241. "role": "Lead Developer"
  2242. },
  2243. {
  2244. "name": "Armin Ronacher",
  2245. "email": "armin.ronacher@active-4.com",
  2246. "role": "Project Founder"
  2247. },
  2248. {
  2249. "name": "Twig Team",
  2250. "homepage": "http://twig.sensiolabs.org/contributors",
  2251. "role": "Contributors"
  2252. }
  2253. ],
  2254. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2255. "homepage": "http://twig.sensiolabs.org",
  2256. "keywords": [
  2257. "templating"
  2258. ],
  2259. "time": "2015-11-08 09:55:30"
  2260. },
  2261. {
  2262. "name": "vlucas/phpdotenv",
  2263. "version": "v1.1.1",
  2264. "source": {
  2265. "type": "git",
  2266. "url": "https://github.com/vlucas/phpdotenv.git",
  2267. "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa"
  2268. },
  2269. "dist": {
  2270. "type": "zip",
  2271. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa",
  2272. "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa",
  2273. "shasum": ""
  2274. },
  2275. "require": {
  2276. "php": ">=5.3.2"
  2277. },
  2278. "require-dev": {
  2279. "phpunit/phpunit": "~4.0"
  2280. },
  2281. "type": "library",
  2282. "autoload": {
  2283. "psr-0": {
  2284. "Dotenv": "src/"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "BSD"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "Vance Lucas",
  2294. "email": "vance@vancelucas.com",
  2295. "homepage": "http://www.vancelucas.com"
  2296. }
  2297. ],
  2298. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2299. "homepage": "http://github.com/vlucas/phpdotenv",
  2300. "keywords": [
  2301. "dotenv",
  2302. "env",
  2303. "environment"
  2304. ],
  2305. "time": "2015-05-30 15:59:26"
  2306. }
  2307. ],
  2308. "packages-dev": [],
  2309. "aliases": [],
  2310. "minimum-stability": "stable",
  2311. "stability-flags": {
  2312. "laravel/lumen-framework": 20,
  2313. "twig/twig": 20
  2314. },
  2315. "prefer-stable": false,
  2316. "prefer-lowest": false,
  2317. "platform": [],
  2318. "platform-dev": []
  2319. }