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

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