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

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