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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636
  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": "d48c4f20baf08d1cd1e96d7f89fd9747",
  8. "content-hash": "a7015d165fe7b4c580ab6e1adf21f9e4",
  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": "guzzlehttp/guzzle",
  135. "version": "6.1.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/guzzle/guzzle.git",
  139. "reference": "c6851d6e48f63b69357cbfa55bca116448140e0c"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/c6851d6e48f63b69357cbfa55bca116448140e0c",
  144. "reference": "c6851d6e48f63b69357cbfa55bca116448140e0c",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "guzzlehttp/promises": "~1.0",
  149. "guzzlehttp/psr7": "~1.1",
  150. "php": ">=5.5.0"
  151. },
  152. "require-dev": {
  153. "ext-curl": "*",
  154. "phpunit/phpunit": "~4.0",
  155. "psr/log": "~1.0"
  156. },
  157. "type": "library",
  158. "extra": {
  159. "branch-alias": {
  160. "dev-master": "6.1-dev"
  161. }
  162. },
  163. "autoload": {
  164. "files": [
  165. "src/functions_include.php"
  166. ],
  167. "psr-4": {
  168. "GuzzleHttp\\": "src/"
  169. }
  170. },
  171. "notification-url": "https://packagist.org/downloads/",
  172. "license": [
  173. "MIT"
  174. ],
  175. "authors": [
  176. {
  177. "name": "Michael Dowling",
  178. "email": "mtdowling@gmail.com",
  179. "homepage": "https://github.com/mtdowling"
  180. }
  181. ],
  182. "description": "Guzzle is a PHP HTTP client library",
  183. "homepage": "http://guzzlephp.org/",
  184. "keywords": [
  185. "client",
  186. "curl",
  187. "framework",
  188. "http",
  189. "http client",
  190. "rest",
  191. "web service"
  192. ],
  193. "time": "2015-11-23 00:47:50"
  194. },
  195. {
  196. "name": "guzzlehttp/promises",
  197. "version": "1.0.3",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/guzzle/promises.git",
  201. "reference": "b1e1c0d55f8083c71eda2c28c12a228d708294ea"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/guzzle/promises/zipball/b1e1c0d55f8083c71eda2c28c12a228d708294ea",
  206. "reference": "b1e1c0d55f8083c71eda2c28c12a228d708294ea",
  207. "shasum": ""
  208. },
  209. "require": {
  210. "php": ">=5.5.0"
  211. },
  212. "require-dev": {
  213. "phpunit/phpunit": "~4.0"
  214. },
  215. "type": "library",
  216. "extra": {
  217. "branch-alias": {
  218. "dev-master": "1.0-dev"
  219. }
  220. },
  221. "autoload": {
  222. "psr-4": {
  223. "GuzzleHttp\\Promise\\": "src/"
  224. },
  225. "files": [
  226. "src/functions_include.php"
  227. ]
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "MIT"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Michael Dowling",
  236. "email": "mtdowling@gmail.com",
  237. "homepage": "https://github.com/mtdowling"
  238. }
  239. ],
  240. "description": "Guzzle promises library",
  241. "keywords": [
  242. "promise"
  243. ],
  244. "time": "2015-10-15 22:28:00"
  245. },
  246. {
  247. "name": "guzzlehttp/psr7",
  248. "version": "1.2.1",
  249. "source": {
  250. "type": "git",
  251. "url": "https://github.com/guzzle/psr7.git",
  252. "reference": "4d0bdbe1206df7440219ce14c972aa57cc5e4982"
  253. },
  254. "dist": {
  255. "type": "zip",
  256. "url": "https://api.github.com/repos/guzzle/psr7/zipball/4d0bdbe1206df7440219ce14c972aa57cc5e4982",
  257. "reference": "4d0bdbe1206df7440219ce14c972aa57cc5e4982",
  258. "shasum": ""
  259. },
  260. "require": {
  261. "php": ">=5.4.0",
  262. "psr/http-message": "~1.0"
  263. },
  264. "provide": {
  265. "psr/http-message-implementation": "1.0"
  266. },
  267. "require-dev": {
  268. "phpunit/phpunit": "~4.0"
  269. },
  270. "type": "library",
  271. "extra": {
  272. "branch-alias": {
  273. "dev-master": "1.0-dev"
  274. }
  275. },
  276. "autoload": {
  277. "psr-4": {
  278. "GuzzleHttp\\Psr7\\": "src/"
  279. },
  280. "files": [
  281. "src/functions_include.php"
  282. ]
  283. },
  284. "notification-url": "https://packagist.org/downloads/",
  285. "license": [
  286. "MIT"
  287. ],
  288. "authors": [
  289. {
  290. "name": "Michael Dowling",
  291. "email": "mtdowling@gmail.com",
  292. "homepage": "https://github.com/mtdowling"
  293. }
  294. ],
  295. "description": "PSR-7 message implementation",
  296. "keywords": [
  297. "http",
  298. "message",
  299. "stream",
  300. "uri"
  301. ],
  302. "time": "2015-11-03 01:34:55"
  303. },
  304. {
  305. "name": "illuminate/auth",
  306. "version": "v5.1.22",
  307. "source": {
  308. "type": "git",
  309. "url": "https://github.com/illuminate/auth.git",
  310. "reference": "ed926c9ad2b54164c0183a3a63f77f5f0ea0986a"
  311. },
  312. "dist": {
  313. "type": "zip",
  314. "url": "https://api.github.com/repos/illuminate/auth/zipball/ed926c9ad2b54164c0183a3a63f77f5f0ea0986a",
  315. "reference": "ed926c9ad2b54164c0183a3a63f77f5f0ea0986a",
  316. "shasum": ""
  317. },
  318. "require": {
  319. "illuminate/contracts": "5.1.*",
  320. "illuminate/http": "5.1.*",
  321. "illuminate/session": "5.1.*",
  322. "illuminate/support": "5.1.*",
  323. "nesbot/carbon": "~1.19",
  324. "php": ">=5.5.9"
  325. },
  326. "suggest": {
  327. "illuminate/console": "Required to use the auth:clear-resets command (5.1.*)."
  328. },
  329. "type": "library",
  330. "extra": {
  331. "branch-alias": {
  332. "dev-master": "5.1-dev"
  333. }
  334. },
  335. "autoload": {
  336. "psr-4": {
  337. "Illuminate\\Auth\\": ""
  338. }
  339. },
  340. "notification-url": "https://packagist.org/downloads/",
  341. "license": [
  342. "MIT"
  343. ],
  344. "authors": [
  345. {
  346. "name": "Taylor Otwell",
  347. "email": "taylorotwell@gmail.com"
  348. }
  349. ],
  350. "description": "The Illuminate Auth package.",
  351. "homepage": "http://laravel.com",
  352. "time": "2015-10-19 06:01:02"
  353. },
  354. {
  355. "name": "illuminate/broadcasting",
  356. "version": "v5.1.22",
  357. "source": {
  358. "type": "git",
  359. "url": "https://github.com/illuminate/broadcasting.git",
  360. "reference": "c5eb4e0730dbe34aabff238507d3e8144c6625a2"
  361. },
  362. "dist": {
  363. "type": "zip",
  364. "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/c5eb4e0730dbe34aabff238507d3e8144c6625a2",
  365. "reference": "c5eb4e0730dbe34aabff238507d3e8144c6625a2",
  366. "shasum": ""
  367. },
  368. "require": {
  369. "illuminate/contracts": "5.1.*",
  370. "illuminate/support": "5.1.*",
  371. "php": ">=5.5.9"
  372. },
  373. "suggest": {
  374. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0)."
  375. },
  376. "type": "library",
  377. "extra": {
  378. "branch-alias": {
  379. "dev-master": "5.1-dev"
  380. }
  381. },
  382. "autoload": {
  383. "psr-4": {
  384. "Illuminate\\Broadcasting\\": ""
  385. }
  386. },
  387. "notification-url": "https://packagist.org/downloads/",
  388. "license": [
  389. "MIT"
  390. ],
  391. "authors": [
  392. {
  393. "name": "Taylor Otwell",
  394. "email": "taylorotwell@gmail.com"
  395. }
  396. ],
  397. "description": "The Illuminate Broadcasting package.",
  398. "homepage": "http://laravel.com",
  399. "time": "2015-10-08 01:12:55"
  400. },
  401. {
  402. "name": "illuminate/bus",
  403. "version": "v5.1.22",
  404. "source": {
  405. "type": "git",
  406. "url": "https://github.com/illuminate/bus.git",
  407. "reference": "83fecbefb010c30e1cd2fef1290316000cdc742d"
  408. },
  409. "dist": {
  410. "type": "zip",
  411. "url": "https://api.github.com/repos/illuminate/bus/zipball/83fecbefb010c30e1cd2fef1290316000cdc742d",
  412. "reference": "83fecbefb010c30e1cd2fef1290316000cdc742d",
  413. "shasum": ""
  414. },
  415. "require": {
  416. "illuminate/contracts": "5.1.*",
  417. "illuminate/pipeline": "5.1.*",
  418. "illuminate/support": "5.1.*",
  419. "php": ">=5.5.9"
  420. },
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-master": "5.1-dev"
  425. }
  426. },
  427. "autoload": {
  428. "psr-4": {
  429. "Illuminate\\Bus\\": ""
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Taylor Otwell",
  439. "email": "taylorotwell@gmail.com"
  440. }
  441. ],
  442. "description": "The Illuminate Bus package.",
  443. "homepage": "http://laravel.com",
  444. "time": "2015-10-19 06:01:02"
  445. },
  446. {
  447. "name": "illuminate/cache",
  448. "version": "v5.1.22",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/illuminate/cache.git",
  452. "reference": "6ffa99bbc2c6dccb1e50ed5219a30aea6d02f0d3"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/illuminate/cache/zipball/6ffa99bbc2c6dccb1e50ed5219a30aea6d02f0d3",
  457. "reference": "6ffa99bbc2c6dccb1e50ed5219a30aea6d02f0d3",
  458. "shasum": ""
  459. },
  460. "require": {
  461. "illuminate/contracts": "5.1.*",
  462. "illuminate/support": "5.1.*",
  463. "nesbot/carbon": "~1.19",
  464. "php": ">=5.5.9"
  465. },
  466. "suggest": {
  467. "illuminate/database": "Required to use the database cache driver (5.1.*).",
  468. "illuminate/filesystem": "Required to use the file cache driver (5.1.*).",
  469. "illuminate/redis": "Required to use the redis cache driver (5.1.*)."
  470. },
  471. "type": "library",
  472. "extra": {
  473. "branch-alias": {
  474. "dev-master": "5.1-dev"
  475. }
  476. },
  477. "autoload": {
  478. "psr-4": {
  479. "Illuminate\\Cache\\": ""
  480. }
  481. },
  482. "notification-url": "https://packagist.org/downloads/",
  483. "license": [
  484. "MIT"
  485. ],
  486. "authors": [
  487. {
  488. "name": "Taylor Otwell",
  489. "email": "taylorotwell@gmail.com"
  490. }
  491. ],
  492. "description": "The Illuminate Cache package.",
  493. "homepage": "http://laravel.com",
  494. "time": "2015-10-06 17:04:59"
  495. },
  496. {
  497. "name": "illuminate/config",
  498. "version": "v5.1.22",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/illuminate/config.git",
  502. "reference": "de6c1cc0f2745645dec3f8bab0e43a3aa141d12d"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/illuminate/config/zipball/de6c1cc0f2745645dec3f8bab0e43a3aa141d12d",
  507. "reference": "de6c1cc0f2745645dec3f8bab0e43a3aa141d12d",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "illuminate/contracts": "5.1.*",
  512. "illuminate/filesystem": "5.1.*",
  513. "illuminate/support": "5.1.*",
  514. "php": ">=5.5.9"
  515. },
  516. "type": "library",
  517. "extra": {
  518. "branch-alias": {
  519. "dev-master": "5.1-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Illuminate\\Config\\": ""
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Taylor Otwell",
  534. "email": "taylorotwell@gmail.com"
  535. }
  536. ],
  537. "description": "The Illuminate Config package.",
  538. "homepage": "http://laravel.com",
  539. "time": "2015-06-18 02:16:31"
  540. },
  541. {
  542. "name": "illuminate/console",
  543. "version": "v5.1.22",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/illuminate/console.git",
  547. "reference": "c712f03ce8fdfbc90ff3587ba31a0b8e3914ddb0"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/illuminate/console/zipball/c712f03ce8fdfbc90ff3587ba31a0b8e3914ddb0",
  552. "reference": "c712f03ce8fdfbc90ff3587ba31a0b8e3914ddb0",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "illuminate/contracts": "5.1.*",
  557. "illuminate/support": "5.1.*",
  558. "nesbot/carbon": "~1.19",
  559. "php": ">=5.5.9",
  560. "symfony/console": "2.7.*"
  561. },
  562. "suggest": {
  563. "guzzlehttp/guzzle": "Required to use the thenPing method on schedules (~5.3|~6.0).",
  564. "mtdowling/cron-expression": "Required to use scheduling component (~1.0).",
  565. "symfony/process": "Required to use scheduling component (2.7.*)."
  566. },
  567. "type": "library",
  568. "extra": {
  569. "branch-alias": {
  570. "dev-master": "5.1-dev"
  571. }
  572. },
  573. "autoload": {
  574. "psr-4": {
  575. "Illuminate\\Console\\": ""
  576. }
  577. },
  578. "notification-url": "https://packagist.org/downloads/",
  579. "license": [
  580. "MIT"
  581. ],
  582. "authors": [
  583. {
  584. "name": "Taylor Otwell",
  585. "email": "taylorotwell@gmail.com"
  586. }
  587. ],
  588. "description": "The Illuminate Console package.",
  589. "homepage": "http://laravel.com",
  590. "time": "2015-10-20 21:16:46"
  591. },
  592. {
  593. "name": "illuminate/container",
  594. "version": "v5.1.22",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/illuminate/container.git",
  598. "reference": "bb2cd1d9c6cb7c4ce80b8d89f899e086f5a4f65b"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/illuminate/container/zipball/bb2cd1d9c6cb7c4ce80b8d89f899e086f5a4f65b",
  603. "reference": "bb2cd1d9c6cb7c4ce80b8d89f899e086f5a4f65b",
  604. "shasum": ""
  605. },
  606. "require": {
  607. "illuminate/contracts": "5.1.*",
  608. "php": ">=5.5.9"
  609. },
  610. "type": "library",
  611. "extra": {
  612. "branch-alias": {
  613. "dev-master": "5.1-dev"
  614. }
  615. },
  616. "autoload": {
  617. "psr-4": {
  618. "Illuminate\\Container\\": ""
  619. }
  620. },
  621. "notification-url": "https://packagist.org/downloads/",
  622. "license": [
  623. "MIT"
  624. ],
  625. "authors": [
  626. {
  627. "name": "Taylor Otwell",
  628. "email": "taylorotwell@gmail.com"
  629. }
  630. ],
  631. "description": "The Illuminate Container package.",
  632. "homepage": "http://laravel.com",
  633. "time": "2015-10-19 06:01:02"
  634. },
  635. {
  636. "name": "illuminate/contracts",
  637. "version": "v5.1.22",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/illuminate/contracts.git",
  641. "reference": "e2b71fdbeeb3438748dca5f497e205888788a883"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/illuminate/contracts/zipball/e2b71fdbeeb3438748dca5f497e205888788a883",
  646. "reference": "e2b71fdbeeb3438748dca5f497e205888788a883",
  647. "shasum": ""
  648. },
  649. "require": {
  650. "php": ">=5.5.9"
  651. },
  652. "type": "library",
  653. "extra": {
  654. "branch-alias": {
  655. "dev-master": "5.1-dev"
  656. }
  657. },
  658. "autoload": {
  659. "psr-4": {
  660. "Illuminate\\Contracts\\": ""
  661. }
  662. },
  663. "notification-url": "https://packagist.org/downloads/",
  664. "license": [
  665. "MIT"
  666. ],
  667. "authors": [
  668. {
  669. "name": "Taylor Otwell",
  670. "email": "taylorotwell@gmail.com"
  671. }
  672. ],
  673. "description": "The Illuminate Contracts package.",
  674. "homepage": "http://laravel.com",
  675. "time": "2015-09-24 11:16:48"
  676. },
  677. {
  678. "name": "illuminate/cookie",
  679. "version": "v5.1.22",
  680. "source": {
  681. "type": "git",
  682. "url": "https://github.com/illuminate/cookie.git",
  683. "reference": "8ded782fcb8f0affa9fc53bc6646a88b9acb615a"
  684. },
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://api.github.com/repos/illuminate/cookie/zipball/8ded782fcb8f0affa9fc53bc6646a88b9acb615a",
  688. "reference": "8ded782fcb8f0affa9fc53bc6646a88b9acb615a",
  689. "shasum": ""
  690. },
  691. "require": {
  692. "illuminate/contracts": "5.1.*",
  693. "illuminate/support": "5.1.*",
  694. "php": ">=5.5.9",
  695. "symfony/http-foundation": "2.7.*",
  696. "symfony/http-kernel": "2.7.*"
  697. },
  698. "type": "library",
  699. "extra": {
  700. "branch-alias": {
  701. "dev-master": "5.1-dev"
  702. }
  703. },
  704. "autoload": {
  705. "psr-4": {
  706. "Illuminate\\Cookie\\": ""
  707. }
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "Taylor Otwell",
  716. "email": "taylorotwell@gmail.com"
  717. }
  718. ],
  719. "description": "The Illuminate Cookie package.",
  720. "homepage": "http://laravel.com",
  721. "time": "2015-09-22 11:44:48"
  722. },
  723. {
  724. "name": "illuminate/database",
  725. "version": "v5.1.22",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/illuminate/database.git",
  729. "reference": "f82f4009e5776a8b0a580fca881694a778b229e6"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/illuminate/database/zipball/f82f4009e5776a8b0a580fca881694a778b229e6",
  734. "reference": "f82f4009e5776a8b0a580fca881694a778b229e6",
  735. "shasum": ""
  736. },
  737. "require": {
  738. "illuminate/container": "5.1.*",
  739. "illuminate/contracts": "5.1.*",
  740. "illuminate/support": "5.1.*",
  741. "nesbot/carbon": "~1.19",
  742. "php": ">=5.5.9"
  743. },
  744. "suggest": {
  745. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
  746. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  747. "illuminate/console": "Required to use the database commands (5.1.*).",
  748. "illuminate/events": "Required to use the observers with Eloquent (5.1.*).",
  749. "illuminate/filesystem": "Required to use the migrations (5.1.*)."
  750. },
  751. "type": "library",
  752. "extra": {
  753. "branch-alias": {
  754. "dev-master": "5.1-dev"
  755. }
  756. },
  757. "autoload": {
  758. "psr-4": {
  759. "Illuminate\\Database\\": ""
  760. }
  761. },
  762. "notification-url": "https://packagist.org/downloads/",
  763. "license": [
  764. "MIT"
  765. ],
  766. "authors": [
  767. {
  768. "name": "Taylor Otwell",
  769. "email": "taylorotwell@gmail.com"
  770. }
  771. ],
  772. "description": "The Illuminate Database package.",
  773. "homepage": "http://laravel.com",
  774. "keywords": [
  775. "database",
  776. "laravel",
  777. "orm",
  778. "sql"
  779. ],
  780. "time": "2015-10-28 21:57:04"
  781. },
  782. {
  783. "name": "illuminate/encryption",
  784. "version": "v5.1.22",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/illuminate/encryption.git",
  788. "reference": "c10405ee5ec354b1d888e52dca6adeee6bac8476"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/illuminate/encryption/zipball/c10405ee5ec354b1d888e52dca6adeee6bac8476",
  793. "reference": "c10405ee5ec354b1d888e52dca6adeee6bac8476",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "ext-mbstring": "*",
  798. "ext-openssl": "*",
  799. "illuminate/contracts": "5.1.*",
  800. "illuminate/support": "5.1.*",
  801. "php": ">=5.5.9"
  802. },
  803. "suggest": {
  804. "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (^1.0.6)."
  805. },
  806. "type": "library",
  807. "extra": {
  808. "branch-alias": {
  809. "dev-master": "5.1-dev"
  810. }
  811. },
  812. "autoload": {
  813. "psr-4": {
  814. "Illuminate\\Encryption\\": ""
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Taylor Otwell",
  824. "email": "taylorotwell@gmail.com"
  825. }
  826. ],
  827. "description": "The Illuminate Encryption package.",
  828. "homepage": "http://laravel.com",
  829. "time": "2015-10-16 21:40:18"
  830. },
  831. {
  832. "name": "illuminate/events",
  833. "version": "v5.1.22",
  834. "source": {
  835. "type": "git",
  836. "url": "https://github.com/illuminate/events.git",
  837. "reference": "fdb64e091b635bf1525c157f1cfdd19cbca508c9"
  838. },
  839. "dist": {
  840. "type": "zip",
  841. "url": "https://api.github.com/repos/illuminate/events/zipball/fdb64e091b635bf1525c157f1cfdd19cbca508c9",
  842. "reference": "fdb64e091b635bf1525c157f1cfdd19cbca508c9",
  843. "shasum": ""
  844. },
  845. "require": {
  846. "illuminate/container": "5.1.*",
  847. "illuminate/contracts": "5.1.*",
  848. "illuminate/support": "5.1.*",
  849. "php": ">=5.5.9"
  850. },
  851. "type": "library",
  852. "extra": {
  853. "branch-alias": {
  854. "dev-master": "5.1-dev"
  855. }
  856. },
  857. "autoload": {
  858. "psr-4": {
  859. "Illuminate\\Events\\": ""
  860. }
  861. },
  862. "notification-url": "https://packagist.org/downloads/",
  863. "license": [
  864. "MIT"
  865. ],
  866. "authors": [
  867. {
  868. "name": "Taylor Otwell",
  869. "email": "taylorotwell@gmail.com"
  870. }
  871. ],
  872. "description": "The Illuminate Events package.",
  873. "homepage": "http://laravel.com",
  874. "time": "2015-09-23 13:19:23"
  875. },
  876. {
  877. "name": "illuminate/filesystem",
  878. "version": "v5.1.22",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/illuminate/filesystem.git",
  882. "reference": "d2df6ede91e6af495674f2def38170330319819f"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/d2df6ede91e6af495674f2def38170330319819f",
  887. "reference": "d2df6ede91e6af495674f2def38170330319819f",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "illuminate/contracts": "5.1.*",
  892. "illuminate/support": "5.1.*",
  893. "php": ">=5.5.9",
  894. "symfony/finder": "2.7.*"
  895. },
  896. "suggest": {
  897. "league/flysystem": "Required to use the Flysystem local and FTP drivers (~1.0).",
  898. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  899. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0)."
  900. },
  901. "type": "library",
  902. "extra": {
  903. "branch-alias": {
  904. "dev-master": "5.1-dev"
  905. }
  906. },
  907. "autoload": {
  908. "psr-4": {
  909. "Illuminate\\Filesystem\\": ""
  910. }
  911. },
  912. "notification-url": "https://packagist.org/downloads/",
  913. "license": [
  914. "MIT"
  915. ],
  916. "authors": [
  917. {
  918. "name": "Taylor Otwell",
  919. "email": "taylorotwell@gmail.com"
  920. }
  921. ],
  922. "description": "The Illuminate Filesystem package.",
  923. "homepage": "http://laravel.com",
  924. "time": "2015-10-19 06:01:02"
  925. },
  926. {
  927. "name": "illuminate/hashing",
  928. "version": "v5.1.22",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/illuminate/hashing.git",
  932. "reference": "86d12970c19823809314eae180939de62d4fab2c"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/illuminate/hashing/zipball/86d12970c19823809314eae180939de62d4fab2c",
  937. "reference": "86d12970c19823809314eae180939de62d4fab2c",
  938. "shasum": ""
  939. },
  940. "require": {
  941. "illuminate/contracts": "5.1.*",
  942. "illuminate/support": "5.1.*",
  943. "php": ">=5.5.9"
  944. },
  945. "type": "library",
  946. "extra": {
  947. "branch-alias": {
  948. "dev-master": "5.1-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Illuminate\\Hashing\\": ""
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Taylor Otwell",
  963. "email": "taylorotwell@gmail.com"
  964. }
  965. ],
  966. "description": "The Illuminate Hashing package.",
  967. "homepage": "http://laravel.com",
  968. "time": "2015-07-16 20:28:10"
  969. },
  970. {
  971. "name": "illuminate/http",
  972. "version": "v5.1.22",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/illuminate/http.git",
  976. "reference": "b30fa1af5d1a7b525cc801ac41436179e43d52ee"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/illuminate/http/zipball/b30fa1af5d1a7b525cc801ac41436179e43d52ee",
  981. "reference": "b30fa1af5d1a7b525cc801ac41436179e43d52ee",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "illuminate/session": "5.1.*",
  986. "illuminate/support": "5.1.*",
  987. "php": ">=5.5.9",
  988. "symfony/http-foundation": "2.7.*",
  989. "symfony/http-kernel": "2.7.*"
  990. },
  991. "type": "library",
  992. "extra": {
  993. "branch-alias": {
  994. "dev-master": "5.1-dev"
  995. }
  996. },
  997. "autoload": {
  998. "psr-4": {
  999. "Illuminate\\Http\\": ""
  1000. }
  1001. },
  1002. "notification-url": "https://packagist.org/downloads/",
  1003. "license": [
  1004. "MIT"
  1005. ],
  1006. "authors": [
  1007. {
  1008. "name": "Taylor Otwell",
  1009. "email": "taylorotwell@gmail.com"
  1010. }
  1011. ],
  1012. "description": "The Illuminate Http package.",
  1013. "homepage": "http://laravel.com",
  1014. "time": "2015-10-19 06:01:02"
  1015. },
  1016. {
  1017. "name": "illuminate/pagination",
  1018. "version": "v5.1.22",
  1019. "source": {
  1020. "type": "git",
  1021. "url": "https://github.com/illuminate/pagination.git",
  1022. "reference": "3ed65ae58f191f2819a44c1b0e1408dcc847948f"
  1023. },
  1024. "dist": {
  1025. "type": "zip",
  1026. "url": "https://api.github.com/repos/illuminate/pagination/zipball/3ed65ae58f191f2819a44c1b0e1408dcc847948f",
  1027. "reference": "3ed65ae58f191f2819a44c1b0e1408dcc847948f",
  1028. "shasum": ""
  1029. },
  1030. "require": {
  1031. "illuminate/contracts": "5.1.*",
  1032. "illuminate/support": "5.1.*",
  1033. "php": ">=5.5.9"
  1034. },
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "5.1-dev"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Illuminate\\Pagination\\": ""
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "Taylor Otwell",
  1053. "email": "taylorotwell@gmail.com"
  1054. }
  1055. ],
  1056. "description": "The Illuminate Pagination package.",
  1057. "homepage": "http://laravel.com",
  1058. "time": "2015-10-19 06:01:02"
  1059. },
  1060. {
  1061. "name": "illuminate/pipeline",
  1062. "version": "v5.1.22",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/illuminate/pipeline.git",
  1066. "reference": "2725b0523b50415e1d20aea7297d205f65b53e27"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/2725b0523b50415e1d20aea7297d205f65b53e27",
  1071. "reference": "2725b0523b50415e1d20aea7297d205f65b53e27",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "illuminate/contracts": "5.1.*",
  1076. "illuminate/support": "5.1.*",
  1077. "php": ">=5.5.9"
  1078. },
  1079. "type": "library",
  1080. "extra": {
  1081. "branch-alias": {
  1082. "dev-master": "5.1-dev"
  1083. }
  1084. },
  1085. "autoload": {
  1086. "psr-4": {
  1087. "Illuminate\\Pipeline\\": ""
  1088. }
  1089. },
  1090. "notification-url": "https://packagist.org/downloads/",
  1091. "license": [
  1092. "MIT"
  1093. ],
  1094. "authors": [
  1095. {
  1096. "name": "Taylor Otwell",
  1097. "email": "taylorotwell@gmail.com"
  1098. }
  1099. ],
  1100. "description": "The Illuminate Pipeline package.",
  1101. "homepage": "http://laravel.com",
  1102. "time": "2015-10-05 21:58:27"
  1103. },
  1104. {
  1105. "name": "illuminate/queue",
  1106. "version": "v5.1.22",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/illuminate/queue.git",
  1110. "reference": "189b1cfaf7f08dce381b4ebbf16b0602a1efcdda"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/illuminate/queue/zipball/189b1cfaf7f08dce381b4ebbf16b0602a1efcdda",
  1115. "reference": "189b1cfaf7f08dce381b4ebbf16b0602a1efcdda",
  1116. "shasum": ""
  1117. },
  1118. "require": {
  1119. "illuminate/console": "5.1.*",
  1120. "illuminate/container": "5.1.*",
  1121. "illuminate/contracts": "5.1.*",
  1122. "illuminate/http": "5.1.*",
  1123. "illuminate/support": "5.1.*",
  1124. "nesbot/carbon": "~1.19",
  1125. "php": ">=5.5.9",
  1126. "symfony/process": "2.7.*"
  1127. },
  1128. "suggest": {
  1129. "aws/aws-sdk-php": "Required to use the SQS queue driver (~3.0).",
  1130. "illuminate/redis": "Required to use the redis queue driver (5.1.*).",
  1131. "iron-io/iron_mq": "Required to use the iron queue driver (~2.0).",
  1132. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0)."
  1133. },
  1134. "type": "library",
  1135. "extra": {
  1136. "branch-alias": {
  1137. "dev-master": "5.1-dev"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Illuminate\\Queue\\": ""
  1143. },
  1144. "classmap": [
  1145. "IlluminateQueueClosure.php"
  1146. ]
  1147. },
  1148. "notification-url": "https://packagist.org/downloads/",
  1149. "license": [
  1150. "MIT"
  1151. ],
  1152. "authors": [
  1153. {
  1154. "name": "Taylor Otwell",
  1155. "email": "taylorotwell@gmail.com"
  1156. }
  1157. ],
  1158. "description": "The Illuminate Queue package.",
  1159. "homepage": "http://laravel.com",
  1160. "time": "2015-10-28 19:38:40"
  1161. },
  1162. {
  1163. "name": "illuminate/session",
  1164. "version": "v5.1.22",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/illuminate/session.git",
  1168. "reference": "a719532f1ba75c352e1254743f4a9ed9a2b8412c"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/illuminate/session/zipball/a719532f1ba75c352e1254743f4a9ed9a2b8412c",
  1173. "reference": "a719532f1ba75c352e1254743f4a9ed9a2b8412c",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "illuminate/contracts": "5.1.*",
  1178. "illuminate/support": "5.1.*",
  1179. "nesbot/carbon": "~1.19",
  1180. "php": ">=5.5.9",
  1181. "symfony/finder": "2.7.*",
  1182. "symfony/http-foundation": "2.7.*"
  1183. },
  1184. "suggest": {
  1185. "illuminate/console": "Required to use the session:table command (5.1.*)."
  1186. },
  1187. "type": "library",
  1188. "extra": {
  1189. "branch-alias": {
  1190. "dev-master": "5.1-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "psr-4": {
  1195. "Illuminate\\Session\\": ""
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "MIT"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Taylor Otwell",
  1205. "email": "taylorotwell@gmail.com"
  1206. }
  1207. ],
  1208. "description": "The Illuminate Session package.",
  1209. "homepage": "http://laravel.com",
  1210. "time": "2015-10-19 06:01:02"
  1211. },
  1212. {
  1213. "name": "illuminate/support",
  1214. "version": "v5.1.22",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/illuminate/support.git",
  1218. "reference": "d52a832d3f4b025b82f954cbdef8ee24f6a77e77"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/illuminate/support/zipball/d52a832d3f4b025b82f954cbdef8ee24f6a77e77",
  1223. "reference": "d52a832d3f4b025b82f954cbdef8ee24f6a77e77",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "danielstjules/stringy": "~1.8",
  1228. "doctrine/inflector": "~1.0",
  1229. "ext-mbstring": "*",
  1230. "illuminate/contracts": "5.1.*",
  1231. "php": ">=5.5.9"
  1232. },
  1233. "suggest": {
  1234. "jeremeamia/superclosure": "Required to be able to serialize closures (~2.0).",
  1235. "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (^1.0.6).",
  1236. "symfony/var-dumper": "Required to use the dd function (2.7.*)."
  1237. },
  1238. "type": "library",
  1239. "extra": {
  1240. "branch-alias": {
  1241. "dev-master": "5.1-dev"
  1242. }
  1243. },
  1244. "autoload": {
  1245. "psr-4": {
  1246. "Illuminate\\Support\\": ""
  1247. },
  1248. "files": [
  1249. "helpers.php"
  1250. ]
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Taylor Otwell",
  1259. "email": "taylorotwell@gmail.com"
  1260. }
  1261. ],
  1262. "description": "The Illuminate Support package.",
  1263. "homepage": "http://laravel.com",
  1264. "time": "2015-10-19 06:01:02"
  1265. },
  1266. {
  1267. "name": "illuminate/translation",
  1268. "version": "v5.1.22",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/illuminate/translation.git",
  1272. "reference": "81bf81fcb3ccc18e7aeabaefdbb7306581439fcc"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/illuminate/translation/zipball/81bf81fcb3ccc18e7aeabaefdbb7306581439fcc",
  1277. "reference": "81bf81fcb3ccc18e7aeabaefdbb7306581439fcc",
  1278. "shasum": ""
  1279. },
  1280. "require": {
  1281. "illuminate/filesystem": "5.1.*",
  1282. "illuminate/support": "5.1.*",
  1283. "php": ">=5.5.9",
  1284. "symfony/translation": "2.7.*"
  1285. },
  1286. "type": "library",
  1287. "extra": {
  1288. "branch-alias": {
  1289. "dev-master": "5.1-dev"
  1290. }
  1291. },
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Illuminate\\Translation\\": ""
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Taylor Otwell",
  1304. "email": "taylorotwell@gmail.com"
  1305. }
  1306. ],
  1307. "description": "The Illuminate Translation package.",
  1308. "homepage": "http://laravel.com",
  1309. "time": "2015-08-01 00:02:33"
  1310. },
  1311. {
  1312. "name": "illuminate/validation",
  1313. "version": "v5.1.22",
  1314. "source": {
  1315. "type": "git",
  1316. "url": "https://github.com/illuminate/validation.git",
  1317. "reference": "66151dde43b34fc2800f8201a73f61f889c77084"
  1318. },
  1319. "dist": {
  1320. "type": "zip",
  1321. "url": "https://api.github.com/repos/illuminate/validation/zipball/66151dde43b34fc2800f8201a73f61f889c77084",
  1322. "reference": "66151dde43b34fc2800f8201a73f61f889c77084",
  1323. "shasum": ""
  1324. },
  1325. "require": {
  1326. "illuminate/container": "5.1.*",
  1327. "illuminate/contracts": "5.1.*",
  1328. "illuminate/support": "5.1.*",
  1329. "php": ">=5.5.9",
  1330. "symfony/http-foundation": "2.7.*",
  1331. "symfony/translation": "2.7.*"
  1332. },
  1333. "suggest": {
  1334. "illuminate/database": "Required to use the database presence verifier (5.1.*)."
  1335. },
  1336. "type": "library",
  1337. "extra": {
  1338. "branch-alias": {
  1339. "dev-master": "5.1-dev"
  1340. }
  1341. },
  1342. "autoload": {
  1343. "psr-4": {
  1344. "Illuminate\\Validation\\": ""
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "Taylor Otwell",
  1354. "email": "taylorotwell@gmail.com"
  1355. }
  1356. ],
  1357. "description": "The Illuminate Validation package.",
  1358. "homepage": "http://laravel.com",
  1359. "time": "2015-10-23 08:21:26"
  1360. },
  1361. {
  1362. "name": "illuminate/view",
  1363. "version": "v5.1.22",
  1364. "source": {
  1365. "type": "git",
  1366. "url": "https://github.com/illuminate/view.git",
  1367. "reference": "50e3027b470c8d92d433b6de0b1f227c232eda46"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/illuminate/view/zipball/50e3027b470c8d92d433b6de0b1f227c232eda46",
  1372. "reference": "50e3027b470c8d92d433b6de0b1f227c232eda46",
  1373. "shasum": ""
  1374. },
  1375. "require": {
  1376. "illuminate/container": "5.1.*",
  1377. "illuminate/contracts": "5.1.*",
  1378. "illuminate/events": "5.1.*",
  1379. "illuminate/filesystem": "5.1.*",
  1380. "illuminate/support": "5.1.*",
  1381. "php": ">=5.5.9"
  1382. },
  1383. "type": "library",
  1384. "extra": {
  1385. "branch-alias": {
  1386. "dev-master": "5.1-dev"
  1387. }
  1388. },
  1389. "autoload": {
  1390. "psr-4": {
  1391. "Illuminate\\View\\": ""
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "authors": [
  1399. {
  1400. "name": "Taylor Otwell",
  1401. "email": "taylorotwell@gmail.com"
  1402. }
  1403. ],
  1404. "description": "The Illuminate View package.",
  1405. "homepage": "http://laravel.com",
  1406. "time": "2015-10-19 06:01:02"
  1407. },
  1408. {
  1409. "name": "imagine/imagine",
  1410. "version": "v0.6.3",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/avalanche123/Imagine.git",
  1414. "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/149041d2a1b517107bfe270ca2b1a17aa341715d",
  1419. "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d",
  1420. "shasum": ""
  1421. },
  1422. "require": {
  1423. "php": ">=5.3.2"
  1424. },
  1425. "require-dev": {
  1426. "sami/sami": "dev-master"
  1427. },
  1428. "suggest": {
  1429. "ext-gd": "to use the GD implementation",
  1430. "ext-gmagick": "to use the Gmagick implementation",
  1431. "ext-imagick": "to use the Imagick implementation"
  1432. },
  1433. "type": "library",
  1434. "extra": {
  1435. "branch-alias": {
  1436. "dev-develop": "0.7-dev"
  1437. }
  1438. },
  1439. "autoload": {
  1440. "psr-0": {
  1441. "Imagine": "lib/"
  1442. }
  1443. },
  1444. "notification-url": "https://packagist.org/downloads/",
  1445. "license": [
  1446. "MIT"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Bulat Shakirzyanov",
  1451. "email": "mallluhuct@gmail.com",
  1452. "homepage": "http://avalanche123.com"
  1453. }
  1454. ],
  1455. "description": "Image processing for PHP 5.3",
  1456. "homepage": "http://imagine.readthedocs.org/",
  1457. "keywords": [
  1458. "drawing",
  1459. "graphics",
  1460. "image manipulation",
  1461. "image processing"
  1462. ],
  1463. "time": "2015-09-19 16:54:05"
  1464. },
  1465. {
  1466. "name": "laravel/lumen-framework",
  1467. "version": "v5.1.6",
  1468. "source": {
  1469. "type": "git",
  1470. "url": "https://github.com/laravel/lumen-framework.git",
  1471. "reference": "caf37c0b556f3bb52dad3ef0efff7b297c9ad6cd"
  1472. },
  1473. "dist": {
  1474. "type": "zip",
  1475. "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/caf37c0b556f3bb52dad3ef0efff7b297c9ad6cd",
  1476. "reference": "caf37c0b556f3bb52dad3ef0efff7b297c9ad6cd",
  1477. "shasum": ""
  1478. },
  1479. "require": {
  1480. "illuminate/auth": "5.1.*",
  1481. "illuminate/broadcasting": "5.1.*",
  1482. "illuminate/bus": "5.1.*",
  1483. "illuminate/cache": "5.1.*",
  1484. "illuminate/config": "5.1.*",
  1485. "illuminate/console": "5.1.*",
  1486. "illuminate/container": "5.1.*",
  1487. "illuminate/contracts": "5.1.*",
  1488. "illuminate/cookie": "5.1.*",
  1489. "illuminate/database": "5.1.*",
  1490. "illuminate/encryption": "5.1.*",
  1491. "illuminate/events": "5.1.*",
  1492. "illuminate/filesystem": "5.1.*",
  1493. "illuminate/hashing": "5.1.*",
  1494. "illuminate/http": "5.1.*",
  1495. "illuminate/pagination": "5.1.*",
  1496. "illuminate/queue": "5.1.*",
  1497. "illuminate/session": "5.1.*",
  1498. "illuminate/support": "5.1.*",
  1499. "illuminate/translation": "5.1.*",
  1500. "illuminate/validation": "5.1.*",
  1501. "illuminate/view": "5.1.*",
  1502. "monolog/monolog": "~1.0",
  1503. "mtdowling/cron-expression": "~1.0",
  1504. "nikic/fast-route": "0.4.*",
  1505. "paragonie/random_compat": "^1.0.6",
  1506. "php": ">=5.5.9",
  1507. "symfony/dom-crawler": "2.7.*",
  1508. "symfony/http-foundation": "2.7.*",
  1509. "symfony/http-kernel": "2.7.*",
  1510. "symfony/security-core": "2.7.*",
  1511. "symfony/var-dumper": "2.7.*"
  1512. },
  1513. "require-dev": {
  1514. "mockery/mockery": "~0.9",
  1515. "phpunit/phpunit": "~4.0"
  1516. },
  1517. "suggest": {
  1518. "vlucas/phpdotenv": "Required to use .env files (~1.0)."
  1519. },
  1520. "type": "library",
  1521. "autoload": {
  1522. "psr-4": {
  1523. "Laravel\\Lumen\\": "src/"
  1524. },
  1525. "classmap": [
  1526. "src/Foundation"
  1527. ],
  1528. "files": [
  1529. "src/helpers.php"
  1530. ]
  1531. },
  1532. "notification-url": "https://packagist.org/downloads/",
  1533. "license": [
  1534. "MIT"
  1535. ],
  1536. "authors": [
  1537. {
  1538. "name": "Taylor Otwell",
  1539. "email": "taylorotwell@gmail.com"
  1540. }
  1541. ],
  1542. "description": "The Laravel Lumen Framework.",
  1543. "homepage": "http://laravel.com",
  1544. "keywords": [
  1545. "framework",
  1546. "laravel",
  1547. "lumen"
  1548. ],
  1549. "time": "2015-10-28 22:19:15"
  1550. },
  1551. {
  1552. "name": "luticate/utils",
  1553. "version": "0.1.2",
  1554. "source": {
  1555. "type": "git",
  1556. "url": "https://git.rthoni.com/luticate/utils.git",
  1557. "reference": "778e4ca0797cdc4691dcdbba9000050f7d9f7e32"
  1558. },
  1559. "require": {
  1560. "guzzlehttp/guzzle": "^6.1"
  1561. },
  1562. "type": "library",
  1563. "autoload": {
  1564. "psr-4": {
  1565. "Luticate\\": "src/"
  1566. }
  1567. },
  1568. "authors": [
  1569. {
  1570. "name": "Robin THONI",
  1571. "email": "robin@rthoni.com"
  1572. }
  1573. ],
  1574. "description": "Luticate user management system utils",
  1575. "time": "2015-11-23 23:27:20"
  1576. },
  1577. {
  1578. "name": "monolog/monolog",
  1579. "version": "1.17.2",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/Seldaek/monolog.git",
  1583. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1588. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "php": ">=5.3.0",
  1593. "psr/log": "~1.0"
  1594. },
  1595. "provide": {
  1596. "psr/log-implementation": "1.0.0"
  1597. },
  1598. "require-dev": {
  1599. "aws/aws-sdk-php": "^2.4.9",
  1600. "doctrine/couchdb": "~1.0@dev",
  1601. "graylog2/gelf-php": "~1.0",
  1602. "jakub-onderka/php-parallel-lint": "0.9",
  1603. "php-console/php-console": "^3.1.3",
  1604. "phpunit/phpunit": "~4.5",
  1605. "phpunit/phpunit-mock-objects": "2.3.0",
  1606. "raven/raven": "^0.13",
  1607. "ruflin/elastica": ">=0.90 <3.0",
  1608. "swiftmailer/swiftmailer": "~5.3",
  1609. "videlalvaro/php-amqplib": "~2.4"
  1610. },
  1611. "suggest": {
  1612. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1613. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1614. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1615. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1616. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1617. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1618. "raven/raven": "Allow sending log messages to a Sentry server",
  1619. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1620. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1621. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1622. },
  1623. "type": "library",
  1624. "extra": {
  1625. "branch-alias": {
  1626. "dev-master": "1.16.x-dev"
  1627. }
  1628. },
  1629. "autoload": {
  1630. "psr-4": {
  1631. "Monolog\\": "src/Monolog"
  1632. }
  1633. },
  1634. "notification-url": "https://packagist.org/downloads/",
  1635. "license": [
  1636. "MIT"
  1637. ],
  1638. "authors": [
  1639. {
  1640. "name": "Jordi Boggiano",
  1641. "email": "j.boggiano@seld.be",
  1642. "homepage": "http://seld.be"
  1643. }
  1644. ],
  1645. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1646. "homepage": "http://github.com/Seldaek/monolog",
  1647. "keywords": [
  1648. "log",
  1649. "logging",
  1650. "psr-3"
  1651. ],
  1652. "time": "2015-10-14 12:51:02"
  1653. },
  1654. {
  1655. "name": "mtdowling/cron-expression",
  1656. "version": "v1.0.4",
  1657. "source": {
  1658. "type": "git",
  1659. "url": "https://github.com/mtdowling/cron-expression.git",
  1660. "reference": "fd92e883195e5dfa77720b1868cf084b08be4412"
  1661. },
  1662. "dist": {
  1663. "type": "zip",
  1664. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/fd92e883195e5dfa77720b1868cf084b08be4412",
  1665. "reference": "fd92e883195e5dfa77720b1868cf084b08be4412",
  1666. "shasum": ""
  1667. },
  1668. "require": {
  1669. "php": ">=5.3.2"
  1670. },
  1671. "require-dev": {
  1672. "phpunit/phpunit": "4.*"
  1673. },
  1674. "type": "library",
  1675. "autoload": {
  1676. "psr-0": {
  1677. "Cron": "src/"
  1678. }
  1679. },
  1680. "notification-url": "https://packagist.org/downloads/",
  1681. "license": [
  1682. "MIT"
  1683. ],
  1684. "authors": [
  1685. {
  1686. "name": "Michael Dowling",
  1687. "email": "mtdowling@gmail.com",
  1688. "homepage": "https://github.com/mtdowling"
  1689. }
  1690. ],
  1691. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1692. "keywords": [
  1693. "cron",
  1694. "schedule"
  1695. ],
  1696. "time": "2015-01-11 23:07:46"
  1697. },
  1698. {
  1699. "name": "nesbot/carbon",
  1700. "version": "1.21.0",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/briannesbitt/Carbon.git",
  1704. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  1709. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "php": ">=5.3.0",
  1714. "symfony/translation": "~2.6|~3.0"
  1715. },
  1716. "require-dev": {
  1717. "phpunit/phpunit": "~4.0|~5.0"
  1718. },
  1719. "type": "library",
  1720. "autoload": {
  1721. "psr-4": {
  1722. "Carbon\\": "src/Carbon/"
  1723. }
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "MIT"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Brian Nesbitt",
  1732. "email": "brian@nesbot.com",
  1733. "homepage": "http://nesbot.com"
  1734. }
  1735. ],
  1736. "description": "A simple API extension for DateTime.",
  1737. "homepage": "http://carbon.nesbot.com",
  1738. "keywords": [
  1739. "date",
  1740. "datetime",
  1741. "time"
  1742. ],
  1743. "time": "2015-11-04 20:07:17"
  1744. },
  1745. {
  1746. "name": "nikic/fast-route",
  1747. "version": "v0.4.0",
  1748. "source": {
  1749. "type": "git",
  1750. "url": "https://github.com/nikic/FastRoute.git",
  1751. "reference": "f26a8f7788f25c0e3e9b1579d38d7ccab2755320"
  1752. },
  1753. "dist": {
  1754. "type": "zip",
  1755. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/f26a8f7788f25c0e3e9b1579d38d7ccab2755320",
  1756. "reference": "f26a8f7788f25c0e3e9b1579d38d7ccab2755320",
  1757. "shasum": ""
  1758. },
  1759. "require": {
  1760. "php": ">=5.4.0"
  1761. },
  1762. "type": "library",
  1763. "autoload": {
  1764. "psr-4": {
  1765. "FastRoute\\": "src/"
  1766. },
  1767. "files": [
  1768. "src/functions.php"
  1769. ]
  1770. },
  1771. "notification-url": "https://packagist.org/downloads/",
  1772. "license": [
  1773. "BSD-3-Clause"
  1774. ],
  1775. "authors": [
  1776. {
  1777. "name": "Nikita Popov",
  1778. "email": "nikic@php.net"
  1779. }
  1780. ],
  1781. "description": "Fast request router for PHP",
  1782. "keywords": [
  1783. "router",
  1784. "routing"
  1785. ],
  1786. "time": "2015-02-26 15:33:07"
  1787. },
  1788. {
  1789. "name": "paragonie/random_compat",
  1790. "version": "1.1.0",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/paragonie/random_compat.git",
  1794. "reference": "19f765b66c6fbb56ee3b11bc16d52e38eebdc295"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/19f765b66c6fbb56ee3b11bc16d52e38eebdc295",
  1799. "reference": "19f765b66c6fbb56ee3b11bc16d52e38eebdc295",
  1800. "shasum": ""
  1801. },
  1802. "require": {
  1803. "php": ">=5.2.0"
  1804. },
  1805. "require-dev": {
  1806. "phpunit/phpunit": "4.*|5.*"
  1807. },
  1808. "suggest": {
  1809. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1810. },
  1811. "type": "library",
  1812. "autoload": {
  1813. "files": [
  1814. "lib/random.php"
  1815. ]
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Paragon Initiative Enterprises",
  1824. "email": "security@paragonie.com",
  1825. "homepage": "https://paragonie.com"
  1826. }
  1827. ],
  1828. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1829. "keywords": [
  1830. "csprng",
  1831. "pseudorandom",
  1832. "random"
  1833. ],
  1834. "time": "2015-11-10 00:45:41"
  1835. },
  1836. {
  1837. "name": "psr/http-message",
  1838. "version": "1.0",
  1839. "source": {
  1840. "type": "git",
  1841. "url": "https://github.com/php-fig/http-message.git",
  1842. "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298"
  1843. },
  1844. "dist": {
  1845. "type": "zip",
  1846. "url": "https://api.github.com/repos/php-fig/http-message/zipball/85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
  1847. "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
  1848. "shasum": ""
  1849. },
  1850. "require": {
  1851. "php": ">=5.3.0"
  1852. },
  1853. "type": "library",
  1854. "extra": {
  1855. "branch-alias": {
  1856. "dev-master": "1.0.x-dev"
  1857. }
  1858. },
  1859. "autoload": {
  1860. "psr-4": {
  1861. "Psr\\Http\\Message\\": "src/"
  1862. }
  1863. },
  1864. "notification-url": "https://packagist.org/downloads/",
  1865. "license": [
  1866. "MIT"
  1867. ],
  1868. "authors": [
  1869. {
  1870. "name": "PHP-FIG",
  1871. "homepage": "http://www.php-fig.org/"
  1872. }
  1873. ],
  1874. "description": "Common interface for HTTP messages",
  1875. "keywords": [
  1876. "http",
  1877. "http-message",
  1878. "psr",
  1879. "psr-7",
  1880. "request",
  1881. "response"
  1882. ],
  1883. "time": "2015-05-04 20:22:00"
  1884. },
  1885. {
  1886. "name": "psr/log",
  1887. "version": "1.0.0",
  1888. "source": {
  1889. "type": "git",
  1890. "url": "https://github.com/php-fig/log.git",
  1891. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  1892. },
  1893. "dist": {
  1894. "type": "zip",
  1895. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  1896. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  1897. "shasum": ""
  1898. },
  1899. "type": "library",
  1900. "autoload": {
  1901. "psr-0": {
  1902. "Psr\\Log\\": ""
  1903. }
  1904. },
  1905. "notification-url": "https://packagist.org/downloads/",
  1906. "license": [
  1907. "MIT"
  1908. ],
  1909. "authors": [
  1910. {
  1911. "name": "PHP-FIG",
  1912. "homepage": "http://www.php-fig.org/"
  1913. }
  1914. ],
  1915. "description": "Common interface for logging libraries",
  1916. "keywords": [
  1917. "log",
  1918. "psr",
  1919. "psr-3"
  1920. ],
  1921. "time": "2012-12-21 11:40:51"
  1922. },
  1923. {
  1924. "name": "symfony/console",
  1925. "version": "v2.7.7",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://github.com/symfony/console.git",
  1929. "reference": "16bb1cb86df43c90931df65f529e7ebd79636750"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://api.github.com/repos/symfony/console/zipball/16bb1cb86df43c90931df65f529e7ebd79636750",
  1934. "reference": "16bb1cb86df43c90931df65f529e7ebd79636750",
  1935. "shasum": ""
  1936. },
  1937. "require": {
  1938. "php": ">=5.3.9"
  1939. },
  1940. "require-dev": {
  1941. "psr/log": "~1.0",
  1942. "symfony/event-dispatcher": "~2.1",
  1943. "symfony/process": "~2.1"
  1944. },
  1945. "suggest": {
  1946. "psr/log": "For using the console logger",
  1947. "symfony/event-dispatcher": "",
  1948. "symfony/process": ""
  1949. },
  1950. "type": "library",
  1951. "extra": {
  1952. "branch-alias": {
  1953. "dev-master": "2.7-dev"
  1954. }
  1955. },
  1956. "autoload": {
  1957. "psr-4": {
  1958. "Symfony\\Component\\Console\\": ""
  1959. },
  1960. "exclude-from-classmap": [
  1961. "/Tests/"
  1962. ]
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Fabien Potencier",
  1971. "email": "fabien@symfony.com"
  1972. },
  1973. {
  1974. "name": "Symfony Community",
  1975. "homepage": "https://symfony.com/contributors"
  1976. }
  1977. ],
  1978. "description": "Symfony Console Component",
  1979. "homepage": "https://symfony.com",
  1980. "time": "2015-11-18 09:54:26"
  1981. },
  1982. {
  1983. "name": "symfony/debug",
  1984. "version": "v2.7.7",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/symfony/debug.git",
  1988. "reference": "0dbc119596f4afc82d9b2eb2a7e6a4af1ee763fa"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/symfony/debug/zipball/0dbc119596f4afc82d9b2eb2a7e6a4af1ee763fa",
  1993. "reference": "0dbc119596f4afc82d9b2eb2a7e6a4af1ee763fa",
  1994. "shasum": ""
  1995. },
  1996. "require": {
  1997. "php": ">=5.3.9",
  1998. "psr/log": "~1.0"
  1999. },
  2000. "conflict": {
  2001. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2002. },
  2003. "require-dev": {
  2004. "symfony/class-loader": "~2.2",
  2005. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "2.7-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Symfony\\Component\\Debug\\": ""
  2016. },
  2017. "exclude-from-classmap": [
  2018. "/Tests/"
  2019. ]
  2020. },
  2021. "notification-url": "https://packagist.org/downloads/",
  2022. "license": [
  2023. "MIT"
  2024. ],
  2025. "authors": [
  2026. {
  2027. "name": "Fabien Potencier",
  2028. "email": "fabien@symfony.com"
  2029. },
  2030. {
  2031. "name": "Symfony Community",
  2032. "homepage": "https://symfony.com/contributors"
  2033. }
  2034. ],
  2035. "description": "Symfony Debug Component",
  2036. "homepage": "https://symfony.com",
  2037. "time": "2015-10-30 20:10:21"
  2038. },
  2039. {
  2040. "name": "symfony/dom-crawler",
  2041. "version": "v2.7.7",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/symfony/dom-crawler.git",
  2045. "reference": "b33593cbfe1d81b50d48353f338aca76a08658d8"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b33593cbfe1d81b50d48353f338aca76a08658d8",
  2050. "reference": "b33593cbfe1d81b50d48353f338aca76a08658d8",
  2051. "shasum": ""
  2052. },
  2053. "require": {
  2054. "php": ">=5.3.9"
  2055. },
  2056. "require-dev": {
  2057. "symfony/css-selector": "~2.3"
  2058. },
  2059. "suggest": {
  2060. "symfony/css-selector": ""
  2061. },
  2062. "type": "library",
  2063. "extra": {
  2064. "branch-alias": {
  2065. "dev-master": "2.7-dev"
  2066. }
  2067. },
  2068. "autoload": {
  2069. "psr-4": {
  2070. "Symfony\\Component\\DomCrawler\\": ""
  2071. },
  2072. "exclude-from-classmap": [
  2073. "/Tests/"
  2074. ]
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "Fabien Potencier",
  2083. "email": "fabien@symfony.com"
  2084. },
  2085. {
  2086. "name": "Symfony Community",
  2087. "homepage": "https://symfony.com/contributors"
  2088. }
  2089. ],
  2090. "description": "Symfony DomCrawler Component",
  2091. "homepage": "https://symfony.com",
  2092. "time": "2015-11-02 20:20:53"
  2093. },
  2094. {
  2095. "name": "symfony/event-dispatcher",
  2096. "version": "v2.7.7",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/symfony/event-dispatcher.git",
  2100. "reference": "7e2f9c31645680026c2372edf66f863fc7757af5"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7e2f9c31645680026c2372edf66f863fc7757af5",
  2105. "reference": "7e2f9c31645680026c2372edf66f863fc7757af5",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "php": ">=5.3.9"
  2110. },
  2111. "require-dev": {
  2112. "psr/log": "~1.0",
  2113. "symfony/config": "~2.0,>=2.0.5",
  2114. "symfony/dependency-injection": "~2.6",
  2115. "symfony/expression-language": "~2.6",
  2116. "symfony/stopwatch": "~2.3"
  2117. },
  2118. "suggest": {
  2119. "symfony/dependency-injection": "",
  2120. "symfony/http-kernel": ""
  2121. },
  2122. "type": "library",
  2123. "extra": {
  2124. "branch-alias": {
  2125. "dev-master": "2.7-dev"
  2126. }
  2127. },
  2128. "autoload": {
  2129. "psr-4": {
  2130. "Symfony\\Component\\EventDispatcher\\": ""
  2131. },
  2132. "exclude-from-classmap": [
  2133. "/Tests/"
  2134. ]
  2135. },
  2136. "notification-url": "https://packagist.org/downloads/",
  2137. "license": [
  2138. "MIT"
  2139. ],
  2140. "authors": [
  2141. {
  2142. "name": "Fabien Potencier",
  2143. "email": "fabien@symfony.com"
  2144. },
  2145. {
  2146. "name": "Symfony Community",
  2147. "homepage": "https://symfony.com/contributors"
  2148. }
  2149. ],
  2150. "description": "Symfony EventDispatcher Component",
  2151. "homepage": "https://symfony.com",
  2152. "time": "2015-10-30 20:10:21"
  2153. },
  2154. {
  2155. "name": "symfony/finder",
  2156. "version": "v2.7.7",
  2157. "source": {
  2158. "type": "git",
  2159. "url": "https://github.com/symfony/finder.git",
  2160. "reference": "a06a0c0ff7db3736a50d530c908cca547bf13da9"
  2161. },
  2162. "dist": {
  2163. "type": "zip",
  2164. "url": "https://api.github.com/repos/symfony/finder/zipball/a06a0c0ff7db3736a50d530c908cca547bf13da9",
  2165. "reference": "a06a0c0ff7db3736a50d530c908cca547bf13da9",
  2166. "shasum": ""
  2167. },
  2168. "require": {
  2169. "php": ">=5.3.9"
  2170. },
  2171. "type": "library",
  2172. "extra": {
  2173. "branch-alias": {
  2174. "dev-master": "2.7-dev"
  2175. }
  2176. },
  2177. "autoload": {
  2178. "psr-4": {
  2179. "Symfony\\Component\\Finder\\": ""
  2180. },
  2181. "exclude-from-classmap": [
  2182. "/Tests/"
  2183. ]
  2184. },
  2185. "notification-url": "https://packagist.org/downloads/",
  2186. "license": [
  2187. "MIT"
  2188. ],
  2189. "authors": [
  2190. {
  2191. "name": "Fabien Potencier",
  2192. "email": "fabien@symfony.com"
  2193. },
  2194. {
  2195. "name": "Symfony Community",
  2196. "homepage": "https://symfony.com/contributors"
  2197. }
  2198. ],
  2199. "description": "Symfony Finder Component",
  2200. "homepage": "https://symfony.com",
  2201. "time": "2015-10-30 20:10:21"
  2202. },
  2203. {
  2204. "name": "symfony/http-foundation",
  2205. "version": "v2.7.7",
  2206. "source": {
  2207. "type": "git",
  2208. "url": "https://github.com/symfony/http-foundation.git",
  2209. "reference": "e83a3d105ddaf5a113e803c904fdec552d1f1c35"
  2210. },
  2211. "dist": {
  2212. "type": "zip",
  2213. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e83a3d105ddaf5a113e803c904fdec552d1f1c35",
  2214. "reference": "e83a3d105ddaf5a113e803c904fdec552d1f1c35",
  2215. "shasum": ""
  2216. },
  2217. "require": {
  2218. "php": ">=5.3.9"
  2219. },
  2220. "require-dev": {
  2221. "symfony/expression-language": "~2.4"
  2222. },
  2223. "type": "library",
  2224. "extra": {
  2225. "branch-alias": {
  2226. "dev-master": "2.7-dev"
  2227. }
  2228. },
  2229. "autoload": {
  2230. "psr-4": {
  2231. "Symfony\\Component\\HttpFoundation\\": ""
  2232. },
  2233. "classmap": [
  2234. "Resources/stubs"
  2235. ],
  2236. "exclude-from-classmap": [
  2237. "/Tests/"
  2238. ]
  2239. },
  2240. "notification-url": "https://packagist.org/downloads/",
  2241. "license": [
  2242. "MIT"
  2243. ],
  2244. "authors": [
  2245. {
  2246. "name": "Fabien Potencier",
  2247. "email": "fabien@symfony.com"
  2248. },
  2249. {
  2250. "name": "Symfony Community",
  2251. "homepage": "https://symfony.com/contributors"
  2252. }
  2253. ],
  2254. "description": "Symfony HttpFoundation Component",
  2255. "homepage": "https://symfony.com",
  2256. "time": "2015-11-20 17:41:18"
  2257. },
  2258. {
  2259. "name": "symfony/http-kernel",
  2260. "version": "v2.7.7",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/symfony/http-kernel.git",
  2264. "reference": "5570de31e8fbc03777a8c61eb24f9b626e5e5941"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5570de31e8fbc03777a8c61eb24f9b626e5e5941",
  2269. "reference": "5570de31e8fbc03777a8c61eb24f9b626e5e5941",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "php": ">=5.3.9",
  2274. "psr/log": "~1.0",
  2275. "symfony/debug": "~2.6,>=2.6.2",
  2276. "symfony/event-dispatcher": "~2.6,>=2.6.7",
  2277. "symfony/http-foundation": "~2.5,>=2.5.4"
  2278. },
  2279. "conflict": {
  2280. "symfony/config": "<2.7"
  2281. },
  2282. "require-dev": {
  2283. "symfony/browser-kit": "~2.3",
  2284. "symfony/class-loader": "~2.1",
  2285. "symfony/config": "~2.7",
  2286. "symfony/console": "~2.3",
  2287. "symfony/css-selector": "~2.0,>=2.0.5",
  2288. "symfony/dependency-injection": "~2.2",
  2289. "symfony/dom-crawler": "~2.0,>=2.0.5",
  2290. "symfony/expression-language": "~2.4",
  2291. "symfony/finder": "~2.0,>=2.0.5",
  2292. "symfony/process": "~2.0,>=2.0.5",
  2293. "symfony/routing": "~2.2",
  2294. "symfony/stopwatch": "~2.3",
  2295. "symfony/templating": "~2.2",
  2296. "symfony/translation": "~2.0,>=2.0.5",
  2297. "symfony/var-dumper": "~2.6"
  2298. },
  2299. "suggest": {
  2300. "symfony/browser-kit": "",
  2301. "symfony/class-loader": "",
  2302. "symfony/config": "",
  2303. "symfony/console": "",
  2304. "symfony/dependency-injection": "",
  2305. "symfony/finder": "",
  2306. "symfony/var-dumper": ""
  2307. },
  2308. "type": "library",
  2309. "extra": {
  2310. "branch-alias": {
  2311. "dev-master": "2.7-dev"
  2312. }
  2313. },
  2314. "autoload": {
  2315. "psr-4": {
  2316. "Symfony\\Component\\HttpKernel\\": ""
  2317. },
  2318. "exclude-from-classmap": [
  2319. "/Tests/"
  2320. ]
  2321. },
  2322. "notification-url": "https://packagist.org/downloads/",
  2323. "license": [
  2324. "MIT"
  2325. ],
  2326. "authors": [
  2327. {
  2328. "name": "Fabien Potencier",
  2329. "email": "fabien@symfony.com"
  2330. },
  2331. {
  2332. "name": "Symfony Community",
  2333. "homepage": "https://symfony.com/contributors"
  2334. }
  2335. ],
  2336. "description": "Symfony HttpKernel Component",
  2337. "homepage": "https://symfony.com",
  2338. "time": "2015-11-23 11:57:49"
  2339. },
  2340. {
  2341. "name": "symfony/process",
  2342. "version": "v2.7.7",
  2343. "source": {
  2344. "type": "git",
  2345. "url": "https://github.com/symfony/process.git",
  2346. "reference": "f6290983c8725d0afa29bdc3e5295879de3e58f5"
  2347. },
  2348. "dist": {
  2349. "type": "zip",
  2350. "url": "https://api.github.com/repos/symfony/process/zipball/f6290983c8725d0afa29bdc3e5295879de3e58f5",
  2351. "reference": "f6290983c8725d0afa29bdc3e5295879de3e58f5",
  2352. "shasum": ""
  2353. },
  2354. "require": {
  2355. "php": ">=5.3.9"
  2356. },
  2357. "type": "library",
  2358. "extra": {
  2359. "branch-alias": {
  2360. "dev-master": "2.7-dev"
  2361. }
  2362. },
  2363. "autoload": {
  2364. "psr-4": {
  2365. "Symfony\\Component\\Process\\": ""
  2366. },
  2367. "exclude-from-classmap": [
  2368. "/Tests/"
  2369. ]
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Fabien Potencier",
  2378. "email": "fabien@symfony.com"
  2379. },
  2380. {
  2381. "name": "Symfony Community",
  2382. "homepage": "https://symfony.com/contributors"
  2383. }
  2384. ],
  2385. "description": "Symfony Process Component",
  2386. "homepage": "https://symfony.com",
  2387. "time": "2015-11-19 16:11:24"
  2388. },
  2389. {
  2390. "name": "symfony/security-core",
  2391. "version": "v2.7.7",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/symfony/security-core.git",
  2395. "reference": "f19c911f59051b513acb8ca9eb82a73a993698d4"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://api.github.com/repos/symfony/security-core/zipball/f19c911f59051b513acb8ca9eb82a73a993698d4",
  2400. "reference": "f19c911f59051b513acb8ca9eb82a73a993698d4",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "php": ">=5.3.9"
  2405. },
  2406. "require-dev": {
  2407. "ircmaxell/password-compat": "1.0.*",
  2408. "psr/log": "~1.0",
  2409. "symfony/event-dispatcher": "~2.1",
  2410. "symfony/expression-language": "~2.6",
  2411. "symfony/http-foundation": "~2.4",
  2412. "symfony/validator": "~2.5,>=2.5.9"
  2413. },
  2414. "suggest": {
  2415. "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5",
  2416. "symfony/event-dispatcher": "",
  2417. "symfony/expression-language": "For using the expression voter",
  2418. "symfony/http-foundation": "",
  2419. "symfony/validator": "For using the user password constraint"
  2420. },
  2421. "type": "library",
  2422. "extra": {
  2423. "branch-alias": {
  2424. "dev-master": "2.7-dev"
  2425. }
  2426. },
  2427. "autoload": {
  2428. "psr-4": {
  2429. "Symfony\\Component\\Security\\Core\\": ""
  2430. },
  2431. "exclude-from-classmap": [
  2432. "/Tests/"
  2433. ]
  2434. },
  2435. "notification-url": "https://packagist.org/downloads/",
  2436. "license": [
  2437. "MIT"
  2438. ],
  2439. "authors": [
  2440. {
  2441. "name": "Fabien Potencier",
  2442. "email": "fabien@symfony.com"
  2443. },
  2444. {
  2445. "name": "Symfony Community",
  2446. "homepage": "https://symfony.com/contributors"
  2447. }
  2448. ],
  2449. "description": "Symfony Security Component - Core Library",
  2450. "homepage": "https://symfony.com",
  2451. "time": "2015-11-18 13:41:01"
  2452. },
  2453. {
  2454. "name": "symfony/translation",
  2455. "version": "v2.7.7",
  2456. "source": {
  2457. "type": "git",
  2458. "url": "https://github.com/symfony/translation.git",
  2459. "reference": "e4ecb9c3ba1304eaf24de15c2d7a428101c1982f"
  2460. },
  2461. "dist": {
  2462. "type": "zip",
  2463. "url": "https://api.github.com/repos/symfony/translation/zipball/e4ecb9c3ba1304eaf24de15c2d7a428101c1982f",
  2464. "reference": "e4ecb9c3ba1304eaf24de15c2d7a428101c1982f",
  2465. "shasum": ""
  2466. },
  2467. "require": {
  2468. "php": ">=5.3.9"
  2469. },
  2470. "conflict": {
  2471. "symfony/config": "<2.7"
  2472. },
  2473. "require-dev": {
  2474. "psr/log": "~1.0",
  2475. "symfony/config": "~2.7",
  2476. "symfony/intl": "~2.4",
  2477. "symfony/yaml": "~2.2"
  2478. },
  2479. "suggest": {
  2480. "psr/log": "To use logging capability in translator",
  2481. "symfony/config": "",
  2482. "symfony/yaml": ""
  2483. },
  2484. "type": "library",
  2485. "extra": {
  2486. "branch-alias": {
  2487. "dev-master": "2.7-dev"
  2488. }
  2489. },
  2490. "autoload": {
  2491. "psr-4": {
  2492. "Symfony\\Component\\Translation\\": ""
  2493. },
  2494. "exclude-from-classmap": [
  2495. "/Tests/"
  2496. ]
  2497. },
  2498. "notification-url": "https://packagist.org/downloads/",
  2499. "license": [
  2500. "MIT"
  2501. ],
  2502. "authors": [
  2503. {
  2504. "name": "Fabien Potencier",
  2505. "email": "fabien@symfony.com"
  2506. },
  2507. {
  2508. "name": "Symfony Community",
  2509. "homepage": "https://symfony.com/contributors"
  2510. }
  2511. ],
  2512. "description": "Symfony Translation Component",
  2513. "homepage": "https://symfony.com",
  2514. "time": "2015-11-18 13:41:01"
  2515. },
  2516. {
  2517. "name": "symfony/var-dumper",
  2518. "version": "v2.7.7",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://github.com/symfony/var-dumper.git",
  2522. "reference": "72bcb27411780eaee9469729aace73c0d46fb2b8"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/72bcb27411780eaee9469729aace73c0d46fb2b8",
  2527. "reference": "72bcb27411780eaee9469729aace73c0d46fb2b8",
  2528. "shasum": ""
  2529. },
  2530. "require": {
  2531. "php": ">=5.3.9"
  2532. },
  2533. "suggest": {
  2534. "ext-symfony_debug": ""
  2535. },
  2536. "type": "library",
  2537. "extra": {
  2538. "branch-alias": {
  2539. "dev-master": "2.7-dev"
  2540. }
  2541. },
  2542. "autoload": {
  2543. "files": [
  2544. "Resources/functions/dump.php"
  2545. ],
  2546. "psr-4": {
  2547. "Symfony\\Component\\VarDumper\\": ""
  2548. },
  2549. "exclude-from-classmap": [
  2550. "/Tests/"
  2551. ]
  2552. },
  2553. "notification-url": "https://packagist.org/downloads/",
  2554. "license": [
  2555. "MIT"
  2556. ],
  2557. "authors": [
  2558. {
  2559. "name": "Nicolas Grekas",
  2560. "email": "p@tchwork.com"
  2561. },
  2562. {
  2563. "name": "Symfony Community",
  2564. "homepage": "https://symfony.com/contributors"
  2565. }
  2566. ],
  2567. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2568. "homepage": "https://symfony.com",
  2569. "keywords": [
  2570. "debug",
  2571. "dump"
  2572. ],
  2573. "time": "2015-11-18 13:41:01"
  2574. },
  2575. {
  2576. "name": "vlucas/phpdotenv",
  2577. "version": "v1.1.1",
  2578. "source": {
  2579. "type": "git",
  2580. "url": "https://github.com/vlucas/phpdotenv.git",
  2581. "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa"
  2582. },
  2583. "dist": {
  2584. "type": "zip",
  2585. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa",
  2586. "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa",
  2587. "shasum": ""
  2588. },
  2589. "require": {
  2590. "php": ">=5.3.2"
  2591. },
  2592. "require-dev": {
  2593. "phpunit/phpunit": "~4.0"
  2594. },
  2595. "type": "library",
  2596. "autoload": {
  2597. "psr-0": {
  2598. "Dotenv": "src/"
  2599. }
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "BSD"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "Vance Lucas",
  2608. "email": "vance@vancelucas.com",
  2609. "homepage": "http://www.vancelucas.com"
  2610. }
  2611. ],
  2612. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2613. "homepage": "http://github.com/vlucas/phpdotenv",
  2614. "keywords": [
  2615. "dotenv",
  2616. "env",
  2617. "environment"
  2618. ],
  2619. "time": "2015-05-30 15:59:26"
  2620. }
  2621. ],
  2622. "packages-dev": [
  2623. {
  2624. "name": "doctrine/instantiator",
  2625. "version": "1.0.5",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/doctrine/instantiator.git",
  2629. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  2634. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2635. "shasum": ""
  2636. },
  2637. "require": {
  2638. "php": ">=5.3,<8.0-DEV"
  2639. },
  2640. "require-dev": {
  2641. "athletic/athletic": "~0.1.8",
  2642. "ext-pdo": "*",
  2643. "ext-phar": "*",
  2644. "phpunit/phpunit": "~4.0",
  2645. "squizlabs/php_codesniffer": "~2.0"
  2646. },
  2647. "type": "library",
  2648. "extra": {
  2649. "branch-alias": {
  2650. "dev-master": "1.0.x-dev"
  2651. }
  2652. },
  2653. "autoload": {
  2654. "psr-4": {
  2655. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2656. }
  2657. },
  2658. "notification-url": "https://packagist.org/downloads/",
  2659. "license": [
  2660. "MIT"
  2661. ],
  2662. "authors": [
  2663. {
  2664. "name": "Marco Pivetta",
  2665. "email": "ocramius@gmail.com",
  2666. "homepage": "http://ocramius.github.com/"
  2667. }
  2668. ],
  2669. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2670. "homepage": "https://github.com/doctrine/instantiator",
  2671. "keywords": [
  2672. "constructor",
  2673. "instantiate"
  2674. ],
  2675. "time": "2015-06-14 21:17:01"
  2676. },
  2677. {
  2678. "name": "fzaninotto/faker",
  2679. "version": "v1.5.0",
  2680. "source": {
  2681. "type": "git",
  2682. "url": "https://github.com/fzaninotto/Faker.git",
  2683. "reference": "d0190b156bcca848d401fb80f31f504f37141c8d"
  2684. },
  2685. "dist": {
  2686. "type": "zip",
  2687. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d",
  2688. "reference": "d0190b156bcca848d401fb80f31f504f37141c8d",
  2689. "shasum": ""
  2690. },
  2691. "require": {
  2692. "php": ">=5.3.3"
  2693. },
  2694. "require-dev": {
  2695. "phpunit/phpunit": "~4.0",
  2696. "squizlabs/php_codesniffer": "~1.5"
  2697. },
  2698. "suggest": {
  2699. "ext-intl": "*"
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "1.5.x-dev"
  2705. }
  2706. },
  2707. "autoload": {
  2708. "psr-4": {
  2709. "Faker\\": "src/Faker/"
  2710. }
  2711. },
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "François Zaninotto"
  2719. }
  2720. ],
  2721. "description": "Faker is a PHP library that generates fake data for you.",
  2722. "keywords": [
  2723. "data",
  2724. "faker",
  2725. "fixtures"
  2726. ],
  2727. "time": "2015-05-29 06:29:14"
  2728. },
  2729. {
  2730. "name": "phpdocumentor/reflection-docblock",
  2731. "version": "2.0.4",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2735. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8",
  2740. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "php": ">=5.3.3"
  2745. },
  2746. "require-dev": {
  2747. "phpunit/phpunit": "~4.0"
  2748. },
  2749. "suggest": {
  2750. "dflydev/markdown": "~1.0",
  2751. "erusev/parsedown": "~1.0"
  2752. },
  2753. "type": "library",
  2754. "extra": {
  2755. "branch-alias": {
  2756. "dev-master": "2.0.x-dev"
  2757. }
  2758. },
  2759. "autoload": {
  2760. "psr-0": {
  2761. "phpDocumentor": [
  2762. "src/"
  2763. ]
  2764. }
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "MIT"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Mike van Riel",
  2773. "email": "mike.vanriel@naenius.com"
  2774. }
  2775. ],
  2776. "time": "2015-02-03 12:10:50"
  2777. },
  2778. {
  2779. "name": "phpspec/prophecy",
  2780. "version": "v1.5.0",
  2781. "source": {
  2782. "type": "git",
  2783. "url": "https://github.com/phpspec/prophecy.git",
  2784. "reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7"
  2785. },
  2786. "dist": {
  2787. "type": "zip",
  2788. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4745ded9307786b730d7a60df5cb5a6c43cf95f7",
  2789. "reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7",
  2790. "shasum": ""
  2791. },
  2792. "require": {
  2793. "doctrine/instantiator": "^1.0.2",
  2794. "phpdocumentor/reflection-docblock": "~2.0",
  2795. "sebastian/comparator": "~1.1"
  2796. },
  2797. "require-dev": {
  2798. "phpspec/phpspec": "~2.0"
  2799. },
  2800. "type": "library",
  2801. "extra": {
  2802. "branch-alias": {
  2803. "dev-master": "1.4.x-dev"
  2804. }
  2805. },
  2806. "autoload": {
  2807. "psr-0": {
  2808. "Prophecy\\": "src/"
  2809. }
  2810. },
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "MIT"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "Konstantin Kudryashov",
  2818. "email": "ever.zet@gmail.com",
  2819. "homepage": "http://everzet.com"
  2820. },
  2821. {
  2822. "name": "Marcello Duarte",
  2823. "email": "marcello.duarte@gmail.com"
  2824. }
  2825. ],
  2826. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2827. "homepage": "https://github.com/phpspec/prophecy",
  2828. "keywords": [
  2829. "Double",
  2830. "Dummy",
  2831. "fake",
  2832. "mock",
  2833. "spy",
  2834. "stub"
  2835. ],
  2836. "time": "2015-08-13 10:07:40"
  2837. },
  2838. {
  2839. "name": "phpunit/php-code-coverage",
  2840. "version": "2.2.4",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2844. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2849. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2850. "shasum": ""
  2851. },
  2852. "require": {
  2853. "php": ">=5.3.3",
  2854. "phpunit/php-file-iterator": "~1.3",
  2855. "phpunit/php-text-template": "~1.2",
  2856. "phpunit/php-token-stream": "~1.3",
  2857. "sebastian/environment": "^1.3.2",
  2858. "sebastian/version": "~1.0"
  2859. },
  2860. "require-dev": {
  2861. "ext-xdebug": ">=2.1.4",
  2862. "phpunit/phpunit": "~4"
  2863. },
  2864. "suggest": {
  2865. "ext-dom": "*",
  2866. "ext-xdebug": ">=2.2.1",
  2867. "ext-xmlwriter": "*"
  2868. },
  2869. "type": "library",
  2870. "extra": {
  2871. "branch-alias": {
  2872. "dev-master": "2.2.x-dev"
  2873. }
  2874. },
  2875. "autoload": {
  2876. "classmap": [
  2877. "src/"
  2878. ]
  2879. },
  2880. "notification-url": "https://packagist.org/downloads/",
  2881. "license": [
  2882. "BSD-3-Clause"
  2883. ],
  2884. "authors": [
  2885. {
  2886. "name": "Sebastian Bergmann",
  2887. "email": "sb@sebastian-bergmann.de",
  2888. "role": "lead"
  2889. }
  2890. ],
  2891. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2892. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2893. "keywords": [
  2894. "coverage",
  2895. "testing",
  2896. "xunit"
  2897. ],
  2898. "time": "2015-10-06 15:47:00"
  2899. },
  2900. {
  2901. "name": "phpunit/php-file-iterator",
  2902. "version": "1.4.1",
  2903. "source": {
  2904. "type": "git",
  2905. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2906. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  2907. },
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  2911. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  2912. "shasum": ""
  2913. },
  2914. "require": {
  2915. "php": ">=5.3.3"
  2916. },
  2917. "type": "library",
  2918. "extra": {
  2919. "branch-alias": {
  2920. "dev-master": "1.4.x-dev"
  2921. }
  2922. },
  2923. "autoload": {
  2924. "classmap": [
  2925. "src/"
  2926. ]
  2927. },
  2928. "notification-url": "https://packagist.org/downloads/",
  2929. "license": [
  2930. "BSD-3-Clause"
  2931. ],
  2932. "authors": [
  2933. {
  2934. "name": "Sebastian Bergmann",
  2935. "email": "sb@sebastian-bergmann.de",
  2936. "role": "lead"
  2937. }
  2938. ],
  2939. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2940. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2941. "keywords": [
  2942. "filesystem",
  2943. "iterator"
  2944. ],
  2945. "time": "2015-06-21 13:08:43"
  2946. },
  2947. {
  2948. "name": "phpunit/php-text-template",
  2949. "version": "1.2.1",
  2950. "source": {
  2951. "type": "git",
  2952. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2953. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2954. },
  2955. "dist": {
  2956. "type": "zip",
  2957. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2958. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2959. "shasum": ""
  2960. },
  2961. "require": {
  2962. "php": ">=5.3.3"
  2963. },
  2964. "type": "library",
  2965. "autoload": {
  2966. "classmap": [
  2967. "src/"
  2968. ]
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "BSD-3-Clause"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Sebastian Bergmann",
  2977. "email": "sebastian@phpunit.de",
  2978. "role": "lead"
  2979. }
  2980. ],
  2981. "description": "Simple template engine.",
  2982. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2983. "keywords": [
  2984. "template"
  2985. ],
  2986. "time": "2015-06-21 13:50:34"
  2987. },
  2988. {
  2989. "name": "phpunit/php-timer",
  2990. "version": "1.0.7",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2994. "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
  2999. "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "php": ">=5.3.3"
  3004. },
  3005. "type": "library",
  3006. "autoload": {
  3007. "classmap": [
  3008. "src/"
  3009. ]
  3010. },
  3011. "notification-url": "https://packagist.org/downloads/",
  3012. "license": [
  3013. "BSD-3-Clause"
  3014. ],
  3015. "authors": [
  3016. {
  3017. "name": "Sebastian Bergmann",
  3018. "email": "sb@sebastian-bergmann.de",
  3019. "role": "lead"
  3020. }
  3021. ],
  3022. "description": "Utility class for timing",
  3023. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3024. "keywords": [
  3025. "timer"
  3026. ],
  3027. "time": "2015-06-21 08:01:12"
  3028. },
  3029. {
  3030. "name": "phpunit/php-token-stream",
  3031. "version": "1.4.8",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3035. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  3040. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "ext-tokenizer": "*",
  3045. "php": ">=5.3.3"
  3046. },
  3047. "require-dev": {
  3048. "phpunit/phpunit": "~4.2"
  3049. },
  3050. "type": "library",
  3051. "extra": {
  3052. "branch-alias": {
  3053. "dev-master": "1.4-dev"
  3054. }
  3055. },
  3056. "autoload": {
  3057. "classmap": [
  3058. "src/"
  3059. ]
  3060. },
  3061. "notification-url": "https://packagist.org/downloads/",
  3062. "license": [
  3063. "BSD-3-Clause"
  3064. ],
  3065. "authors": [
  3066. {
  3067. "name": "Sebastian Bergmann",
  3068. "email": "sebastian@phpunit.de"
  3069. }
  3070. ],
  3071. "description": "Wrapper around PHP's tokenizer extension.",
  3072. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3073. "keywords": [
  3074. "tokenizer"
  3075. ],
  3076. "time": "2015-09-15 10:49:45"
  3077. },
  3078. {
  3079. "name": "phpunit/phpunit",
  3080. "version": "4.8.18",
  3081. "source": {
  3082. "type": "git",
  3083. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3084. "reference": "fa33d4ad96481b91df343d83e8c8aabed6b1dfd3"
  3085. },
  3086. "dist": {
  3087. "type": "zip",
  3088. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fa33d4ad96481b91df343d83e8c8aabed6b1dfd3",
  3089. "reference": "fa33d4ad96481b91df343d83e8c8aabed6b1dfd3",
  3090. "shasum": ""
  3091. },
  3092. "require": {
  3093. "ext-dom": "*",
  3094. "ext-json": "*",
  3095. "ext-pcre": "*",
  3096. "ext-reflection": "*",
  3097. "ext-spl": "*",
  3098. "php": ">=5.3.3",
  3099. "phpspec/prophecy": "^1.3.1",
  3100. "phpunit/php-code-coverage": "~2.1",
  3101. "phpunit/php-file-iterator": "~1.4",
  3102. "phpunit/php-text-template": "~1.2",
  3103. "phpunit/php-timer": ">=1.0.6",
  3104. "phpunit/phpunit-mock-objects": "~2.3",
  3105. "sebastian/comparator": "~1.1",
  3106. "sebastian/diff": "~1.2",
  3107. "sebastian/environment": "~1.3",
  3108. "sebastian/exporter": "~1.2",
  3109. "sebastian/global-state": "~1.0",
  3110. "sebastian/version": "~1.0",
  3111. "symfony/yaml": "~2.1|~3.0"
  3112. },
  3113. "suggest": {
  3114. "phpunit/php-invoker": "~1.1"
  3115. },
  3116. "bin": [
  3117. "phpunit"
  3118. ],
  3119. "type": "library",
  3120. "extra": {
  3121. "branch-alias": {
  3122. "dev-master": "4.8.x-dev"
  3123. }
  3124. },
  3125. "autoload": {
  3126. "classmap": [
  3127. "src/"
  3128. ]
  3129. },
  3130. "notification-url": "https://packagist.org/downloads/",
  3131. "license": [
  3132. "BSD-3-Clause"
  3133. ],
  3134. "authors": [
  3135. {
  3136. "name": "Sebastian Bergmann",
  3137. "email": "sebastian@phpunit.de",
  3138. "role": "lead"
  3139. }
  3140. ],
  3141. "description": "The PHP Unit Testing framework.",
  3142. "homepage": "https://phpunit.de/",
  3143. "keywords": [
  3144. "phpunit",
  3145. "testing",
  3146. "xunit"
  3147. ],
  3148. "time": "2015-11-11 11:32:49"
  3149. },
  3150. {
  3151. "name": "phpunit/phpunit-mock-objects",
  3152. "version": "2.3.8",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3156. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  3161. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  3162. "shasum": ""
  3163. },
  3164. "require": {
  3165. "doctrine/instantiator": "^1.0.2",
  3166. "php": ">=5.3.3",
  3167. "phpunit/php-text-template": "~1.2",
  3168. "sebastian/exporter": "~1.2"
  3169. },
  3170. "require-dev": {
  3171. "phpunit/phpunit": "~4.4"
  3172. },
  3173. "suggest": {
  3174. "ext-soap": "*"
  3175. },
  3176. "type": "library",
  3177. "extra": {
  3178. "branch-alias": {
  3179. "dev-master": "2.3.x-dev"
  3180. }
  3181. },
  3182. "autoload": {
  3183. "classmap": [
  3184. "src/"
  3185. ]
  3186. },
  3187. "notification-url": "https://packagist.org/downloads/",
  3188. "license": [
  3189. "BSD-3-Clause"
  3190. ],
  3191. "authors": [
  3192. {
  3193. "name": "Sebastian Bergmann",
  3194. "email": "sb@sebastian-bergmann.de",
  3195. "role": "lead"
  3196. }
  3197. ],
  3198. "description": "Mock Object library for PHPUnit",
  3199. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3200. "keywords": [
  3201. "mock",
  3202. "xunit"
  3203. ],
  3204. "time": "2015-10-02 06:51:40"
  3205. },
  3206. {
  3207. "name": "sebastian/comparator",
  3208. "version": "1.2.0",
  3209. "source": {
  3210. "type": "git",
  3211. "url": "https://github.com/sebastianbergmann/comparator.git",
  3212. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  3213. },
  3214. "dist": {
  3215. "type": "zip",
  3216. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
  3217. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  3218. "shasum": ""
  3219. },
  3220. "require": {
  3221. "php": ">=5.3.3",
  3222. "sebastian/diff": "~1.2",
  3223. "sebastian/exporter": "~1.2"
  3224. },
  3225. "require-dev": {
  3226. "phpunit/phpunit": "~4.4"
  3227. },
  3228. "type": "library",
  3229. "extra": {
  3230. "branch-alias": {
  3231. "dev-master": "1.2.x-dev"
  3232. }
  3233. },
  3234. "autoload": {
  3235. "classmap": [
  3236. "src/"
  3237. ]
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "BSD-3-Clause"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "Jeff Welch",
  3246. "email": "whatthejeff@gmail.com"
  3247. },
  3248. {
  3249. "name": "Volker Dusch",
  3250. "email": "github@wallbash.com"
  3251. },
  3252. {
  3253. "name": "Bernhard Schussek",
  3254. "email": "bschussek@2bepublished.at"
  3255. },
  3256. {
  3257. "name": "Sebastian Bergmann",
  3258. "email": "sebastian@phpunit.de"
  3259. }
  3260. ],
  3261. "description": "Provides the functionality to compare PHP values for equality",
  3262. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  3263. "keywords": [
  3264. "comparator",
  3265. "compare",
  3266. "equality"
  3267. ],
  3268. "time": "2015-07-26 15:48:44"
  3269. },
  3270. {
  3271. "name": "sebastian/diff",
  3272. "version": "1.3.0",
  3273. "source": {
  3274. "type": "git",
  3275. "url": "https://github.com/sebastianbergmann/diff.git",
  3276. "reference": "863df9687835c62aa423a22412d26fa2ebde3fd3"
  3277. },
  3278. "dist": {
  3279. "type": "zip",
  3280. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/863df9687835c62aa423a22412d26fa2ebde3fd3",
  3281. "reference": "863df9687835c62aa423a22412d26fa2ebde3fd3",
  3282. "shasum": ""
  3283. },
  3284. "require": {
  3285. "php": ">=5.3.3"
  3286. },
  3287. "require-dev": {
  3288. "phpunit/phpunit": "~4.2"
  3289. },
  3290. "type": "library",
  3291. "extra": {
  3292. "branch-alias": {
  3293. "dev-master": "1.3-dev"
  3294. }
  3295. },
  3296. "autoload": {
  3297. "classmap": [
  3298. "src/"
  3299. ]
  3300. },
  3301. "notification-url": "https://packagist.org/downloads/",
  3302. "license": [
  3303. "BSD-3-Clause"
  3304. ],
  3305. "authors": [
  3306. {
  3307. "name": "Kore Nordmann",
  3308. "email": "mail@kore-nordmann.de"
  3309. },
  3310. {
  3311. "name": "Sebastian Bergmann",
  3312. "email": "sebastian@phpunit.de"
  3313. }
  3314. ],
  3315. "description": "Diff implementation",
  3316. "homepage": "http://www.github.com/sebastianbergmann/diff",
  3317. "keywords": [
  3318. "diff"
  3319. ],
  3320. "time": "2015-02-22 15:13:53"
  3321. },
  3322. {
  3323. "name": "sebastian/environment",
  3324. "version": "1.3.2",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/sebastianbergmann/environment.git",
  3328. "reference": "6324c907ce7a52478eeeaede764f48733ef5ae44"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6324c907ce7a52478eeeaede764f48733ef5ae44",
  3333. "reference": "6324c907ce7a52478eeeaede764f48733ef5ae44",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "php": ">=5.3.3"
  3338. },
  3339. "require-dev": {
  3340. "phpunit/phpunit": "~4.4"
  3341. },
  3342. "type": "library",
  3343. "extra": {
  3344. "branch-alias": {
  3345. "dev-master": "1.3.x-dev"
  3346. }
  3347. },
  3348. "autoload": {
  3349. "classmap": [
  3350. "src/"
  3351. ]
  3352. },
  3353. "notification-url": "https://packagist.org/downloads/",
  3354. "license": [
  3355. "BSD-3-Clause"
  3356. ],
  3357. "authors": [
  3358. {
  3359. "name": "Sebastian Bergmann",
  3360. "email": "sebastian@phpunit.de"
  3361. }
  3362. ],
  3363. "description": "Provides functionality to handle HHVM/PHP environments",
  3364. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3365. "keywords": [
  3366. "Xdebug",
  3367. "environment",
  3368. "hhvm"
  3369. ],
  3370. "time": "2015-08-03 06:14:51"
  3371. },
  3372. {
  3373. "name": "sebastian/exporter",
  3374. "version": "1.2.1",
  3375. "source": {
  3376. "type": "git",
  3377. "url": "https://github.com/sebastianbergmann/exporter.git",
  3378. "reference": "7ae5513327cb536431847bcc0c10edba2701064e"
  3379. },
  3380. "dist": {
  3381. "type": "zip",
  3382. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e",
  3383. "reference": "7ae5513327cb536431847bcc0c10edba2701064e",
  3384. "shasum": ""
  3385. },
  3386. "require": {
  3387. "php": ">=5.3.3",
  3388. "sebastian/recursion-context": "~1.0"
  3389. },
  3390. "require-dev": {
  3391. "phpunit/phpunit": "~4.4"
  3392. },
  3393. "type": "library",
  3394. "extra": {
  3395. "branch-alias": {
  3396. "dev-master": "1.2.x-dev"
  3397. }
  3398. },
  3399. "autoload": {
  3400. "classmap": [
  3401. "src/"
  3402. ]
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "BSD-3-Clause"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Jeff Welch",
  3411. "email": "whatthejeff@gmail.com"
  3412. },
  3413. {
  3414. "name": "Volker Dusch",
  3415. "email": "github@wallbash.com"
  3416. },
  3417. {
  3418. "name": "Bernhard Schussek",
  3419. "email": "bschussek@2bepublished.at"
  3420. },
  3421. {
  3422. "name": "Sebastian Bergmann",
  3423. "email": "sebastian@phpunit.de"
  3424. },
  3425. {
  3426. "name": "Adam Harvey",
  3427. "email": "aharvey@php.net"
  3428. }
  3429. ],
  3430. "description": "Provides the functionality to export PHP variables for visualization",
  3431. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3432. "keywords": [
  3433. "export",
  3434. "exporter"
  3435. ],
  3436. "time": "2015-06-21 07:55:53"
  3437. },
  3438. {
  3439. "name": "sebastian/global-state",
  3440. "version": "1.1.1",
  3441. "source": {
  3442. "type": "git",
  3443. "url": "https://github.com/sebastianbergmann/global-state.git",
  3444. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3445. },
  3446. "dist": {
  3447. "type": "zip",
  3448. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3449. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3450. "shasum": ""
  3451. },
  3452. "require": {
  3453. "php": ">=5.3.3"
  3454. },
  3455. "require-dev": {
  3456. "phpunit/phpunit": "~4.2"
  3457. },
  3458. "suggest": {
  3459. "ext-uopz": "*"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "branch-alias": {
  3464. "dev-master": "1.0-dev"
  3465. }
  3466. },
  3467. "autoload": {
  3468. "classmap": [
  3469. "src/"
  3470. ]
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "BSD-3-Clause"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "Sebastian Bergmann",
  3479. "email": "sebastian@phpunit.de"
  3480. }
  3481. ],
  3482. "description": "Snapshotting of global state",
  3483. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3484. "keywords": [
  3485. "global state"
  3486. ],
  3487. "time": "2015-10-12 03:26:01"
  3488. },
  3489. {
  3490. "name": "sebastian/recursion-context",
  3491. "version": "1.0.1",
  3492. "source": {
  3493. "type": "git",
  3494. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3495. "reference": "994d4a811bafe801fb06dccbee797863ba2792ba"
  3496. },
  3497. "dist": {
  3498. "type": "zip",
  3499. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/994d4a811bafe801fb06dccbee797863ba2792ba",
  3500. "reference": "994d4a811bafe801fb06dccbee797863ba2792ba",
  3501. "shasum": ""
  3502. },
  3503. "require": {
  3504. "php": ">=5.3.3"
  3505. },
  3506. "require-dev": {
  3507. "phpunit/phpunit": "~4.4"
  3508. },
  3509. "type": "library",
  3510. "extra": {
  3511. "branch-alias": {
  3512. "dev-master": "1.0.x-dev"
  3513. }
  3514. },
  3515. "autoload": {
  3516. "classmap": [
  3517. "src/"
  3518. ]
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "BSD-3-Clause"
  3523. ],
  3524. "authors": [
  3525. {
  3526. "name": "Jeff Welch",
  3527. "email": "whatthejeff@gmail.com"
  3528. },
  3529. {
  3530. "name": "Sebastian Bergmann",
  3531. "email": "sebastian@phpunit.de"
  3532. },
  3533. {
  3534. "name": "Adam Harvey",
  3535. "email": "aharvey@php.net"
  3536. }
  3537. ],
  3538. "description": "Provides functionality to recursively process PHP variables",
  3539. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3540. "time": "2015-06-21 08:04:50"
  3541. },
  3542. {
  3543. "name": "sebastian/version",
  3544. "version": "1.0.6",
  3545. "source": {
  3546. "type": "git",
  3547. "url": "https://github.com/sebastianbergmann/version.git",
  3548. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  3549. },
  3550. "dist": {
  3551. "type": "zip",
  3552. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3553. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3554. "shasum": ""
  3555. },
  3556. "type": "library",
  3557. "autoload": {
  3558. "classmap": [
  3559. "src/"
  3560. ]
  3561. },
  3562. "notification-url": "https://packagist.org/downloads/",
  3563. "license": [
  3564. "BSD-3-Clause"
  3565. ],
  3566. "authors": [
  3567. {
  3568. "name": "Sebastian Bergmann",
  3569. "email": "sebastian@phpunit.de",
  3570. "role": "lead"
  3571. }
  3572. ],
  3573. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3574. "homepage": "https://github.com/sebastianbergmann/version",
  3575. "time": "2015-06-21 13:59:46"
  3576. },
  3577. {
  3578. "name": "symfony/yaml",
  3579. "version": "v2.7.7",
  3580. "source": {
  3581. "type": "git",
  3582. "url": "https://github.com/symfony/yaml.git",
  3583. "reference": "4cfcd7a9fceba662b3c036b7d9a91f6197af046c"
  3584. },
  3585. "dist": {
  3586. "type": "zip",
  3587. "url": "https://api.github.com/repos/symfony/yaml/zipball/4cfcd7a9fceba662b3c036b7d9a91f6197af046c",
  3588. "reference": "4cfcd7a9fceba662b3c036b7d9a91f6197af046c",
  3589. "shasum": ""
  3590. },
  3591. "require": {
  3592. "php": ">=5.3.9"
  3593. },
  3594. "type": "library",
  3595. "extra": {
  3596. "branch-alias": {
  3597. "dev-master": "2.7-dev"
  3598. }
  3599. },
  3600. "autoload": {
  3601. "psr-4": {
  3602. "Symfony\\Component\\Yaml\\": ""
  3603. },
  3604. "exclude-from-classmap": [
  3605. "/Tests/"
  3606. ]
  3607. },
  3608. "notification-url": "https://packagist.org/downloads/",
  3609. "license": [
  3610. "MIT"
  3611. ],
  3612. "authors": [
  3613. {
  3614. "name": "Fabien Potencier",
  3615. "email": "fabien@symfony.com"
  3616. },
  3617. {
  3618. "name": "Symfony Community",
  3619. "homepage": "https://symfony.com/contributors"
  3620. }
  3621. ],
  3622. "description": "Symfony Yaml Component",
  3623. "homepage": "https://symfony.com",
  3624. "time": "2015-11-18 13:41:01"
  3625. }
  3626. ],
  3627. "aliases": [],
  3628. "minimum-stability": "stable",
  3629. "stability-flags": [],
  3630. "prefer-stable": false,
  3631. "prefer-lowest": false,
  3632. "platform": {
  3633. "php": ">=5.5.9"
  3634. },
  3635. "platform-dev": []
  3636. }