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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639
  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": "92341993ac8a438f0a376868bcfbd72a",
  8. "content-hash": "ec7c9a17463e58585c212578a6828b36",
  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.11",
  1554. "source": {
  1555. "type": "git",
  1556. "url": "https://git.rthoni.com/luticate/api-utils.git",
  1557. "reference": "a3c889bc47053bb69bff8b56e30a3ec15ff90c09"
  1558. },
  1559. "require": {
  1560. "guzzlehttp/guzzle": "^6.1"
  1561. },
  1562. "require-dev": {
  1563. "phpunit/phpunit": "5.3.*"
  1564. },
  1565. "type": "library",
  1566. "autoload": {
  1567. "psr-4": {
  1568. "Luticate\\": "src/"
  1569. }
  1570. },
  1571. "authors": [
  1572. {
  1573. "name": "Robin THONI",
  1574. "email": "robin@rthoni.com"
  1575. }
  1576. ],
  1577. "description": "Luticate user management system utils",
  1578. "time": "2016-05-29 20:42:36"
  1579. },
  1580. {
  1581. "name": "monolog/monolog",
  1582. "version": "1.17.2",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/Seldaek/monolog.git",
  1586. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1591. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "php": ">=5.3.0",
  1596. "psr/log": "~1.0"
  1597. },
  1598. "provide": {
  1599. "psr/log-implementation": "1.0.0"
  1600. },
  1601. "require-dev": {
  1602. "aws/aws-sdk-php": "^2.4.9",
  1603. "doctrine/couchdb": "~1.0@dev",
  1604. "graylog2/gelf-php": "~1.0",
  1605. "jakub-onderka/php-parallel-lint": "0.9",
  1606. "php-console/php-console": "^3.1.3",
  1607. "phpunit/phpunit": "~4.5",
  1608. "phpunit/phpunit-mock-objects": "2.3.0",
  1609. "raven/raven": "^0.13",
  1610. "ruflin/elastica": ">=0.90 <3.0",
  1611. "swiftmailer/swiftmailer": "~5.3",
  1612. "videlalvaro/php-amqplib": "~2.4"
  1613. },
  1614. "suggest": {
  1615. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1616. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1617. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1618. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1619. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1620. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1621. "raven/raven": "Allow sending log messages to a Sentry server",
  1622. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1623. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1624. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "branch-alias": {
  1629. "dev-master": "1.16.x-dev"
  1630. }
  1631. },
  1632. "autoload": {
  1633. "psr-4": {
  1634. "Monolog\\": "src/Monolog"
  1635. }
  1636. },
  1637. "notification-url": "https://packagist.org/downloads/",
  1638. "license": [
  1639. "MIT"
  1640. ],
  1641. "authors": [
  1642. {
  1643. "name": "Jordi Boggiano",
  1644. "email": "j.boggiano@seld.be",
  1645. "homepage": "http://seld.be"
  1646. }
  1647. ],
  1648. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1649. "homepage": "http://github.com/Seldaek/monolog",
  1650. "keywords": [
  1651. "log",
  1652. "logging",
  1653. "psr-3"
  1654. ],
  1655. "time": "2015-10-14 12:51:02"
  1656. },
  1657. {
  1658. "name": "mtdowling/cron-expression",
  1659. "version": "v1.0.4",
  1660. "source": {
  1661. "type": "git",
  1662. "url": "https://github.com/mtdowling/cron-expression.git",
  1663. "reference": "fd92e883195e5dfa77720b1868cf084b08be4412"
  1664. },
  1665. "dist": {
  1666. "type": "zip",
  1667. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/fd92e883195e5dfa77720b1868cf084b08be4412",
  1668. "reference": "fd92e883195e5dfa77720b1868cf084b08be4412",
  1669. "shasum": ""
  1670. },
  1671. "require": {
  1672. "php": ">=5.3.2"
  1673. },
  1674. "require-dev": {
  1675. "phpunit/phpunit": "4.*"
  1676. },
  1677. "type": "library",
  1678. "autoload": {
  1679. "psr-0": {
  1680. "Cron": "src/"
  1681. }
  1682. },
  1683. "notification-url": "https://packagist.org/downloads/",
  1684. "license": [
  1685. "MIT"
  1686. ],
  1687. "authors": [
  1688. {
  1689. "name": "Michael Dowling",
  1690. "email": "mtdowling@gmail.com",
  1691. "homepage": "https://github.com/mtdowling"
  1692. }
  1693. ],
  1694. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1695. "keywords": [
  1696. "cron",
  1697. "schedule"
  1698. ],
  1699. "time": "2015-01-11 23:07:46"
  1700. },
  1701. {
  1702. "name": "nesbot/carbon",
  1703. "version": "1.21.0",
  1704. "source": {
  1705. "type": "git",
  1706. "url": "https://github.com/briannesbitt/Carbon.git",
  1707. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7"
  1708. },
  1709. "dist": {
  1710. "type": "zip",
  1711. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  1712. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  1713. "shasum": ""
  1714. },
  1715. "require": {
  1716. "php": ">=5.3.0",
  1717. "symfony/translation": "~2.6|~3.0"
  1718. },
  1719. "require-dev": {
  1720. "phpunit/phpunit": "~4.0|~5.0"
  1721. },
  1722. "type": "library",
  1723. "autoload": {
  1724. "psr-4": {
  1725. "Carbon\\": "src/Carbon/"
  1726. }
  1727. },
  1728. "notification-url": "https://packagist.org/downloads/",
  1729. "license": [
  1730. "MIT"
  1731. ],
  1732. "authors": [
  1733. {
  1734. "name": "Brian Nesbitt",
  1735. "email": "brian@nesbot.com",
  1736. "homepage": "http://nesbot.com"
  1737. }
  1738. ],
  1739. "description": "A simple API extension for DateTime.",
  1740. "homepage": "http://carbon.nesbot.com",
  1741. "keywords": [
  1742. "date",
  1743. "datetime",
  1744. "time"
  1745. ],
  1746. "time": "2015-11-04 20:07:17"
  1747. },
  1748. {
  1749. "name": "nikic/fast-route",
  1750. "version": "v0.4.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/nikic/FastRoute.git",
  1754. "reference": "f26a8f7788f25c0e3e9b1579d38d7ccab2755320"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/f26a8f7788f25c0e3e9b1579d38d7ccab2755320",
  1759. "reference": "f26a8f7788f25c0e3e9b1579d38d7ccab2755320",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "php": ">=5.4.0"
  1764. },
  1765. "type": "library",
  1766. "autoload": {
  1767. "psr-4": {
  1768. "FastRoute\\": "src/"
  1769. },
  1770. "files": [
  1771. "src/functions.php"
  1772. ]
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "BSD-3-Clause"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Nikita Popov",
  1781. "email": "nikic@php.net"
  1782. }
  1783. ],
  1784. "description": "Fast request router for PHP",
  1785. "keywords": [
  1786. "router",
  1787. "routing"
  1788. ],
  1789. "time": "2015-02-26 15:33:07"
  1790. },
  1791. {
  1792. "name": "paragonie/random_compat",
  1793. "version": "1.1.0",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/paragonie/random_compat.git",
  1797. "reference": "19f765b66c6fbb56ee3b11bc16d52e38eebdc295"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/19f765b66c6fbb56ee3b11bc16d52e38eebdc295",
  1802. "reference": "19f765b66c6fbb56ee3b11bc16d52e38eebdc295",
  1803. "shasum": ""
  1804. },
  1805. "require": {
  1806. "php": ">=5.2.0"
  1807. },
  1808. "require-dev": {
  1809. "phpunit/phpunit": "4.*|5.*"
  1810. },
  1811. "suggest": {
  1812. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1813. },
  1814. "type": "library",
  1815. "autoload": {
  1816. "files": [
  1817. "lib/random.php"
  1818. ]
  1819. },
  1820. "notification-url": "https://packagist.org/downloads/",
  1821. "license": [
  1822. "MIT"
  1823. ],
  1824. "authors": [
  1825. {
  1826. "name": "Paragon Initiative Enterprises",
  1827. "email": "security@paragonie.com",
  1828. "homepage": "https://paragonie.com"
  1829. }
  1830. ],
  1831. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1832. "keywords": [
  1833. "csprng",
  1834. "pseudorandom",
  1835. "random"
  1836. ],
  1837. "time": "2015-11-10 00:45:41"
  1838. },
  1839. {
  1840. "name": "psr/http-message",
  1841. "version": "1.0",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/php-fig/http-message.git",
  1845. "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/php-fig/http-message/zipball/85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
  1850. "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
  1851. "shasum": ""
  1852. },
  1853. "require": {
  1854. "php": ">=5.3.0"
  1855. },
  1856. "type": "library",
  1857. "extra": {
  1858. "branch-alias": {
  1859. "dev-master": "1.0.x-dev"
  1860. }
  1861. },
  1862. "autoload": {
  1863. "psr-4": {
  1864. "Psr\\Http\\Message\\": "src/"
  1865. }
  1866. },
  1867. "notification-url": "https://packagist.org/downloads/",
  1868. "license": [
  1869. "MIT"
  1870. ],
  1871. "authors": [
  1872. {
  1873. "name": "PHP-FIG",
  1874. "homepage": "http://www.php-fig.org/"
  1875. }
  1876. ],
  1877. "description": "Common interface for HTTP messages",
  1878. "keywords": [
  1879. "http",
  1880. "http-message",
  1881. "psr",
  1882. "psr-7",
  1883. "request",
  1884. "response"
  1885. ],
  1886. "time": "2015-05-04 20:22:00"
  1887. },
  1888. {
  1889. "name": "psr/log",
  1890. "version": "1.0.0",
  1891. "source": {
  1892. "type": "git",
  1893. "url": "https://github.com/php-fig/log.git",
  1894. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  1895. },
  1896. "dist": {
  1897. "type": "zip",
  1898. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  1899. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  1900. "shasum": ""
  1901. },
  1902. "type": "library",
  1903. "autoload": {
  1904. "psr-0": {
  1905. "Psr\\Log\\": ""
  1906. }
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "authors": [
  1913. {
  1914. "name": "PHP-FIG",
  1915. "homepage": "http://www.php-fig.org/"
  1916. }
  1917. ],
  1918. "description": "Common interface for logging libraries",
  1919. "keywords": [
  1920. "log",
  1921. "psr",
  1922. "psr-3"
  1923. ],
  1924. "time": "2012-12-21 11:40:51"
  1925. },
  1926. {
  1927. "name": "symfony/console",
  1928. "version": "v2.7.7",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://github.com/symfony/console.git",
  1932. "reference": "16bb1cb86df43c90931df65f529e7ebd79636750"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://api.github.com/repos/symfony/console/zipball/16bb1cb86df43c90931df65f529e7ebd79636750",
  1937. "reference": "16bb1cb86df43c90931df65f529e7ebd79636750",
  1938. "shasum": ""
  1939. },
  1940. "require": {
  1941. "php": ">=5.3.9"
  1942. },
  1943. "require-dev": {
  1944. "psr/log": "~1.0",
  1945. "symfony/event-dispatcher": "~2.1",
  1946. "symfony/process": "~2.1"
  1947. },
  1948. "suggest": {
  1949. "psr/log": "For using the console logger",
  1950. "symfony/event-dispatcher": "",
  1951. "symfony/process": ""
  1952. },
  1953. "type": "library",
  1954. "extra": {
  1955. "branch-alias": {
  1956. "dev-master": "2.7-dev"
  1957. }
  1958. },
  1959. "autoload": {
  1960. "psr-4": {
  1961. "Symfony\\Component\\Console\\": ""
  1962. },
  1963. "exclude-from-classmap": [
  1964. "/Tests/"
  1965. ]
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Fabien Potencier",
  1974. "email": "fabien@symfony.com"
  1975. },
  1976. {
  1977. "name": "Symfony Community",
  1978. "homepage": "https://symfony.com/contributors"
  1979. }
  1980. ],
  1981. "description": "Symfony Console Component",
  1982. "homepage": "https://symfony.com",
  1983. "time": "2015-11-18 09:54:26"
  1984. },
  1985. {
  1986. "name": "symfony/debug",
  1987. "version": "v2.7.7",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/symfony/debug.git",
  1991. "reference": "0dbc119596f4afc82d9b2eb2a7e6a4af1ee763fa"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://api.github.com/repos/symfony/debug/zipball/0dbc119596f4afc82d9b2eb2a7e6a4af1ee763fa",
  1996. "reference": "0dbc119596f4afc82d9b2eb2a7e6a4af1ee763fa",
  1997. "shasum": ""
  1998. },
  1999. "require": {
  2000. "php": ">=5.3.9",
  2001. "psr/log": "~1.0"
  2002. },
  2003. "conflict": {
  2004. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2005. },
  2006. "require-dev": {
  2007. "symfony/class-loader": "~2.2",
  2008. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2"
  2009. },
  2010. "type": "library",
  2011. "extra": {
  2012. "branch-alias": {
  2013. "dev-master": "2.7-dev"
  2014. }
  2015. },
  2016. "autoload": {
  2017. "psr-4": {
  2018. "Symfony\\Component\\Debug\\": ""
  2019. },
  2020. "exclude-from-classmap": [
  2021. "/Tests/"
  2022. ]
  2023. },
  2024. "notification-url": "https://packagist.org/downloads/",
  2025. "license": [
  2026. "MIT"
  2027. ],
  2028. "authors": [
  2029. {
  2030. "name": "Fabien Potencier",
  2031. "email": "fabien@symfony.com"
  2032. },
  2033. {
  2034. "name": "Symfony Community",
  2035. "homepage": "https://symfony.com/contributors"
  2036. }
  2037. ],
  2038. "description": "Symfony Debug Component",
  2039. "homepage": "https://symfony.com",
  2040. "time": "2015-10-30 20:10:21"
  2041. },
  2042. {
  2043. "name": "symfony/dom-crawler",
  2044. "version": "v2.7.7",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/symfony/dom-crawler.git",
  2048. "reference": "b33593cbfe1d81b50d48353f338aca76a08658d8"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b33593cbfe1d81b50d48353f338aca76a08658d8",
  2053. "reference": "b33593cbfe1d81b50d48353f338aca76a08658d8",
  2054. "shasum": ""
  2055. },
  2056. "require": {
  2057. "php": ">=5.3.9"
  2058. },
  2059. "require-dev": {
  2060. "symfony/css-selector": "~2.3"
  2061. },
  2062. "suggest": {
  2063. "symfony/css-selector": ""
  2064. },
  2065. "type": "library",
  2066. "extra": {
  2067. "branch-alias": {
  2068. "dev-master": "2.7-dev"
  2069. }
  2070. },
  2071. "autoload": {
  2072. "psr-4": {
  2073. "Symfony\\Component\\DomCrawler\\": ""
  2074. },
  2075. "exclude-from-classmap": [
  2076. "/Tests/"
  2077. ]
  2078. },
  2079. "notification-url": "https://packagist.org/downloads/",
  2080. "license": [
  2081. "MIT"
  2082. ],
  2083. "authors": [
  2084. {
  2085. "name": "Fabien Potencier",
  2086. "email": "fabien@symfony.com"
  2087. },
  2088. {
  2089. "name": "Symfony Community",
  2090. "homepage": "https://symfony.com/contributors"
  2091. }
  2092. ],
  2093. "description": "Symfony DomCrawler Component",
  2094. "homepage": "https://symfony.com",
  2095. "time": "2015-11-02 20:20:53"
  2096. },
  2097. {
  2098. "name": "symfony/event-dispatcher",
  2099. "version": "v2.7.7",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/symfony/event-dispatcher.git",
  2103. "reference": "7e2f9c31645680026c2372edf66f863fc7757af5"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7e2f9c31645680026c2372edf66f863fc7757af5",
  2108. "reference": "7e2f9c31645680026c2372edf66f863fc7757af5",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "php": ">=5.3.9"
  2113. },
  2114. "require-dev": {
  2115. "psr/log": "~1.0",
  2116. "symfony/config": "~2.0,>=2.0.5",
  2117. "symfony/dependency-injection": "~2.6",
  2118. "symfony/expression-language": "~2.6",
  2119. "symfony/stopwatch": "~2.3"
  2120. },
  2121. "suggest": {
  2122. "symfony/dependency-injection": "",
  2123. "symfony/http-kernel": ""
  2124. },
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "2.7-dev"
  2129. }
  2130. },
  2131. "autoload": {
  2132. "psr-4": {
  2133. "Symfony\\Component\\EventDispatcher\\": ""
  2134. },
  2135. "exclude-from-classmap": [
  2136. "/Tests/"
  2137. ]
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "MIT"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Fabien Potencier",
  2146. "email": "fabien@symfony.com"
  2147. },
  2148. {
  2149. "name": "Symfony Community",
  2150. "homepage": "https://symfony.com/contributors"
  2151. }
  2152. ],
  2153. "description": "Symfony EventDispatcher Component",
  2154. "homepage": "https://symfony.com",
  2155. "time": "2015-10-30 20:10:21"
  2156. },
  2157. {
  2158. "name": "symfony/finder",
  2159. "version": "v2.7.7",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/symfony/finder.git",
  2163. "reference": "a06a0c0ff7db3736a50d530c908cca547bf13da9"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://api.github.com/repos/symfony/finder/zipball/a06a0c0ff7db3736a50d530c908cca547bf13da9",
  2168. "reference": "a06a0c0ff7db3736a50d530c908cca547bf13da9",
  2169. "shasum": ""
  2170. },
  2171. "require": {
  2172. "php": ">=5.3.9"
  2173. },
  2174. "type": "library",
  2175. "extra": {
  2176. "branch-alias": {
  2177. "dev-master": "2.7-dev"
  2178. }
  2179. },
  2180. "autoload": {
  2181. "psr-4": {
  2182. "Symfony\\Component\\Finder\\": ""
  2183. },
  2184. "exclude-from-classmap": [
  2185. "/Tests/"
  2186. ]
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "Fabien Potencier",
  2195. "email": "fabien@symfony.com"
  2196. },
  2197. {
  2198. "name": "Symfony Community",
  2199. "homepage": "https://symfony.com/contributors"
  2200. }
  2201. ],
  2202. "description": "Symfony Finder Component",
  2203. "homepage": "https://symfony.com",
  2204. "time": "2015-10-30 20:10:21"
  2205. },
  2206. {
  2207. "name": "symfony/http-foundation",
  2208. "version": "v2.7.7",
  2209. "source": {
  2210. "type": "git",
  2211. "url": "https://github.com/symfony/http-foundation.git",
  2212. "reference": "e83a3d105ddaf5a113e803c904fdec552d1f1c35"
  2213. },
  2214. "dist": {
  2215. "type": "zip",
  2216. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e83a3d105ddaf5a113e803c904fdec552d1f1c35",
  2217. "reference": "e83a3d105ddaf5a113e803c904fdec552d1f1c35",
  2218. "shasum": ""
  2219. },
  2220. "require": {
  2221. "php": ">=5.3.9"
  2222. },
  2223. "require-dev": {
  2224. "symfony/expression-language": "~2.4"
  2225. },
  2226. "type": "library",
  2227. "extra": {
  2228. "branch-alias": {
  2229. "dev-master": "2.7-dev"
  2230. }
  2231. },
  2232. "autoload": {
  2233. "psr-4": {
  2234. "Symfony\\Component\\HttpFoundation\\": ""
  2235. },
  2236. "classmap": [
  2237. "Resources/stubs"
  2238. ],
  2239. "exclude-from-classmap": [
  2240. "/Tests/"
  2241. ]
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "MIT"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "Fabien Potencier",
  2250. "email": "fabien@symfony.com"
  2251. },
  2252. {
  2253. "name": "Symfony Community",
  2254. "homepage": "https://symfony.com/contributors"
  2255. }
  2256. ],
  2257. "description": "Symfony HttpFoundation Component",
  2258. "homepage": "https://symfony.com",
  2259. "time": "2015-11-20 17:41:18"
  2260. },
  2261. {
  2262. "name": "symfony/http-kernel",
  2263. "version": "v2.7.7",
  2264. "source": {
  2265. "type": "git",
  2266. "url": "https://github.com/symfony/http-kernel.git",
  2267. "reference": "5570de31e8fbc03777a8c61eb24f9b626e5e5941"
  2268. },
  2269. "dist": {
  2270. "type": "zip",
  2271. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5570de31e8fbc03777a8c61eb24f9b626e5e5941",
  2272. "reference": "5570de31e8fbc03777a8c61eb24f9b626e5e5941",
  2273. "shasum": ""
  2274. },
  2275. "require": {
  2276. "php": ">=5.3.9",
  2277. "psr/log": "~1.0",
  2278. "symfony/debug": "~2.6,>=2.6.2",
  2279. "symfony/event-dispatcher": "~2.6,>=2.6.7",
  2280. "symfony/http-foundation": "~2.5,>=2.5.4"
  2281. },
  2282. "conflict": {
  2283. "symfony/config": "<2.7"
  2284. },
  2285. "require-dev": {
  2286. "symfony/browser-kit": "~2.3",
  2287. "symfony/class-loader": "~2.1",
  2288. "symfony/config": "~2.7",
  2289. "symfony/console": "~2.3",
  2290. "symfony/css-selector": "~2.0,>=2.0.5",
  2291. "symfony/dependency-injection": "~2.2",
  2292. "symfony/dom-crawler": "~2.0,>=2.0.5",
  2293. "symfony/expression-language": "~2.4",
  2294. "symfony/finder": "~2.0,>=2.0.5",
  2295. "symfony/process": "~2.0,>=2.0.5",
  2296. "symfony/routing": "~2.2",
  2297. "symfony/stopwatch": "~2.3",
  2298. "symfony/templating": "~2.2",
  2299. "symfony/translation": "~2.0,>=2.0.5",
  2300. "symfony/var-dumper": "~2.6"
  2301. },
  2302. "suggest": {
  2303. "symfony/browser-kit": "",
  2304. "symfony/class-loader": "",
  2305. "symfony/config": "",
  2306. "symfony/console": "",
  2307. "symfony/dependency-injection": "",
  2308. "symfony/finder": "",
  2309. "symfony/var-dumper": ""
  2310. },
  2311. "type": "library",
  2312. "extra": {
  2313. "branch-alias": {
  2314. "dev-master": "2.7-dev"
  2315. }
  2316. },
  2317. "autoload": {
  2318. "psr-4": {
  2319. "Symfony\\Component\\HttpKernel\\": ""
  2320. },
  2321. "exclude-from-classmap": [
  2322. "/Tests/"
  2323. ]
  2324. },
  2325. "notification-url": "https://packagist.org/downloads/",
  2326. "license": [
  2327. "MIT"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "Fabien Potencier",
  2332. "email": "fabien@symfony.com"
  2333. },
  2334. {
  2335. "name": "Symfony Community",
  2336. "homepage": "https://symfony.com/contributors"
  2337. }
  2338. ],
  2339. "description": "Symfony HttpKernel Component",
  2340. "homepage": "https://symfony.com",
  2341. "time": "2015-11-23 11:57:49"
  2342. },
  2343. {
  2344. "name": "symfony/process",
  2345. "version": "v2.7.7",
  2346. "source": {
  2347. "type": "git",
  2348. "url": "https://github.com/symfony/process.git",
  2349. "reference": "f6290983c8725d0afa29bdc3e5295879de3e58f5"
  2350. },
  2351. "dist": {
  2352. "type": "zip",
  2353. "url": "https://api.github.com/repos/symfony/process/zipball/f6290983c8725d0afa29bdc3e5295879de3e58f5",
  2354. "reference": "f6290983c8725d0afa29bdc3e5295879de3e58f5",
  2355. "shasum": ""
  2356. },
  2357. "require": {
  2358. "php": ">=5.3.9"
  2359. },
  2360. "type": "library",
  2361. "extra": {
  2362. "branch-alias": {
  2363. "dev-master": "2.7-dev"
  2364. }
  2365. },
  2366. "autoload": {
  2367. "psr-4": {
  2368. "Symfony\\Component\\Process\\": ""
  2369. },
  2370. "exclude-from-classmap": [
  2371. "/Tests/"
  2372. ]
  2373. },
  2374. "notification-url": "https://packagist.org/downloads/",
  2375. "license": [
  2376. "MIT"
  2377. ],
  2378. "authors": [
  2379. {
  2380. "name": "Fabien Potencier",
  2381. "email": "fabien@symfony.com"
  2382. },
  2383. {
  2384. "name": "Symfony Community",
  2385. "homepage": "https://symfony.com/contributors"
  2386. }
  2387. ],
  2388. "description": "Symfony Process Component",
  2389. "homepage": "https://symfony.com",
  2390. "time": "2015-11-19 16:11:24"
  2391. },
  2392. {
  2393. "name": "symfony/security-core",
  2394. "version": "v2.7.7",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/symfony/security-core.git",
  2398. "reference": "f19c911f59051b513acb8ca9eb82a73a993698d4"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/symfony/security-core/zipball/f19c911f59051b513acb8ca9eb82a73a993698d4",
  2403. "reference": "f19c911f59051b513acb8ca9eb82a73a993698d4",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": ">=5.3.9"
  2408. },
  2409. "require-dev": {
  2410. "ircmaxell/password-compat": "1.0.*",
  2411. "psr/log": "~1.0",
  2412. "symfony/event-dispatcher": "~2.1",
  2413. "symfony/expression-language": "~2.6",
  2414. "symfony/http-foundation": "~2.4",
  2415. "symfony/validator": "~2.5,>=2.5.9"
  2416. },
  2417. "suggest": {
  2418. "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5",
  2419. "symfony/event-dispatcher": "",
  2420. "symfony/expression-language": "For using the expression voter",
  2421. "symfony/http-foundation": "",
  2422. "symfony/validator": "For using the user password constraint"
  2423. },
  2424. "type": "library",
  2425. "extra": {
  2426. "branch-alias": {
  2427. "dev-master": "2.7-dev"
  2428. }
  2429. },
  2430. "autoload": {
  2431. "psr-4": {
  2432. "Symfony\\Component\\Security\\Core\\": ""
  2433. },
  2434. "exclude-from-classmap": [
  2435. "/Tests/"
  2436. ]
  2437. },
  2438. "notification-url": "https://packagist.org/downloads/",
  2439. "license": [
  2440. "MIT"
  2441. ],
  2442. "authors": [
  2443. {
  2444. "name": "Fabien Potencier",
  2445. "email": "fabien@symfony.com"
  2446. },
  2447. {
  2448. "name": "Symfony Community",
  2449. "homepage": "https://symfony.com/contributors"
  2450. }
  2451. ],
  2452. "description": "Symfony Security Component - Core Library",
  2453. "homepage": "https://symfony.com",
  2454. "time": "2015-11-18 13:41:01"
  2455. },
  2456. {
  2457. "name": "symfony/translation",
  2458. "version": "v2.7.7",
  2459. "source": {
  2460. "type": "git",
  2461. "url": "https://github.com/symfony/translation.git",
  2462. "reference": "e4ecb9c3ba1304eaf24de15c2d7a428101c1982f"
  2463. },
  2464. "dist": {
  2465. "type": "zip",
  2466. "url": "https://api.github.com/repos/symfony/translation/zipball/e4ecb9c3ba1304eaf24de15c2d7a428101c1982f",
  2467. "reference": "e4ecb9c3ba1304eaf24de15c2d7a428101c1982f",
  2468. "shasum": ""
  2469. },
  2470. "require": {
  2471. "php": ">=5.3.9"
  2472. },
  2473. "conflict": {
  2474. "symfony/config": "<2.7"
  2475. },
  2476. "require-dev": {
  2477. "psr/log": "~1.0",
  2478. "symfony/config": "~2.7",
  2479. "symfony/intl": "~2.4",
  2480. "symfony/yaml": "~2.2"
  2481. },
  2482. "suggest": {
  2483. "psr/log": "To use logging capability in translator",
  2484. "symfony/config": "",
  2485. "symfony/yaml": ""
  2486. },
  2487. "type": "library",
  2488. "extra": {
  2489. "branch-alias": {
  2490. "dev-master": "2.7-dev"
  2491. }
  2492. },
  2493. "autoload": {
  2494. "psr-4": {
  2495. "Symfony\\Component\\Translation\\": ""
  2496. },
  2497. "exclude-from-classmap": [
  2498. "/Tests/"
  2499. ]
  2500. },
  2501. "notification-url": "https://packagist.org/downloads/",
  2502. "license": [
  2503. "MIT"
  2504. ],
  2505. "authors": [
  2506. {
  2507. "name": "Fabien Potencier",
  2508. "email": "fabien@symfony.com"
  2509. },
  2510. {
  2511. "name": "Symfony Community",
  2512. "homepage": "https://symfony.com/contributors"
  2513. }
  2514. ],
  2515. "description": "Symfony Translation Component",
  2516. "homepage": "https://symfony.com",
  2517. "time": "2015-11-18 13:41:01"
  2518. },
  2519. {
  2520. "name": "symfony/var-dumper",
  2521. "version": "v2.7.7",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/symfony/var-dumper.git",
  2525. "reference": "72bcb27411780eaee9469729aace73c0d46fb2b8"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/72bcb27411780eaee9469729aace73c0d46fb2b8",
  2530. "reference": "72bcb27411780eaee9469729aace73c0d46fb2b8",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "php": ">=5.3.9"
  2535. },
  2536. "suggest": {
  2537. "ext-symfony_debug": ""
  2538. },
  2539. "type": "library",
  2540. "extra": {
  2541. "branch-alias": {
  2542. "dev-master": "2.7-dev"
  2543. }
  2544. },
  2545. "autoload": {
  2546. "files": [
  2547. "Resources/functions/dump.php"
  2548. ],
  2549. "psr-4": {
  2550. "Symfony\\Component\\VarDumper\\": ""
  2551. },
  2552. "exclude-from-classmap": [
  2553. "/Tests/"
  2554. ]
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "Nicolas Grekas",
  2563. "email": "p@tchwork.com"
  2564. },
  2565. {
  2566. "name": "Symfony Community",
  2567. "homepage": "https://symfony.com/contributors"
  2568. }
  2569. ],
  2570. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2571. "homepage": "https://symfony.com",
  2572. "keywords": [
  2573. "debug",
  2574. "dump"
  2575. ],
  2576. "time": "2015-11-18 13:41:01"
  2577. },
  2578. {
  2579. "name": "vlucas/phpdotenv",
  2580. "version": "v1.1.1",
  2581. "source": {
  2582. "type": "git",
  2583. "url": "https://github.com/vlucas/phpdotenv.git",
  2584. "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa"
  2585. },
  2586. "dist": {
  2587. "type": "zip",
  2588. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa",
  2589. "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa",
  2590. "shasum": ""
  2591. },
  2592. "require": {
  2593. "php": ">=5.3.2"
  2594. },
  2595. "require-dev": {
  2596. "phpunit/phpunit": "~4.0"
  2597. },
  2598. "type": "library",
  2599. "autoload": {
  2600. "psr-0": {
  2601. "Dotenv": "src/"
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "BSD"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Vance Lucas",
  2611. "email": "vance@vancelucas.com",
  2612. "homepage": "http://www.vancelucas.com"
  2613. }
  2614. ],
  2615. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2616. "homepage": "http://github.com/vlucas/phpdotenv",
  2617. "keywords": [
  2618. "dotenv",
  2619. "env",
  2620. "environment"
  2621. ],
  2622. "time": "2015-05-30 15:59:26"
  2623. }
  2624. ],
  2625. "packages-dev": [
  2626. {
  2627. "name": "doctrine/instantiator",
  2628. "version": "1.0.5",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/doctrine/instantiator.git",
  2632. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  2637. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "php": ">=5.3,<8.0-DEV"
  2642. },
  2643. "require-dev": {
  2644. "athletic/athletic": "~0.1.8",
  2645. "ext-pdo": "*",
  2646. "ext-phar": "*",
  2647. "phpunit/phpunit": "~4.0",
  2648. "squizlabs/php_codesniffer": "~2.0"
  2649. },
  2650. "type": "library",
  2651. "extra": {
  2652. "branch-alias": {
  2653. "dev-master": "1.0.x-dev"
  2654. }
  2655. },
  2656. "autoload": {
  2657. "psr-4": {
  2658. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2659. }
  2660. },
  2661. "notification-url": "https://packagist.org/downloads/",
  2662. "license": [
  2663. "MIT"
  2664. ],
  2665. "authors": [
  2666. {
  2667. "name": "Marco Pivetta",
  2668. "email": "ocramius@gmail.com",
  2669. "homepage": "http://ocramius.github.com/"
  2670. }
  2671. ],
  2672. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2673. "homepage": "https://github.com/doctrine/instantiator",
  2674. "keywords": [
  2675. "constructor",
  2676. "instantiate"
  2677. ],
  2678. "time": "2015-06-14 21:17:01"
  2679. },
  2680. {
  2681. "name": "fzaninotto/faker",
  2682. "version": "v1.5.0",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/fzaninotto/Faker.git",
  2686. "reference": "d0190b156bcca848d401fb80f31f504f37141c8d"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d",
  2691. "reference": "d0190b156bcca848d401fb80f31f504f37141c8d",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "php": ">=5.3.3"
  2696. },
  2697. "require-dev": {
  2698. "phpunit/phpunit": "~4.0",
  2699. "squizlabs/php_codesniffer": "~1.5"
  2700. },
  2701. "suggest": {
  2702. "ext-intl": "*"
  2703. },
  2704. "type": "library",
  2705. "extra": {
  2706. "branch-alias": {
  2707. "dev-master": "1.5.x-dev"
  2708. }
  2709. },
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Faker\\": "src/Faker/"
  2713. }
  2714. },
  2715. "notification-url": "https://packagist.org/downloads/",
  2716. "license": [
  2717. "MIT"
  2718. ],
  2719. "authors": [
  2720. {
  2721. "name": "François Zaninotto"
  2722. }
  2723. ],
  2724. "description": "Faker is a PHP library that generates fake data for you.",
  2725. "keywords": [
  2726. "data",
  2727. "faker",
  2728. "fixtures"
  2729. ],
  2730. "time": "2015-05-29 06:29:14"
  2731. },
  2732. {
  2733. "name": "phpdocumentor/reflection-docblock",
  2734. "version": "2.0.4",
  2735. "source": {
  2736. "type": "git",
  2737. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2738. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8"
  2739. },
  2740. "dist": {
  2741. "type": "zip",
  2742. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8",
  2743. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8",
  2744. "shasum": ""
  2745. },
  2746. "require": {
  2747. "php": ">=5.3.3"
  2748. },
  2749. "require-dev": {
  2750. "phpunit/phpunit": "~4.0"
  2751. },
  2752. "suggest": {
  2753. "dflydev/markdown": "~1.0",
  2754. "erusev/parsedown": "~1.0"
  2755. },
  2756. "type": "library",
  2757. "extra": {
  2758. "branch-alias": {
  2759. "dev-master": "2.0.x-dev"
  2760. }
  2761. },
  2762. "autoload": {
  2763. "psr-0": {
  2764. "phpDocumentor": [
  2765. "src/"
  2766. ]
  2767. }
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Mike van Riel",
  2776. "email": "mike.vanriel@naenius.com"
  2777. }
  2778. ],
  2779. "time": "2015-02-03 12:10:50"
  2780. },
  2781. {
  2782. "name": "phpspec/prophecy",
  2783. "version": "v1.5.0",
  2784. "source": {
  2785. "type": "git",
  2786. "url": "https://github.com/phpspec/prophecy.git",
  2787. "reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7"
  2788. },
  2789. "dist": {
  2790. "type": "zip",
  2791. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4745ded9307786b730d7a60df5cb5a6c43cf95f7",
  2792. "reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7",
  2793. "shasum": ""
  2794. },
  2795. "require": {
  2796. "doctrine/instantiator": "^1.0.2",
  2797. "phpdocumentor/reflection-docblock": "~2.0",
  2798. "sebastian/comparator": "~1.1"
  2799. },
  2800. "require-dev": {
  2801. "phpspec/phpspec": "~2.0"
  2802. },
  2803. "type": "library",
  2804. "extra": {
  2805. "branch-alias": {
  2806. "dev-master": "1.4.x-dev"
  2807. }
  2808. },
  2809. "autoload": {
  2810. "psr-0": {
  2811. "Prophecy\\": "src/"
  2812. }
  2813. },
  2814. "notification-url": "https://packagist.org/downloads/",
  2815. "license": [
  2816. "MIT"
  2817. ],
  2818. "authors": [
  2819. {
  2820. "name": "Konstantin Kudryashov",
  2821. "email": "ever.zet@gmail.com",
  2822. "homepage": "http://everzet.com"
  2823. },
  2824. {
  2825. "name": "Marcello Duarte",
  2826. "email": "marcello.duarte@gmail.com"
  2827. }
  2828. ],
  2829. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2830. "homepage": "https://github.com/phpspec/prophecy",
  2831. "keywords": [
  2832. "Double",
  2833. "Dummy",
  2834. "fake",
  2835. "mock",
  2836. "spy",
  2837. "stub"
  2838. ],
  2839. "time": "2015-08-13 10:07:40"
  2840. },
  2841. {
  2842. "name": "phpunit/php-code-coverage",
  2843. "version": "2.2.4",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2847. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2852. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2853. "shasum": ""
  2854. },
  2855. "require": {
  2856. "php": ">=5.3.3",
  2857. "phpunit/php-file-iterator": "~1.3",
  2858. "phpunit/php-text-template": "~1.2",
  2859. "phpunit/php-token-stream": "~1.3",
  2860. "sebastian/environment": "^1.3.2",
  2861. "sebastian/version": "~1.0"
  2862. },
  2863. "require-dev": {
  2864. "ext-xdebug": ">=2.1.4",
  2865. "phpunit/phpunit": "~4"
  2866. },
  2867. "suggest": {
  2868. "ext-dom": "*",
  2869. "ext-xdebug": ">=2.2.1",
  2870. "ext-xmlwriter": "*"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "branch-alias": {
  2875. "dev-master": "2.2.x-dev"
  2876. }
  2877. },
  2878. "autoload": {
  2879. "classmap": [
  2880. "src/"
  2881. ]
  2882. },
  2883. "notification-url": "https://packagist.org/downloads/",
  2884. "license": [
  2885. "BSD-3-Clause"
  2886. ],
  2887. "authors": [
  2888. {
  2889. "name": "Sebastian Bergmann",
  2890. "email": "sb@sebastian-bergmann.de",
  2891. "role": "lead"
  2892. }
  2893. ],
  2894. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2895. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2896. "keywords": [
  2897. "coverage",
  2898. "testing",
  2899. "xunit"
  2900. ],
  2901. "time": "2015-10-06 15:47:00"
  2902. },
  2903. {
  2904. "name": "phpunit/php-file-iterator",
  2905. "version": "1.4.1",
  2906. "source": {
  2907. "type": "git",
  2908. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2909. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  2910. },
  2911. "dist": {
  2912. "type": "zip",
  2913. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  2914. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  2915. "shasum": ""
  2916. },
  2917. "require": {
  2918. "php": ">=5.3.3"
  2919. },
  2920. "type": "library",
  2921. "extra": {
  2922. "branch-alias": {
  2923. "dev-master": "1.4.x-dev"
  2924. }
  2925. },
  2926. "autoload": {
  2927. "classmap": [
  2928. "src/"
  2929. ]
  2930. },
  2931. "notification-url": "https://packagist.org/downloads/",
  2932. "license": [
  2933. "BSD-3-Clause"
  2934. ],
  2935. "authors": [
  2936. {
  2937. "name": "Sebastian Bergmann",
  2938. "email": "sb@sebastian-bergmann.de",
  2939. "role": "lead"
  2940. }
  2941. ],
  2942. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2943. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2944. "keywords": [
  2945. "filesystem",
  2946. "iterator"
  2947. ],
  2948. "time": "2015-06-21 13:08:43"
  2949. },
  2950. {
  2951. "name": "phpunit/php-text-template",
  2952. "version": "1.2.1",
  2953. "source": {
  2954. "type": "git",
  2955. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2956. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2957. },
  2958. "dist": {
  2959. "type": "zip",
  2960. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2961. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2962. "shasum": ""
  2963. },
  2964. "require": {
  2965. "php": ">=5.3.3"
  2966. },
  2967. "type": "library",
  2968. "autoload": {
  2969. "classmap": [
  2970. "src/"
  2971. ]
  2972. },
  2973. "notification-url": "https://packagist.org/downloads/",
  2974. "license": [
  2975. "BSD-3-Clause"
  2976. ],
  2977. "authors": [
  2978. {
  2979. "name": "Sebastian Bergmann",
  2980. "email": "sebastian@phpunit.de",
  2981. "role": "lead"
  2982. }
  2983. ],
  2984. "description": "Simple template engine.",
  2985. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2986. "keywords": [
  2987. "template"
  2988. ],
  2989. "time": "2015-06-21 13:50:34"
  2990. },
  2991. {
  2992. "name": "phpunit/php-timer",
  2993. "version": "1.0.7",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2997. "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
  3002. "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
  3003. "shasum": ""
  3004. },
  3005. "require": {
  3006. "php": ">=5.3.3"
  3007. },
  3008. "type": "library",
  3009. "autoload": {
  3010. "classmap": [
  3011. "src/"
  3012. ]
  3013. },
  3014. "notification-url": "https://packagist.org/downloads/",
  3015. "license": [
  3016. "BSD-3-Clause"
  3017. ],
  3018. "authors": [
  3019. {
  3020. "name": "Sebastian Bergmann",
  3021. "email": "sb@sebastian-bergmann.de",
  3022. "role": "lead"
  3023. }
  3024. ],
  3025. "description": "Utility class for timing",
  3026. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3027. "keywords": [
  3028. "timer"
  3029. ],
  3030. "time": "2015-06-21 08:01:12"
  3031. },
  3032. {
  3033. "name": "phpunit/php-token-stream",
  3034. "version": "1.4.8",
  3035. "source": {
  3036. "type": "git",
  3037. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3038. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  3039. },
  3040. "dist": {
  3041. "type": "zip",
  3042. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  3043. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  3044. "shasum": ""
  3045. },
  3046. "require": {
  3047. "ext-tokenizer": "*",
  3048. "php": ">=5.3.3"
  3049. },
  3050. "require-dev": {
  3051. "phpunit/phpunit": "~4.2"
  3052. },
  3053. "type": "library",
  3054. "extra": {
  3055. "branch-alias": {
  3056. "dev-master": "1.4-dev"
  3057. }
  3058. },
  3059. "autoload": {
  3060. "classmap": [
  3061. "src/"
  3062. ]
  3063. },
  3064. "notification-url": "https://packagist.org/downloads/",
  3065. "license": [
  3066. "BSD-3-Clause"
  3067. ],
  3068. "authors": [
  3069. {
  3070. "name": "Sebastian Bergmann",
  3071. "email": "sebastian@phpunit.de"
  3072. }
  3073. ],
  3074. "description": "Wrapper around PHP's tokenizer extension.",
  3075. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3076. "keywords": [
  3077. "tokenizer"
  3078. ],
  3079. "time": "2015-09-15 10:49:45"
  3080. },
  3081. {
  3082. "name": "phpunit/phpunit",
  3083. "version": "4.8.18",
  3084. "source": {
  3085. "type": "git",
  3086. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3087. "reference": "fa33d4ad96481b91df343d83e8c8aabed6b1dfd3"
  3088. },
  3089. "dist": {
  3090. "type": "zip",
  3091. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fa33d4ad96481b91df343d83e8c8aabed6b1dfd3",
  3092. "reference": "fa33d4ad96481b91df343d83e8c8aabed6b1dfd3",
  3093. "shasum": ""
  3094. },
  3095. "require": {
  3096. "ext-dom": "*",
  3097. "ext-json": "*",
  3098. "ext-pcre": "*",
  3099. "ext-reflection": "*",
  3100. "ext-spl": "*",
  3101. "php": ">=5.3.3",
  3102. "phpspec/prophecy": "^1.3.1",
  3103. "phpunit/php-code-coverage": "~2.1",
  3104. "phpunit/php-file-iterator": "~1.4",
  3105. "phpunit/php-text-template": "~1.2",
  3106. "phpunit/php-timer": ">=1.0.6",
  3107. "phpunit/phpunit-mock-objects": "~2.3",
  3108. "sebastian/comparator": "~1.1",
  3109. "sebastian/diff": "~1.2",
  3110. "sebastian/environment": "~1.3",
  3111. "sebastian/exporter": "~1.2",
  3112. "sebastian/global-state": "~1.0",
  3113. "sebastian/version": "~1.0",
  3114. "symfony/yaml": "~2.1|~3.0"
  3115. },
  3116. "suggest": {
  3117. "phpunit/php-invoker": "~1.1"
  3118. },
  3119. "bin": [
  3120. "phpunit"
  3121. ],
  3122. "type": "library",
  3123. "extra": {
  3124. "branch-alias": {
  3125. "dev-master": "4.8.x-dev"
  3126. }
  3127. },
  3128. "autoload": {
  3129. "classmap": [
  3130. "src/"
  3131. ]
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "BSD-3-Clause"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Sebastian Bergmann",
  3140. "email": "sebastian@phpunit.de",
  3141. "role": "lead"
  3142. }
  3143. ],
  3144. "description": "The PHP Unit Testing framework.",
  3145. "homepage": "https://phpunit.de/",
  3146. "keywords": [
  3147. "phpunit",
  3148. "testing",
  3149. "xunit"
  3150. ],
  3151. "time": "2015-11-11 11:32:49"
  3152. },
  3153. {
  3154. "name": "phpunit/phpunit-mock-objects",
  3155. "version": "2.3.8",
  3156. "source": {
  3157. "type": "git",
  3158. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3159. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  3160. },
  3161. "dist": {
  3162. "type": "zip",
  3163. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  3164. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  3165. "shasum": ""
  3166. },
  3167. "require": {
  3168. "doctrine/instantiator": "^1.0.2",
  3169. "php": ">=5.3.3",
  3170. "phpunit/php-text-template": "~1.2",
  3171. "sebastian/exporter": "~1.2"
  3172. },
  3173. "require-dev": {
  3174. "phpunit/phpunit": "~4.4"
  3175. },
  3176. "suggest": {
  3177. "ext-soap": "*"
  3178. },
  3179. "type": "library",
  3180. "extra": {
  3181. "branch-alias": {
  3182. "dev-master": "2.3.x-dev"
  3183. }
  3184. },
  3185. "autoload": {
  3186. "classmap": [
  3187. "src/"
  3188. ]
  3189. },
  3190. "notification-url": "https://packagist.org/downloads/",
  3191. "license": [
  3192. "BSD-3-Clause"
  3193. ],
  3194. "authors": [
  3195. {
  3196. "name": "Sebastian Bergmann",
  3197. "email": "sb@sebastian-bergmann.de",
  3198. "role": "lead"
  3199. }
  3200. ],
  3201. "description": "Mock Object library for PHPUnit",
  3202. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3203. "keywords": [
  3204. "mock",
  3205. "xunit"
  3206. ],
  3207. "time": "2015-10-02 06:51:40"
  3208. },
  3209. {
  3210. "name": "sebastian/comparator",
  3211. "version": "1.2.0",
  3212. "source": {
  3213. "type": "git",
  3214. "url": "https://github.com/sebastianbergmann/comparator.git",
  3215. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  3216. },
  3217. "dist": {
  3218. "type": "zip",
  3219. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
  3220. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  3221. "shasum": ""
  3222. },
  3223. "require": {
  3224. "php": ">=5.3.3",
  3225. "sebastian/diff": "~1.2",
  3226. "sebastian/exporter": "~1.2"
  3227. },
  3228. "require-dev": {
  3229. "phpunit/phpunit": "~4.4"
  3230. },
  3231. "type": "library",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-master": "1.2.x-dev"
  3235. }
  3236. },
  3237. "autoload": {
  3238. "classmap": [
  3239. "src/"
  3240. ]
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "BSD-3-Clause"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Jeff Welch",
  3249. "email": "whatthejeff@gmail.com"
  3250. },
  3251. {
  3252. "name": "Volker Dusch",
  3253. "email": "github@wallbash.com"
  3254. },
  3255. {
  3256. "name": "Bernhard Schussek",
  3257. "email": "bschussek@2bepublished.at"
  3258. },
  3259. {
  3260. "name": "Sebastian Bergmann",
  3261. "email": "sebastian@phpunit.de"
  3262. }
  3263. ],
  3264. "description": "Provides the functionality to compare PHP values for equality",
  3265. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  3266. "keywords": [
  3267. "comparator",
  3268. "compare",
  3269. "equality"
  3270. ],
  3271. "time": "2015-07-26 15:48:44"
  3272. },
  3273. {
  3274. "name": "sebastian/diff",
  3275. "version": "1.3.0",
  3276. "source": {
  3277. "type": "git",
  3278. "url": "https://github.com/sebastianbergmann/diff.git",
  3279. "reference": "863df9687835c62aa423a22412d26fa2ebde3fd3"
  3280. },
  3281. "dist": {
  3282. "type": "zip",
  3283. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/863df9687835c62aa423a22412d26fa2ebde3fd3",
  3284. "reference": "863df9687835c62aa423a22412d26fa2ebde3fd3",
  3285. "shasum": ""
  3286. },
  3287. "require": {
  3288. "php": ">=5.3.3"
  3289. },
  3290. "require-dev": {
  3291. "phpunit/phpunit": "~4.2"
  3292. },
  3293. "type": "library",
  3294. "extra": {
  3295. "branch-alias": {
  3296. "dev-master": "1.3-dev"
  3297. }
  3298. },
  3299. "autoload": {
  3300. "classmap": [
  3301. "src/"
  3302. ]
  3303. },
  3304. "notification-url": "https://packagist.org/downloads/",
  3305. "license": [
  3306. "BSD-3-Clause"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "Kore Nordmann",
  3311. "email": "mail@kore-nordmann.de"
  3312. },
  3313. {
  3314. "name": "Sebastian Bergmann",
  3315. "email": "sebastian@phpunit.de"
  3316. }
  3317. ],
  3318. "description": "Diff implementation",
  3319. "homepage": "http://www.github.com/sebastianbergmann/diff",
  3320. "keywords": [
  3321. "diff"
  3322. ],
  3323. "time": "2015-02-22 15:13:53"
  3324. },
  3325. {
  3326. "name": "sebastian/environment",
  3327. "version": "1.3.2",
  3328. "source": {
  3329. "type": "git",
  3330. "url": "https://github.com/sebastianbergmann/environment.git",
  3331. "reference": "6324c907ce7a52478eeeaede764f48733ef5ae44"
  3332. },
  3333. "dist": {
  3334. "type": "zip",
  3335. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6324c907ce7a52478eeeaede764f48733ef5ae44",
  3336. "reference": "6324c907ce7a52478eeeaede764f48733ef5ae44",
  3337. "shasum": ""
  3338. },
  3339. "require": {
  3340. "php": ">=5.3.3"
  3341. },
  3342. "require-dev": {
  3343. "phpunit/phpunit": "~4.4"
  3344. },
  3345. "type": "library",
  3346. "extra": {
  3347. "branch-alias": {
  3348. "dev-master": "1.3.x-dev"
  3349. }
  3350. },
  3351. "autoload": {
  3352. "classmap": [
  3353. "src/"
  3354. ]
  3355. },
  3356. "notification-url": "https://packagist.org/downloads/",
  3357. "license": [
  3358. "BSD-3-Clause"
  3359. ],
  3360. "authors": [
  3361. {
  3362. "name": "Sebastian Bergmann",
  3363. "email": "sebastian@phpunit.de"
  3364. }
  3365. ],
  3366. "description": "Provides functionality to handle HHVM/PHP environments",
  3367. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3368. "keywords": [
  3369. "Xdebug",
  3370. "environment",
  3371. "hhvm"
  3372. ],
  3373. "time": "2015-08-03 06:14:51"
  3374. },
  3375. {
  3376. "name": "sebastian/exporter",
  3377. "version": "1.2.1",
  3378. "source": {
  3379. "type": "git",
  3380. "url": "https://github.com/sebastianbergmann/exporter.git",
  3381. "reference": "7ae5513327cb536431847bcc0c10edba2701064e"
  3382. },
  3383. "dist": {
  3384. "type": "zip",
  3385. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e",
  3386. "reference": "7ae5513327cb536431847bcc0c10edba2701064e",
  3387. "shasum": ""
  3388. },
  3389. "require": {
  3390. "php": ">=5.3.3",
  3391. "sebastian/recursion-context": "~1.0"
  3392. },
  3393. "require-dev": {
  3394. "phpunit/phpunit": "~4.4"
  3395. },
  3396. "type": "library",
  3397. "extra": {
  3398. "branch-alias": {
  3399. "dev-master": "1.2.x-dev"
  3400. }
  3401. },
  3402. "autoload": {
  3403. "classmap": [
  3404. "src/"
  3405. ]
  3406. },
  3407. "notification-url": "https://packagist.org/downloads/",
  3408. "license": [
  3409. "BSD-3-Clause"
  3410. ],
  3411. "authors": [
  3412. {
  3413. "name": "Jeff Welch",
  3414. "email": "whatthejeff@gmail.com"
  3415. },
  3416. {
  3417. "name": "Volker Dusch",
  3418. "email": "github@wallbash.com"
  3419. },
  3420. {
  3421. "name": "Bernhard Schussek",
  3422. "email": "bschussek@2bepublished.at"
  3423. },
  3424. {
  3425. "name": "Sebastian Bergmann",
  3426. "email": "sebastian@phpunit.de"
  3427. },
  3428. {
  3429. "name": "Adam Harvey",
  3430. "email": "aharvey@php.net"
  3431. }
  3432. ],
  3433. "description": "Provides the functionality to export PHP variables for visualization",
  3434. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3435. "keywords": [
  3436. "export",
  3437. "exporter"
  3438. ],
  3439. "time": "2015-06-21 07:55:53"
  3440. },
  3441. {
  3442. "name": "sebastian/global-state",
  3443. "version": "1.1.1",
  3444. "source": {
  3445. "type": "git",
  3446. "url": "https://github.com/sebastianbergmann/global-state.git",
  3447. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3448. },
  3449. "dist": {
  3450. "type": "zip",
  3451. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3452. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3453. "shasum": ""
  3454. },
  3455. "require": {
  3456. "php": ">=5.3.3"
  3457. },
  3458. "require-dev": {
  3459. "phpunit/phpunit": "~4.2"
  3460. },
  3461. "suggest": {
  3462. "ext-uopz": "*"
  3463. },
  3464. "type": "library",
  3465. "extra": {
  3466. "branch-alias": {
  3467. "dev-master": "1.0-dev"
  3468. }
  3469. },
  3470. "autoload": {
  3471. "classmap": [
  3472. "src/"
  3473. ]
  3474. },
  3475. "notification-url": "https://packagist.org/downloads/",
  3476. "license": [
  3477. "BSD-3-Clause"
  3478. ],
  3479. "authors": [
  3480. {
  3481. "name": "Sebastian Bergmann",
  3482. "email": "sebastian@phpunit.de"
  3483. }
  3484. ],
  3485. "description": "Snapshotting of global state",
  3486. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3487. "keywords": [
  3488. "global state"
  3489. ],
  3490. "time": "2015-10-12 03:26:01"
  3491. },
  3492. {
  3493. "name": "sebastian/recursion-context",
  3494. "version": "1.0.1",
  3495. "source": {
  3496. "type": "git",
  3497. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3498. "reference": "994d4a811bafe801fb06dccbee797863ba2792ba"
  3499. },
  3500. "dist": {
  3501. "type": "zip",
  3502. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/994d4a811bafe801fb06dccbee797863ba2792ba",
  3503. "reference": "994d4a811bafe801fb06dccbee797863ba2792ba",
  3504. "shasum": ""
  3505. },
  3506. "require": {
  3507. "php": ">=5.3.3"
  3508. },
  3509. "require-dev": {
  3510. "phpunit/phpunit": "~4.4"
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "branch-alias": {
  3515. "dev-master": "1.0.x-dev"
  3516. }
  3517. },
  3518. "autoload": {
  3519. "classmap": [
  3520. "src/"
  3521. ]
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "BSD-3-Clause"
  3526. ],
  3527. "authors": [
  3528. {
  3529. "name": "Jeff Welch",
  3530. "email": "whatthejeff@gmail.com"
  3531. },
  3532. {
  3533. "name": "Sebastian Bergmann",
  3534. "email": "sebastian@phpunit.de"
  3535. },
  3536. {
  3537. "name": "Adam Harvey",
  3538. "email": "aharvey@php.net"
  3539. }
  3540. ],
  3541. "description": "Provides functionality to recursively process PHP variables",
  3542. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3543. "time": "2015-06-21 08:04:50"
  3544. },
  3545. {
  3546. "name": "sebastian/version",
  3547. "version": "1.0.6",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/sebastianbergmann/version.git",
  3551. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3556. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3557. "shasum": ""
  3558. },
  3559. "type": "library",
  3560. "autoload": {
  3561. "classmap": [
  3562. "src/"
  3563. ]
  3564. },
  3565. "notification-url": "https://packagist.org/downloads/",
  3566. "license": [
  3567. "BSD-3-Clause"
  3568. ],
  3569. "authors": [
  3570. {
  3571. "name": "Sebastian Bergmann",
  3572. "email": "sebastian@phpunit.de",
  3573. "role": "lead"
  3574. }
  3575. ],
  3576. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3577. "homepage": "https://github.com/sebastianbergmann/version",
  3578. "time": "2015-06-21 13:59:46"
  3579. },
  3580. {
  3581. "name": "symfony/yaml",
  3582. "version": "v2.7.7",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/symfony/yaml.git",
  3586. "reference": "4cfcd7a9fceba662b3c036b7d9a91f6197af046c"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/symfony/yaml/zipball/4cfcd7a9fceba662b3c036b7d9a91f6197af046c",
  3591. "reference": "4cfcd7a9fceba662b3c036b7d9a91f6197af046c",
  3592. "shasum": ""
  3593. },
  3594. "require": {
  3595. "php": ">=5.3.9"
  3596. },
  3597. "type": "library",
  3598. "extra": {
  3599. "branch-alias": {
  3600. "dev-master": "2.7-dev"
  3601. }
  3602. },
  3603. "autoload": {
  3604. "psr-4": {
  3605. "Symfony\\Component\\Yaml\\": ""
  3606. },
  3607. "exclude-from-classmap": [
  3608. "/Tests/"
  3609. ]
  3610. },
  3611. "notification-url": "https://packagist.org/downloads/",
  3612. "license": [
  3613. "MIT"
  3614. ],
  3615. "authors": [
  3616. {
  3617. "name": "Fabien Potencier",
  3618. "email": "fabien@symfony.com"
  3619. },
  3620. {
  3621. "name": "Symfony Community",
  3622. "homepage": "https://symfony.com/contributors"
  3623. }
  3624. ],
  3625. "description": "Symfony Yaml Component",
  3626. "homepage": "https://symfony.com",
  3627. "time": "2015-11-18 13:41:01"
  3628. }
  3629. ],
  3630. "aliases": [],
  3631. "minimum-stability": "stable",
  3632. "stability-flags": [],
  3633. "prefer-stable": false,
  3634. "prefer-lowest": false,
  3635. "platform": {
  3636. "php": ">=5.5.9"
  3637. },
  3638. "platform-dev": []
  3639. }