composer.lock 155 KB

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