composer.lock 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425
  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": "f81bd6260fda61587c56b6b0997259ff",
  8. "content-hash": "60d67442588b253eec3f7d8dbf1d492d",
  9. "packages": [
  10. {
  11. "name": "barryvdh/laravel-ide-helper",
  12. "version": "v2.3.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  16. "reference": "555d3e37009bdb78f5d8bcea6eb8a816529a5cfa"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://packagist.phpcomposer.com/files/barryvdh/laravel-ide-helper/555d3e37009bdb78f5d8bcea6eb8a816529a5cfa.zip",
  21. "reference": "555d3e37009bdb78f5d8bcea6eb8a816529a5cfa",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "barryvdh/reflection-docblock": "^2.0.4",
  26. "illuminate/console": "^5.0,<5.5",
  27. "illuminate/filesystem": "^5.0,<5.5",
  28. "illuminate/support": "^5.0,<5.5",
  29. "php": ">=5.4.0",
  30. "symfony/class-loader": "^2.3|^3.0"
  31. },
  32. "require-dev": {
  33. "doctrine/dbal": "~2.3",
  34. "phpunit/phpunit": "4.*",
  35. "scrutinizer/ocular": "~1.1",
  36. "squizlabs/php_codesniffer": "~2.3"
  37. },
  38. "suggest": {
  39. "doctrine/dbal": "Load information from the database about models for phpdocs (~2.3)"
  40. },
  41. "type": "library",
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "2.2-dev"
  45. }
  46. },
  47. "autoload": {
  48. "psr-4": {
  49. "Barryvdh\\LaravelIdeHelper\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Barry vd. Heuvel",
  59. "email": "barryvdh@gmail.com"
  60. }
  61. ],
  62. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  63. "keywords": [
  64. "autocomplete",
  65. "codeintel",
  66. "helper",
  67. "ide",
  68. "laravel",
  69. "netbeans",
  70. "phpdoc",
  71. "phpstorm",
  72. "sublime"
  73. ],
  74. "time": "2017-02-13 19:20:12"
  75. },
  76. {
  77. "name": "barryvdh/reflection-docblock",
  78. "version": "v2.0.4",
  79. "source": {
  80. "type": "git",
  81. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  82. "reference": "3dcbd98b5d9384a5357266efba8fd29884458e5c"
  83. },
  84. "dist": {
  85. "type": "zip",
  86. "url": "https://packagist.phpcomposer.com/files/barryvdh/ReflectionDocBlock/3dcbd98b5d9384a5357266efba8fd29884458e5c.zip",
  87. "reference": "3dcbd98b5d9384a5357266efba8fd29884458e5c",
  88. "shasum": ""
  89. },
  90. "require": {
  91. "php": ">=5.3.3"
  92. },
  93. "require-dev": {
  94. "phpunit/phpunit": "~4.0,<4.5"
  95. },
  96. "suggest": {
  97. "dflydev/markdown": "~1.0",
  98. "erusev/parsedown": "~1.0"
  99. },
  100. "type": "library",
  101. "extra": {
  102. "branch-alias": {
  103. "dev-master": "2.0.x-dev"
  104. }
  105. },
  106. "autoload": {
  107. "psr-0": {
  108. "Barryvdh": [
  109. "src/"
  110. ]
  111. }
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "MIT"
  116. ],
  117. "authors": [
  118. {
  119. "name": "Mike van Riel",
  120. "email": "mike.vanriel@naenius.com"
  121. }
  122. ],
  123. "time": "2016-06-13 19:28:20"
  124. },
  125. {
  126. "name": "classpreloader/classpreloader",
  127. "version": "3.1.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/ClassPreloader/ClassPreloader.git",
  131. "reference": "bc7206aa892b5a33f4680421b69b191efd32b096"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/ClassPreloader/ClassPreloader/zipball/bc7206aa892b5a33f4680421b69b191efd32b096",
  136. "reference": "bc7206aa892b5a33f4680421b69b191efd32b096",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "nikic/php-parser": "^1.0|^2.0|^3.0",
  141. "php": ">=5.5.9"
  142. },
  143. "require-dev": {
  144. "phpunit/phpunit": "^4.8|^5.0"
  145. },
  146. "type": "library",
  147. "extra": {
  148. "branch-alias": {
  149. "dev-master": "3.1-dev"
  150. }
  151. },
  152. "autoload": {
  153. "psr-4": {
  154. "ClassPreloader\\": "src/"
  155. }
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "MIT"
  160. ],
  161. "authors": [
  162. {
  163. "name": "Michael Dowling",
  164. "email": "mtdowling@gmail.com"
  165. },
  166. {
  167. "name": "Graham Campbell",
  168. "email": "graham@alt-three.com"
  169. }
  170. ],
  171. "description": "Helps class loading performance by generating a single PHP file containing all of the autoloaded files for a specific use case",
  172. "keywords": [
  173. "autoload",
  174. "class",
  175. "preload"
  176. ],
  177. "time": "2016-09-16 12:50:15"
  178. },
  179. {
  180. "name": "dnoegel/php-xdg-base-dir",
  181. "version": "0.1",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  185. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  190. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "php": ">=5.3.2"
  195. },
  196. "require-dev": {
  197. "phpunit/phpunit": "@stable"
  198. },
  199. "type": "project",
  200. "autoload": {
  201. "psr-4": {
  202. "XdgBaseDir\\": "src/"
  203. }
  204. },
  205. "notification-url": "https://packagist.org/downloads/",
  206. "license": [
  207. "MIT"
  208. ],
  209. "description": "implementation of xdg base directory specification for php",
  210. "time": "2014-10-24 07:27:01"
  211. },
  212. {
  213. "name": "doctrine/inflector",
  214. "version": "v1.1.0",
  215. "source": {
  216. "type": "git",
  217. "url": "https://github.com/doctrine/inflector.git",
  218. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  219. },
  220. "dist": {
  221. "type": "zip",
  222. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  223. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  224. "shasum": ""
  225. },
  226. "require": {
  227. "php": ">=5.3.2"
  228. },
  229. "require-dev": {
  230. "phpunit/phpunit": "4.*"
  231. },
  232. "type": "library",
  233. "extra": {
  234. "branch-alias": {
  235. "dev-master": "1.1.x-dev"
  236. }
  237. },
  238. "autoload": {
  239. "psr-0": {
  240. "Doctrine\\Common\\Inflector\\": "lib/"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Roman Borschel",
  250. "email": "roman@code-factory.org"
  251. },
  252. {
  253. "name": "Benjamin Eberlei",
  254. "email": "kontakt@beberlei.de"
  255. },
  256. {
  257. "name": "Guilherme Blanco",
  258. "email": "guilhermeblanco@gmail.com"
  259. },
  260. {
  261. "name": "Jonathan Wage",
  262. "email": "jonwage@gmail.com"
  263. },
  264. {
  265. "name": "Johannes Schmitt",
  266. "email": "schmittjoh@gmail.com"
  267. }
  268. ],
  269. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  270. "homepage": "http://www.doctrine-project.org",
  271. "keywords": [
  272. "inflection",
  273. "pluralize",
  274. "singularize",
  275. "string"
  276. ],
  277. "time": "2015-11-06 14:35:42"
  278. },
  279. {
  280. "name": "erusev/parsedown",
  281. "version": "1.6.1",
  282. "source": {
  283. "type": "git",
  284. "url": "https://github.com/erusev/parsedown.git",
  285. "reference": "20ff8bbb57205368b4b42d094642a3e52dac85fb"
  286. },
  287. "dist": {
  288. "type": "zip",
  289. "url": "https://files.phpcomposer.com/files/erusev/parsedown/20ff8bbb57205368b4b42d094642a3e52dac85fb.zip",
  290. "reference": "20ff8bbb57205368b4b42d094642a3e52dac85fb",
  291. "shasum": ""
  292. },
  293. "require": {
  294. "php": ">=5.3.0"
  295. },
  296. "type": "library",
  297. "autoload": {
  298. "psr-0": {
  299. "Parsedown": ""
  300. }
  301. },
  302. "notification-url": "https://packagist.org/downloads/",
  303. "license": [
  304. "MIT"
  305. ],
  306. "authors": [
  307. {
  308. "name": "Emanuil Rusev",
  309. "email": "hello@erusev.com",
  310. "homepage": "http://erusev.com"
  311. }
  312. ],
  313. "description": "Parser for Markdown.",
  314. "homepage": "http://parsedown.org",
  315. "keywords": [
  316. "markdown",
  317. "parser"
  318. ],
  319. "time": "2016-11-02 15:56:58"
  320. },
  321. {
  322. "name": "ezyang/htmlpurifier",
  323. "version": "v4.8.0",
  324. "source": {
  325. "type": "git",
  326. "url": "https://github.com/ezyang/htmlpurifier.git",
  327. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2"
  328. },
  329. "dist": {
  330. "type": "zip",
  331. "url": "https://packagist.phpcomposer.com/files/ezyang/htmlpurifier/d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2.zip",
  332. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  333. "shasum": ""
  334. },
  335. "require": {
  336. "php": ">=5.2"
  337. },
  338. "type": "library",
  339. "autoload": {
  340. "psr-0": {
  341. "HTMLPurifier": "library/"
  342. },
  343. "files": [
  344. "library/HTMLPurifier.composer.php"
  345. ]
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "LGPL"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Edward Z. Yang",
  354. "email": "admin@htmlpurifier.org",
  355. "homepage": "http://ezyang.com"
  356. }
  357. ],
  358. "description": "Standards compliant HTML filter written in PHP",
  359. "homepage": "http://htmlpurifier.org/",
  360. "keywords": [
  361. "html"
  362. ],
  363. "time": "2016-07-16 12:58:58"
  364. },
  365. {
  366. "name": "guzzlehttp/guzzle",
  367. "version": "6.2.2",
  368. "source": {
  369. "type": "git",
  370. "url": "https://github.com/guzzle/guzzle.git",
  371. "reference": "ebf29dee597f02f09f4d5bbecc68230ea9b08f60"
  372. },
  373. "dist": {
  374. "type": "zip",
  375. "url": "https://packagist.phpcomposer.com/files/guzzle/guzzle/ebf29dee597f02f09f4d5bbecc68230ea9b08f60.zip",
  376. "reference": "ebf29dee597f02f09f4d5bbecc68230ea9b08f60",
  377. "shasum": ""
  378. },
  379. "require": {
  380. "guzzlehttp/promises": "^1.0",
  381. "guzzlehttp/psr7": "^1.3.1",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "ext-curl": "*",
  386. "phpunit/phpunit": "^4.0",
  387. "psr/log": "^1.0"
  388. },
  389. "type": "library",
  390. "extra": {
  391. "branch-alias": {
  392. "dev-master": "6.2-dev"
  393. }
  394. },
  395. "autoload": {
  396. "files": [
  397. "src/functions_include.php"
  398. ],
  399. "psr-4": {
  400. "GuzzleHttp\\": "src/"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "MIT"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Michael Dowling",
  410. "email": "mtdowling@gmail.com",
  411. "homepage": "https://github.com/mtdowling"
  412. }
  413. ],
  414. "description": "Guzzle is a PHP HTTP client library",
  415. "homepage": "http://guzzlephp.org/",
  416. "keywords": [
  417. "client",
  418. "curl",
  419. "framework",
  420. "http",
  421. "http client",
  422. "rest",
  423. "web service"
  424. ],
  425. "time": "2016-10-08 15:01:37"
  426. },
  427. {
  428. "name": "guzzlehttp/promises",
  429. "version": "v1.3.1",
  430. "source": {
  431. "type": "git",
  432. "url": "https://github.com/guzzle/promises.git",
  433. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  434. },
  435. "dist": {
  436. "type": "zip",
  437. "url": "https://packagist.phpcomposer.com/files/guzzle/promises/a59da6cf61d80060647ff4d3eb2c03a2bc694646.zip",
  438. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  439. "shasum": ""
  440. },
  441. "require": {
  442. "php": ">=5.5.0"
  443. },
  444. "require-dev": {
  445. "phpunit/phpunit": "^4.0"
  446. },
  447. "type": "library",
  448. "extra": {
  449. "branch-alias": {
  450. "dev-master": "1.4-dev"
  451. }
  452. },
  453. "autoload": {
  454. "psr-4": {
  455. "GuzzleHttp\\Promise\\": "src/"
  456. },
  457. "files": [
  458. "src/functions_include.php"
  459. ]
  460. },
  461. "notification-url": "https://packagist.org/downloads/",
  462. "license": [
  463. "MIT"
  464. ],
  465. "authors": [
  466. {
  467. "name": "Michael Dowling",
  468. "email": "mtdowling@gmail.com",
  469. "homepage": "https://github.com/mtdowling"
  470. }
  471. ],
  472. "description": "Guzzle promises library",
  473. "keywords": [
  474. "promise"
  475. ],
  476. "time": "2016-12-20 10:07:11"
  477. },
  478. {
  479. "name": "guzzlehttp/psr7",
  480. "version": "1.3.1",
  481. "source": {
  482. "type": "git",
  483. "url": "https://github.com/guzzle/psr7.git",
  484. "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b"
  485. },
  486. "dist": {
  487. "type": "zip",
  488. "url": "https://packagist.phpcomposer.com/files/guzzle/psr7/5c6447c9df362e8f8093bda8f5d8873fe5c7f65b.zip",
  489. "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b",
  490. "shasum": ""
  491. },
  492. "require": {
  493. "php": ">=5.4.0",
  494. "psr/http-message": "~1.0"
  495. },
  496. "provide": {
  497. "psr/http-message-implementation": "1.0"
  498. },
  499. "require-dev": {
  500. "phpunit/phpunit": "~4.0"
  501. },
  502. "type": "library",
  503. "extra": {
  504. "branch-alias": {
  505. "dev-master": "1.4-dev"
  506. }
  507. },
  508. "autoload": {
  509. "psr-4": {
  510. "GuzzleHttp\\Psr7\\": "src/"
  511. },
  512. "files": [
  513. "src/functions_include.php"
  514. ]
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "MIT"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Michael Dowling",
  523. "email": "mtdowling@gmail.com",
  524. "homepage": "https://github.com/mtdowling"
  525. }
  526. ],
  527. "description": "PSR-7 message implementation",
  528. "keywords": [
  529. "http",
  530. "message",
  531. "stream",
  532. "uri"
  533. ],
  534. "time": "2016-06-24 23:00:38"
  535. },
  536. {
  537. "name": "intervention/image",
  538. "version": "2.3.11",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/Intervention/image.git",
  542. "reference": "e8881fd99b9804b29e02d6d1c2c15ee459335cf1"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://packagist.phpcomposer.com/files/Intervention/image/e8881fd99b9804b29e02d6d1c2c15ee459335cf1.zip",
  547. "reference": "e8881fd99b9804b29e02d6d1c2c15ee459335cf1",
  548. "shasum": ""
  549. },
  550. "require": {
  551. "ext-fileinfo": "*",
  552. "guzzlehttp/psr7": "~1.1",
  553. "php": ">=5.4.0"
  554. },
  555. "require-dev": {
  556. "mockery/mockery": "~0.9.2",
  557. "phpunit/phpunit": "3.*"
  558. },
  559. "suggest": {
  560. "ext-gd": "to use GD library based image processing.",
  561. "ext-imagick": "to use Imagick based image processing.",
  562. "intervention/imagecache": "Caching extension for the Intervention Image library"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-master": "2.3-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Intervention\\Image\\": "src/Intervention/Image"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Oliver Vogel",
  582. "email": "oliver@olivervogel.net",
  583. "homepage": "http://olivervogel.net/"
  584. }
  585. ],
  586. "description": "Image handling and manipulation library with support for Laravel integration",
  587. "homepage": "http://image.intervention.io/",
  588. "keywords": [
  589. "gd",
  590. "image",
  591. "imagick",
  592. "laravel",
  593. "thumbnail",
  594. "watermark"
  595. ],
  596. "time": "2017-02-04 10:37:19"
  597. },
  598. {
  599. "name": "jakub-onderka/php-console-color",
  600. "version": "0.1",
  601. "source": {
  602. "type": "git",
  603. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  604. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  605. },
  606. "dist": {
  607. "type": "zip",
  608. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  609. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  610. "shasum": ""
  611. },
  612. "require": {
  613. "php": ">=5.3.2"
  614. },
  615. "require-dev": {
  616. "jakub-onderka/php-code-style": "1.0",
  617. "jakub-onderka/php-parallel-lint": "0.*",
  618. "jakub-onderka/php-var-dump-check": "0.*",
  619. "phpunit/phpunit": "3.7.*",
  620. "squizlabs/php_codesniffer": "1.*"
  621. },
  622. "type": "library",
  623. "autoload": {
  624. "psr-0": {
  625. "JakubOnderka\\PhpConsoleColor": "src/"
  626. }
  627. },
  628. "notification-url": "https://packagist.org/downloads/",
  629. "license": [
  630. "BSD-2-Clause"
  631. ],
  632. "authors": [
  633. {
  634. "name": "Jakub Onderka",
  635. "email": "jakub.onderka@gmail.com",
  636. "homepage": "http://www.acci.cz"
  637. }
  638. ],
  639. "time": "2014-04-08 15:00:19"
  640. },
  641. {
  642. "name": "jakub-onderka/php-console-highlighter",
  643. "version": "v0.3.2",
  644. "source": {
  645. "type": "git",
  646. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  647. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  648. },
  649. "dist": {
  650. "type": "zip",
  651. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  652. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  653. "shasum": ""
  654. },
  655. "require": {
  656. "jakub-onderka/php-console-color": "~0.1",
  657. "php": ">=5.3.0"
  658. },
  659. "require-dev": {
  660. "jakub-onderka/php-code-style": "~1.0",
  661. "jakub-onderka/php-parallel-lint": "~0.5",
  662. "jakub-onderka/php-var-dump-check": "~0.1",
  663. "phpunit/phpunit": "~4.0",
  664. "squizlabs/php_codesniffer": "~1.5"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-0": {
  669. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Jakub Onderka",
  679. "email": "acci@acci.cz",
  680. "homepage": "http://www.acci.cz/"
  681. }
  682. ],
  683. "time": "2015-04-20 18:58:01"
  684. },
  685. {
  686. "name": "jeremeamia/SuperClosure",
  687. "version": "2.3.0",
  688. "source": {
  689. "type": "git",
  690. "url": "https://github.com/jeremeamia/super_closure.git",
  691. "reference": "443c3df3207f176a1b41576ee2a66968a507b3db"
  692. },
  693. "dist": {
  694. "type": "zip",
  695. "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/443c3df3207f176a1b41576ee2a66968a507b3db",
  696. "reference": "443c3df3207f176a1b41576ee2a66968a507b3db",
  697. "shasum": ""
  698. },
  699. "require": {
  700. "nikic/php-parser": "^1.2|^2.0|^3.0",
  701. "php": ">=5.4",
  702. "symfony/polyfill-php56": "^1.0"
  703. },
  704. "require-dev": {
  705. "phpunit/phpunit": "^4.0|^5.0"
  706. },
  707. "type": "library",
  708. "extra": {
  709. "branch-alias": {
  710. "dev-master": "2.3-dev"
  711. }
  712. },
  713. "autoload": {
  714. "psr-4": {
  715. "SuperClosure\\": "src/"
  716. }
  717. },
  718. "notification-url": "https://packagist.org/downloads/",
  719. "license": [
  720. "MIT"
  721. ],
  722. "authors": [
  723. {
  724. "name": "Jeremy Lindblom",
  725. "email": "jeremeamia@gmail.com",
  726. "homepage": "https://github.com/jeremeamia",
  727. "role": "Developer"
  728. }
  729. ],
  730. "description": "Serialize Closure objects, including their context and binding",
  731. "homepage": "https://github.com/jeremeamia/super_closure",
  732. "keywords": [
  733. "closure",
  734. "function",
  735. "lambda",
  736. "parser",
  737. "serializable",
  738. "serialize",
  739. "tokenizer"
  740. ],
  741. "time": "2016-12-07 09:37:55"
  742. },
  743. {
  744. "name": "laravel/framework",
  745. "version": "v5.3.30",
  746. "source": {
  747. "type": "git",
  748. "url": "https://github.com/laravel/framework.git",
  749. "reference": "2d4e8c95f584b38d2279b552e2868fc447b97578"
  750. },
  751. "dist": {
  752. "type": "zip",
  753. "url": "https://packagist.phpcomposer.com/files/laravel/framework/2d4e8c95f584b38d2279b552e2868fc447b97578.zip",
  754. "reference": "2d4e8c95f584b38d2279b552e2868fc447b97578",
  755. "shasum": ""
  756. },
  757. "require": {
  758. "classpreloader/classpreloader": "~3.0",
  759. "doctrine/inflector": "~1.0",
  760. "ext-mbstring": "*",
  761. "ext-openssl": "*",
  762. "jeremeamia/superclosure": "~2.2",
  763. "league/flysystem": "~1.0",
  764. "monolog/monolog": "~1.11",
  765. "mtdowling/cron-expression": "~1.0",
  766. "nesbot/carbon": "~1.20",
  767. "paragonie/random_compat": "~1.4|~2.0",
  768. "php": ">=5.6.4",
  769. "psy/psysh": "0.7.*|0.8.*",
  770. "ramsey/uuid": "~3.0",
  771. "swiftmailer/swiftmailer": "~5.4",
  772. "symfony/console": "3.1.*",
  773. "symfony/debug": "3.1.*",
  774. "symfony/finder": "3.1.*",
  775. "symfony/http-foundation": "3.1.*",
  776. "symfony/http-kernel": "3.1.*",
  777. "symfony/process": "3.1.*",
  778. "symfony/routing": "3.1.*",
  779. "symfony/translation": "3.1.*",
  780. "symfony/var-dumper": "3.1.*",
  781. "vlucas/phpdotenv": "~2.2"
  782. },
  783. "replace": {
  784. "illuminate/auth": "self.version",
  785. "illuminate/broadcasting": "self.version",
  786. "illuminate/bus": "self.version",
  787. "illuminate/cache": "self.version",
  788. "illuminate/config": "self.version",
  789. "illuminate/console": "self.version",
  790. "illuminate/container": "self.version",
  791. "illuminate/contracts": "self.version",
  792. "illuminate/cookie": "self.version",
  793. "illuminate/database": "self.version",
  794. "illuminate/encryption": "self.version",
  795. "illuminate/events": "self.version",
  796. "illuminate/exception": "self.version",
  797. "illuminate/filesystem": "self.version",
  798. "illuminate/hashing": "self.version",
  799. "illuminate/http": "self.version",
  800. "illuminate/log": "self.version",
  801. "illuminate/mail": "self.version",
  802. "illuminate/notifications": "self.version",
  803. "illuminate/pagination": "self.version",
  804. "illuminate/pipeline": "self.version",
  805. "illuminate/queue": "self.version",
  806. "illuminate/redis": "self.version",
  807. "illuminate/routing": "self.version",
  808. "illuminate/session": "self.version",
  809. "illuminate/support": "self.version",
  810. "illuminate/translation": "self.version",
  811. "illuminate/validation": "self.version",
  812. "illuminate/view": "self.version",
  813. "tightenco/collect": "self.version"
  814. },
  815. "require-dev": {
  816. "aws/aws-sdk-php": "~3.0",
  817. "mockery/mockery": "~0.9.4",
  818. "pda/pheanstalk": "~3.0",
  819. "phpunit/phpunit": "~5.4",
  820. "predis/predis": "~1.0",
  821. "symfony/css-selector": "3.1.*",
  822. "symfony/dom-crawler": "3.1.*"
  823. },
  824. "suggest": {
  825. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  826. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
  827. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  828. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~5.3|~6.0).",
  829. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  830. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  831. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  832. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  833. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).",
  834. "symfony/css-selector": "Required to use some of the crawler integration testing tools (3.1.*).",
  835. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (3.1.*).",
  836. "symfony/psr-http-message-bridge": "Required to use psr7 bridging features (0.2.*)."
  837. },
  838. "type": "library",
  839. "extra": {
  840. "branch-alias": {
  841. "dev-master": "5.3-dev"
  842. }
  843. },
  844. "autoload": {
  845. "files": [
  846. "src/Illuminate/Foundation/helpers.php",
  847. "src/Illuminate/Support/helpers.php"
  848. ],
  849. "psr-4": {
  850. "Illuminate\\": "src/Illuminate/"
  851. }
  852. },
  853. "notification-url": "https://packagist.org/downloads/",
  854. "license": [
  855. "MIT"
  856. ],
  857. "authors": [
  858. {
  859. "name": "Taylor Otwell",
  860. "email": "taylor@laravel.com"
  861. }
  862. ],
  863. "description": "The Laravel Framework.",
  864. "homepage": "https://laravel.com",
  865. "keywords": [
  866. "framework",
  867. "laravel"
  868. ],
  869. "time": "2017-01-26 14:29:55"
  870. },
  871. {
  872. "name": "laravel/socialite",
  873. "version": "v2.0.20",
  874. "source": {
  875. "type": "git",
  876. "url": "https://github.com/laravel/socialite.git",
  877. "reference": "aca8de9a93a28a119714e289c8bc599bd81aa88d"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://packagist.phpcomposer.com/files/laravel/socialite/aca8de9a93a28a119714e289c8bc599bd81aa88d.zip",
  882. "reference": "aca8de9a93a28a119714e289c8bc599bd81aa88d",
  883. "shasum": ""
  884. },
  885. "require": {
  886. "guzzlehttp/guzzle": "~5.0|~6.0",
  887. "illuminate/contracts": "~5.0",
  888. "illuminate/http": "~5.0",
  889. "illuminate/support": "~5.0",
  890. "league/oauth1-client": "~1.0",
  891. "php": ">=5.4.0"
  892. },
  893. "require-dev": {
  894. "mockery/mockery": "~0.9",
  895. "phpunit/phpunit": "~4.0|~5.0"
  896. },
  897. "type": "library",
  898. "extra": {
  899. "branch-alias": {
  900. "dev-master": "3.0-dev"
  901. }
  902. },
  903. "autoload": {
  904. "psr-4": {
  905. "Laravel\\Socialite\\": "src/"
  906. }
  907. },
  908. "notification-url": "https://packagist.org/downloads/",
  909. "license": [
  910. "MIT"
  911. ],
  912. "authors": [
  913. {
  914. "name": "Taylor Otwell",
  915. "email": "taylorotwell@gmail.com"
  916. }
  917. ],
  918. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  919. "keywords": [
  920. "laravel",
  921. "oauth"
  922. ],
  923. "time": "2016-11-01 18:49:10"
  924. },
  925. {
  926. "name": "league/flysystem",
  927. "version": "1.0.35",
  928. "source": {
  929. "type": "git",
  930. "url": "https://github.com/thephpleague/flysystem.git",
  931. "reference": "dda7f3ab94158a002d9846a97dc18ebfb7acc062"
  932. },
  933. "dist": {
  934. "type": "zip",
  935. "url": "https://packagist.phpcomposer.com/files/thephpleague/flysystem/dda7f3ab94158a002d9846a97dc18ebfb7acc062.zip",
  936. "reference": "dda7f3ab94158a002d9846a97dc18ebfb7acc062",
  937. "shasum": ""
  938. },
  939. "require": {
  940. "php": ">=5.5.9"
  941. },
  942. "conflict": {
  943. "league/flysystem-sftp": "<1.0.6"
  944. },
  945. "require-dev": {
  946. "ext-fileinfo": "*",
  947. "mockery/mockery": "~0.9",
  948. "phpspec/phpspec": "^2.2",
  949. "phpunit/phpunit": "~4.8"
  950. },
  951. "suggest": {
  952. "ext-fileinfo": "Required for MimeType",
  953. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  954. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  955. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  956. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  957. "league/flysystem-copy": "Allows you to use Copy.com storage",
  958. "league/flysystem-dropbox": "Allows you to use Dropbox storage",
  959. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  960. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  961. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  962. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  963. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter"
  964. },
  965. "type": "library",
  966. "extra": {
  967. "branch-alias": {
  968. "dev-master": "1.1-dev"
  969. }
  970. },
  971. "autoload": {
  972. "psr-4": {
  973. "League\\Flysystem\\": "src/"
  974. }
  975. },
  976. "notification-url": "https://packagist.org/downloads/",
  977. "license": [
  978. "MIT"
  979. ],
  980. "authors": [
  981. {
  982. "name": "Frank de Jonge",
  983. "email": "info@frenky.net"
  984. }
  985. ],
  986. "description": "Filesystem abstraction: Many filesystems, one API.",
  987. "keywords": [
  988. "Cloud Files",
  989. "WebDAV",
  990. "abstraction",
  991. "aws",
  992. "cloud",
  993. "copy.com",
  994. "dropbox",
  995. "file systems",
  996. "files",
  997. "filesystem",
  998. "filesystems",
  999. "ftp",
  1000. "rackspace",
  1001. "remote",
  1002. "s3",
  1003. "sftp",
  1004. "storage"
  1005. ],
  1006. "time": "2017-02-09 11:33:58"
  1007. },
  1008. {
  1009. "name": "league/html-to-markdown",
  1010. "version": "4.4.0",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/thephpleague/html-to-markdown.git",
  1014. "reference": "13bd919efe19577084d73d14f8733244128eeaba"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://packagist.phpcomposer.com/files/thephpleague/html-to-markdown/13bd919efe19577084d73d14f8733244128eeaba.zip",
  1019. "reference": "13bd919efe19577084d73d14f8733244128eeaba",
  1020. "shasum": ""
  1021. },
  1022. "require": {
  1023. "ext-dom": "*",
  1024. "ext-xml": "*",
  1025. "php": ">=5.3.3"
  1026. },
  1027. "require-dev": {
  1028. "mikehaertl/php-shellcommand": "~1.1.0",
  1029. "phpunit/phpunit": "4.*",
  1030. "scrutinizer/ocular": "~1.1"
  1031. },
  1032. "bin": [
  1033. "bin/html-to-markdown"
  1034. ],
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "4.5-dev"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "psr-4": {
  1043. "League\\HTMLToMarkdown\\": "src/"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "Colin O'Dell",
  1053. "email": "colinodell@gmail.com",
  1054. "homepage": "http://www.colinodell.com",
  1055. "role": "Lead Developer"
  1056. },
  1057. {
  1058. "name": "Nick Cernis",
  1059. "email": "nick@cern.is",
  1060. "homepage": "http://modernnerd.net",
  1061. "role": "Original Author"
  1062. }
  1063. ],
  1064. "description": "An HTML-to-markdown conversion helper for PHP",
  1065. "homepage": "https://github.com/thephpleague/html-to-markdown",
  1066. "keywords": [
  1067. "html",
  1068. "markdown"
  1069. ],
  1070. "time": "2016-12-28 22:51:42"
  1071. },
  1072. {
  1073. "name": "league/oauth1-client",
  1074. "version": "1.7.0",
  1075. "source": {
  1076. "type": "git",
  1077. "url": "https://github.com/thephpleague/oauth1-client.git",
  1078. "reference": "fca5f160650cb74d23fc11aa570dd61f86dcf647"
  1079. },
  1080. "dist": {
  1081. "type": "zip",
  1082. "url": "https://packagist.phpcomposer.com/files/thephpleague/oauth1-client/fca5f160650cb74d23fc11aa570dd61f86dcf647.zip",
  1083. "reference": "fca5f160650cb74d23fc11aa570dd61f86dcf647",
  1084. "shasum": ""
  1085. },
  1086. "require": {
  1087. "guzzlehttp/guzzle": "^6.0",
  1088. "php": ">=5.5.0"
  1089. },
  1090. "require-dev": {
  1091. "mockery/mockery": "^0.9",
  1092. "phpunit/phpunit": "^4.0",
  1093. "squizlabs/php_codesniffer": "^2.0"
  1094. },
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-master": "1.0-dev"
  1099. }
  1100. },
  1101. "autoload": {
  1102. "psr-4": {
  1103. "League\\OAuth1\\": "src/"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Ben Corlett",
  1113. "email": "bencorlett@me.com",
  1114. "homepage": "http://www.webcomm.com.au",
  1115. "role": "Developer"
  1116. }
  1117. ],
  1118. "description": "OAuth 1.0 Client Library",
  1119. "keywords": [
  1120. "Authentication",
  1121. "SSO",
  1122. "authorization",
  1123. "bitbucket",
  1124. "identity",
  1125. "idp",
  1126. "oauth",
  1127. "oauth1",
  1128. "single sign on",
  1129. "trello",
  1130. "tumblr",
  1131. "twitter"
  1132. ],
  1133. "time": "2016-08-17 00:36:58"
  1134. },
  1135. {
  1136. "name": "mews/purifier",
  1137. "version": "2.0.6",
  1138. "source": {
  1139. "type": "git",
  1140. "url": "https://github.com/mewebstudio/Purifier.git",
  1141. "reference": "e3f8b41dafa21994b9a8349f316d8e967559ee5a"
  1142. },
  1143. "dist": {
  1144. "type": "zip",
  1145. "url": "https://packagist.phpcomposer.com/files/mewebstudio/Purifier/e3f8b41dafa21994b9a8349f316d8e967559ee5a.zip",
  1146. "reference": "e3f8b41dafa21994b9a8349f316d8e967559ee5a",
  1147. "shasum": ""
  1148. },
  1149. "require": {
  1150. "ezyang/htmlpurifier": "4.8.*",
  1151. "illuminate/config": "5.1.*|5.2.*|5.3.*",
  1152. "illuminate/filesystem": "5.1.*|5.2.*|5.3.*",
  1153. "illuminate/support": "5.1.*|5.2.*|5.3.*",
  1154. "php": ">=5.5.9"
  1155. },
  1156. "require-dev": {
  1157. "graham-campbell/testbench": "^3.2",
  1158. "mockery/mockery": "0.9.*",
  1159. "phpunit/phpunit": "^4.8|^5.0",
  1160. "scrutinizer/ocular": "^1.3"
  1161. },
  1162. "suggest": {
  1163. "laravel/framework": "To test the Laravel bindings",
  1164. "laravel/lumen-framework": "To test the Lumen bindings"
  1165. },
  1166. "type": "package",
  1167. "autoload": {
  1168. "psr-4": {
  1169. "Mews\\Purifier\\": "src/"
  1170. },
  1171. "files": [
  1172. "src/helpers.php"
  1173. ]
  1174. },
  1175. "notification-url": "https://packagist.org/downloads/",
  1176. "license": [
  1177. "MIT"
  1178. ],
  1179. "authors": [
  1180. {
  1181. "name": "Muharrem ERİN",
  1182. "email": "me@mewebstudio.com",
  1183. "homepage": "https://github.com/mewebstudio",
  1184. "role": "Developer"
  1185. }
  1186. ],
  1187. "description": "Laravel 5 HtmlPurifier Package",
  1188. "homepage": "https://github.com/mewebstudio/purifier",
  1189. "keywords": [
  1190. "Purifier",
  1191. "htmlpurifier",
  1192. "laravel5 HtmlPurifier",
  1193. "laravel5 Purifier",
  1194. "laravel5 Security",
  1195. "security",
  1196. "xss"
  1197. ],
  1198. "time": "2016-07-27 10:02:13"
  1199. },
  1200. {
  1201. "name": "monolog/monolog",
  1202. "version": "1.22.0",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/Seldaek/monolog.git",
  1206. "reference": "bad29cb8d18ab0315e6c477751418a82c850d558"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bad29cb8d18ab0315e6c477751418a82c850d558",
  1211. "reference": "bad29cb8d18ab0315e6c477751418a82c850d558",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "php": ">=5.3.0",
  1216. "psr/log": "~1.0"
  1217. },
  1218. "provide": {
  1219. "psr/log-implementation": "1.0.0"
  1220. },
  1221. "require-dev": {
  1222. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1223. "doctrine/couchdb": "~1.0@dev",
  1224. "graylog2/gelf-php": "~1.0",
  1225. "jakub-onderka/php-parallel-lint": "0.9",
  1226. "php-amqplib/php-amqplib": "~2.4",
  1227. "php-console/php-console": "^3.1.3",
  1228. "phpunit/phpunit": "~4.5",
  1229. "phpunit/phpunit-mock-objects": "2.3.0",
  1230. "ruflin/elastica": ">=0.90 <3.0",
  1231. "sentry/sentry": "^0.13",
  1232. "swiftmailer/swiftmailer": "~5.3"
  1233. },
  1234. "suggest": {
  1235. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1236. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1237. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1238. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1239. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1240. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1241. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1242. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1243. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1244. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1245. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1246. },
  1247. "type": "library",
  1248. "extra": {
  1249. "branch-alias": {
  1250. "dev-master": "2.0.x-dev"
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-4": {
  1255. "Monolog\\": "src/Monolog"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "MIT"
  1261. ],
  1262. "authors": [
  1263. {
  1264. "name": "Jordi Boggiano",
  1265. "email": "j.boggiano@seld.be",
  1266. "homepage": "http://seld.be"
  1267. }
  1268. ],
  1269. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1270. "homepage": "http://github.com/Seldaek/monolog",
  1271. "keywords": [
  1272. "log",
  1273. "logging",
  1274. "psr-3"
  1275. ],
  1276. "time": "2016-11-26 00:15:39"
  1277. },
  1278. {
  1279. "name": "mtdowling/cron-expression",
  1280. "version": "v1.2.0",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/mtdowling/cron-expression.git",
  1284. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://packagist.phpcomposer.com/files/mtdowling/cron-expression/9504fa9ea681b586028adaaa0877db4aecf32bad.zip",
  1289. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  1290. "shasum": ""
  1291. },
  1292. "require": {
  1293. "php": ">=5.3.2"
  1294. },
  1295. "require-dev": {
  1296. "phpunit/phpunit": "~4.0|~5.0"
  1297. },
  1298. "type": "library",
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Cron\\": "src/Cron/"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "authors": [
  1309. {
  1310. "name": "Michael Dowling",
  1311. "email": "mtdowling@gmail.com",
  1312. "homepage": "https://github.com/mtdowling"
  1313. }
  1314. ],
  1315. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1316. "keywords": [
  1317. "cron",
  1318. "schedule"
  1319. ],
  1320. "time": "2017-01-23 04:29:33"
  1321. },
  1322. {
  1323. "name": "nesbot/carbon",
  1324. "version": "1.22.1",
  1325. "source": {
  1326. "type": "git",
  1327. "url": "https://github.com/briannesbitt/Carbon.git",
  1328. "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc"
  1329. },
  1330. "dist": {
  1331. "type": "zip",
  1332. "url": "https://packagist.phpcomposer.com/files/briannesbitt/Carbon/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc.zip",
  1333. "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
  1334. "shasum": ""
  1335. },
  1336. "require": {
  1337. "php": ">=5.3.0",
  1338. "symfony/translation": "~2.6 || ~3.0"
  1339. },
  1340. "require-dev": {
  1341. "friendsofphp/php-cs-fixer": "~2",
  1342. "phpunit/phpunit": "~4.0 || ~5.0"
  1343. },
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-master": "1.23-dev"
  1348. }
  1349. },
  1350. "autoload": {
  1351. "psr-4": {
  1352. "Carbon\\": "src/Carbon/"
  1353. }
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "authors": [
  1360. {
  1361. "name": "Brian Nesbitt",
  1362. "email": "brian@nesbot.com",
  1363. "homepage": "http://nesbot.com"
  1364. }
  1365. ],
  1366. "description": "A simple API extension for DateTime.",
  1367. "homepage": "http://carbon.nesbot.com",
  1368. "keywords": [
  1369. "date",
  1370. "datetime",
  1371. "time"
  1372. ],
  1373. "time": "2017-01-16 07:55:07"
  1374. },
  1375. {
  1376. "name": "nikic/php-parser",
  1377. "version": "v3.0.4",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/nikic/PHP-Parser.git",
  1381. "reference": "0bf561dfe75ba80441c22adecc0529056671a7d2"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://packagist.phpcomposer.com/files/nikic/PHP-Parser/0bf561dfe75ba80441c22adecc0529056671a7d2.zip",
  1386. "reference": "0bf561dfe75ba80441c22adecc0529056671a7d2",
  1387. "shasum": ""
  1388. },
  1389. "require": {
  1390. "ext-tokenizer": "*",
  1391. "php": ">=5.5"
  1392. },
  1393. "require-dev": {
  1394. "phpunit/phpunit": "~4.0|~5.0"
  1395. },
  1396. "bin": [
  1397. "bin/php-parse"
  1398. ],
  1399. "type": "library",
  1400. "extra": {
  1401. "branch-alias": {
  1402. "dev-master": "3.0-dev"
  1403. }
  1404. },
  1405. "autoload": {
  1406. "psr-4": {
  1407. "PhpParser\\": "lib/PhpParser"
  1408. }
  1409. },
  1410. "notification-url": "https://packagist.org/downloads/",
  1411. "license": [
  1412. "BSD-3-Clause"
  1413. ],
  1414. "authors": [
  1415. {
  1416. "name": "Nikita Popov"
  1417. }
  1418. ],
  1419. "description": "A PHP parser written in PHP",
  1420. "keywords": [
  1421. "parser",
  1422. "php"
  1423. ],
  1424. "time": "2017-02-10 20:20:03"
  1425. },
  1426. {
  1427. "name": "paragonie/random_compat",
  1428. "version": "v2.0.4",
  1429. "source": {
  1430. "type": "git",
  1431. "url": "https://github.com/paragonie/random_compat.git",
  1432. "reference": "a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e"
  1433. },
  1434. "dist": {
  1435. "type": "zip",
  1436. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e",
  1437. "reference": "a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e",
  1438. "shasum": ""
  1439. },
  1440. "require": {
  1441. "php": ">=5.2.0"
  1442. },
  1443. "require-dev": {
  1444. "phpunit/phpunit": "4.*|5.*"
  1445. },
  1446. "suggest": {
  1447. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1448. },
  1449. "type": "library",
  1450. "autoload": {
  1451. "files": [
  1452. "lib/random.php"
  1453. ]
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "MIT"
  1458. ],
  1459. "authors": [
  1460. {
  1461. "name": "Paragon Initiative Enterprises",
  1462. "email": "security@paragonie.com",
  1463. "homepage": "https://paragonie.com"
  1464. }
  1465. ],
  1466. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1467. "keywords": [
  1468. "csprng",
  1469. "pseudorandom",
  1470. "random"
  1471. ],
  1472. "time": "2016-11-07 23:38:38"
  1473. },
  1474. {
  1475. "name": "pixel418/markdownify",
  1476. "version": "v2.2.1",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "https://github.com/Elephant418/Markdownify.git",
  1480. "reference": "0160677f04c784550dd10fd72fdf3994967db848"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://packagist.phpcomposer.com/files/Elephant418/Markdownify/0160677f04c784550dd10fd72fdf3994967db848.zip",
  1485. "reference": "0160677f04c784550dd10fd72fdf3994967db848",
  1486. "shasum": ""
  1487. },
  1488. "require": {
  1489. "php": ">=5.3.0"
  1490. },
  1491. "require-dev": {
  1492. "phpunit/phpunit": "^4.8"
  1493. },
  1494. "type": "lib",
  1495. "autoload": {
  1496. "psr-4": {
  1497. "Markdownify\\": "src",
  1498. "Test\\Markdownify\\": "test"
  1499. }
  1500. },
  1501. "notification-url": "https://packagist.org/downloads/",
  1502. "license": [
  1503. "LGPL"
  1504. ],
  1505. "authors": [
  1506. {
  1507. "name": "Peter Kruithof",
  1508. "email": "pkruithof@gmail.com",
  1509. "homepage": "http://pkruithof.tumblr.com/"
  1510. },
  1511. {
  1512. "name": "Milian Wolff",
  1513. "email": "mail@milianw.de",
  1514. "homepage": "http://milianw.de"
  1515. },
  1516. {
  1517. "name": "Thomas Zilliox",
  1518. "email": "hello@tzi.fr",
  1519. "homepage": "http://tzi.fr"
  1520. }
  1521. ],
  1522. "description": "The HTML to Markdown converter for PHP ",
  1523. "homepage": "https://github.com/elephant418/Markdownify",
  1524. "keywords": [
  1525. "markdown",
  1526. "markdownify"
  1527. ],
  1528. "time": "2016-09-21 13:01:43"
  1529. },
  1530. {
  1531. "name": "psr/http-message",
  1532. "version": "1.0.1",
  1533. "source": {
  1534. "type": "git",
  1535. "url": "https://github.com/php-fig/http-message.git",
  1536. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1537. },
  1538. "dist": {
  1539. "type": "zip",
  1540. "url": "https://packagist.phpcomposer.com/files/php-fig/http-message/f6561bf28d520154e4b0ec72be95418abe6d9363.zip",
  1541. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1542. "shasum": ""
  1543. },
  1544. "require": {
  1545. "php": ">=5.3.0"
  1546. },
  1547. "type": "library",
  1548. "extra": {
  1549. "branch-alias": {
  1550. "dev-master": "1.0.x-dev"
  1551. }
  1552. },
  1553. "autoload": {
  1554. "psr-4": {
  1555. "Psr\\Http\\Message\\": "src/"
  1556. }
  1557. },
  1558. "notification-url": "https://packagist.org/downloads/",
  1559. "license": [
  1560. "MIT"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "PHP-FIG",
  1565. "homepage": "http://www.php-fig.org/"
  1566. }
  1567. ],
  1568. "description": "Common interface for HTTP messages",
  1569. "homepage": "https://github.com/php-fig/http-message",
  1570. "keywords": [
  1571. "http",
  1572. "http-message",
  1573. "psr",
  1574. "psr-7",
  1575. "request",
  1576. "response"
  1577. ],
  1578. "time": "2016-08-06 14:39:51"
  1579. },
  1580. {
  1581. "name": "psr/log",
  1582. "version": "1.0.2",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/php-fig/log.git",
  1586. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1591. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "php": ">=5.3.0"
  1596. },
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "1.0.x-dev"
  1601. }
  1602. },
  1603. "autoload": {
  1604. "psr-4": {
  1605. "Psr\\Log\\": "Psr/Log/"
  1606. }
  1607. },
  1608. "notification-url": "https://packagist.org/downloads/",
  1609. "license": [
  1610. "MIT"
  1611. ],
  1612. "authors": [
  1613. {
  1614. "name": "PHP-FIG",
  1615. "homepage": "http://www.php-fig.org/"
  1616. }
  1617. ],
  1618. "description": "Common interface for logging libraries",
  1619. "homepage": "https://github.com/php-fig/log",
  1620. "keywords": [
  1621. "log",
  1622. "psr",
  1623. "psr-3"
  1624. ],
  1625. "time": "2016-10-10 12:19:37"
  1626. },
  1627. {
  1628. "name": "psy/psysh",
  1629. "version": "v0.8.1",
  1630. "source": {
  1631. "type": "git",
  1632. "url": "https://github.com/bobthecow/psysh.git",
  1633. "reference": "701e8a1cc426ee170f1296f5d9f6b8a26ad25c4a"
  1634. },
  1635. "dist": {
  1636. "type": "zip",
  1637. "url": "https://packagist.phpcomposer.com/files/bobthecow/psysh/701e8a1cc426ee170f1296f5d9f6b8a26ad25c4a.zip",
  1638. "reference": "701e8a1cc426ee170f1296f5d9f6b8a26ad25c4a",
  1639. "shasum": ""
  1640. },
  1641. "require": {
  1642. "dnoegel/php-xdg-base-dir": "0.1",
  1643. "jakub-onderka/php-console-highlighter": "0.3.*",
  1644. "nikic/php-parser": "~1.3|~2.0|~3.0",
  1645. "php": ">=5.3.9",
  1646. "symfony/console": "~2.3.10|^2.4.2|~3.0",
  1647. "symfony/var-dumper": "~2.7|~3.0"
  1648. },
  1649. "require-dev": {
  1650. "friendsofphp/php-cs-fixer": "~1.11",
  1651. "hoa/console": "~3.16|~1.14",
  1652. "phpunit/phpunit": "~4.4|~5.0",
  1653. "symfony/finder": "~2.1|~3.0"
  1654. },
  1655. "suggest": {
  1656. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1657. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1658. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1659. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1660. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1661. },
  1662. "bin": [
  1663. "bin/psysh"
  1664. ],
  1665. "type": "library",
  1666. "extra": {
  1667. "branch-alias": {
  1668. "dev-develop": "0.9.x-dev"
  1669. }
  1670. },
  1671. "autoload": {
  1672. "files": [
  1673. "src/Psy/functions.php"
  1674. ],
  1675. "psr-4": {
  1676. "Psy\\": "src/Psy/"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Justin Hileman",
  1686. "email": "justin@justinhileman.info",
  1687. "homepage": "http://justinhileman.com"
  1688. }
  1689. ],
  1690. "description": "An interactive shell for modern PHP.",
  1691. "homepage": "http://psysh.org",
  1692. "keywords": [
  1693. "REPL",
  1694. "console",
  1695. "interactive",
  1696. "shell"
  1697. ],
  1698. "time": "2017-01-15 17:54:13"
  1699. },
  1700. {
  1701. "name": "ramsey/uuid",
  1702. "version": "3.5.2",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/ramsey/uuid.git",
  1706. "reference": "5677cfe02397dd6b58c861870dfaa5d9007d3954"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5677cfe02397dd6b58c861870dfaa5d9007d3954",
  1711. "reference": "5677cfe02397dd6b58c861870dfaa5d9007d3954",
  1712. "shasum": ""
  1713. },
  1714. "require": {
  1715. "paragonie/random_compat": "^1.0|^2.0",
  1716. "php": ">=5.4"
  1717. },
  1718. "replace": {
  1719. "rhumsaa/uuid": "self.version"
  1720. },
  1721. "require-dev": {
  1722. "apigen/apigen": "^4.1",
  1723. "codeception/aspect-mock": "1.0.0",
  1724. "doctrine/annotations": "~1.2.0",
  1725. "goaop/framework": "1.0.0-alpha.2",
  1726. "ircmaxell/random-lib": "^1.1",
  1727. "jakub-onderka/php-parallel-lint": "^0.9.0",
  1728. "mockery/mockery": "^0.9.4",
  1729. "moontoast/math": "^1.1",
  1730. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  1731. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  1732. "satooshi/php-coveralls": "^0.6.1",
  1733. "squizlabs/php_codesniffer": "^2.3"
  1734. },
  1735. "suggest": {
  1736. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1737. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1738. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1739. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1740. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1741. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1742. },
  1743. "type": "library",
  1744. "extra": {
  1745. "branch-alias": {
  1746. "dev-master": "3.x-dev"
  1747. }
  1748. },
  1749. "autoload": {
  1750. "psr-4": {
  1751. "Ramsey\\Uuid\\": "src/"
  1752. }
  1753. },
  1754. "notification-url": "https://packagist.org/downloads/",
  1755. "license": [
  1756. "MIT"
  1757. ],
  1758. "authors": [
  1759. {
  1760. "name": "Marijn Huizendveld",
  1761. "email": "marijn.huizendveld@gmail.com"
  1762. },
  1763. {
  1764. "name": "Thibaud Fabre",
  1765. "email": "thibaud@aztech.io"
  1766. },
  1767. {
  1768. "name": "Ben Ramsey",
  1769. "email": "ben@benramsey.com",
  1770. "homepage": "https://benramsey.com"
  1771. }
  1772. ],
  1773. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1774. "homepage": "https://github.com/ramsey/uuid",
  1775. "keywords": [
  1776. "guid",
  1777. "identifier",
  1778. "uuid"
  1779. ],
  1780. "time": "2016-11-22 19:21:44"
  1781. },
  1782. {
  1783. "name": "socialiteproviders/manager",
  1784. "version": "v2.2.1",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/SocialiteProviders/Manager.git",
  1788. "reference": "775bd7f25c71ed88e9ae73ed52ba129fecc7abd0"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://packagist.phpcomposer.com/files/SocialiteProviders/Manager/775bd7f25c71ed88e9ae73ed52ba129fecc7abd0.zip",
  1793. "reference": "775bd7f25c71ed88e9ae73ed52ba129fecc7abd0",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "laravel/socialite": "~2.0",
  1798. "php": "^5.6 || ^7.0"
  1799. },
  1800. "require-dev": {
  1801. "mockery/mockery": "^0.9.4",
  1802. "phpunit/phpunit": "^5.0"
  1803. },
  1804. "type": "library",
  1805. "autoload": {
  1806. "psr-4": {
  1807. "SocialiteProviders\\Manager\\": "src/",
  1808. "SocialiteProviders\\Manager\\Test\\": "tests/"
  1809. }
  1810. },
  1811. "notification-url": "https://packagist.org/downloads/",
  1812. "license": [
  1813. "MIT"
  1814. ],
  1815. "authors": [
  1816. {
  1817. "name": "Andy Wendt",
  1818. "email": "andy@awendt.com"
  1819. }
  1820. ],
  1821. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  1822. "time": "2016-12-04 07:11:20"
  1823. },
  1824. {
  1825. "name": "socialiteproviders/qq",
  1826. "version": "v2.0.5",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://github.com/SocialiteProviders/QQ.git",
  1830. "reference": "49dd74c7f1932f6f83ebf0d0cca071c8939963d6"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://packagist.phpcomposer.com/files/SocialiteProviders/QQ/49dd74c7f1932f6f83ebf0d0cca071c8939963d6.zip",
  1835. "reference": "49dd74c7f1932f6f83ebf0d0cca071c8939963d6",
  1836. "shasum": ""
  1837. },
  1838. "require": {
  1839. "php": "^5.6 || ^7.0",
  1840. "socialiteproviders/manager": "~2.0"
  1841. },
  1842. "type": "library",
  1843. "autoload": {
  1844. "psr-4": {
  1845. "SocialiteProviders\\QQ\\": ""
  1846. }
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "heui",
  1855. "email": "runphp@qq.com"
  1856. }
  1857. ],
  1858. "description": "Qq.com OAuth2 Provider for Laravel Socialite",
  1859. "time": "2016-11-10 06:26:14"
  1860. },
  1861. {
  1862. "name": "socialiteproviders/weibo",
  1863. "version": "v2.0.1",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/SocialiteProviders/Weibo.git",
  1867. "reference": "10ff7fd36edacfcc1513440e01b863e88c9ff05e"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://packagist.phpcomposer.com/files/SocialiteProviders/Weibo/10ff7fd36edacfcc1513440e01b863e88c9ff05e.zip",
  1872. "reference": "10ff7fd36edacfcc1513440e01b863e88c9ff05e",
  1873. "shasum": ""
  1874. },
  1875. "require": {
  1876. "php": "^5.6 || ^7.0",
  1877. "socialiteproviders/manager": "~2.0"
  1878. },
  1879. "type": "library",
  1880. "autoload": {
  1881. "psr-4": {
  1882. "SocialiteProviders\\Weibo\\": "src/"
  1883. }
  1884. },
  1885. "notification-url": "https://packagist.org/downloads/",
  1886. "license": [
  1887. "MIT"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "xyxu",
  1892. "email": "techxu@gmail.com"
  1893. }
  1894. ],
  1895. "description": "weibo.com OAuth2 Provider for Laravel Socialite",
  1896. "time": "2016-04-01 07:00:54"
  1897. },
  1898. {
  1899. "name": "swiftmailer/swiftmailer",
  1900. "version": "v5.4.6",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1904. "reference": "81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://packagist.phpcomposer.com/files/swiftmailer/swiftmailer/81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e.zip",
  1909. "reference": "81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "php": ">=5.3.3"
  1914. },
  1915. "require-dev": {
  1916. "mockery/mockery": "~0.9.1",
  1917. "symfony/phpunit-bridge": "~3.2"
  1918. },
  1919. "type": "library",
  1920. "extra": {
  1921. "branch-alias": {
  1922. "dev-master": "5.4-dev"
  1923. }
  1924. },
  1925. "autoload": {
  1926. "files": [
  1927. "lib/swift_required.php"
  1928. ]
  1929. },
  1930. "notification-url": "https://packagist.org/downloads/",
  1931. "license": [
  1932. "MIT"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "Chris Corbyn"
  1937. },
  1938. {
  1939. "name": "Fabien Potencier",
  1940. "email": "fabien@symfony.com"
  1941. }
  1942. ],
  1943. "description": "Swiftmailer, free feature-rich PHP mailer",
  1944. "homepage": "http://swiftmailer.org",
  1945. "keywords": [
  1946. "email",
  1947. "mail",
  1948. "mailer"
  1949. ],
  1950. "time": "2017-02-13 07:52:53"
  1951. },
  1952. {
  1953. "name": "symfony/class-loader",
  1954. "version": "v3.2.4",
  1955. "source": {
  1956. "type": "git",
  1957. "url": "https://github.com/symfony/class-loader.git",
  1958. "reference": "2847d56f518ad5721bf85aa9174b3aa3fd12aa03"
  1959. },
  1960. "dist": {
  1961. "type": "zip",
  1962. "url": "https://packagist.phpcomposer.com/files/symfony/class-loader/2847d56f518ad5721bf85aa9174b3aa3fd12aa03.zip",
  1963. "reference": "2847d56f518ad5721bf85aa9174b3aa3fd12aa03",
  1964. "shasum": ""
  1965. },
  1966. "require": {
  1967. "php": ">=5.5.9"
  1968. },
  1969. "require-dev": {
  1970. "symfony/finder": "~2.8|~3.0",
  1971. "symfony/polyfill-apcu": "~1.1"
  1972. },
  1973. "suggest": {
  1974. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  1975. },
  1976. "type": "library",
  1977. "extra": {
  1978. "branch-alias": {
  1979. "dev-master": "3.2-dev"
  1980. }
  1981. },
  1982. "autoload": {
  1983. "psr-4": {
  1984. "Symfony\\Component\\ClassLoader\\": ""
  1985. },
  1986. "exclude-from-classmap": [
  1987. "/Tests/"
  1988. ]
  1989. },
  1990. "notification-url": "https://packagist.org/downloads/",
  1991. "license": [
  1992. "MIT"
  1993. ],
  1994. "authors": [
  1995. {
  1996. "name": "Fabien Potencier",
  1997. "email": "fabien@symfony.com"
  1998. },
  1999. {
  2000. "name": "Symfony Community",
  2001. "homepage": "https://symfony.com/contributors"
  2002. }
  2003. ],
  2004. "description": "Symfony ClassLoader Component",
  2005. "homepage": "https://symfony.com",
  2006. "time": "2017-01-21 17:06:35"
  2007. },
  2008. {
  2009. "name": "symfony/console",
  2010. "version": "v3.1.10",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/symfony/console.git",
  2014. "reference": "047f16485d68c083bd5d9b73ff16f9cb9c1a9f52"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://packagist.phpcomposer.com/files/symfony/console/047f16485d68c083bd5d9b73ff16f9cb9c1a9f52.zip",
  2019. "reference": "047f16485d68c083bd5d9b73ff16f9cb9c1a9f52",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "php": ">=5.5.9",
  2024. "symfony/debug": "~2.8|~3.0",
  2025. "symfony/polyfill-mbstring": "~1.0"
  2026. },
  2027. "require-dev": {
  2028. "psr/log": "~1.0",
  2029. "symfony/event-dispatcher": "~2.8|~3.0",
  2030. "symfony/process": "~2.8|~3.0"
  2031. },
  2032. "suggest": {
  2033. "psr/log": "For using the console logger",
  2034. "symfony/event-dispatcher": "",
  2035. "symfony/process": ""
  2036. },
  2037. "type": "library",
  2038. "extra": {
  2039. "branch-alias": {
  2040. "dev-master": "3.1-dev"
  2041. }
  2042. },
  2043. "autoload": {
  2044. "psr-4": {
  2045. "Symfony\\Component\\Console\\": ""
  2046. },
  2047. "exclude-from-classmap": [
  2048. "/Tests/"
  2049. ]
  2050. },
  2051. "notification-url": "https://packagist.org/downloads/",
  2052. "license": [
  2053. "MIT"
  2054. ],
  2055. "authors": [
  2056. {
  2057. "name": "Fabien Potencier",
  2058. "email": "fabien@symfony.com"
  2059. },
  2060. {
  2061. "name": "Symfony Community",
  2062. "homepage": "https://symfony.com/contributors"
  2063. }
  2064. ],
  2065. "description": "Symfony Console Component",
  2066. "homepage": "https://symfony.com",
  2067. "time": "2017-01-08 20:43:43"
  2068. },
  2069. {
  2070. "name": "symfony/debug",
  2071. "version": "v3.1.10",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://github.com/symfony/debug.git",
  2075. "reference": "c6661361626b3cf5cf2089df98b3b5006a197e85"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://packagist.phpcomposer.com/files/symfony/debug/c6661361626b3cf5cf2089df98b3b5006a197e85.zip",
  2080. "reference": "c6661361626b3cf5cf2089df98b3b5006a197e85",
  2081. "shasum": ""
  2082. },
  2083. "require": {
  2084. "php": ">=5.5.9",
  2085. "psr/log": "~1.0"
  2086. },
  2087. "conflict": {
  2088. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2089. },
  2090. "require-dev": {
  2091. "symfony/class-loader": "~2.8|~3.0",
  2092. "symfony/http-kernel": "~2.8|~3.0"
  2093. },
  2094. "type": "library",
  2095. "extra": {
  2096. "branch-alias": {
  2097. "dev-master": "3.1-dev"
  2098. }
  2099. },
  2100. "autoload": {
  2101. "psr-4": {
  2102. "Symfony\\Component\\Debug\\": ""
  2103. },
  2104. "exclude-from-classmap": [
  2105. "/Tests/"
  2106. ]
  2107. },
  2108. "notification-url": "https://packagist.org/downloads/",
  2109. "license": [
  2110. "MIT"
  2111. ],
  2112. "authors": [
  2113. {
  2114. "name": "Fabien Potencier",
  2115. "email": "fabien@symfony.com"
  2116. },
  2117. {
  2118. "name": "Symfony Community",
  2119. "homepage": "https://symfony.com/contributors"
  2120. }
  2121. ],
  2122. "description": "Symfony Debug Component",
  2123. "homepage": "https://symfony.com",
  2124. "time": "2017-01-28 00:04:57"
  2125. },
  2126. {
  2127. "name": "symfony/event-dispatcher",
  2128. "version": "v3.2.4",
  2129. "source": {
  2130. "type": "git",
  2131. "url": "https://github.com/symfony/event-dispatcher.git",
  2132. "reference": "9137eb3a3328e413212826d63eeeb0217836e2b6"
  2133. },
  2134. "dist": {
  2135. "type": "zip",
  2136. "url": "https://packagist.phpcomposer.com/files/symfony/event-dispatcher/9137eb3a3328e413212826d63eeeb0217836e2b6.zip",
  2137. "reference": "9137eb3a3328e413212826d63eeeb0217836e2b6",
  2138. "shasum": ""
  2139. },
  2140. "require": {
  2141. "php": ">=5.5.9"
  2142. },
  2143. "require-dev": {
  2144. "psr/log": "~1.0",
  2145. "symfony/config": "~2.8|~3.0",
  2146. "symfony/dependency-injection": "~2.8|~3.0",
  2147. "symfony/expression-language": "~2.8|~3.0",
  2148. "symfony/stopwatch": "~2.8|~3.0"
  2149. },
  2150. "suggest": {
  2151. "symfony/dependency-injection": "",
  2152. "symfony/http-kernel": ""
  2153. },
  2154. "type": "library",
  2155. "extra": {
  2156. "branch-alias": {
  2157. "dev-master": "3.2-dev"
  2158. }
  2159. },
  2160. "autoload": {
  2161. "psr-4": {
  2162. "Symfony\\Component\\EventDispatcher\\": ""
  2163. },
  2164. "exclude-from-classmap": [
  2165. "/Tests/"
  2166. ]
  2167. },
  2168. "notification-url": "https://packagist.org/downloads/",
  2169. "license": [
  2170. "MIT"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "Fabien Potencier",
  2175. "email": "fabien@symfony.com"
  2176. },
  2177. {
  2178. "name": "Symfony Community",
  2179. "homepage": "https://symfony.com/contributors"
  2180. }
  2181. ],
  2182. "description": "Symfony EventDispatcher Component",
  2183. "homepage": "https://symfony.com",
  2184. "time": "2017-01-02 20:32:22"
  2185. },
  2186. {
  2187. "name": "symfony/finder",
  2188. "version": "v3.1.10",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/symfony/finder.git",
  2192. "reference": "59687a255d1562f2c17b012418273862083d85f7"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://packagist.phpcomposer.com/files/symfony/finder/59687a255d1562f2c17b012418273862083d85f7.zip",
  2197. "reference": "59687a255d1562f2c17b012418273862083d85f7",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "php": ">=5.5.9"
  2202. },
  2203. "type": "library",
  2204. "extra": {
  2205. "branch-alias": {
  2206. "dev-master": "3.1-dev"
  2207. }
  2208. },
  2209. "autoload": {
  2210. "psr-4": {
  2211. "Symfony\\Component\\Finder\\": ""
  2212. },
  2213. "exclude-from-classmap": [
  2214. "/Tests/"
  2215. ]
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "MIT"
  2220. ],
  2221. "authors": [
  2222. {
  2223. "name": "Fabien Potencier",
  2224. "email": "fabien@symfony.com"
  2225. },
  2226. {
  2227. "name": "Symfony Community",
  2228. "homepage": "https://symfony.com/contributors"
  2229. }
  2230. ],
  2231. "description": "Symfony Finder Component",
  2232. "homepage": "https://symfony.com",
  2233. "time": "2017-01-02 20:31:54"
  2234. },
  2235. {
  2236. "name": "symfony/http-foundation",
  2237. "version": "v3.1.10",
  2238. "source": {
  2239. "type": "git",
  2240. "url": "https://github.com/symfony/http-foundation.git",
  2241. "reference": "cef0ad49a2e90455cfc649522025b5a2929648c0"
  2242. },
  2243. "dist": {
  2244. "type": "zip",
  2245. "url": "https://packagist.phpcomposer.com/files/symfony/http-foundation/cef0ad49a2e90455cfc649522025b5a2929648c0.zip",
  2246. "reference": "cef0ad49a2e90455cfc649522025b5a2929648c0",
  2247. "shasum": ""
  2248. },
  2249. "require": {
  2250. "php": ">=5.5.9",
  2251. "symfony/polyfill-mbstring": "~1.1"
  2252. },
  2253. "require-dev": {
  2254. "symfony/expression-language": "~2.8|~3.0"
  2255. },
  2256. "type": "library",
  2257. "extra": {
  2258. "branch-alias": {
  2259. "dev-master": "3.1-dev"
  2260. }
  2261. },
  2262. "autoload": {
  2263. "psr-4": {
  2264. "Symfony\\Component\\HttpFoundation\\": ""
  2265. },
  2266. "exclude-from-classmap": [
  2267. "/Tests/"
  2268. ]
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Fabien Potencier",
  2277. "email": "fabien@symfony.com"
  2278. },
  2279. {
  2280. "name": "Symfony Community",
  2281. "homepage": "https://symfony.com/contributors"
  2282. }
  2283. ],
  2284. "description": "Symfony HttpFoundation Component",
  2285. "homepage": "https://symfony.com",
  2286. "time": "2017-01-08 20:43:43"
  2287. },
  2288. {
  2289. "name": "symfony/http-kernel",
  2290. "version": "v3.1.10",
  2291. "source": {
  2292. "type": "git",
  2293. "url": "https://github.com/symfony/http-kernel.git",
  2294. "reference": "c830387dec1b48c100473d10a6a356c3c3ae2a13"
  2295. },
  2296. "dist": {
  2297. "type": "zip",
  2298. "url": "https://packagist.phpcomposer.com/files/symfony/http-kernel/c830387dec1b48c100473d10a6a356c3c3ae2a13.zip",
  2299. "reference": "c830387dec1b48c100473d10a6a356c3c3ae2a13",
  2300. "shasum": ""
  2301. },
  2302. "require": {
  2303. "php": ">=5.5.9",
  2304. "psr/log": "~1.0",
  2305. "symfony/debug": "~2.8|~3.0",
  2306. "symfony/event-dispatcher": "~2.8|~3.0",
  2307. "symfony/http-foundation": "~2.8.13|~3.1.6|~3.2"
  2308. },
  2309. "conflict": {
  2310. "symfony/config": "<2.8"
  2311. },
  2312. "require-dev": {
  2313. "symfony/browser-kit": "~2.8|~3.0",
  2314. "symfony/class-loader": "~2.8|~3.0",
  2315. "symfony/config": "~2.8|~3.0",
  2316. "symfony/console": "~2.8|~3.0",
  2317. "symfony/css-selector": "~2.8|~3.0",
  2318. "symfony/dependency-injection": "~2.8|~3.0",
  2319. "symfony/dom-crawler": "~2.8|~3.0",
  2320. "symfony/expression-language": "~2.8|~3.0",
  2321. "symfony/finder": "~2.8|~3.0",
  2322. "symfony/process": "~2.8|~3.0",
  2323. "symfony/routing": "~2.8|~3.0",
  2324. "symfony/stopwatch": "~2.8|~3.0",
  2325. "symfony/templating": "~2.8|~3.0",
  2326. "symfony/translation": "~2.8|~3.0",
  2327. "symfony/var-dumper": "~2.8|~3.0"
  2328. },
  2329. "suggest": {
  2330. "symfony/browser-kit": "",
  2331. "symfony/class-loader": "",
  2332. "symfony/config": "",
  2333. "symfony/console": "",
  2334. "symfony/dependency-injection": "",
  2335. "symfony/finder": "",
  2336. "symfony/var-dumper": ""
  2337. },
  2338. "type": "library",
  2339. "extra": {
  2340. "branch-alias": {
  2341. "dev-master": "3.1-dev"
  2342. }
  2343. },
  2344. "autoload": {
  2345. "psr-4": {
  2346. "Symfony\\Component\\HttpKernel\\": ""
  2347. },
  2348. "exclude-from-classmap": [
  2349. "/Tests/"
  2350. ]
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Fabien Potencier",
  2359. "email": "fabien@symfony.com"
  2360. },
  2361. {
  2362. "name": "Symfony Community",
  2363. "homepage": "https://symfony.com/contributors"
  2364. }
  2365. ],
  2366. "description": "Symfony HttpKernel Component",
  2367. "homepage": "https://symfony.com",
  2368. "time": "2017-01-28 02:53:17"
  2369. },
  2370. {
  2371. "name": "symfony/polyfill-mbstring",
  2372. "version": "v1.3.0",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2376. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4",
  2381. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "php": ">=5.3.3"
  2386. },
  2387. "suggest": {
  2388. "ext-mbstring": "For best performance"
  2389. },
  2390. "type": "library",
  2391. "extra": {
  2392. "branch-alias": {
  2393. "dev-master": "1.3-dev"
  2394. }
  2395. },
  2396. "autoload": {
  2397. "psr-4": {
  2398. "Symfony\\Polyfill\\Mbstring\\": ""
  2399. },
  2400. "files": [
  2401. "bootstrap.php"
  2402. ]
  2403. },
  2404. "notification-url": "https://packagist.org/downloads/",
  2405. "license": [
  2406. "MIT"
  2407. ],
  2408. "authors": [
  2409. {
  2410. "name": "Nicolas Grekas",
  2411. "email": "p@tchwork.com"
  2412. },
  2413. {
  2414. "name": "Symfony Community",
  2415. "homepage": "https://symfony.com/contributors"
  2416. }
  2417. ],
  2418. "description": "Symfony polyfill for the Mbstring extension",
  2419. "homepage": "https://symfony.com",
  2420. "keywords": [
  2421. "compatibility",
  2422. "mbstring",
  2423. "polyfill",
  2424. "portable",
  2425. "shim"
  2426. ],
  2427. "time": "2016-11-14 01:06:16"
  2428. },
  2429. {
  2430. "name": "symfony/polyfill-php56",
  2431. "version": "v1.3.0",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/symfony/polyfill-php56.git",
  2435. "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/1dd42b9b89556f18092f3d1ada22cb05ac85383c",
  2440. "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c",
  2441. "shasum": ""
  2442. },
  2443. "require": {
  2444. "php": ">=5.3.3",
  2445. "symfony/polyfill-util": "~1.0"
  2446. },
  2447. "type": "library",
  2448. "extra": {
  2449. "branch-alias": {
  2450. "dev-master": "1.3-dev"
  2451. }
  2452. },
  2453. "autoload": {
  2454. "psr-4": {
  2455. "Symfony\\Polyfill\\Php56\\": ""
  2456. },
  2457. "files": [
  2458. "bootstrap.php"
  2459. ]
  2460. },
  2461. "notification-url": "https://packagist.org/downloads/",
  2462. "license": [
  2463. "MIT"
  2464. ],
  2465. "authors": [
  2466. {
  2467. "name": "Nicolas Grekas",
  2468. "email": "p@tchwork.com"
  2469. },
  2470. {
  2471. "name": "Symfony Community",
  2472. "homepage": "https://symfony.com/contributors"
  2473. }
  2474. ],
  2475. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  2476. "homepage": "https://symfony.com",
  2477. "keywords": [
  2478. "compatibility",
  2479. "polyfill",
  2480. "portable",
  2481. "shim"
  2482. ],
  2483. "time": "2016-11-14 01:06:16"
  2484. },
  2485. {
  2486. "name": "symfony/polyfill-util",
  2487. "version": "v1.3.0",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/symfony/polyfill-util.git",
  2491. "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/746bce0fca664ac0a575e465f65c6643faddf7fb",
  2496. "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "php": ">=5.3.3"
  2501. },
  2502. "type": "library",
  2503. "extra": {
  2504. "branch-alias": {
  2505. "dev-master": "1.3-dev"
  2506. }
  2507. },
  2508. "autoload": {
  2509. "psr-4": {
  2510. "Symfony\\Polyfill\\Util\\": ""
  2511. }
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "MIT"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Nicolas Grekas",
  2520. "email": "p@tchwork.com"
  2521. },
  2522. {
  2523. "name": "Symfony Community",
  2524. "homepage": "https://symfony.com/contributors"
  2525. }
  2526. ],
  2527. "description": "Symfony utilities for portability of PHP codes",
  2528. "homepage": "https://symfony.com",
  2529. "keywords": [
  2530. "compat",
  2531. "compatibility",
  2532. "polyfill",
  2533. "shim"
  2534. ],
  2535. "time": "2016-11-14 01:06:16"
  2536. },
  2537. {
  2538. "name": "symfony/process",
  2539. "version": "v3.1.10",
  2540. "source": {
  2541. "type": "git",
  2542. "url": "https://github.com/symfony/process.git",
  2543. "reference": "2605753c5f8c531623d24d002825ebb1d6a22248"
  2544. },
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "https://packagist.phpcomposer.com/files/symfony/process/2605753c5f8c531623d24d002825ebb1d6a22248.zip",
  2548. "reference": "2605753c5f8c531623d24d002825ebb1d6a22248",
  2549. "shasum": ""
  2550. },
  2551. "require": {
  2552. "php": ">=5.5.9"
  2553. },
  2554. "type": "library",
  2555. "extra": {
  2556. "branch-alias": {
  2557. "dev-master": "3.1-dev"
  2558. }
  2559. },
  2560. "autoload": {
  2561. "psr-4": {
  2562. "Symfony\\Component\\Process\\": ""
  2563. },
  2564. "exclude-from-classmap": [
  2565. "/Tests/"
  2566. ]
  2567. },
  2568. "notification-url": "https://packagist.org/downloads/",
  2569. "license": [
  2570. "MIT"
  2571. ],
  2572. "authors": [
  2573. {
  2574. "name": "Fabien Potencier",
  2575. "email": "fabien@symfony.com"
  2576. },
  2577. {
  2578. "name": "Symfony Community",
  2579. "homepage": "https://symfony.com/contributors"
  2580. }
  2581. ],
  2582. "description": "Symfony Process Component",
  2583. "homepage": "https://symfony.com",
  2584. "time": "2017-01-21 17:13:55"
  2585. },
  2586. {
  2587. "name": "symfony/routing",
  2588. "version": "v3.1.10",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/symfony/routing.git",
  2592. "reference": "f25581d4eb0a82962c291917f826166f0dcd8a9a"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://packagist.phpcomposer.com/files/symfony/routing/f25581d4eb0a82962c291917f826166f0dcd8a9a.zip",
  2597. "reference": "f25581d4eb0a82962c291917f826166f0dcd8a9a",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "php": ">=5.5.9"
  2602. },
  2603. "conflict": {
  2604. "symfony/config": "<2.8"
  2605. },
  2606. "require-dev": {
  2607. "doctrine/annotations": "~1.0",
  2608. "doctrine/common": "~2.2",
  2609. "psr/log": "~1.0",
  2610. "symfony/config": "~2.8|~3.0",
  2611. "symfony/expression-language": "~2.8|~3.0",
  2612. "symfony/http-foundation": "~2.8|~3.0",
  2613. "symfony/yaml": "~2.8|~3.0"
  2614. },
  2615. "suggest": {
  2616. "doctrine/annotations": "For using the annotation loader",
  2617. "symfony/config": "For using the all-in-one router or any loader",
  2618. "symfony/dependency-injection": "For loading routes from a service",
  2619. "symfony/expression-language": "For using expression matching",
  2620. "symfony/http-foundation": "For using a Symfony Request object",
  2621. "symfony/yaml": "For using the YAML loader"
  2622. },
  2623. "type": "library",
  2624. "extra": {
  2625. "branch-alias": {
  2626. "dev-master": "3.1-dev"
  2627. }
  2628. },
  2629. "autoload": {
  2630. "psr-4": {
  2631. "Symfony\\Component\\Routing\\": ""
  2632. },
  2633. "exclude-from-classmap": [
  2634. "/Tests/"
  2635. ]
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "MIT"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Fabien Potencier",
  2644. "email": "fabien@symfony.com"
  2645. },
  2646. {
  2647. "name": "Symfony Community",
  2648. "homepage": "https://symfony.com/contributors"
  2649. }
  2650. ],
  2651. "description": "Symfony Routing Component",
  2652. "homepage": "https://symfony.com",
  2653. "keywords": [
  2654. "router",
  2655. "routing",
  2656. "uri",
  2657. "url"
  2658. ],
  2659. "time": "2017-01-28 00:04:57"
  2660. },
  2661. {
  2662. "name": "symfony/translation",
  2663. "version": "v3.1.10",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/symfony/translation.git",
  2667. "reference": "d5a20fab5f63f44c233c69b3041c3cb1d4945e45"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://packagist.phpcomposer.com/files/symfony/translation/d5a20fab5f63f44c233c69b3041c3cb1d4945e45.zip",
  2672. "reference": "d5a20fab5f63f44c233c69b3041c3cb1d4945e45",
  2673. "shasum": ""
  2674. },
  2675. "require": {
  2676. "php": ">=5.5.9",
  2677. "symfony/polyfill-mbstring": "~1.0"
  2678. },
  2679. "conflict": {
  2680. "symfony/config": "<2.8"
  2681. },
  2682. "require-dev": {
  2683. "psr/log": "~1.0",
  2684. "symfony/config": "~2.8|~3.0",
  2685. "symfony/intl": "~2.8|~3.0",
  2686. "symfony/yaml": "~2.8|~3.0"
  2687. },
  2688. "suggest": {
  2689. "psr/log": "To use logging capability in translator",
  2690. "symfony/config": "",
  2691. "symfony/yaml": ""
  2692. },
  2693. "type": "library",
  2694. "extra": {
  2695. "branch-alias": {
  2696. "dev-master": "3.1-dev"
  2697. }
  2698. },
  2699. "autoload": {
  2700. "psr-4": {
  2701. "Symfony\\Component\\Translation\\": ""
  2702. },
  2703. "exclude-from-classmap": [
  2704. "/Tests/"
  2705. ]
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "Fabien Potencier",
  2714. "email": "fabien@symfony.com"
  2715. },
  2716. {
  2717. "name": "Symfony Community",
  2718. "homepage": "https://symfony.com/contributors"
  2719. }
  2720. ],
  2721. "description": "Symfony Translation Component",
  2722. "homepage": "https://symfony.com",
  2723. "time": "2017-01-21 17:01:39"
  2724. },
  2725. {
  2726. "name": "symfony/var-dumper",
  2727. "version": "v3.1.10",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/symfony/var-dumper.git",
  2731. "reference": "16df11647e5b992d687cb4eeeb9a882d5f5c26b9"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://packagist.phpcomposer.com/files/symfony/var-dumper/16df11647e5b992d687cb4eeeb9a882d5f5c26b9.zip",
  2736. "reference": "16df11647e5b992d687cb4eeeb9a882d5f5c26b9",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "php": ">=5.5.9",
  2741. "symfony/polyfill-mbstring": "~1.0"
  2742. },
  2743. "require-dev": {
  2744. "twig/twig": "~1.20|~2.0"
  2745. },
  2746. "suggest": {
  2747. "ext-symfony_debug": ""
  2748. },
  2749. "type": "library",
  2750. "extra": {
  2751. "branch-alias": {
  2752. "dev-master": "3.1-dev"
  2753. }
  2754. },
  2755. "autoload": {
  2756. "files": [
  2757. "Resources/functions/dump.php"
  2758. ],
  2759. "psr-4": {
  2760. "Symfony\\Component\\VarDumper\\": ""
  2761. },
  2762. "exclude-from-classmap": [
  2763. "/Tests/"
  2764. ]
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "MIT"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Nicolas Grekas",
  2773. "email": "p@tchwork.com"
  2774. },
  2775. {
  2776. "name": "Symfony Community",
  2777. "homepage": "https://symfony.com/contributors"
  2778. }
  2779. ],
  2780. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2781. "homepage": "https://symfony.com",
  2782. "keywords": [
  2783. "debug",
  2784. "dump"
  2785. ],
  2786. "time": "2017-01-24 13:02:38"
  2787. },
  2788. {
  2789. "name": "vlucas/phpdotenv",
  2790. "version": "v2.4.0",
  2791. "source": {
  2792. "type": "git",
  2793. "url": "https://github.com/vlucas/phpdotenv.git",
  2794. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  2795. },
  2796. "dist": {
  2797. "type": "zip",
  2798. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2799. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2800. "shasum": ""
  2801. },
  2802. "require": {
  2803. "php": ">=5.3.9"
  2804. },
  2805. "require-dev": {
  2806. "phpunit/phpunit": "^4.8 || ^5.0"
  2807. },
  2808. "type": "library",
  2809. "extra": {
  2810. "branch-alias": {
  2811. "dev-master": "2.4-dev"
  2812. }
  2813. },
  2814. "autoload": {
  2815. "psr-4": {
  2816. "Dotenv\\": "src/"
  2817. }
  2818. },
  2819. "notification-url": "https://packagist.org/downloads/",
  2820. "license": [
  2821. "BSD-3-Clause-Attribution"
  2822. ],
  2823. "authors": [
  2824. {
  2825. "name": "Vance Lucas",
  2826. "email": "vance@vancelucas.com",
  2827. "homepage": "http://www.vancelucas.com"
  2828. }
  2829. ],
  2830. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2831. "keywords": [
  2832. "dotenv",
  2833. "env",
  2834. "environment"
  2835. ],
  2836. "time": "2016-09-01 10:05:43"
  2837. }
  2838. ],
  2839. "packages-dev": [
  2840. {
  2841. "name": "doctrine/instantiator",
  2842. "version": "1.0.5",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/doctrine/instantiator.git",
  2846. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  2851. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2852. "shasum": ""
  2853. },
  2854. "require": {
  2855. "php": ">=5.3,<8.0-DEV"
  2856. },
  2857. "require-dev": {
  2858. "athletic/athletic": "~0.1.8",
  2859. "ext-pdo": "*",
  2860. "ext-phar": "*",
  2861. "phpunit/phpunit": "~4.0",
  2862. "squizlabs/php_codesniffer": "~2.0"
  2863. },
  2864. "type": "library",
  2865. "extra": {
  2866. "branch-alias": {
  2867. "dev-master": "1.0.x-dev"
  2868. }
  2869. },
  2870. "autoload": {
  2871. "psr-4": {
  2872. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2873. }
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "MIT"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Marco Pivetta",
  2882. "email": "ocramius@gmail.com",
  2883. "homepage": "http://ocramius.github.com/"
  2884. }
  2885. ],
  2886. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2887. "homepage": "https://github.com/doctrine/instantiator",
  2888. "keywords": [
  2889. "constructor",
  2890. "instantiate"
  2891. ],
  2892. "time": "2015-06-14 21:17:01"
  2893. },
  2894. {
  2895. "name": "fzaninotto/faker",
  2896. "version": "v1.6.0",
  2897. "source": {
  2898. "type": "git",
  2899. "url": "https://github.com/fzaninotto/Faker.git",
  2900. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"
  2901. },
  2902. "dist": {
  2903. "type": "zip",
  2904. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  2905. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  2906. "shasum": ""
  2907. },
  2908. "require": {
  2909. "php": "^5.3.3|^7.0"
  2910. },
  2911. "require-dev": {
  2912. "ext-intl": "*",
  2913. "phpunit/phpunit": "~4.0",
  2914. "squizlabs/php_codesniffer": "~1.5"
  2915. },
  2916. "type": "library",
  2917. "extra": {
  2918. "branch-alias": []
  2919. },
  2920. "autoload": {
  2921. "psr-4": {
  2922. "Faker\\": "src/Faker/"
  2923. }
  2924. },
  2925. "notification-url": "https://packagist.org/downloads/",
  2926. "license": [
  2927. "MIT"
  2928. ],
  2929. "authors": [
  2930. {
  2931. "name": "François Zaninotto"
  2932. }
  2933. ],
  2934. "description": "Faker is a PHP library that generates fake data for you.",
  2935. "keywords": [
  2936. "data",
  2937. "faker",
  2938. "fixtures"
  2939. ],
  2940. "time": "2016-04-29 12:21:54"
  2941. },
  2942. {
  2943. "name": "hamcrest/hamcrest-php",
  2944. "version": "v1.2.2",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://github.com/hamcrest/hamcrest-php.git",
  2948. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c",
  2953. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
  2954. "shasum": ""
  2955. },
  2956. "require": {
  2957. "php": ">=5.3.2"
  2958. },
  2959. "replace": {
  2960. "cordoval/hamcrest-php": "*",
  2961. "davedevelopment/hamcrest-php": "*",
  2962. "kodova/hamcrest-php": "*"
  2963. },
  2964. "require-dev": {
  2965. "phpunit/php-file-iterator": "1.3.3",
  2966. "satooshi/php-coveralls": "dev-master"
  2967. },
  2968. "type": "library",
  2969. "autoload": {
  2970. "classmap": [
  2971. "hamcrest"
  2972. ],
  2973. "files": [
  2974. "hamcrest/Hamcrest.php"
  2975. ]
  2976. },
  2977. "notification-url": "https://packagist.org/downloads/",
  2978. "license": [
  2979. "BSD"
  2980. ],
  2981. "description": "This is the PHP port of Hamcrest Matchers",
  2982. "keywords": [
  2983. "test"
  2984. ],
  2985. "time": "2015-05-11 14:41:42"
  2986. },
  2987. {
  2988. "name": "mockery/mockery",
  2989. "version": "0.9.8",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/padraic/mockery.git",
  2993. "reference": "1e5e2ffdc4d71d7358ed58a6fdd30a4a0c506855"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://packagist.phpcomposer.com/files/padraic/mockery/1e5e2ffdc4d71d7358ed58a6fdd30a4a0c506855.zip",
  2998. "reference": "1e5e2ffdc4d71d7358ed58a6fdd30a4a0c506855",
  2999. "shasum": ""
  3000. },
  3001. "require": {
  3002. "hamcrest/hamcrest-php": "~1.1",
  3003. "lib-pcre": ">=7.0",
  3004. "php": ">=5.3.2"
  3005. },
  3006. "require-dev": {
  3007. "phpunit/phpunit": "~4.0"
  3008. },
  3009. "type": "library",
  3010. "extra": {
  3011. "branch-alias": {
  3012. "dev-master": "0.9.x-dev"
  3013. }
  3014. },
  3015. "autoload": {
  3016. "psr-0": {
  3017. "Mockery": "library/"
  3018. }
  3019. },
  3020. "notification-url": "https://packagist.org/downloads/",
  3021. "license": [
  3022. "BSD-3-Clause"
  3023. ],
  3024. "authors": [
  3025. {
  3026. "name": "Pádraic Brady",
  3027. "email": "padraic.brady@gmail.com",
  3028. "homepage": "http://blog.astrumfutura.com"
  3029. },
  3030. {
  3031. "name": "Dave Marshall",
  3032. "email": "dave.marshall@atstsolutions.co.uk",
  3033. "homepage": "http://davedevelopment.co.uk"
  3034. }
  3035. ],
  3036. "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
  3037. "homepage": "http://github.com/padraic/mockery",
  3038. "keywords": [
  3039. "BDD",
  3040. "TDD",
  3041. "library",
  3042. "mock",
  3043. "mock objects",
  3044. "mockery",
  3045. "stub",
  3046. "test",
  3047. "test double",
  3048. "testing"
  3049. ],
  3050. "time": "2017-02-09 13:29:38"
  3051. },
  3052. {
  3053. "name": "myclabs/deep-copy",
  3054. "version": "1.6.0",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/myclabs/DeepCopy.git",
  3058. "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://packagist.phpcomposer.com/files/myclabs/DeepCopy/5a5a9fc8025a08d8919be87d6884d5a92520cefe.zip",
  3063. "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe",
  3064. "shasum": ""
  3065. },
  3066. "require": {
  3067. "php": ">=5.4.0"
  3068. },
  3069. "require-dev": {
  3070. "doctrine/collections": "1.*",
  3071. "phpunit/phpunit": "~4.1"
  3072. },
  3073. "type": "library",
  3074. "autoload": {
  3075. "psr-4": {
  3076. "DeepCopy\\": "src/DeepCopy/"
  3077. }
  3078. },
  3079. "notification-url": "https://packagist.org/downloads/",
  3080. "license": [
  3081. "MIT"
  3082. ],
  3083. "description": "Create deep copies (clones) of your objects",
  3084. "homepage": "https://github.com/myclabs/DeepCopy",
  3085. "keywords": [
  3086. "clone",
  3087. "copy",
  3088. "duplicate",
  3089. "object",
  3090. "object graph"
  3091. ],
  3092. "time": "2017-01-26 22:05:40"
  3093. },
  3094. {
  3095. "name": "phpdocumentor/reflection-common",
  3096. "version": "1.0",
  3097. "source": {
  3098. "type": "git",
  3099. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3100. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  3101. },
  3102. "dist": {
  3103. "type": "zip",
  3104. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  3105. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  3106. "shasum": ""
  3107. },
  3108. "require": {
  3109. "php": ">=5.5"
  3110. },
  3111. "require-dev": {
  3112. "phpunit/phpunit": "^4.6"
  3113. },
  3114. "type": "library",
  3115. "extra": {
  3116. "branch-alias": {
  3117. "dev-master": "1.0.x-dev"
  3118. }
  3119. },
  3120. "autoload": {
  3121. "psr-4": {
  3122. "phpDocumentor\\Reflection\\": [
  3123. "src"
  3124. ]
  3125. }
  3126. },
  3127. "notification-url": "https://packagist.org/downloads/",
  3128. "license": [
  3129. "MIT"
  3130. ],
  3131. "authors": [
  3132. {
  3133. "name": "Jaap van Otterdijk",
  3134. "email": "opensource@ijaap.nl"
  3135. }
  3136. ],
  3137. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3138. "homepage": "http://www.phpdoc.org",
  3139. "keywords": [
  3140. "FQSEN",
  3141. "phpDocumentor",
  3142. "phpdoc",
  3143. "reflection",
  3144. "static analysis"
  3145. ],
  3146. "time": "2015-12-27 11:43:31"
  3147. },
  3148. {
  3149. "name": "phpdocumentor/reflection-docblock",
  3150. "version": "3.1.1",
  3151. "source": {
  3152. "type": "git",
  3153. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3154. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e"
  3155. },
  3156. "dist": {
  3157. "type": "zip",
  3158. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  3159. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  3160. "shasum": ""
  3161. },
  3162. "require": {
  3163. "php": ">=5.5",
  3164. "phpdocumentor/reflection-common": "^1.0@dev",
  3165. "phpdocumentor/type-resolver": "^0.2.0",
  3166. "webmozart/assert": "^1.0"
  3167. },
  3168. "require-dev": {
  3169. "mockery/mockery": "^0.9.4",
  3170. "phpunit/phpunit": "^4.4"
  3171. },
  3172. "type": "library",
  3173. "autoload": {
  3174. "psr-4": {
  3175. "phpDocumentor\\Reflection\\": [
  3176. "src/"
  3177. ]
  3178. }
  3179. },
  3180. "notification-url": "https://packagist.org/downloads/",
  3181. "license": [
  3182. "MIT"
  3183. ],
  3184. "authors": [
  3185. {
  3186. "name": "Mike van Riel",
  3187. "email": "me@mikevanriel.com"
  3188. }
  3189. ],
  3190. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3191. "time": "2016-09-30 07:12:33"
  3192. },
  3193. {
  3194. "name": "phpdocumentor/type-resolver",
  3195. "version": "0.2.1",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3199. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  3204. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  3205. "shasum": ""
  3206. },
  3207. "require": {
  3208. "php": ">=5.5",
  3209. "phpdocumentor/reflection-common": "^1.0"
  3210. },
  3211. "require-dev": {
  3212. "mockery/mockery": "^0.9.4",
  3213. "phpunit/phpunit": "^5.2||^4.8.24"
  3214. },
  3215. "type": "library",
  3216. "extra": {
  3217. "branch-alias": {
  3218. "dev-master": "1.0.x-dev"
  3219. }
  3220. },
  3221. "autoload": {
  3222. "psr-4": {
  3223. "phpDocumentor\\Reflection\\": [
  3224. "src/"
  3225. ]
  3226. }
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "Mike van Riel",
  3235. "email": "me@mikevanriel.com"
  3236. }
  3237. ],
  3238. "time": "2016-11-25 06:54:22"
  3239. },
  3240. {
  3241. "name": "phpspec/prophecy",
  3242. "version": "v1.6.2",
  3243. "source": {
  3244. "type": "git",
  3245. "url": "https://github.com/phpspec/prophecy.git",
  3246. "reference": "6c52c2722f8460122f96f86346600e1077ce22cb"
  3247. },
  3248. "dist": {
  3249. "type": "zip",
  3250. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/6c52c2722f8460122f96f86346600e1077ce22cb",
  3251. "reference": "6c52c2722f8460122f96f86346600e1077ce22cb",
  3252. "shasum": ""
  3253. },
  3254. "require": {
  3255. "doctrine/instantiator": "^1.0.2",
  3256. "php": "^5.3|^7.0",
  3257. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  3258. "sebastian/comparator": "^1.1",
  3259. "sebastian/recursion-context": "^1.0|^2.0"
  3260. },
  3261. "require-dev": {
  3262. "phpspec/phpspec": "^2.0",
  3263. "phpunit/phpunit": "^4.8 || ^5.6.5"
  3264. },
  3265. "type": "library",
  3266. "extra": {
  3267. "branch-alias": {
  3268. "dev-master": "1.6.x-dev"
  3269. }
  3270. },
  3271. "autoload": {
  3272. "psr-0": {
  3273. "Prophecy\\": "src/"
  3274. }
  3275. },
  3276. "notification-url": "https://packagist.org/downloads/",
  3277. "license": [
  3278. "MIT"
  3279. ],
  3280. "authors": [
  3281. {
  3282. "name": "Konstantin Kudryashov",
  3283. "email": "ever.zet@gmail.com",
  3284. "homepage": "http://everzet.com"
  3285. },
  3286. {
  3287. "name": "Marcello Duarte",
  3288. "email": "marcello.duarte@gmail.com"
  3289. }
  3290. ],
  3291. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3292. "homepage": "https://github.com/phpspec/prophecy",
  3293. "keywords": [
  3294. "Double",
  3295. "Dummy",
  3296. "fake",
  3297. "mock",
  3298. "spy",
  3299. "stub"
  3300. ],
  3301. "time": "2016-11-21 14:58:47"
  3302. },
  3303. {
  3304. "name": "phpunit/php-code-coverage",
  3305. "version": "4.0.5",
  3306. "source": {
  3307. "type": "git",
  3308. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3309. "reference": "c19cfc7cbb0e9338d8c469c7eedecc2a428b0971"
  3310. },
  3311. "dist": {
  3312. "type": "zip",
  3313. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/php-code-coverage/c19cfc7cbb0e9338d8c469c7eedecc2a428b0971.zip",
  3314. "reference": "c19cfc7cbb0e9338d8c469c7eedecc2a428b0971",
  3315. "shasum": ""
  3316. },
  3317. "require": {
  3318. "php": "^5.6 || ^7.0",
  3319. "phpunit/php-file-iterator": "~1.3",
  3320. "phpunit/php-text-template": "~1.2",
  3321. "phpunit/php-token-stream": "^1.4.2",
  3322. "sebastian/code-unit-reverse-lookup": "~1.0",
  3323. "sebastian/environment": "^1.3.2 || ^2.0",
  3324. "sebastian/version": "~1.0|~2.0"
  3325. },
  3326. "require-dev": {
  3327. "ext-xdebug": ">=2.1.4",
  3328. "phpunit/phpunit": "^5.4"
  3329. },
  3330. "suggest": {
  3331. "ext-dom": "*",
  3332. "ext-xdebug": ">=2.4.0",
  3333. "ext-xmlwriter": "*"
  3334. },
  3335. "type": "library",
  3336. "extra": {
  3337. "branch-alias": {
  3338. "dev-master": "4.0.x-dev"
  3339. }
  3340. },
  3341. "autoload": {
  3342. "classmap": [
  3343. "src/"
  3344. ]
  3345. },
  3346. "notification-url": "https://packagist.org/downloads/",
  3347. "license": [
  3348. "BSD-3-Clause"
  3349. ],
  3350. "authors": [
  3351. {
  3352. "name": "Sebastian Bergmann",
  3353. "email": "sb@sebastian-bergmann.de",
  3354. "role": "lead"
  3355. }
  3356. ],
  3357. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3358. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3359. "keywords": [
  3360. "coverage",
  3361. "testing",
  3362. "xunit"
  3363. ],
  3364. "time": "2017-01-20 15:06:43"
  3365. },
  3366. {
  3367. "name": "phpunit/php-file-iterator",
  3368. "version": "1.4.2",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3372. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  3377. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  3378. "shasum": ""
  3379. },
  3380. "require": {
  3381. "php": ">=5.3.3"
  3382. },
  3383. "type": "library",
  3384. "extra": {
  3385. "branch-alias": {
  3386. "dev-master": "1.4.x-dev"
  3387. }
  3388. },
  3389. "autoload": {
  3390. "classmap": [
  3391. "src/"
  3392. ]
  3393. },
  3394. "notification-url": "https://packagist.org/downloads/",
  3395. "license": [
  3396. "BSD-3-Clause"
  3397. ],
  3398. "authors": [
  3399. {
  3400. "name": "Sebastian Bergmann",
  3401. "email": "sb@sebastian-bergmann.de",
  3402. "role": "lead"
  3403. }
  3404. ],
  3405. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3406. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3407. "keywords": [
  3408. "filesystem",
  3409. "iterator"
  3410. ],
  3411. "time": "2016-10-03 07:40:28"
  3412. },
  3413. {
  3414. "name": "phpunit/php-text-template",
  3415. "version": "1.2.1",
  3416. "source": {
  3417. "type": "git",
  3418. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3419. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3420. },
  3421. "dist": {
  3422. "type": "zip",
  3423. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3424. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3425. "shasum": ""
  3426. },
  3427. "require": {
  3428. "php": ">=5.3.3"
  3429. },
  3430. "type": "library",
  3431. "autoload": {
  3432. "classmap": [
  3433. "src/"
  3434. ]
  3435. },
  3436. "notification-url": "https://packagist.org/downloads/",
  3437. "license": [
  3438. "BSD-3-Clause"
  3439. ],
  3440. "authors": [
  3441. {
  3442. "name": "Sebastian Bergmann",
  3443. "email": "sebastian@phpunit.de",
  3444. "role": "lead"
  3445. }
  3446. ],
  3447. "description": "Simple template engine.",
  3448. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3449. "keywords": [
  3450. "template"
  3451. ],
  3452. "time": "2015-06-21 13:50:34"
  3453. },
  3454. {
  3455. "name": "phpunit/php-timer",
  3456. "version": "1.0.8",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3460. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260",
  3465. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
  3466. "shasum": ""
  3467. },
  3468. "require": {
  3469. "php": ">=5.3.3"
  3470. },
  3471. "require-dev": {
  3472. "phpunit/phpunit": "~4|~5"
  3473. },
  3474. "type": "library",
  3475. "autoload": {
  3476. "classmap": [
  3477. "src/"
  3478. ]
  3479. },
  3480. "notification-url": "https://packagist.org/downloads/",
  3481. "license": [
  3482. "BSD-3-Clause"
  3483. ],
  3484. "authors": [
  3485. {
  3486. "name": "Sebastian Bergmann",
  3487. "email": "sb@sebastian-bergmann.de",
  3488. "role": "lead"
  3489. }
  3490. ],
  3491. "description": "Utility class for timing",
  3492. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3493. "keywords": [
  3494. "timer"
  3495. ],
  3496. "time": "2016-05-12 18:03:57"
  3497. },
  3498. {
  3499. "name": "phpunit/php-token-stream",
  3500. "version": "1.4.9",
  3501. "source": {
  3502. "type": "git",
  3503. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3504. "reference": "3b402f65a4cc90abf6e1104e388b896ce209631b"
  3505. },
  3506. "dist": {
  3507. "type": "zip",
  3508. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3b402f65a4cc90abf6e1104e388b896ce209631b",
  3509. "reference": "3b402f65a4cc90abf6e1104e388b896ce209631b",
  3510. "shasum": ""
  3511. },
  3512. "require": {
  3513. "ext-tokenizer": "*",
  3514. "php": ">=5.3.3"
  3515. },
  3516. "require-dev": {
  3517. "phpunit/phpunit": "~4.2"
  3518. },
  3519. "type": "library",
  3520. "extra": {
  3521. "branch-alias": {
  3522. "dev-master": "1.4-dev"
  3523. }
  3524. },
  3525. "autoload": {
  3526. "classmap": [
  3527. "src/"
  3528. ]
  3529. },
  3530. "notification-url": "https://packagist.org/downloads/",
  3531. "license": [
  3532. "BSD-3-Clause"
  3533. ],
  3534. "authors": [
  3535. {
  3536. "name": "Sebastian Bergmann",
  3537. "email": "sebastian@phpunit.de"
  3538. }
  3539. ],
  3540. "description": "Wrapper around PHP's tokenizer extension.",
  3541. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3542. "keywords": [
  3543. "tokenizer"
  3544. ],
  3545. "time": "2016-11-15 14:06:22"
  3546. },
  3547. {
  3548. "name": "phpunit/phpunit",
  3549. "version": "5.7.14",
  3550. "source": {
  3551. "type": "git",
  3552. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3553. "reference": "4906b8faf23e42612182fd212eb6f4c0f2954b57"
  3554. },
  3555. "dist": {
  3556. "type": "zip",
  3557. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/phpunit/4906b8faf23e42612182fd212eb6f4c0f2954b57.zip",
  3558. "reference": "4906b8faf23e42612182fd212eb6f4c0f2954b57",
  3559. "shasum": ""
  3560. },
  3561. "require": {
  3562. "ext-dom": "*",
  3563. "ext-json": "*",
  3564. "ext-libxml": "*",
  3565. "ext-mbstring": "*",
  3566. "ext-xml": "*",
  3567. "myclabs/deep-copy": "~1.3",
  3568. "php": "^5.6 || ^7.0",
  3569. "phpspec/prophecy": "^1.6.2",
  3570. "phpunit/php-code-coverage": "^4.0.4",
  3571. "phpunit/php-file-iterator": "~1.4",
  3572. "phpunit/php-text-template": "~1.2",
  3573. "phpunit/php-timer": "^1.0.6",
  3574. "phpunit/phpunit-mock-objects": "^3.2",
  3575. "sebastian/comparator": "^1.2.4",
  3576. "sebastian/diff": "~1.2",
  3577. "sebastian/environment": "^1.3.4 || ^2.0",
  3578. "sebastian/exporter": "~2.0",
  3579. "sebastian/global-state": "^1.1",
  3580. "sebastian/object-enumerator": "~2.0",
  3581. "sebastian/resource-operations": "~1.0",
  3582. "sebastian/version": "~1.0.3|~2.0",
  3583. "symfony/yaml": "~2.1|~3.0"
  3584. },
  3585. "conflict": {
  3586. "phpdocumentor/reflection-docblock": "3.0.2"
  3587. },
  3588. "require-dev": {
  3589. "ext-pdo": "*"
  3590. },
  3591. "suggest": {
  3592. "ext-xdebug": "*",
  3593. "phpunit/php-invoker": "~1.1"
  3594. },
  3595. "bin": [
  3596. "phpunit"
  3597. ],
  3598. "type": "library",
  3599. "extra": {
  3600. "branch-alias": {
  3601. "dev-master": "5.7.x-dev"
  3602. }
  3603. },
  3604. "autoload": {
  3605. "classmap": [
  3606. "src/"
  3607. ]
  3608. },
  3609. "notification-url": "https://packagist.org/downloads/",
  3610. "license": [
  3611. "BSD-3-Clause"
  3612. ],
  3613. "authors": [
  3614. {
  3615. "name": "Sebastian Bergmann",
  3616. "email": "sebastian@phpunit.de",
  3617. "role": "lead"
  3618. }
  3619. ],
  3620. "description": "The PHP Unit Testing framework.",
  3621. "homepage": "https://phpunit.de/",
  3622. "keywords": [
  3623. "phpunit",
  3624. "testing",
  3625. "xunit"
  3626. ],
  3627. "time": "2017-02-19 07:22:16"
  3628. },
  3629. {
  3630. "name": "phpunit/phpunit-mock-objects",
  3631. "version": "3.4.3",
  3632. "source": {
  3633. "type": "git",
  3634. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3635. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24"
  3636. },
  3637. "dist": {
  3638. "type": "zip",
  3639. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  3640. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  3641. "shasum": ""
  3642. },
  3643. "require": {
  3644. "doctrine/instantiator": "^1.0.2",
  3645. "php": "^5.6 || ^7.0",
  3646. "phpunit/php-text-template": "^1.2",
  3647. "sebastian/exporter": "^1.2 || ^2.0"
  3648. },
  3649. "conflict": {
  3650. "phpunit/phpunit": "<5.4.0"
  3651. },
  3652. "require-dev": {
  3653. "phpunit/phpunit": "^5.4"
  3654. },
  3655. "suggest": {
  3656. "ext-soap": "*"
  3657. },
  3658. "type": "library",
  3659. "extra": {
  3660. "branch-alias": {
  3661. "dev-master": "3.2.x-dev"
  3662. }
  3663. },
  3664. "autoload": {
  3665. "classmap": [
  3666. "src/"
  3667. ]
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "BSD-3-Clause"
  3672. ],
  3673. "authors": [
  3674. {
  3675. "name": "Sebastian Bergmann",
  3676. "email": "sb@sebastian-bergmann.de",
  3677. "role": "lead"
  3678. }
  3679. ],
  3680. "description": "Mock Object library for PHPUnit",
  3681. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3682. "keywords": [
  3683. "mock",
  3684. "xunit"
  3685. ],
  3686. "time": "2016-12-08 20:27:08"
  3687. },
  3688. {
  3689. "name": "sebastian/code-unit-reverse-lookup",
  3690. "version": "1.0.0",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3694. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  3699. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "php": ">=5.6"
  3704. },
  3705. "require-dev": {
  3706. "phpunit/phpunit": "~5"
  3707. },
  3708. "type": "library",
  3709. "extra": {
  3710. "branch-alias": {
  3711. "dev-master": "1.0.x-dev"
  3712. }
  3713. },
  3714. "autoload": {
  3715. "classmap": [
  3716. "src/"
  3717. ]
  3718. },
  3719. "notification-url": "https://packagist.org/downloads/",
  3720. "license": [
  3721. "BSD-3-Clause"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "Sebastian Bergmann",
  3726. "email": "sebastian@phpunit.de"
  3727. }
  3728. ],
  3729. "description": "Looks up which function or method a line of code belongs to",
  3730. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3731. "time": "2016-02-13 06:45:14"
  3732. },
  3733. {
  3734. "name": "sebastian/comparator",
  3735. "version": "1.2.4",
  3736. "source": {
  3737. "type": "git",
  3738. "url": "https://github.com/sebastianbergmann/comparator.git",
  3739. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  3740. },
  3741. "dist": {
  3742. "type": "zip",
  3743. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/comparator/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be.zip",
  3744. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  3745. "shasum": ""
  3746. },
  3747. "require": {
  3748. "php": ">=5.3.3",
  3749. "sebastian/diff": "~1.2",
  3750. "sebastian/exporter": "~1.2 || ~2.0"
  3751. },
  3752. "require-dev": {
  3753. "phpunit/phpunit": "~4.4"
  3754. },
  3755. "type": "library",
  3756. "extra": {
  3757. "branch-alias": {
  3758. "dev-master": "1.2.x-dev"
  3759. }
  3760. },
  3761. "autoload": {
  3762. "classmap": [
  3763. "src/"
  3764. ]
  3765. },
  3766. "notification-url": "https://packagist.org/downloads/",
  3767. "license": [
  3768. "BSD-3-Clause"
  3769. ],
  3770. "authors": [
  3771. {
  3772. "name": "Jeff Welch",
  3773. "email": "whatthejeff@gmail.com"
  3774. },
  3775. {
  3776. "name": "Volker Dusch",
  3777. "email": "github@wallbash.com"
  3778. },
  3779. {
  3780. "name": "Bernhard Schussek",
  3781. "email": "bschussek@2bepublished.at"
  3782. },
  3783. {
  3784. "name": "Sebastian Bergmann",
  3785. "email": "sebastian@phpunit.de"
  3786. }
  3787. ],
  3788. "description": "Provides the functionality to compare PHP values for equality",
  3789. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  3790. "keywords": [
  3791. "comparator",
  3792. "compare",
  3793. "equality"
  3794. ],
  3795. "time": "2017-01-29 09:50:25"
  3796. },
  3797. {
  3798. "name": "sebastian/diff",
  3799. "version": "1.4.1",
  3800. "source": {
  3801. "type": "git",
  3802. "url": "https://github.com/sebastianbergmann/diff.git",
  3803. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  3804. },
  3805. "dist": {
  3806. "type": "zip",
  3807. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  3808. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  3809. "shasum": ""
  3810. },
  3811. "require": {
  3812. "php": ">=5.3.3"
  3813. },
  3814. "require-dev": {
  3815. "phpunit/phpunit": "~4.8"
  3816. },
  3817. "type": "library",
  3818. "extra": {
  3819. "branch-alias": {
  3820. "dev-master": "1.4-dev"
  3821. }
  3822. },
  3823. "autoload": {
  3824. "classmap": [
  3825. "src/"
  3826. ]
  3827. },
  3828. "notification-url": "https://packagist.org/downloads/",
  3829. "license": [
  3830. "BSD-3-Clause"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "Kore Nordmann",
  3835. "email": "mail@kore-nordmann.de"
  3836. },
  3837. {
  3838. "name": "Sebastian Bergmann",
  3839. "email": "sebastian@phpunit.de"
  3840. }
  3841. ],
  3842. "description": "Diff implementation",
  3843. "homepage": "https://github.com/sebastianbergmann/diff",
  3844. "keywords": [
  3845. "diff"
  3846. ],
  3847. "time": "2015-12-08 07:14:41"
  3848. },
  3849. {
  3850. "name": "sebastian/environment",
  3851. "version": "2.0.0",
  3852. "source": {
  3853. "type": "git",
  3854. "url": "https://github.com/sebastianbergmann/environment.git",
  3855. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  3856. },
  3857. "dist": {
  3858. "type": "zip",
  3859. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  3860. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  3861. "shasum": ""
  3862. },
  3863. "require": {
  3864. "php": "^5.6 || ^7.0"
  3865. },
  3866. "require-dev": {
  3867. "phpunit/phpunit": "^5.0"
  3868. },
  3869. "type": "library",
  3870. "extra": {
  3871. "branch-alias": {
  3872. "dev-master": "2.0.x-dev"
  3873. }
  3874. },
  3875. "autoload": {
  3876. "classmap": [
  3877. "src/"
  3878. ]
  3879. },
  3880. "notification-url": "https://packagist.org/downloads/",
  3881. "license": [
  3882. "BSD-3-Clause"
  3883. ],
  3884. "authors": [
  3885. {
  3886. "name": "Sebastian Bergmann",
  3887. "email": "sebastian@phpunit.de"
  3888. }
  3889. ],
  3890. "description": "Provides functionality to handle HHVM/PHP environments",
  3891. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3892. "keywords": [
  3893. "Xdebug",
  3894. "environment",
  3895. "hhvm"
  3896. ],
  3897. "time": "2016-11-26 07:53:53"
  3898. },
  3899. {
  3900. "name": "sebastian/exporter",
  3901. "version": "2.0.0",
  3902. "source": {
  3903. "type": "git",
  3904. "url": "https://github.com/sebastianbergmann/exporter.git",
  3905. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  3906. },
  3907. "dist": {
  3908. "type": "zip",
  3909. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  3910. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  3911. "shasum": ""
  3912. },
  3913. "require": {
  3914. "php": ">=5.3.3",
  3915. "sebastian/recursion-context": "~2.0"
  3916. },
  3917. "require-dev": {
  3918. "ext-mbstring": "*",
  3919. "phpunit/phpunit": "~4.4"
  3920. },
  3921. "type": "library",
  3922. "extra": {
  3923. "branch-alias": {
  3924. "dev-master": "2.0.x-dev"
  3925. }
  3926. },
  3927. "autoload": {
  3928. "classmap": [
  3929. "src/"
  3930. ]
  3931. },
  3932. "notification-url": "https://packagist.org/downloads/",
  3933. "license": [
  3934. "BSD-3-Clause"
  3935. ],
  3936. "authors": [
  3937. {
  3938. "name": "Jeff Welch",
  3939. "email": "whatthejeff@gmail.com"
  3940. },
  3941. {
  3942. "name": "Volker Dusch",
  3943. "email": "github@wallbash.com"
  3944. },
  3945. {
  3946. "name": "Bernhard Schussek",
  3947. "email": "bschussek@2bepublished.at"
  3948. },
  3949. {
  3950. "name": "Sebastian Bergmann",
  3951. "email": "sebastian@phpunit.de"
  3952. },
  3953. {
  3954. "name": "Adam Harvey",
  3955. "email": "aharvey@php.net"
  3956. }
  3957. ],
  3958. "description": "Provides the functionality to export PHP variables for visualization",
  3959. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3960. "keywords": [
  3961. "export",
  3962. "exporter"
  3963. ],
  3964. "time": "2016-11-19 08:54:04"
  3965. },
  3966. {
  3967. "name": "sebastian/global-state",
  3968. "version": "1.1.1",
  3969. "source": {
  3970. "type": "git",
  3971. "url": "https://github.com/sebastianbergmann/global-state.git",
  3972. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3973. },
  3974. "dist": {
  3975. "type": "zip",
  3976. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3977. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3978. "shasum": ""
  3979. },
  3980. "require": {
  3981. "php": ">=5.3.3"
  3982. },
  3983. "require-dev": {
  3984. "phpunit/phpunit": "~4.2"
  3985. },
  3986. "suggest": {
  3987. "ext-uopz": "*"
  3988. },
  3989. "type": "library",
  3990. "extra": {
  3991. "branch-alias": {
  3992. "dev-master": "1.0-dev"
  3993. }
  3994. },
  3995. "autoload": {
  3996. "classmap": [
  3997. "src/"
  3998. ]
  3999. },
  4000. "notification-url": "https://packagist.org/downloads/",
  4001. "license": [
  4002. "BSD-3-Clause"
  4003. ],
  4004. "authors": [
  4005. {
  4006. "name": "Sebastian Bergmann",
  4007. "email": "sebastian@phpunit.de"
  4008. }
  4009. ],
  4010. "description": "Snapshotting of global state",
  4011. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4012. "keywords": [
  4013. "global state"
  4014. ],
  4015. "time": "2015-10-12 03:26:01"
  4016. },
  4017. {
  4018. "name": "sebastian/object-enumerator",
  4019. "version": "2.0.1",
  4020. "source": {
  4021. "type": "git",
  4022. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4023. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  4024. },
  4025. "dist": {
  4026. "type": "zip",
  4027. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/object-enumerator/1311872ac850040a79c3c058bea3e22d0f09cbb7.zip",
  4028. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  4029. "shasum": ""
  4030. },
  4031. "require": {
  4032. "php": ">=5.6",
  4033. "sebastian/recursion-context": "~2.0"
  4034. },
  4035. "require-dev": {
  4036. "phpunit/phpunit": "~5"
  4037. },
  4038. "type": "library",
  4039. "extra": {
  4040. "branch-alias": {
  4041. "dev-master": "2.0.x-dev"
  4042. }
  4043. },
  4044. "autoload": {
  4045. "classmap": [
  4046. "src/"
  4047. ]
  4048. },
  4049. "notification-url": "https://packagist.org/downloads/",
  4050. "license": [
  4051. "BSD-3-Clause"
  4052. ],
  4053. "authors": [
  4054. {
  4055. "name": "Sebastian Bergmann",
  4056. "email": "sebastian@phpunit.de"
  4057. }
  4058. ],
  4059. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4060. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4061. "time": "2017-02-18 15:18:39"
  4062. },
  4063. {
  4064. "name": "sebastian/recursion-context",
  4065. "version": "2.0.0",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4069. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  4074. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  4075. "shasum": ""
  4076. },
  4077. "require": {
  4078. "php": ">=5.3.3"
  4079. },
  4080. "require-dev": {
  4081. "phpunit/phpunit": "~4.4"
  4082. },
  4083. "type": "library",
  4084. "extra": {
  4085. "branch-alias": {
  4086. "dev-master": "2.0.x-dev"
  4087. }
  4088. },
  4089. "autoload": {
  4090. "classmap": [
  4091. "src/"
  4092. ]
  4093. },
  4094. "notification-url": "https://packagist.org/downloads/",
  4095. "license": [
  4096. "BSD-3-Clause"
  4097. ],
  4098. "authors": [
  4099. {
  4100. "name": "Jeff Welch",
  4101. "email": "whatthejeff@gmail.com"
  4102. },
  4103. {
  4104. "name": "Sebastian Bergmann",
  4105. "email": "sebastian@phpunit.de"
  4106. },
  4107. {
  4108. "name": "Adam Harvey",
  4109. "email": "aharvey@php.net"
  4110. }
  4111. ],
  4112. "description": "Provides functionality to recursively process PHP variables",
  4113. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4114. "time": "2016-11-19 07:33:16"
  4115. },
  4116. {
  4117. "name": "sebastian/resource-operations",
  4118. "version": "1.0.0",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4122. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  4127. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  4128. "shasum": ""
  4129. },
  4130. "require": {
  4131. "php": ">=5.6.0"
  4132. },
  4133. "type": "library",
  4134. "extra": {
  4135. "branch-alias": {
  4136. "dev-master": "1.0.x-dev"
  4137. }
  4138. },
  4139. "autoload": {
  4140. "classmap": [
  4141. "src/"
  4142. ]
  4143. },
  4144. "notification-url": "https://packagist.org/downloads/",
  4145. "license": [
  4146. "BSD-3-Clause"
  4147. ],
  4148. "authors": [
  4149. {
  4150. "name": "Sebastian Bergmann",
  4151. "email": "sebastian@phpunit.de"
  4152. }
  4153. ],
  4154. "description": "Provides a list of PHP built-in functions that operate on resources",
  4155. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4156. "time": "2015-07-28 20:34:47"
  4157. },
  4158. {
  4159. "name": "sebastian/version",
  4160. "version": "2.0.1",
  4161. "source": {
  4162. "type": "git",
  4163. "url": "https://github.com/sebastianbergmann/version.git",
  4164. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4165. },
  4166. "dist": {
  4167. "type": "zip",
  4168. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4169. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4170. "shasum": ""
  4171. },
  4172. "require": {
  4173. "php": ">=5.6"
  4174. },
  4175. "type": "library",
  4176. "extra": {
  4177. "branch-alias": {
  4178. "dev-master": "2.0.x-dev"
  4179. }
  4180. },
  4181. "autoload": {
  4182. "classmap": [
  4183. "src/"
  4184. ]
  4185. },
  4186. "notification-url": "https://packagist.org/downloads/",
  4187. "license": [
  4188. "BSD-3-Clause"
  4189. ],
  4190. "authors": [
  4191. {
  4192. "name": "Sebastian Bergmann",
  4193. "email": "sebastian@phpunit.de",
  4194. "role": "lead"
  4195. }
  4196. ],
  4197. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4198. "homepage": "https://github.com/sebastianbergmann/version",
  4199. "time": "2016-10-03 07:35:21"
  4200. },
  4201. {
  4202. "name": "symfony/css-selector",
  4203. "version": "v3.1.10",
  4204. "source": {
  4205. "type": "git",
  4206. "url": "https://github.com/symfony/css-selector.git",
  4207. "reference": "722a87478a72d95dc2a3bcf41dc9c2d13fd4cb2d"
  4208. },
  4209. "dist": {
  4210. "type": "zip",
  4211. "url": "https://packagist.phpcomposer.com/files/symfony/css-selector/722a87478a72d95dc2a3bcf41dc9c2d13fd4cb2d.zip",
  4212. "reference": "722a87478a72d95dc2a3bcf41dc9c2d13fd4cb2d",
  4213. "shasum": ""
  4214. },
  4215. "require": {
  4216. "php": ">=5.5.9"
  4217. },
  4218. "type": "library",
  4219. "extra": {
  4220. "branch-alias": {
  4221. "dev-master": "3.1-dev"
  4222. }
  4223. },
  4224. "autoload": {
  4225. "psr-4": {
  4226. "Symfony\\Component\\CssSelector\\": ""
  4227. },
  4228. "exclude-from-classmap": [
  4229. "/Tests/"
  4230. ]
  4231. },
  4232. "notification-url": "https://packagist.org/downloads/",
  4233. "license": [
  4234. "MIT"
  4235. ],
  4236. "authors": [
  4237. {
  4238. "name": "Jean-François Simon",
  4239. "email": "jeanfrancois.simon@sensiolabs.com"
  4240. },
  4241. {
  4242. "name": "Fabien Potencier",
  4243. "email": "fabien@symfony.com"
  4244. },
  4245. {
  4246. "name": "Symfony Community",
  4247. "homepage": "https://symfony.com/contributors"
  4248. }
  4249. ],
  4250. "description": "Symfony CssSelector Component",
  4251. "homepage": "https://symfony.com",
  4252. "time": "2017-01-02 20:31:54"
  4253. },
  4254. {
  4255. "name": "symfony/dom-crawler",
  4256. "version": "v3.1.10",
  4257. "source": {
  4258. "type": "git",
  4259. "url": "https://github.com/symfony/dom-crawler.git",
  4260. "reference": "7eede2a901a19928494194f7d1815a77b9a473a0"
  4261. },
  4262. "dist": {
  4263. "type": "zip",
  4264. "url": "https://packagist.phpcomposer.com/files/symfony/dom-crawler/7eede2a901a19928494194f7d1815a77b9a473a0.zip",
  4265. "reference": "7eede2a901a19928494194f7d1815a77b9a473a0",
  4266. "shasum": ""
  4267. },
  4268. "require": {
  4269. "php": ">=5.5.9",
  4270. "symfony/polyfill-mbstring": "~1.0"
  4271. },
  4272. "require-dev": {
  4273. "symfony/css-selector": "~2.8|~3.0"
  4274. },
  4275. "suggest": {
  4276. "symfony/css-selector": ""
  4277. },
  4278. "type": "library",
  4279. "extra": {
  4280. "branch-alias": {
  4281. "dev-master": "3.1-dev"
  4282. }
  4283. },
  4284. "autoload": {
  4285. "psr-4": {
  4286. "Symfony\\Component\\DomCrawler\\": ""
  4287. },
  4288. "exclude-from-classmap": [
  4289. "/Tests/"
  4290. ]
  4291. },
  4292. "notification-url": "https://packagist.org/downloads/",
  4293. "license": [
  4294. "MIT"
  4295. ],
  4296. "authors": [
  4297. {
  4298. "name": "Fabien Potencier",
  4299. "email": "fabien@symfony.com"
  4300. },
  4301. {
  4302. "name": "Symfony Community",
  4303. "homepage": "https://symfony.com/contributors"
  4304. }
  4305. ],
  4306. "description": "Symfony DomCrawler Component",
  4307. "homepage": "https://symfony.com",
  4308. "time": "2017-01-21 17:13:55"
  4309. },
  4310. {
  4311. "name": "symfony/yaml",
  4312. "version": "v3.2.4",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://github.com/symfony/yaml.git",
  4316. "reference": "9724c684646fcb5387d579b4bfaa63ee0b0c64c8"
  4317. },
  4318. "dist": {
  4319. "type": "zip",
  4320. "url": "https://packagist.phpcomposer.com/files/symfony/yaml/9724c684646fcb5387d579b4bfaa63ee0b0c64c8.zip",
  4321. "reference": "9724c684646fcb5387d579b4bfaa63ee0b0c64c8",
  4322. "shasum": ""
  4323. },
  4324. "require": {
  4325. "php": ">=5.5.9"
  4326. },
  4327. "require-dev": {
  4328. "symfony/console": "~2.8|~3.0"
  4329. },
  4330. "suggest": {
  4331. "symfony/console": "For validating YAML files using the lint command"
  4332. },
  4333. "type": "library",
  4334. "extra": {
  4335. "branch-alias": {
  4336. "dev-master": "3.2-dev"
  4337. }
  4338. },
  4339. "autoload": {
  4340. "psr-4": {
  4341. "Symfony\\Component\\Yaml\\": ""
  4342. },
  4343. "exclude-from-classmap": [
  4344. "/Tests/"
  4345. ]
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "MIT"
  4350. ],
  4351. "authors": [
  4352. {
  4353. "name": "Fabien Potencier",
  4354. "email": "fabien@symfony.com"
  4355. },
  4356. {
  4357. "name": "Symfony Community",
  4358. "homepage": "https://symfony.com/contributors"
  4359. }
  4360. ],
  4361. "description": "Symfony Yaml Component",
  4362. "homepage": "https://symfony.com",
  4363. "time": "2017-02-16 22:46:52"
  4364. },
  4365. {
  4366. "name": "webmozart/assert",
  4367. "version": "1.2.0",
  4368. "source": {
  4369. "type": "git",
  4370. "url": "https://github.com/webmozart/assert.git",
  4371. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  4372. },
  4373. "dist": {
  4374. "type": "zip",
  4375. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  4376. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  4377. "shasum": ""
  4378. },
  4379. "require": {
  4380. "php": "^5.3.3 || ^7.0"
  4381. },
  4382. "require-dev": {
  4383. "phpunit/phpunit": "^4.6",
  4384. "sebastian/version": "^1.0.1"
  4385. },
  4386. "type": "library",
  4387. "extra": {
  4388. "branch-alias": {
  4389. "dev-master": "1.3-dev"
  4390. }
  4391. },
  4392. "autoload": {
  4393. "psr-4": {
  4394. "Webmozart\\Assert\\": "src/"
  4395. }
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "MIT"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "Bernhard Schussek",
  4404. "email": "bschussek@gmail.com"
  4405. }
  4406. ],
  4407. "description": "Assertions to validate method input/output with nice error messages.",
  4408. "keywords": [
  4409. "assert",
  4410. "check",
  4411. "validate"
  4412. ],
  4413. "time": "2016-11-23 20:04:58"
  4414. }
  4415. ],
  4416. "aliases": [],
  4417. "minimum-stability": "stable",
  4418. "stability-flags": [],
  4419. "prefer-stable": false,
  4420. "prefer-lowest": false,
  4421. "platform": {
  4422. "php": ">=5.6.4"
  4423. },
  4424. "platform-dev": []
  4425. }