DC Team 的 Laravel 基底框架、資料庫描述、開發規範、環境佈署、版控規範

composer.lock 152KB

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