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 82KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343
  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": "6a453d880d57853f0cb418b46a443562",
  8. "content-hash": "f4dcac42cfaefbfc439245a4b540680d",
  9. "packages": [
  10. {
  11. "name": "danielstjules/stringy",
  12. "version": "1.x-dev",
  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": "dev-master",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/doctrine/inflector.git",
  72. "reference": "097e7ba84f64a427e55008117ef2bb94096731dc"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/doctrine/inflector/zipball/097e7ba84f64a427e55008117ef2bb94096731dc",
  77. "reference": "097e7ba84f64a427e55008117ef2bb94096731dc",
  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.0.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-10-07 18:00:26"
  132. },
  133. {
  134. "name": "illuminate/auth",
  135. "version": "5.1.x-dev",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/illuminate/auth.git",
  139. "reference": "2f690d900e495bda1a06510679ca28a52da46886"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/illuminate/auth/zipball/2f690d900e495bda1a06510679ca28a52da46886",
  144. "reference": "2f690d900e495bda1a06510679ca28a52da46886",
  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": "5.1.x-dev",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/illuminate/broadcasting.git",
  189. "reference": "380fc9abf16c7deba4a21d834e8b6c97bf0a5fe5"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/380fc9abf16c7deba4a21d834e8b6c97bf0a5fe5",
  194. "reference": "380fc9abf16c7deba4a21d834e8b6c97bf0a5fe5",
  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": "5.1.x-dev",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/illuminate/bus.git",
  236. "reference": "4a17c4c68252df2b55ea0a8aef69900f31c6078a"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/illuminate/bus/zipball/4a17c4c68252df2b55ea0a8aef69900f31c6078a",
  241. "reference": "4a17c4c68252df2b55ea0a8aef69900f31c6078a",
  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": "5.1.x-dev",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/illuminate/cache.git",
  281. "reference": "152e05d328cb4f1e86a6eca2d3240f74087895f1"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/illuminate/cache/zipball/152e05d328cb4f1e86a6eca2d3240f74087895f1",
  286. "reference": "152e05d328cb4f1e86a6eca2d3240f74087895f1",
  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": "5.1.x-dev",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/illuminate/config.git",
  331. "reference": "b0bb52f9004a09920cf235b3ed1481355360b70f"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/illuminate/config/zipball/b0bb52f9004a09920cf235b3ed1481355360b70f",
  336. "reference": "b0bb52f9004a09920cf235b3ed1481355360b70f",
  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": "5.1.x-dev",
  373. "source": {
  374. "type": "git",
  375. "url": "https://github.com/illuminate/console.git",
  376. "reference": "eaaa4da6e32a96e1b2498d8a13102691b56c4bb3"
  377. },
  378. "dist": {
  379. "type": "zip",
  380. "url": "https://api.github.com/repos/illuminate/console/zipball/eaaa4da6e32a96e1b2498d8a13102691b56c4bb3",
  381. "reference": "eaaa4da6e32a96e1b2498d8a13102691b56c4bb3",
  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": "5.1.x-dev",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/illuminate/container.git",
  427. "reference": "f14ea33d9ffcab4ca3aaed0328a92301adbe6960"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/illuminate/container/zipball/f14ea33d9ffcab4ca3aaed0328a92301adbe6960",
  432. "reference": "f14ea33d9ffcab4ca3aaed0328a92301adbe6960",
  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": "5.1.x-dev",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/illuminate/contracts.git",
  470. "reference": "6e828a355b7a467232efad3dbe76df17463178e3"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/illuminate/contracts/zipball/6e828a355b7a467232efad3dbe76df17463178e3",
  475. "reference": "6e828a355b7a467232efad3dbe76df17463178e3",
  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": "5.1.x-dev",
  509. "source": {
  510. "type": "git",
  511. "url": "https://github.com/illuminate/cookie.git",
  512. "reference": "82e4cfc44eb44540907e9ab927de10b284e934e5"
  513. },
  514. "dist": {
  515. "type": "zip",
  516. "url": "https://api.github.com/repos/illuminate/cookie/zipball/82e4cfc44eb44540907e9ab927de10b284e934e5",
  517. "reference": "82e4cfc44eb44540907e9ab927de10b284e934e5",
  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": "5.1.x-dev",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/illuminate/database.git",
  558. "reference": "5ffe6bc5a5a11a492f094ab1393cd4bd6954bf92"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/illuminate/database/zipball/5ffe6bc5a5a11a492f094ab1393cd4bd6954bf92",
  563. "reference": "5ffe6bc5a5a11a492f094ab1393cd4bd6954bf92",
  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-22 18:09:07"
  610. },
  611. {
  612. "name": "illuminate/encryption",
  613. "version": "5.1.x-dev",
  614. "source": {
  615. "type": "git",
  616. "url": "https://github.com/illuminate/encryption.git",
  617. "reference": "51423884e1fefa394198732a1b0bf8e80d44ec9c"
  618. },
  619. "dist": {
  620. "type": "zip",
  621. "url": "https://api.github.com/repos/illuminate/encryption/zipball/51423884e1fefa394198732a1b0bf8e80d44ec9c",
  622. "reference": "51423884e1fefa394198732a1b0bf8e80d44ec9c",
  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": "5.1.x-dev",
  663. "source": {
  664. "type": "git",
  665. "url": "https://github.com/illuminate/events.git",
  666. "reference": "8ffe2b316c595477f621a78fee0f64d8fc175bfa"
  667. },
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://api.github.com/repos/illuminate/events/zipball/8ffe2b316c595477f621a78fee0f64d8fc175bfa",
  671. "reference": "8ffe2b316c595477f621a78fee0f64d8fc175bfa",
  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": "5.1.x-dev",
  708. "source": {
  709. "type": "git",
  710. "url": "https://github.com/illuminate/filesystem.git",
  711. "reference": "21e6f8286825ce5e1a0afb04de5defcbfcaee61b"
  712. },
  713. "dist": {
  714. "type": "zip",
  715. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/21e6f8286825ce5e1a0afb04de5defcbfcaee61b",
  716. "reference": "21e6f8286825ce5e1a0afb04de5defcbfcaee61b",
  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": "5.1.x-dev",
  758. "source": {
  759. "type": "git",
  760. "url": "https://github.com/illuminate/hashing.git",
  761. "reference": "298c421523d416be880bb3f75809e6b107b5c9ec"
  762. },
  763. "dist": {
  764. "type": "zip",
  765. "url": "https://api.github.com/repos/illuminate/hashing/zipball/298c421523d416be880bb3f75809e6b107b5c9ec",
  766. "reference": "298c421523d416be880bb3f75809e6b107b5c9ec",
  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": "5.1.x-dev",
  802. "source": {
  803. "type": "git",
  804. "url": "https://github.com/illuminate/http.git",
  805. "reference": "0fd17b1a9411bd764ecca9179d60393fcc93163a"
  806. },
  807. "dist": {
  808. "type": "zip",
  809. "url": "https://api.github.com/repos/illuminate/http/zipball/0fd17b1a9411bd764ecca9179d60393fcc93163a",
  810. "reference": "0fd17b1a9411bd764ecca9179d60393fcc93163a",
  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": "5.1.x-dev",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/illuminate/pagination.git",
  851. "reference": "16825354a29b45e1901d109dab9505682df4d5fc"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/illuminate/pagination/zipball/16825354a29b45e1901d109dab9505682df4d5fc",
  856. "reference": "16825354a29b45e1901d109dab9505682df4d5fc",
  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": "5.1.x-dev",
  892. "source": {
  893. "type": "git",
  894. "url": "https://github.com/illuminate/pipeline.git",
  895. "reference": "ce96681a13cc7005954a14b3f6ee93ac54aa2ded"
  896. },
  897. "dist": {
  898. "type": "zip",
  899. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/ce96681a13cc7005954a14b3f6ee93ac54aa2ded",
  900. "reference": "ce96681a13cc7005954a14b3f6ee93ac54aa2ded",
  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": "5.1.x-dev",
  936. "source": {
  937. "type": "git",
  938. "url": "https://github.com/illuminate/queue.git",
  939. "reference": "00692d9de86aef075dc9278eed094733403c25f8"
  940. },
  941. "dist": {
  942. "type": "zip",
  943. "url": "https://api.github.com/repos/illuminate/queue/zipball/00692d9de86aef075dc9278eed094733403c25f8",
  944. "reference": "00692d9de86aef075dc9278eed094733403c25f8",
  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-20 21:16:46"
  990. },
  991. {
  992. "name": "illuminate/session",
  993. "version": "5.1.x-dev",
  994. "source": {
  995. "type": "git",
  996. "url": "https://github.com/illuminate/session.git",
  997. "reference": "5756afee401793a02cdc831382b3480d1159df5d"
  998. },
  999. "dist": {
  1000. "type": "zip",
  1001. "url": "https://api.github.com/repos/illuminate/session/zipball/5756afee401793a02cdc831382b3480d1159df5d",
  1002. "reference": "5756afee401793a02cdc831382b3480d1159df5d",
  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": "5.1.x-dev",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/illuminate/support.git",
  1047. "reference": "c8e9aad1e06cb159e5f082b16037366b7a0409c6"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/illuminate/support/zipball/c8e9aad1e06cb159e5f082b16037366b7a0409c6",
  1052. "reference": "c8e9aad1e06cb159e5f082b16037366b7a0409c6",
  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": "5.1.x-dev",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/illuminate/translation.git",
  1101. "reference": "36d05eccee1f9f6692cc5126c60873d02452fb21"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/illuminate/translation/zipball/36d05eccee1f9f6692cc5126c60873d02452fb21",
  1106. "reference": "36d05eccee1f9f6692cc5126c60873d02452fb21",
  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": "5.1.x-dev",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/illuminate/validation.git",
  1146. "reference": "dda15742b000d9c95a95cc9984428d4dea9cc8f9"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/illuminate/validation/zipball/dda15742b000d9c95a95cc9984428d4dea9cc8f9",
  1151. "reference": "dda15742b000d9c95a95cc9984428d4dea9cc8f9",
  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-19 06:01:02"
  1189. },
  1190. {
  1191. "name": "illuminate/view",
  1192. "version": "5.1.x-dev",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/illuminate/view.git",
  1196. "reference": "2ee7fa5cc61c998d043ed59e3a2a82fdf81d3f03"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/illuminate/view/zipball/2ee7fa5cc61c998d043ed59e3a2a82fdf81d3f03",
  1201. "reference": "2ee7fa5cc61c998d043ed59e3a2a82fdf81d3f03",
  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": "3079aabbf520194933ad53a14f6d1ebbf8077bbd"
  1244. },
  1245. "dist": {
  1246. "type": "zip",
  1247. "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/3079aabbf520194933ad53a14f6d1ebbf8077bbd",
  1248. "reference": "3079aabbf520194933ad53a14f6d1ebbf8077bbd",
  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.0.6",
  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/security-core": "2.7.*",
  1283. "symfony/var-dumper": "2.7.*"
  1284. },
  1285. "require-dev": {
  1286. "mockery/mockery": "~0.9",
  1287. "phpunit/phpunit": "~4.0"
  1288. },
  1289. "suggest": {
  1290. "vlucas/phpdotenv": "Required to use .env files (~1.0)."
  1291. },
  1292. "type": "library",
  1293. "autoload": {
  1294. "psr-4": {
  1295. "Laravel\\Lumen\\": "src/"
  1296. },
  1297. "classmap": [
  1298. "src/Foundation"
  1299. ],
  1300. "files": [
  1301. "src/helpers.php"
  1302. ]
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "authors": [
  1309. {
  1310. "name": "Taylor Otwell",
  1311. "email": "taylorotwell@gmail.com"
  1312. }
  1313. ],
  1314. "description": "The Laravel Lumen Framework.",
  1315. "homepage": "http://laravel.com",
  1316. "keywords": [
  1317. "framework",
  1318. "laravel",
  1319. "lumen"
  1320. ],
  1321. "time": "2015-10-19 21:27:10"
  1322. },
  1323. {
  1324. "name": "luticate/utils",
  1325. "version": "dev-master",
  1326. "source": {
  1327. "type": "git",
  1328. "url": "https://git.rthoni.com/luticate/utils.git",
  1329. "reference": "bae4c0894875b563d25998b87dec97a59a0d2f3c"
  1330. },
  1331. "require": {
  1332. "laravel/lumen-framework": "5.1.x-dev"
  1333. },
  1334. "type": "library",
  1335. "autoload": {
  1336. "psr-4": {
  1337. "Luticate\\": "src/"
  1338. }
  1339. },
  1340. "authors": [
  1341. {
  1342. "name": "Robin THONI",
  1343. "email": "robin@rthoni.com"
  1344. }
  1345. ],
  1346. "description": "Luticate user management system utils",
  1347. "time": "2015-10-22 18:22:43"
  1348. },
  1349. {
  1350. "name": "monolog/monolog",
  1351. "version": "1.17.2",
  1352. "source": {
  1353. "type": "git",
  1354. "url": "https://github.com/Seldaek/monolog.git",
  1355. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24"
  1356. },
  1357. "dist": {
  1358. "type": "zip",
  1359. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1360. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1361. "shasum": ""
  1362. },
  1363. "require": {
  1364. "php": ">=5.3.0",
  1365. "psr/log": "~1.0"
  1366. },
  1367. "provide": {
  1368. "psr/log-implementation": "1.0.0"
  1369. },
  1370. "require-dev": {
  1371. "aws/aws-sdk-php": "^2.4.9",
  1372. "doctrine/couchdb": "~1.0@dev",
  1373. "graylog2/gelf-php": "~1.0",
  1374. "jakub-onderka/php-parallel-lint": "0.9",
  1375. "php-console/php-console": "^3.1.3",
  1376. "phpunit/phpunit": "~4.5",
  1377. "phpunit/phpunit-mock-objects": "2.3.0",
  1378. "raven/raven": "^0.13",
  1379. "ruflin/elastica": ">=0.90 <3.0",
  1380. "swiftmailer/swiftmailer": "~5.3",
  1381. "videlalvaro/php-amqplib": "~2.4"
  1382. },
  1383. "suggest": {
  1384. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1385. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1386. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1387. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1388. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1389. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1390. "raven/raven": "Allow sending log messages to a Sentry server",
  1391. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1392. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1393. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1394. },
  1395. "type": "library",
  1396. "extra": {
  1397. "branch-alias": {
  1398. "dev-master": "1.16.x-dev"
  1399. }
  1400. },
  1401. "autoload": {
  1402. "psr-4": {
  1403. "Monolog\\": "src/Monolog"
  1404. }
  1405. },
  1406. "notification-url": "https://packagist.org/downloads/",
  1407. "license": [
  1408. "MIT"
  1409. ],
  1410. "authors": [
  1411. {
  1412. "name": "Jordi Boggiano",
  1413. "email": "j.boggiano@seld.be",
  1414. "homepage": "http://seld.be"
  1415. }
  1416. ],
  1417. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1418. "homepage": "http://github.com/Seldaek/monolog",
  1419. "keywords": [
  1420. "log",
  1421. "logging",
  1422. "psr-3"
  1423. ],
  1424. "time": "2015-10-14 12:51:02"
  1425. },
  1426. {
  1427. "name": "mtdowling/cron-expression",
  1428. "version": "v1.0.4",
  1429. "source": {
  1430. "type": "git",
  1431. "url": "https://github.com/mtdowling/cron-expression.git",
  1432. "reference": "fd92e883195e5dfa77720b1868cf084b08be4412"
  1433. },
  1434. "dist": {
  1435. "type": "zip",
  1436. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/fd92e883195e5dfa77720b1868cf084b08be4412",
  1437. "reference": "fd92e883195e5dfa77720b1868cf084b08be4412",
  1438. "shasum": ""
  1439. },
  1440. "require": {
  1441. "php": ">=5.3.2"
  1442. },
  1443. "require-dev": {
  1444. "phpunit/phpunit": "4.*"
  1445. },
  1446. "type": "library",
  1447. "autoload": {
  1448. "psr-0": {
  1449. "Cron": "src/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Michael Dowling",
  1459. "email": "mtdowling@gmail.com",
  1460. "homepage": "https://github.com/mtdowling"
  1461. }
  1462. ],
  1463. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1464. "keywords": [
  1465. "cron",
  1466. "schedule"
  1467. ],
  1468. "time": "2015-01-11 23:07:46"
  1469. },
  1470. {
  1471. "name": "nesbot/carbon",
  1472. "version": "1.20.0",
  1473. "source": {
  1474. "type": "git",
  1475. "url": "https://github.com/briannesbitt/Carbon.git",
  1476. "reference": "bfd3eaba109c9a2405c92174c8e17f20c2b9caf3"
  1477. },
  1478. "dist": {
  1479. "type": "zip",
  1480. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bfd3eaba109c9a2405c92174c8e17f20c2b9caf3",
  1481. "reference": "bfd3eaba109c9a2405c92174c8e17f20c2b9caf3",
  1482. "shasum": ""
  1483. },
  1484. "require": {
  1485. "php": ">=5.3.0",
  1486. "symfony/translation": "~2.6|~3.0"
  1487. },
  1488. "require-dev": {
  1489. "phpunit/phpunit": "~4.0"
  1490. },
  1491. "type": "library",
  1492. "autoload": {
  1493. "psr-0": {
  1494. "Carbon": "src"
  1495. }
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "MIT"
  1500. ],
  1501. "authors": [
  1502. {
  1503. "name": "Brian Nesbitt",
  1504. "email": "brian@nesbot.com",
  1505. "homepage": "http://nesbot.com"
  1506. }
  1507. ],
  1508. "description": "A simple API extension for DateTime.",
  1509. "homepage": "http://carbon.nesbot.com",
  1510. "keywords": [
  1511. "date",
  1512. "datetime",
  1513. "time"
  1514. ],
  1515. "time": "2015-06-25 04:19:39"
  1516. },
  1517. {
  1518. "name": "nikic/fast-route",
  1519. "version": "v0.4.0",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/nikic/FastRoute.git",
  1523. "reference": "f26a8f7788f25c0e3e9b1579d38d7ccab2755320"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/f26a8f7788f25c0e3e9b1579d38d7ccab2755320",
  1528. "reference": "f26a8f7788f25c0e3e9b1579d38d7ccab2755320",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "php": ">=5.4.0"
  1533. },
  1534. "type": "library",
  1535. "autoload": {
  1536. "psr-4": {
  1537. "FastRoute\\": "src/"
  1538. },
  1539. "files": [
  1540. "src/functions.php"
  1541. ]
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "BSD-3-Clause"
  1546. ],
  1547. "authors": [
  1548. {
  1549. "name": "Nikita Popov",
  1550. "email": "nikic@php.net"
  1551. }
  1552. ],
  1553. "description": "Fast request router for PHP",
  1554. "keywords": [
  1555. "router",
  1556. "routing"
  1557. ],
  1558. "time": "2015-02-26 15:33:07"
  1559. },
  1560. {
  1561. "name": "paragonie/random_compat",
  1562. "version": "1.0.9",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/paragonie/random_compat.git",
  1566. "reference": "7647ac58c35ece044b939e01c85dbaa73ed26351"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/7647ac58c35ece044b939e01c85dbaa73ed26351",
  1571. "reference": "7647ac58c35ece044b939e01c85dbaa73ed26351",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "php": ">=5.2.0"
  1576. },
  1577. "suggest": {
  1578. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1579. },
  1580. "type": "library",
  1581. "autoload": {
  1582. "files": [
  1583. "lib/random.php"
  1584. ]
  1585. },
  1586. "notification-url": "https://packagist.org/downloads/",
  1587. "license": [
  1588. "MIT"
  1589. ],
  1590. "authors": [
  1591. {
  1592. "name": "Paragon Initiative Enterprises",
  1593. "email": "security@paragonie.com",
  1594. "homepage": "https://paragonie.com"
  1595. }
  1596. ],
  1597. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1598. "keywords": [
  1599. "csprng",
  1600. "pseudorandom",
  1601. "random"
  1602. ],
  1603. "time": "2015-10-20 15:22:41"
  1604. },
  1605. {
  1606. "name": "psr/log",
  1607. "version": "dev-master",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/php-fig/log.git",
  1611. "reference": "9e45edca52cc9c954680072c93e621f8b71fab26"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/php-fig/log/zipball/9e45edca52cc9c954680072c93e621f8b71fab26",
  1616. "reference": "9e45edca52cc9c954680072c93e621f8b71fab26",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": ">=5.3.0"
  1621. },
  1622. "type": "library",
  1623. "extra": {
  1624. "branch-alias": {
  1625. "dev-master": "1.0.x-dev"
  1626. }
  1627. },
  1628. "autoload": {
  1629. "psr-4": {
  1630. "Psr\\Log\\": "Psr/Log/"
  1631. }
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "MIT"
  1636. ],
  1637. "authors": [
  1638. {
  1639. "name": "PHP-FIG",
  1640. "homepage": "http://www.php-fig.org/"
  1641. }
  1642. ],
  1643. "description": "Common interface for logging libraries",
  1644. "keywords": [
  1645. "log",
  1646. "psr",
  1647. "psr-3"
  1648. ],
  1649. "time": "2015-06-02 13:48:41"
  1650. },
  1651. {
  1652. "name": "symfony/console",
  1653. "version": "2.7.x-dev",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/symfony/console.git",
  1657. "reference": "c482a247eb1d8bc778595e76adf5b999ad96e13a"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/symfony/console/zipball/c482a247eb1d8bc778595e76adf5b999ad96e13a",
  1662. "reference": "c482a247eb1d8bc778595e76adf5b999ad96e13a",
  1663. "shasum": ""
  1664. },
  1665. "require": {
  1666. "php": ">=5.3.9"
  1667. },
  1668. "require-dev": {
  1669. "psr/log": "~1.0",
  1670. "symfony/event-dispatcher": "~2.1",
  1671. "symfony/process": "~2.1"
  1672. },
  1673. "suggest": {
  1674. "psr/log": "For using the console logger",
  1675. "symfony/event-dispatcher": "",
  1676. "symfony/process": ""
  1677. },
  1678. "type": "library",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "2.7-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "psr-4": {
  1686. "Symfony\\Component\\Console\\": ""
  1687. }
  1688. },
  1689. "notification-url": "https://packagist.org/downloads/",
  1690. "license": [
  1691. "MIT"
  1692. ],
  1693. "authors": [
  1694. {
  1695. "name": "Fabien Potencier",
  1696. "email": "fabien@symfony.com"
  1697. },
  1698. {
  1699. "name": "Symfony Community",
  1700. "homepage": "https://symfony.com/contributors"
  1701. }
  1702. ],
  1703. "description": "Symfony Console Component",
  1704. "homepage": "https://symfony.com",
  1705. "time": "2015-10-12 12:42:24"
  1706. },
  1707. {
  1708. "name": "symfony/debug",
  1709. "version": "2.8.x-dev",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/symfony/debug.git",
  1713. "reference": "0c250fd873c7ceb31a9e7ad629b4a7048c931c28"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/symfony/debug/zipball/0c250fd873c7ceb31a9e7ad629b4a7048c931c28",
  1718. "reference": "0c250fd873c7ceb31a9e7ad629b4a7048c931c28",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": ">=5.3.9",
  1723. "psr/log": "~1.0"
  1724. },
  1725. "conflict": {
  1726. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1727. },
  1728. "require-dev": {
  1729. "symfony/class-loader": "~2.2|~3.0.0",
  1730. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2|~3.0.0"
  1731. },
  1732. "type": "library",
  1733. "extra": {
  1734. "branch-alias": {
  1735. "dev-master": "2.8-dev"
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "Symfony\\Component\\Debug\\": ""
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Fabien Potencier",
  1750. "email": "fabien@symfony.com"
  1751. },
  1752. {
  1753. "name": "Symfony Community",
  1754. "homepage": "https://symfony.com/contributors"
  1755. }
  1756. ],
  1757. "description": "Symfony Debug Component",
  1758. "homepage": "https://symfony.com",
  1759. "time": "2015-10-11 08:29:26"
  1760. },
  1761. {
  1762. "name": "symfony/dom-crawler",
  1763. "version": "2.7.x-dev",
  1764. "source": {
  1765. "type": "git",
  1766. "url": "https://github.com/symfony/dom-crawler.git",
  1767. "reference": "5fef7d8b80d8f9992df99d8ee283f420484c9612"
  1768. },
  1769. "dist": {
  1770. "type": "zip",
  1771. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/5fef7d8b80d8f9992df99d8ee283f420484c9612",
  1772. "reference": "5fef7d8b80d8f9992df99d8ee283f420484c9612",
  1773. "shasum": ""
  1774. },
  1775. "require": {
  1776. "php": ">=5.3.9"
  1777. },
  1778. "require-dev": {
  1779. "symfony/css-selector": "~2.3"
  1780. },
  1781. "suggest": {
  1782. "symfony/css-selector": ""
  1783. },
  1784. "type": "library",
  1785. "extra": {
  1786. "branch-alias": {
  1787. "dev-master": "2.7-dev"
  1788. }
  1789. },
  1790. "autoload": {
  1791. "psr-4": {
  1792. "Symfony\\Component\\DomCrawler\\": ""
  1793. }
  1794. },
  1795. "notification-url": "https://packagist.org/downloads/",
  1796. "license": [
  1797. "MIT"
  1798. ],
  1799. "authors": [
  1800. {
  1801. "name": "Fabien Potencier",
  1802. "email": "fabien@symfony.com"
  1803. },
  1804. {
  1805. "name": "Symfony Community",
  1806. "homepage": "https://symfony.com/contributors"
  1807. }
  1808. ],
  1809. "description": "Symfony DomCrawler Component",
  1810. "homepage": "https://symfony.com",
  1811. "time": "2015-10-11 09:39:48"
  1812. },
  1813. {
  1814. "name": "symfony/event-dispatcher",
  1815. "version": "2.8.x-dev",
  1816. "source": {
  1817. "type": "git",
  1818. "url": "https://github.com/symfony/event-dispatcher.git",
  1819. "reference": "41899a21d196332ab23e40f76e1276f2b7aa4d0d"
  1820. },
  1821. "dist": {
  1822. "type": "zip",
  1823. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/41899a21d196332ab23e40f76e1276f2b7aa4d0d",
  1824. "reference": "41899a21d196332ab23e40f76e1276f2b7aa4d0d",
  1825. "shasum": ""
  1826. },
  1827. "require": {
  1828. "php": ">=5.3.9"
  1829. },
  1830. "require-dev": {
  1831. "psr/log": "~1.0",
  1832. "symfony/config": "~2.0,>=2.0.5|~3.0.0",
  1833. "symfony/dependency-injection": "~2.6|~3.0.0",
  1834. "symfony/expression-language": "~2.6|~3.0.0",
  1835. "symfony/stopwatch": "~2.3|~3.0.0"
  1836. },
  1837. "suggest": {
  1838. "symfony/dependency-injection": "",
  1839. "symfony/http-kernel": ""
  1840. },
  1841. "type": "library",
  1842. "extra": {
  1843. "branch-alias": {
  1844. "dev-master": "2.8-dev"
  1845. }
  1846. },
  1847. "autoload": {
  1848. "psr-4": {
  1849. "Symfony\\Component\\EventDispatcher\\": ""
  1850. }
  1851. },
  1852. "notification-url": "https://packagist.org/downloads/",
  1853. "license": [
  1854. "MIT"
  1855. ],
  1856. "authors": [
  1857. {
  1858. "name": "Fabien Potencier",
  1859. "email": "fabien@symfony.com"
  1860. },
  1861. {
  1862. "name": "Symfony Community",
  1863. "homepage": "https://symfony.com/contributors"
  1864. }
  1865. ],
  1866. "description": "Symfony EventDispatcher Component",
  1867. "homepage": "https://symfony.com",
  1868. "time": "2015-10-12 10:13:39"
  1869. },
  1870. {
  1871. "name": "symfony/finder",
  1872. "version": "2.7.x-dev",
  1873. "source": {
  1874. "type": "git",
  1875. "url": "https://github.com/symfony/finder.git",
  1876. "reference": "2ffb4e9598db3c48eb6d0ae73b04bbf09280c59d"
  1877. },
  1878. "dist": {
  1879. "type": "zip",
  1880. "url": "https://api.github.com/repos/symfony/finder/zipball/2ffb4e9598db3c48eb6d0ae73b04bbf09280c59d",
  1881. "reference": "2ffb4e9598db3c48eb6d0ae73b04bbf09280c59d",
  1882. "shasum": ""
  1883. },
  1884. "require": {
  1885. "php": ">=5.3.9"
  1886. },
  1887. "type": "library",
  1888. "extra": {
  1889. "branch-alias": {
  1890. "dev-master": "2.7-dev"
  1891. }
  1892. },
  1893. "autoload": {
  1894. "psr-4": {
  1895. "Symfony\\Component\\Finder\\": ""
  1896. }
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Fabien Potencier",
  1905. "email": "fabien@symfony.com"
  1906. },
  1907. {
  1908. "name": "Symfony Community",
  1909. "homepage": "https://symfony.com/contributors"
  1910. }
  1911. ],
  1912. "description": "Symfony Finder Component",
  1913. "homepage": "https://symfony.com",
  1914. "time": "2015-10-11 09:39:48"
  1915. },
  1916. {
  1917. "name": "symfony/http-foundation",
  1918. "version": "2.7.x-dev",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/symfony/http-foundation.git",
  1922. "reference": "2d6868fe0718c34017f304d7fa3d306b6f52f46c"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2d6868fe0718c34017f304d7fa3d306b6f52f46c",
  1927. "reference": "2d6868fe0718c34017f304d7fa3d306b6f52f46c",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "php": ">=5.3.9"
  1932. },
  1933. "require-dev": {
  1934. "symfony/expression-language": "~2.4"
  1935. },
  1936. "type": "library",
  1937. "extra": {
  1938. "branch-alias": {
  1939. "dev-master": "2.7-dev"
  1940. }
  1941. },
  1942. "autoload": {
  1943. "psr-4": {
  1944. "Symfony\\Component\\HttpFoundation\\": ""
  1945. },
  1946. "classmap": [
  1947. "Resources/stubs"
  1948. ]
  1949. },
  1950. "notification-url": "https://packagist.org/downloads/",
  1951. "license": [
  1952. "MIT"
  1953. ],
  1954. "authors": [
  1955. {
  1956. "name": "Fabien Potencier",
  1957. "email": "fabien@symfony.com"
  1958. },
  1959. {
  1960. "name": "Symfony Community",
  1961. "homepage": "https://symfony.com/contributors"
  1962. }
  1963. ],
  1964. "description": "Symfony HttpFoundation Component",
  1965. "homepage": "https://symfony.com",
  1966. "time": "2015-10-18 20:23:18"
  1967. },
  1968. {
  1969. "name": "symfony/http-kernel",
  1970. "version": "2.7.x-dev",
  1971. "source": {
  1972. "type": "git",
  1973. "url": "https://github.com/symfony/http-kernel.git",
  1974. "reference": "b56f9fad3f1259c1d5cc0a1e5a96c341e9633d5e"
  1975. },
  1976. "dist": {
  1977. "type": "zip",
  1978. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b56f9fad3f1259c1d5cc0a1e5a96c341e9633d5e",
  1979. "reference": "b56f9fad3f1259c1d5cc0a1e5a96c341e9633d5e",
  1980. "shasum": ""
  1981. },
  1982. "require": {
  1983. "php": ">=5.3.9",
  1984. "psr/log": "~1.0",
  1985. "symfony/debug": "~2.6,>=2.6.2",
  1986. "symfony/event-dispatcher": "~2.6,>=2.6.7",
  1987. "symfony/http-foundation": "~2.5,>=2.5.4"
  1988. },
  1989. "conflict": {
  1990. "symfony/config": "<2.7"
  1991. },
  1992. "require-dev": {
  1993. "symfony/browser-kit": "~2.3",
  1994. "symfony/class-loader": "~2.1",
  1995. "symfony/config": "~2.7",
  1996. "symfony/console": "~2.3",
  1997. "symfony/css-selector": "~2.0,>=2.0.5",
  1998. "symfony/dependency-injection": "~2.2",
  1999. "symfony/dom-crawler": "~2.0,>=2.0.5",
  2000. "symfony/expression-language": "~2.4",
  2001. "symfony/finder": "~2.0,>=2.0.5",
  2002. "symfony/process": "~2.0,>=2.0.5",
  2003. "symfony/routing": "~2.2",
  2004. "symfony/stopwatch": "~2.3",
  2005. "symfony/templating": "~2.2",
  2006. "symfony/translation": "~2.0,>=2.0.5",
  2007. "symfony/var-dumper": "~2.6"
  2008. },
  2009. "suggest": {
  2010. "symfony/browser-kit": "",
  2011. "symfony/class-loader": "",
  2012. "symfony/config": "",
  2013. "symfony/console": "",
  2014. "symfony/dependency-injection": "",
  2015. "symfony/finder": "",
  2016. "symfony/var-dumper": ""
  2017. },
  2018. "type": "library",
  2019. "extra": {
  2020. "branch-alias": {
  2021. "dev-master": "2.7-dev"
  2022. }
  2023. },
  2024. "autoload": {
  2025. "psr-4": {
  2026. "Symfony\\Component\\HttpKernel\\": ""
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Fabien Potencier",
  2036. "email": "fabien@symfony.com"
  2037. },
  2038. {
  2039. "name": "Symfony Community",
  2040. "homepage": "https://symfony.com/contributors"
  2041. }
  2042. ],
  2043. "description": "Symfony HttpKernel Component",
  2044. "homepage": "https://symfony.com",
  2045. "time": "2015-10-13 16:05:47"
  2046. },
  2047. {
  2048. "name": "symfony/process",
  2049. "version": "2.7.x-dev",
  2050. "source": {
  2051. "type": "git",
  2052. "url": "https://github.com/symfony/process.git",
  2053. "reference": "74078dbc5d7639dc74f7ee30b048cc74c21149bf"
  2054. },
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "https://api.github.com/repos/symfony/process/zipball/74078dbc5d7639dc74f7ee30b048cc74c21149bf",
  2058. "reference": "74078dbc5d7639dc74f7ee30b048cc74c21149bf",
  2059. "shasum": ""
  2060. },
  2061. "require": {
  2062. "php": ">=5.3.9"
  2063. },
  2064. "type": "library",
  2065. "extra": {
  2066. "branch-alias": {
  2067. "dev-master": "2.7-dev"
  2068. }
  2069. },
  2070. "autoload": {
  2071. "psr-4": {
  2072. "Symfony\\Component\\Process\\": ""
  2073. }
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "authors": [
  2080. {
  2081. "name": "Fabien Potencier",
  2082. "email": "fabien@symfony.com"
  2083. },
  2084. {
  2085. "name": "Symfony Community",
  2086. "homepage": "https://symfony.com/contributors"
  2087. }
  2088. ],
  2089. "description": "Symfony Process Component",
  2090. "homepage": "https://symfony.com",
  2091. "time": "2015-10-18 09:49:40"
  2092. },
  2093. {
  2094. "name": "symfony/security-core",
  2095. "version": "2.7.x-dev",
  2096. "source": {
  2097. "type": "git",
  2098. "url": "https://github.com/symfony/security-core.git",
  2099. "reference": "677af9aa5a497f768bf23ba84a466be060dc7509"
  2100. },
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://api.github.com/repos/symfony/security-core/zipball/677af9aa5a497f768bf23ba84a466be060dc7509",
  2104. "reference": "677af9aa5a497f768bf23ba84a466be060dc7509",
  2105. "shasum": ""
  2106. },
  2107. "require": {
  2108. "php": ">=5.3.9"
  2109. },
  2110. "require-dev": {
  2111. "ircmaxell/password-compat": "1.0.*",
  2112. "psr/log": "~1.0",
  2113. "symfony/event-dispatcher": "~2.1",
  2114. "symfony/expression-language": "~2.6",
  2115. "symfony/http-foundation": "~2.4",
  2116. "symfony/translation": "~2.0,>=2.0.5",
  2117. "symfony/validator": "~2.5,>=2.5.5"
  2118. },
  2119. "suggest": {
  2120. "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5",
  2121. "symfony/event-dispatcher": "",
  2122. "symfony/expression-language": "For using the expression voter",
  2123. "symfony/http-foundation": "",
  2124. "symfony/validator": "For using the user password constraint"
  2125. },
  2126. "type": "library",
  2127. "extra": {
  2128. "branch-alias": {
  2129. "dev-master": "2.7-dev"
  2130. }
  2131. },
  2132. "autoload": {
  2133. "psr-4": {
  2134. "Symfony\\Component\\Security\\Core\\": ""
  2135. }
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Fabien Potencier",
  2144. "email": "fabien@symfony.com"
  2145. },
  2146. {
  2147. "name": "Symfony Community",
  2148. "homepage": "https://symfony.com/contributors"
  2149. }
  2150. ],
  2151. "description": "Symfony Security Component - Core Library",
  2152. "homepage": "https://symfony.com",
  2153. "time": "2015-10-11 09:39:48"
  2154. },
  2155. {
  2156. "name": "symfony/translation",
  2157. "version": "2.7.x-dev",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/symfony/translation.git",
  2161. "reference": "ef299cacc962ef8394f89fa8ba9a90486a607582"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/symfony/translation/zipball/ef299cacc962ef8394f89fa8ba9a90486a607582",
  2166. "reference": "ef299cacc962ef8394f89fa8ba9a90486a607582",
  2167. "shasum": ""
  2168. },
  2169. "require": {
  2170. "php": ">=5.3.9"
  2171. },
  2172. "conflict": {
  2173. "symfony/config": "<2.7"
  2174. },
  2175. "require-dev": {
  2176. "psr/log": "~1.0",
  2177. "symfony/config": "~2.7",
  2178. "symfony/intl": "~2.4",
  2179. "symfony/yaml": "~2.2"
  2180. },
  2181. "suggest": {
  2182. "psr/log": "To use logging capability in translator",
  2183. "symfony/config": "",
  2184. "symfony/yaml": ""
  2185. },
  2186. "type": "library",
  2187. "extra": {
  2188. "branch-alias": {
  2189. "dev-master": "2.7-dev"
  2190. }
  2191. },
  2192. "autoload": {
  2193. "psr-4": {
  2194. "Symfony\\Component\\Translation\\": ""
  2195. }
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "MIT"
  2200. ],
  2201. "authors": [
  2202. {
  2203. "name": "Fabien Potencier",
  2204. "email": "fabien@symfony.com"
  2205. },
  2206. {
  2207. "name": "Symfony Community",
  2208. "homepage": "https://symfony.com/contributors"
  2209. }
  2210. ],
  2211. "description": "Symfony Translation Component",
  2212. "homepage": "https://symfony.com",
  2213. "time": "2015-10-11 09:39:48"
  2214. },
  2215. {
  2216. "name": "symfony/var-dumper",
  2217. "version": "2.7.x-dev",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/symfony/var-dumper.git",
  2221. "reference": "31a698cfe5c65b47ea16c4dcc3e0cda62ef6074a"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/31a698cfe5c65b47ea16c4dcc3e0cda62ef6074a",
  2226. "reference": "31a698cfe5c65b47ea16c4dcc3e0cda62ef6074a",
  2227. "shasum": ""
  2228. },
  2229. "require": {
  2230. "php": ">=5.3.9"
  2231. },
  2232. "suggest": {
  2233. "ext-symfony_debug": ""
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "branch-alias": {
  2238. "dev-master": "2.7-dev"
  2239. }
  2240. },
  2241. "autoload": {
  2242. "files": [
  2243. "Resources/functions/dump.php"
  2244. ],
  2245. "psr-4": {
  2246. "Symfony\\Component\\VarDumper\\": ""
  2247. }
  2248. },
  2249. "notification-url": "https://packagist.org/downloads/",
  2250. "license": [
  2251. "MIT"
  2252. ],
  2253. "authors": [
  2254. {
  2255. "name": "Nicolas Grekas",
  2256. "email": "p@tchwork.com"
  2257. },
  2258. {
  2259. "name": "Symfony Community",
  2260. "homepage": "https://symfony.com/contributors"
  2261. }
  2262. ],
  2263. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2264. "homepage": "https://symfony.com",
  2265. "keywords": [
  2266. "debug",
  2267. "dump"
  2268. ],
  2269. "time": "2015-10-19 18:09:55"
  2270. },
  2271. {
  2272. "name": "twig/twig",
  2273. "version": "1.x-dev",
  2274. "source": {
  2275. "type": "git",
  2276. "url": "https://github.com/twigphp/Twig.git",
  2277. "reference": "50e68e68f09a7e324443e3e9f028c3f05f46763f"
  2278. },
  2279. "dist": {
  2280. "type": "zip",
  2281. "url": "https://api.github.com/repos/twigphp/Twig/zipball/50e68e68f09a7e324443e3e9f028c3f05f46763f",
  2282. "reference": "50e68e68f09a7e324443e3e9f028c3f05f46763f",
  2283. "shasum": ""
  2284. },
  2285. "require": {
  2286. "php": ">=5.2.7"
  2287. },
  2288. "require-dev": {
  2289. "symfony/debug": "~2.7",
  2290. "symfony/phpunit-bridge": "~2.7"
  2291. },
  2292. "type": "library",
  2293. "extra": {
  2294. "branch-alias": {
  2295. "dev-master": "1.22-dev"
  2296. }
  2297. },
  2298. "autoload": {
  2299. "psr-0": {
  2300. "Twig_": "lib/"
  2301. }
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "BSD-3-Clause"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Fabien Potencier",
  2310. "email": "fabien@symfony.com",
  2311. "homepage": "http://fabien.potencier.org",
  2312. "role": "Lead Developer"
  2313. },
  2314. {
  2315. "name": "Armin Ronacher",
  2316. "email": "armin.ronacher@active-4.com",
  2317. "role": "Project Founder"
  2318. },
  2319. {
  2320. "name": "Twig Team",
  2321. "homepage": "http://twig.sensiolabs.org/contributors",
  2322. "role": "Contributors"
  2323. }
  2324. ],
  2325. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2326. "homepage": "http://twig.sensiolabs.org",
  2327. "keywords": [
  2328. "templating"
  2329. ],
  2330. "time": "2015-10-20 17:44:50"
  2331. }
  2332. ],
  2333. "packages-dev": [],
  2334. "aliases": [],
  2335. "minimum-stability": "dev",
  2336. "stability-flags": {
  2337. "twig/twig": 20
  2338. },
  2339. "prefer-stable": false,
  2340. "prefer-lowest": false,
  2341. "platform": [],
  2342. "platform-dev": []
  2343. }