Нет описания

composer.lock 114KB

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