composer.lock 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682
  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#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "75c3adc0e66b3cde5dffa28ee7ef75ed",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "beberlei/assert",
  12. "version": "v2.9.2",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/beberlei/assert.git",
  16. "reference": "2d555f72f3f4ff9e72a7bc17cb8a53c86737c8a0"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/beberlei/assert/zipball/2d555f72f3f4ff9e72a7bc17cb8a53c86737c8a0",
  21. "reference": "2d555f72f3f4ff9e72a7bc17cb8a53c86737c8a0",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "ext-mbstring": "*",
  26. "php": ">=5.3"
  27. },
  28. "require-dev": {
  29. "friendsofphp/php-cs-fixer": "^2.1.1",
  30. "phpunit/phpunit": "^4.8.35|^5.7"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "psr-4": {
  35. "Assert\\": "lib/Assert"
  36. },
  37. "files": [
  38. "lib/Assert/functions.php"
  39. ]
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "BSD-2-Clause"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Benjamin Eberlei",
  48. "email": "kontakt@beberlei.de",
  49. "role": "Lead Developer"
  50. },
  51. {
  52. "name": "Richard Quadling",
  53. "email": "rquadling@gmail.com",
  54. "role": "Collaborator"
  55. }
  56. ],
  57. "description": "Thin assertion library for input validation in business models.",
  58. "keywords": [
  59. "assert",
  60. "assertion",
  61. "validation"
  62. ],
  63. "time": "2018-01-25T13:33:16+00:00"
  64. },
  65. {
  66. "name": "dealerdirect/phpcodesniffer-composer-installer",
  67. "version": "v0.4.4",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
  71. "reference": "2e41850d5f7797cbb1af7b030d245b3b24e63a08"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/2e41850d5f7797cbb1af7b030d245b3b24e63a08",
  76. "reference": "2e41850d5f7797cbb1af7b030d245b3b24e63a08",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "composer-plugin-api": "^1.0",
  81. "php": "^5.3|^7",
  82. "squizlabs/php_codesniffer": "*"
  83. },
  84. "require-dev": {
  85. "composer/composer": "*",
  86. "wimg/php-compatibility": "^8.0"
  87. },
  88. "suggest": {
  89. "dealerdirect/qa-tools": "All the PHP QA tools you'll need"
  90. },
  91. "type": "composer-plugin",
  92. "extra": {
  93. "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  94. },
  95. "autoload": {
  96. "psr-4": {
  97. "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "Franck Nijhof",
  107. "email": "f.nijhof@dealerdirect.nl",
  108. "homepage": "http://workingatdealerdirect.eu",
  109. "role": "Developer"
  110. }
  111. ],
  112. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  113. "homepage": "http://workingatdealerdirect.eu",
  114. "keywords": [
  115. "PHPCodeSniffer",
  116. "PHP_CodeSniffer",
  117. "code quality",
  118. "codesniffer",
  119. "composer",
  120. "installer",
  121. "phpcs",
  122. "plugin",
  123. "qa",
  124. "quality",
  125. "standard",
  126. "standards",
  127. "style guide",
  128. "stylecheck",
  129. "tests"
  130. ],
  131. "time": "2017-12-06T16:27:17+00:00"
  132. },
  133. {
  134. "name": "doctrine/annotations",
  135. "version": "v1.6.0",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/doctrine/annotations.git",
  139. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  144. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "doctrine/lexer": "1.*",
  149. "php": "^7.1"
  150. },
  151. "require-dev": {
  152. "doctrine/cache": "1.*",
  153. "phpunit/phpunit": "^6.4"
  154. },
  155. "type": "library",
  156. "extra": {
  157. "branch-alias": {
  158. "dev-master": "1.6.x-dev"
  159. }
  160. },
  161. "autoload": {
  162. "psr-4": {
  163. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Roman Borschel",
  173. "email": "roman@code-factory.org"
  174. },
  175. {
  176. "name": "Benjamin Eberlei",
  177. "email": "kontakt@beberlei.de"
  178. },
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Jonathan Wage",
  185. "email": "jonwage@gmail.com"
  186. },
  187. {
  188. "name": "Johannes Schmitt",
  189. "email": "schmittjoh@gmail.com"
  190. }
  191. ],
  192. "description": "Docblock Annotations Parser",
  193. "homepage": "http://www.doctrine-project.org",
  194. "keywords": [
  195. "annotations",
  196. "docblock",
  197. "parser"
  198. ],
  199. "time": "2017-12-06T07:11:42+00:00"
  200. },
  201. {
  202. "name": "doctrine/coding-standard",
  203. "version": "5.0.0",
  204. "source": {
  205. "type": "git",
  206. "url": "https://github.com/doctrine/coding-standard.git",
  207. "reference": "bb8de042a25c4fb59a2c55c350dc55cc00227a8c"
  208. },
  209. "dist": {
  210. "type": "zip",
  211. "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/bb8de042a25c4fb59a2c55c350dc55cc00227a8c",
  212. "reference": "bb8de042a25c4fb59a2c55c350dc55cc00227a8c",
  213. "shasum": ""
  214. },
  215. "require": {
  216. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  217. "php": "^7.1",
  218. "slevomat/coding-standard": "^4.8.0",
  219. "squizlabs/php_codesniffer": "^3.3.2"
  220. },
  221. "type": "phpcodesniffer-standard",
  222. "extra": {
  223. "branch-alias": {
  224. "dev-master": "5.0.x-dev"
  225. }
  226. },
  227. "autoload": {
  228. "psr-4": {
  229. "Doctrine\\Sniffs\\": "lib/Doctrine/Sniffs"
  230. }
  231. },
  232. "notification-url": "https://packagist.org/downloads/",
  233. "license": [
  234. "MIT"
  235. ],
  236. "authors": [
  237. {
  238. "name": "Benjamin Eberlei",
  239. "email": "kontakt@beberlei.de"
  240. },
  241. {
  242. "name": "Steve Müller",
  243. "email": "st.mueller@dzh-online.de"
  244. }
  245. ],
  246. "description": "The Doctrine Coding Standard is a set of PHPCS rules applied to all Doctrine projects.",
  247. "homepage": "https://www.doctrine-project.org/projects/coding-standard.html",
  248. "keywords": [
  249. "checks",
  250. "code",
  251. "coding",
  252. "cs",
  253. "doctrine",
  254. "rules",
  255. "sniffer",
  256. "sniffs",
  257. "standard",
  258. "style"
  259. ],
  260. "time": "2018-09-24T19:08:56+00:00"
  261. },
  262. {
  263. "name": "doctrine/lexer",
  264. "version": "v1.0.1",
  265. "source": {
  266. "type": "git",
  267. "url": "https://github.com/doctrine/lexer.git",
  268. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  269. },
  270. "dist": {
  271. "type": "zip",
  272. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  273. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  274. "shasum": ""
  275. },
  276. "require": {
  277. "php": ">=5.3.2"
  278. },
  279. "type": "library",
  280. "extra": {
  281. "branch-alias": {
  282. "dev-master": "1.0.x-dev"
  283. }
  284. },
  285. "autoload": {
  286. "psr-0": {
  287. "Doctrine\\Common\\Lexer\\": "lib/"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Roman Borschel",
  297. "email": "roman@code-factory.org"
  298. },
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Johannes Schmitt",
  305. "email": "schmittjoh@gmail.com"
  306. }
  307. ],
  308. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  309. "homepage": "http://www.doctrine-project.org",
  310. "keywords": [
  311. "lexer",
  312. "parser"
  313. ],
  314. "time": "2014-09-09T13:34:57+00:00"
  315. },
  316. {
  317. "name": "lstrojny/functional-php",
  318. "version": "1.7.0",
  319. "source": {
  320. "type": "git",
  321. "url": "https://github.com/lstrojny/functional-php.git",
  322. "reference": "7c2091ddea572e012aa980e5d19d242d3a06ad5b"
  323. },
  324. "dist": {
  325. "type": "zip",
  326. "url": "https://api.github.com/repos/lstrojny/functional-php/zipball/7c2091ddea572e012aa980e5d19d242d3a06ad5b",
  327. "reference": "7c2091ddea572e012aa980e5d19d242d3a06ad5b",
  328. "shasum": ""
  329. },
  330. "require": {
  331. "php": "~7"
  332. },
  333. "require-dev": {
  334. "phpunit/phpunit": "~6"
  335. },
  336. "type": "library",
  337. "extra": {
  338. "branch-alias": {
  339. "dev-master": "1.2-dev"
  340. }
  341. },
  342. "autoload": {
  343. "psr-4": {
  344. "Functional\\": "src/Functional"
  345. },
  346. "files": [
  347. "src/Functional/Average.php",
  348. "src/Functional/Capture.php",
  349. "src/Functional/ConstFunction.php",
  350. "src/Functional/CompareOn.php",
  351. "src/Functional/CompareObjectHashOn.php",
  352. "src/Functional/Compose.php",
  353. "src/Functional/Concat.php",
  354. "src/Functional/Contains.php",
  355. "src/Functional/Curry.php",
  356. "src/Functional/CurryN.php",
  357. "src/Functional/Difference.php",
  358. "src/Functional/DropFirst.php",
  359. "src/Functional/DropLast.php",
  360. "src/Functional/Each.php",
  361. "src/Functional/Equal.php",
  362. "src/Functional/ErrorToException.php",
  363. "src/Functional/Every.php",
  364. "src/Functional/False.php",
  365. "src/Functional/Falsy.php",
  366. "src/Functional/Filter.php",
  367. "src/Functional/First.php",
  368. "src/Functional/FirstIndexOf.php",
  369. "src/Functional/FlatMap.php",
  370. "src/Functional/Flatten.php",
  371. "src/Functional/Flip.php",
  372. "src/Functional/GreaterThan.php",
  373. "src/Functional/GreaterThanOrEqual.php",
  374. "src/Functional/Group.php",
  375. "src/Functional/Head.php",
  376. "src/Functional/Id.php",
  377. "src/Functional/IfElse.php",
  378. "src/Functional/Identical.php",
  379. "src/Functional/IndexesOf.php",
  380. "src/Functional/Intersperse.php",
  381. "src/Functional/Invoke.php",
  382. "src/Functional/InvokeFirst.php",
  383. "src/Functional/InvokeIf.php",
  384. "src/Functional/InvokeLast.php",
  385. "src/Functional/Invoker.php",
  386. "src/Functional/Last.php",
  387. "src/Functional/LastIndexOf.php",
  388. "src/Functional/LessThan.php",
  389. "src/Functional/LessThanOrEqual.php",
  390. "src/Functional/LexicographicCompare.php",
  391. "src/Functional/Map.php",
  392. "src/Functional/Match.php",
  393. "src/Functional/Maximum.php",
  394. "src/Functional/Memoize.php",
  395. "src/Functional/Minimum.php",
  396. "src/Functional/None.php",
  397. "src/Functional/Not.php",
  398. "src/Functional/PartialAny.php",
  399. "src/Functional/PartialLeft.php",
  400. "src/Functional/PartialMethod.php",
  401. "src/Functional/PartialRight.php",
  402. "src/Functional/Partition.php",
  403. "src/Functional/Pick.php",
  404. "src/Functional/Pluck.php",
  405. "src/Functional/Poll.php",
  406. "src/Functional/Product.php",
  407. "src/Functional/Ratio.php",
  408. "src/Functional/ReduceLeft.php",
  409. "src/Functional/ReduceRight.php",
  410. "src/Functional/Reindex.php",
  411. "src/Functional/Reject.php",
  412. "src/Functional/Retry.php",
  413. "src/Functional/Select.php",
  414. "src/Functional/SelectKeys.php",
  415. "src/Functional/SequenceConstant.php",
  416. "src/Functional/SequenceExponential.php",
  417. "src/Functional/SequenceLinear.php",
  418. "src/Functional/Some.php",
  419. "src/Functional/Sort.php",
  420. "src/Functional/Sum.php",
  421. "src/Functional/SuppressError.php",
  422. "src/Functional/Tap.php",
  423. "src/Functional/Tail.php",
  424. "src/Functional/TailRecursion.php",
  425. "src/Functional/True.php",
  426. "src/Functional/Truthy.php",
  427. "src/Functional/Unique.php",
  428. "src/Functional/With.php",
  429. "src/Functional/Zip.php",
  430. "src/Functional/ZipAll.php"
  431. ]
  432. },
  433. "notification-url": "https://packagist.org/downloads/",
  434. "license": [
  435. "MIT"
  436. ],
  437. "authors": [
  438. {
  439. "name": "Lars Strojny",
  440. "email": "lstrojny@php.net",
  441. "homepage": "http://usrportage.de"
  442. },
  443. {
  444. "name": "Max Beutel",
  445. "email": "nash12@gmail.com"
  446. }
  447. ],
  448. "description": "Functional primitives for PHP",
  449. "keywords": [
  450. "functional"
  451. ],
  452. "time": "2018-01-03T10:08:50+00:00"
  453. },
  454. {
  455. "name": "myclabs/deep-copy",
  456. "version": "1.7.0",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/myclabs/DeepCopy.git",
  460. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  465. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "php": "^5.6 || ^7.0"
  470. },
  471. "require-dev": {
  472. "doctrine/collections": "^1.0",
  473. "doctrine/common": "^2.6",
  474. "phpunit/phpunit": "^4.1"
  475. },
  476. "type": "library",
  477. "autoload": {
  478. "psr-4": {
  479. "DeepCopy\\": "src/DeepCopy/"
  480. },
  481. "files": [
  482. "src/DeepCopy/deep_copy.php"
  483. ]
  484. },
  485. "notification-url": "https://packagist.org/downloads/",
  486. "license": [
  487. "MIT"
  488. ],
  489. "description": "Create deep copies (clones) of your objects",
  490. "keywords": [
  491. "clone",
  492. "copy",
  493. "duplicate",
  494. "object",
  495. "object graph"
  496. ],
  497. "time": "2017-10-19T19:58:43+00:00"
  498. },
  499. {
  500. "name": "phar-io/manifest",
  501. "version": "1.0.1",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/phar-io/manifest.git",
  505. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  510. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "ext-dom": "*",
  515. "ext-phar": "*",
  516. "phar-io/version": "^1.0.1",
  517. "php": "^5.6 || ^7.0"
  518. },
  519. "type": "library",
  520. "extra": {
  521. "branch-alias": {
  522. "dev-master": "1.0.x-dev"
  523. }
  524. },
  525. "autoload": {
  526. "classmap": [
  527. "src/"
  528. ]
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "BSD-3-Clause"
  533. ],
  534. "authors": [
  535. {
  536. "name": "Arne Blankerts",
  537. "email": "arne@blankerts.de",
  538. "role": "Developer"
  539. },
  540. {
  541. "name": "Sebastian Heuer",
  542. "email": "sebastian@phpeople.de",
  543. "role": "Developer"
  544. },
  545. {
  546. "name": "Sebastian Bergmann",
  547. "email": "sebastian@phpunit.de",
  548. "role": "Developer"
  549. }
  550. ],
  551. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  552. "time": "2017-03-05T18:14:27+00:00"
  553. },
  554. {
  555. "name": "phar-io/version",
  556. "version": "1.0.1",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/phar-io/version.git",
  560. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  565. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "php": "^5.6 || ^7.0"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "classmap": [
  574. "src/"
  575. ]
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "BSD-3-Clause"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Arne Blankerts",
  584. "email": "arne@blankerts.de",
  585. "role": "Developer"
  586. },
  587. {
  588. "name": "Sebastian Heuer",
  589. "email": "sebastian@phpeople.de",
  590. "role": "Developer"
  591. },
  592. {
  593. "name": "Sebastian Bergmann",
  594. "email": "sebastian@phpunit.de",
  595. "role": "Developer"
  596. }
  597. ],
  598. "description": "Library for handling version information and constraints",
  599. "time": "2017-03-05T17:38:23+00:00"
  600. },
  601. {
  602. "name": "phpbench/container",
  603. "version": "1.2",
  604. "source": {
  605. "type": "git",
  606. "url": "https://github.com/phpbench/container.git",
  607. "reference": "c0e3cbf1cd8f867c70b029cb6d1b0b39fe6d409d"
  608. },
  609. "dist": {
  610. "type": "zip",
  611. "url": "https://api.github.com/repos/phpbench/container/zipball/c0e3cbf1cd8f867c70b029cb6d1b0b39fe6d409d",
  612. "reference": "c0e3cbf1cd8f867c70b029cb6d1b0b39fe6d409d",
  613. "shasum": ""
  614. },
  615. "require": {
  616. "psr/container": "^1.0"
  617. },
  618. "require-dev": {
  619. "phpunit/phpunit": "^4.8.36"
  620. },
  621. "type": "library",
  622. "extra": {
  623. "branch-alias": {
  624. "dev-master": "1.0-dev"
  625. }
  626. },
  627. "autoload": {
  628. "psr-4": {
  629. "PhpBench\\DependencyInjection\\": "lib/"
  630. }
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "MIT"
  635. ],
  636. "authors": [
  637. {
  638. "name": "Daniel Leech",
  639. "email": "daniel@dantleech.com"
  640. }
  641. ],
  642. "description": "Simple, configurable, service container.",
  643. "time": "2018-02-12T08:08:59+00:00"
  644. },
  645. {
  646. "name": "phpbench/dom",
  647. "version": "0.2.0",
  648. "source": {
  649. "type": "git",
  650. "url": "https://github.com/phpbench/dom.git",
  651. "reference": "b135378dd0004c05ba5446aeddaf0b83339c1c4c"
  652. },
  653. "dist": {
  654. "type": "zip",
  655. "url": "https://api.github.com/repos/phpbench/dom/zipball/b135378dd0004c05ba5446aeddaf0b83339c1c4c",
  656. "reference": "b135378dd0004c05ba5446aeddaf0b83339c1c4c",
  657. "shasum": ""
  658. },
  659. "require": {
  660. "ext-dom": "*",
  661. "php": "^5.4|^7.0"
  662. },
  663. "require-dev": {
  664. "phpunit/phpunit": "^4.6"
  665. },
  666. "type": "library",
  667. "extra": {
  668. "branch-alias": {
  669. "dev-master": "1.0-dev"
  670. }
  671. },
  672. "autoload": {
  673. "psr-4": {
  674. "PhpBench\\Dom\\": "lib/"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Daniel Leech",
  684. "email": "daniel@dantleech.com"
  685. }
  686. ],
  687. "description": "DOM wrapper to simplify working with the PHP DOM implementation",
  688. "time": "2016-02-27T12:15:56+00:00"
  689. },
  690. {
  691. "name": "phpbench/phpbench",
  692. "version": "0.13.0",
  693. "source": {
  694. "type": "git",
  695. "url": "https://github.com/phpbench/phpbench.git",
  696. "reference": "0dab4d0b6a699c27105d677398b2ea8046706292"
  697. },
  698. "dist": {
  699. "type": "zip",
  700. "url": "https://api.github.com/repos/phpbench/phpbench/zipball/0dab4d0b6a699c27105d677398b2ea8046706292",
  701. "reference": "0dab4d0b6a699c27105d677398b2ea8046706292",
  702. "shasum": ""
  703. },
  704. "require": {
  705. "beberlei/assert": "^2.4",
  706. "doctrine/annotations": "^1.2.7",
  707. "ext-dom": "*",
  708. "ext-json": "*",
  709. "ext-pcre": "*",
  710. "ext-reflection": "*",
  711. "ext-spl": "*",
  712. "lstrojny/functional-php": "1.0|^1.2.3",
  713. "php": "^5.6|^7.0",
  714. "phpbench/container": "~1.0",
  715. "phpbench/dom": "~0.2.0",
  716. "seld/jsonlint": "^1.0",
  717. "symfony/console": "^2.4|^3.0",
  718. "symfony/debug": "^2.4|^3.0",
  719. "symfony/filesystem": "^2.4|^3.0",
  720. "symfony/finder": "^2.4|^3.0",
  721. "symfony/options-resolver": "^2.6|^3.0",
  722. "symfony/process": "^2.1|^3.0"
  723. },
  724. "require-dev": {
  725. "doctrine/dbal": "^2.4",
  726. "liip/rmt": "^1.2",
  727. "padraic/phar-updater": "^1.0",
  728. "phpunit/phpunit": "^4.6"
  729. },
  730. "bin": [
  731. "bin/phpbench"
  732. ],
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "1.0-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "PhpBench\\": "lib/",
  742. "PhpBench\\Extensions\\Dbal\\": "extensions/dbal/lib/",
  743. "PhpBench\\Extensions\\XDebug\\": "extensions/xdebug/lib/"
  744. }
  745. },
  746. "notification-url": "https://packagist.org/downloads/",
  747. "license": [
  748. "MIT"
  749. ],
  750. "authors": [
  751. {
  752. "name": "Daniel Leech",
  753. "email": "daniel@dantleech.com"
  754. }
  755. ],
  756. "description": "PHP Benchmarking Framework",
  757. "time": "2016-11-20T22:04:57+00:00"
  758. },
  759. {
  760. "name": "phpdocumentor/reflection-common",
  761. "version": "1.0.1",
  762. "source": {
  763. "type": "git",
  764. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  765. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  766. },
  767. "dist": {
  768. "type": "zip",
  769. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  770. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  771. "shasum": ""
  772. },
  773. "require": {
  774. "php": ">=5.5"
  775. },
  776. "require-dev": {
  777. "phpunit/phpunit": "^4.6"
  778. },
  779. "type": "library",
  780. "extra": {
  781. "branch-alias": {
  782. "dev-master": "1.0.x-dev"
  783. }
  784. },
  785. "autoload": {
  786. "psr-4": {
  787. "phpDocumentor\\Reflection\\": [
  788. "src"
  789. ]
  790. }
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Jaap van Otterdijk",
  799. "email": "opensource@ijaap.nl"
  800. }
  801. ],
  802. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  803. "homepage": "http://www.phpdoc.org",
  804. "keywords": [
  805. "FQSEN",
  806. "phpDocumentor",
  807. "phpdoc",
  808. "reflection",
  809. "static analysis"
  810. ],
  811. "time": "2017-09-11T18:02:19+00:00"
  812. },
  813. {
  814. "name": "phpdocumentor/reflection-docblock",
  815. "version": "4.3.0",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  819. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  824. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "php": "^7.0",
  829. "phpdocumentor/reflection-common": "^1.0.0",
  830. "phpdocumentor/type-resolver": "^0.4.0",
  831. "webmozart/assert": "^1.0"
  832. },
  833. "require-dev": {
  834. "doctrine/instantiator": "~1.0.5",
  835. "mockery/mockery": "^1.0",
  836. "phpunit/phpunit": "^6.4"
  837. },
  838. "type": "library",
  839. "extra": {
  840. "branch-alias": {
  841. "dev-master": "4.x-dev"
  842. }
  843. },
  844. "autoload": {
  845. "psr-4": {
  846. "phpDocumentor\\Reflection\\": [
  847. "src/"
  848. ]
  849. }
  850. },
  851. "notification-url": "https://packagist.org/downloads/",
  852. "license": [
  853. "MIT"
  854. ],
  855. "authors": [
  856. {
  857. "name": "Mike van Riel",
  858. "email": "me@mikevanriel.com"
  859. }
  860. ],
  861. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  862. "time": "2017-11-30T07:14:17+00:00"
  863. },
  864. {
  865. "name": "phpdocumentor/type-resolver",
  866. "version": "0.4.0",
  867. "source": {
  868. "type": "git",
  869. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  870. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  871. },
  872. "dist": {
  873. "type": "zip",
  874. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  875. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  876. "shasum": ""
  877. },
  878. "require": {
  879. "php": "^5.5 || ^7.0",
  880. "phpdocumentor/reflection-common": "^1.0"
  881. },
  882. "require-dev": {
  883. "mockery/mockery": "^0.9.4",
  884. "phpunit/phpunit": "^5.2||^4.8.24"
  885. },
  886. "type": "library",
  887. "extra": {
  888. "branch-alias": {
  889. "dev-master": "1.0.x-dev"
  890. }
  891. },
  892. "autoload": {
  893. "psr-4": {
  894. "phpDocumentor\\Reflection\\": [
  895. "src/"
  896. ]
  897. }
  898. },
  899. "notification-url": "https://packagist.org/downloads/",
  900. "license": [
  901. "MIT"
  902. ],
  903. "authors": [
  904. {
  905. "name": "Mike van Riel",
  906. "email": "me@mikevanriel.com"
  907. }
  908. ],
  909. "time": "2017-07-14T14:27:02+00:00"
  910. },
  911. {
  912. "name": "phpspec/prophecy",
  913. "version": "1.7.5",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/phpspec/prophecy.git",
  917. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  922. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "doctrine/instantiator": "^1.0.2",
  927. "php": "^5.3|^7.0",
  928. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  929. "sebastian/comparator": "^1.1|^2.0",
  930. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  931. },
  932. "require-dev": {
  933. "phpspec/phpspec": "^2.5|^3.2",
  934. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  935. },
  936. "type": "library",
  937. "extra": {
  938. "branch-alias": {
  939. "dev-master": "1.7.x-dev"
  940. }
  941. },
  942. "autoload": {
  943. "psr-0": {
  944. "Prophecy\\": "src/"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "MIT"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Konstantin Kudryashov",
  954. "email": "ever.zet@gmail.com",
  955. "homepage": "http://everzet.com"
  956. },
  957. {
  958. "name": "Marcello Duarte",
  959. "email": "marcello.duarte@gmail.com"
  960. }
  961. ],
  962. "description": "Highly opinionated mocking framework for PHP 5.3+",
  963. "homepage": "https://github.com/phpspec/prophecy",
  964. "keywords": [
  965. "Double",
  966. "Dummy",
  967. "fake",
  968. "mock",
  969. "spy",
  970. "stub"
  971. ],
  972. "time": "2018-02-19T10:16:54+00:00"
  973. },
  974. {
  975. "name": "phpstan/phpstan-shim",
  976. "version": "0.9.2",
  977. "source": {
  978. "type": "git",
  979. "url": "https://github.com/phpstan/phpstan-shim.git",
  980. "reference": "e4720fb2916be05de02869780072253e7e0e8a75"
  981. },
  982. "dist": {
  983. "type": "zip",
  984. "url": "https://api.github.com/repos/phpstan/phpstan-shim/zipball/e4720fb2916be05de02869780072253e7e0e8a75",
  985. "reference": "e4720fb2916be05de02869780072253e7e0e8a75",
  986. "shasum": ""
  987. },
  988. "require": {
  989. "php": "~7.0"
  990. },
  991. "replace": {
  992. "phpstan/phpstan": "self.version"
  993. },
  994. "bin": [
  995. "phpstan",
  996. "phpstan.phar"
  997. ],
  998. "type": "library",
  999. "extra": {
  1000. "branch-alias": {
  1001. "dev-master": "0.9-dev"
  1002. }
  1003. },
  1004. "notification-url": "https://packagist.org/downloads/",
  1005. "license": [
  1006. "MIT"
  1007. ],
  1008. "description": "PHPStan Phar distribution",
  1009. "time": "2018-01-28T14:29:27+00:00"
  1010. },
  1011. {
  1012. "name": "phpunit/php-code-coverage",
  1013. "version": "6.0.1",
  1014. "source": {
  1015. "type": "git",
  1016. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1017. "reference": "f8ca4b604baf23dab89d87773c28cc07405189ba"
  1018. },
  1019. "dist": {
  1020. "type": "zip",
  1021. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f8ca4b604baf23dab89d87773c28cc07405189ba",
  1022. "reference": "f8ca4b604baf23dab89d87773c28cc07405189ba",
  1023. "shasum": ""
  1024. },
  1025. "require": {
  1026. "ext-dom": "*",
  1027. "ext-xmlwriter": "*",
  1028. "php": "^7.1",
  1029. "phpunit/php-file-iterator": "^1.4.2",
  1030. "phpunit/php-text-template": "^1.2.1",
  1031. "phpunit/php-token-stream": "^3.0",
  1032. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  1033. "sebastian/environment": "^3.0",
  1034. "sebastian/version": "^2.0.1",
  1035. "theseer/tokenizer": "^1.1"
  1036. },
  1037. "require-dev": {
  1038. "phpunit/phpunit": "^7.0"
  1039. },
  1040. "suggest": {
  1041. "ext-xdebug": "^2.6.0"
  1042. },
  1043. "type": "library",
  1044. "extra": {
  1045. "branch-alias": {
  1046. "dev-master": "6.0-dev"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "classmap": [
  1051. "src/"
  1052. ]
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "BSD-3-Clause"
  1057. ],
  1058. "authors": [
  1059. {
  1060. "name": "Sebastian Bergmann",
  1061. "email": "sebastian@phpunit.de",
  1062. "role": "lead"
  1063. }
  1064. ],
  1065. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1066. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1067. "keywords": [
  1068. "coverage",
  1069. "testing",
  1070. "xunit"
  1071. ],
  1072. "time": "2018-02-02T07:01:41+00:00"
  1073. },
  1074. {
  1075. "name": "phpunit/php-file-iterator",
  1076. "version": "1.4.5",
  1077. "source": {
  1078. "type": "git",
  1079. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1080. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1081. },
  1082. "dist": {
  1083. "type": "zip",
  1084. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1085. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1086. "shasum": ""
  1087. },
  1088. "require": {
  1089. "php": ">=5.3.3"
  1090. },
  1091. "type": "library",
  1092. "extra": {
  1093. "branch-alias": {
  1094. "dev-master": "1.4.x-dev"
  1095. }
  1096. },
  1097. "autoload": {
  1098. "classmap": [
  1099. "src/"
  1100. ]
  1101. },
  1102. "notification-url": "https://packagist.org/downloads/",
  1103. "license": [
  1104. "BSD-3-Clause"
  1105. ],
  1106. "authors": [
  1107. {
  1108. "name": "Sebastian Bergmann",
  1109. "email": "sb@sebastian-bergmann.de",
  1110. "role": "lead"
  1111. }
  1112. ],
  1113. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1114. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1115. "keywords": [
  1116. "filesystem",
  1117. "iterator"
  1118. ],
  1119. "time": "2017-11-27T13:52:08+00:00"
  1120. },
  1121. {
  1122. "name": "phpunit/php-text-template",
  1123. "version": "1.2.1",
  1124. "source": {
  1125. "type": "git",
  1126. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1127. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1128. },
  1129. "dist": {
  1130. "type": "zip",
  1131. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1132. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1133. "shasum": ""
  1134. },
  1135. "require": {
  1136. "php": ">=5.3.3"
  1137. },
  1138. "type": "library",
  1139. "autoload": {
  1140. "classmap": [
  1141. "src/"
  1142. ]
  1143. },
  1144. "notification-url": "https://packagist.org/downloads/",
  1145. "license": [
  1146. "BSD-3-Clause"
  1147. ],
  1148. "authors": [
  1149. {
  1150. "name": "Sebastian Bergmann",
  1151. "email": "sebastian@phpunit.de",
  1152. "role": "lead"
  1153. }
  1154. ],
  1155. "description": "Simple template engine.",
  1156. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1157. "keywords": [
  1158. "template"
  1159. ],
  1160. "time": "2015-06-21T13:50:34+00:00"
  1161. },
  1162. {
  1163. "name": "phpunit/php-timer",
  1164. "version": "2.0.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1168. "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f",
  1173. "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": "^7.1"
  1178. },
  1179. "require-dev": {
  1180. "phpunit/phpunit": "^7.0"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "2.0-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "classmap": [
  1190. "src/"
  1191. ]
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "BSD-3-Clause"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Sebastian Bergmann",
  1200. "email": "sebastian@phpunit.de",
  1201. "role": "lead"
  1202. }
  1203. ],
  1204. "description": "Utility class for timing",
  1205. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1206. "keywords": [
  1207. "timer"
  1208. ],
  1209. "time": "2018-02-01T13:07:23+00:00"
  1210. },
  1211. {
  1212. "name": "phpunit/php-token-stream",
  1213. "version": "3.0.0",
  1214. "source": {
  1215. "type": "git",
  1216. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1217. "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace"
  1218. },
  1219. "dist": {
  1220. "type": "zip",
  1221. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace",
  1222. "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace",
  1223. "shasum": ""
  1224. },
  1225. "require": {
  1226. "ext-tokenizer": "*",
  1227. "php": "^7.1"
  1228. },
  1229. "require-dev": {
  1230. "phpunit/phpunit": "^7.0"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-master": "3.0-dev"
  1236. }
  1237. },
  1238. "autoload": {
  1239. "classmap": [
  1240. "src/"
  1241. ]
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "BSD-3-Clause"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Sebastian Bergmann",
  1250. "email": "sebastian@phpunit.de"
  1251. }
  1252. ],
  1253. "description": "Wrapper around PHP's tokenizer extension.",
  1254. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1255. "keywords": [
  1256. "tokenizer"
  1257. ],
  1258. "time": "2018-02-01T13:16:43+00:00"
  1259. },
  1260. {
  1261. "name": "phpunit/phpunit",
  1262. "version": "7.0.2",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1266. "reference": "e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9",
  1271. "reference": "e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "ext-dom": "*",
  1276. "ext-json": "*",
  1277. "ext-libxml": "*",
  1278. "ext-mbstring": "*",
  1279. "ext-xml": "*",
  1280. "myclabs/deep-copy": "^1.6.1",
  1281. "phar-io/manifest": "^1.0.1",
  1282. "phar-io/version": "^1.0",
  1283. "php": "^7.1",
  1284. "phpspec/prophecy": "^1.7",
  1285. "phpunit/php-code-coverage": "^6.0",
  1286. "phpunit/php-file-iterator": "^1.4.3",
  1287. "phpunit/php-text-template": "^1.2.1",
  1288. "phpunit/php-timer": "^2.0",
  1289. "phpunit/phpunit-mock-objects": "^6.0",
  1290. "sebastian/comparator": "^2.1",
  1291. "sebastian/diff": "^3.0",
  1292. "sebastian/environment": "^3.1",
  1293. "sebastian/exporter": "^3.1",
  1294. "sebastian/global-state": "^2.0",
  1295. "sebastian/object-enumerator": "^3.0.3",
  1296. "sebastian/resource-operations": "^1.0",
  1297. "sebastian/version": "^2.0.1"
  1298. },
  1299. "require-dev": {
  1300. "ext-pdo": "*"
  1301. },
  1302. "suggest": {
  1303. "ext-xdebug": "*",
  1304. "phpunit/php-invoker": "^2.0"
  1305. },
  1306. "bin": [
  1307. "phpunit"
  1308. ],
  1309. "type": "library",
  1310. "extra": {
  1311. "branch-alias": {
  1312. "dev-master": "7.0-dev"
  1313. }
  1314. },
  1315. "autoload": {
  1316. "classmap": [
  1317. "src/"
  1318. ]
  1319. },
  1320. "notification-url": "https://packagist.org/downloads/",
  1321. "license": [
  1322. "BSD-3-Clause"
  1323. ],
  1324. "authors": [
  1325. {
  1326. "name": "Sebastian Bergmann",
  1327. "email": "sebastian@phpunit.de",
  1328. "role": "lead"
  1329. }
  1330. ],
  1331. "description": "The PHP Unit Testing framework.",
  1332. "homepage": "https://phpunit.de/",
  1333. "keywords": [
  1334. "phpunit",
  1335. "testing",
  1336. "xunit"
  1337. ],
  1338. "time": "2018-02-26T07:03:12+00:00"
  1339. },
  1340. {
  1341. "name": "phpunit/phpunit-mock-objects",
  1342. "version": "6.0.1",
  1343. "source": {
  1344. "type": "git",
  1345. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1346. "reference": "e3249dedc2d99259ccae6affbc2684eac37c2e53"
  1347. },
  1348. "dist": {
  1349. "type": "zip",
  1350. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/e3249dedc2d99259ccae6affbc2684eac37c2e53",
  1351. "reference": "e3249dedc2d99259ccae6affbc2684eac37c2e53",
  1352. "shasum": ""
  1353. },
  1354. "require": {
  1355. "doctrine/instantiator": "^1.0.5",
  1356. "php": "^7.1",
  1357. "phpunit/php-text-template": "^1.2.1",
  1358. "sebastian/exporter": "^3.1"
  1359. },
  1360. "require-dev": {
  1361. "phpunit/phpunit": "^7.0"
  1362. },
  1363. "suggest": {
  1364. "ext-soap": "*"
  1365. },
  1366. "type": "library",
  1367. "extra": {
  1368. "branch-alias": {
  1369. "dev-master": "6.0.x-dev"
  1370. }
  1371. },
  1372. "autoload": {
  1373. "classmap": [
  1374. "src/"
  1375. ]
  1376. },
  1377. "notification-url": "https://packagist.org/downloads/",
  1378. "license": [
  1379. "BSD-3-Clause"
  1380. ],
  1381. "authors": [
  1382. {
  1383. "name": "Sebastian Bergmann",
  1384. "email": "sebastian@phpunit.de",
  1385. "role": "lead"
  1386. }
  1387. ],
  1388. "description": "Mock Object library for PHPUnit",
  1389. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1390. "keywords": [
  1391. "mock",
  1392. "xunit"
  1393. ],
  1394. "time": "2018-02-15T05:27:38+00:00"
  1395. },
  1396. {
  1397. "name": "psr/container",
  1398. "version": "1.0.0",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/php-fig/container.git",
  1402. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1407. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "php": ">=5.3.0"
  1412. },
  1413. "type": "library",
  1414. "extra": {
  1415. "branch-alias": {
  1416. "dev-master": "1.0.x-dev"
  1417. }
  1418. },
  1419. "autoload": {
  1420. "psr-4": {
  1421. "Psr\\Container\\": "src/"
  1422. }
  1423. },
  1424. "notification-url": "https://packagist.org/downloads/",
  1425. "license": [
  1426. "MIT"
  1427. ],
  1428. "authors": [
  1429. {
  1430. "name": "PHP-FIG",
  1431. "homepage": "http://www.php-fig.org/"
  1432. }
  1433. ],
  1434. "description": "Common Container Interface (PHP FIG PSR-11)",
  1435. "homepage": "https://github.com/php-fig/container",
  1436. "keywords": [
  1437. "PSR-11",
  1438. "container",
  1439. "container-interface",
  1440. "container-interop",
  1441. "psr"
  1442. ],
  1443. "time": "2017-02-14T16:28:37+00:00"
  1444. },
  1445. {
  1446. "name": "psr/log",
  1447. "version": "1.0.2",
  1448. "source": {
  1449. "type": "git",
  1450. "url": "https://github.com/php-fig/log.git",
  1451. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1452. },
  1453. "dist": {
  1454. "type": "zip",
  1455. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1456. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1457. "shasum": ""
  1458. },
  1459. "require": {
  1460. "php": ">=5.3.0"
  1461. },
  1462. "type": "library",
  1463. "extra": {
  1464. "branch-alias": {
  1465. "dev-master": "1.0.x-dev"
  1466. }
  1467. },
  1468. "autoload": {
  1469. "psr-4": {
  1470. "Psr\\Log\\": "Psr/Log/"
  1471. }
  1472. },
  1473. "notification-url": "https://packagist.org/downloads/",
  1474. "license": [
  1475. "MIT"
  1476. ],
  1477. "authors": [
  1478. {
  1479. "name": "PHP-FIG",
  1480. "homepage": "http://www.php-fig.org/"
  1481. }
  1482. ],
  1483. "description": "Common interface for logging libraries",
  1484. "homepage": "https://github.com/php-fig/log",
  1485. "keywords": [
  1486. "log",
  1487. "psr",
  1488. "psr-3"
  1489. ],
  1490. "time": "2016-10-10T12:19:37+00:00"
  1491. },
  1492. {
  1493. "name": "sebastian/code-unit-reverse-lookup",
  1494. "version": "1.0.1",
  1495. "source": {
  1496. "type": "git",
  1497. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1498. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1499. },
  1500. "dist": {
  1501. "type": "zip",
  1502. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1503. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1504. "shasum": ""
  1505. },
  1506. "require": {
  1507. "php": "^5.6 || ^7.0"
  1508. },
  1509. "require-dev": {
  1510. "phpunit/phpunit": "^5.7 || ^6.0"
  1511. },
  1512. "type": "library",
  1513. "extra": {
  1514. "branch-alias": {
  1515. "dev-master": "1.0.x-dev"
  1516. }
  1517. },
  1518. "autoload": {
  1519. "classmap": [
  1520. "src/"
  1521. ]
  1522. },
  1523. "notification-url": "https://packagist.org/downloads/",
  1524. "license": [
  1525. "BSD-3-Clause"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "Sebastian Bergmann",
  1530. "email": "sebastian@phpunit.de"
  1531. }
  1532. ],
  1533. "description": "Looks up which function or method a line of code belongs to",
  1534. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1535. "time": "2017-03-04T06:30:41+00:00"
  1536. },
  1537. {
  1538. "name": "sebastian/comparator",
  1539. "version": "2.1.3",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/sebastianbergmann/comparator.git",
  1543. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  1548. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  1549. "shasum": ""
  1550. },
  1551. "require": {
  1552. "php": "^7.0",
  1553. "sebastian/diff": "^2.0 || ^3.0",
  1554. "sebastian/exporter": "^3.1"
  1555. },
  1556. "require-dev": {
  1557. "phpunit/phpunit": "^6.4"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "2.1.x-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "classmap": [
  1567. "src/"
  1568. ]
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "BSD-3-Clause"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "Jeff Welch",
  1577. "email": "whatthejeff@gmail.com"
  1578. },
  1579. {
  1580. "name": "Volker Dusch",
  1581. "email": "github@wallbash.com"
  1582. },
  1583. {
  1584. "name": "Bernhard Schussek",
  1585. "email": "bschussek@2bepublished.at"
  1586. },
  1587. {
  1588. "name": "Sebastian Bergmann",
  1589. "email": "sebastian@phpunit.de"
  1590. }
  1591. ],
  1592. "description": "Provides the functionality to compare PHP values for equality",
  1593. "homepage": "https://github.com/sebastianbergmann/comparator",
  1594. "keywords": [
  1595. "comparator",
  1596. "compare",
  1597. "equality"
  1598. ],
  1599. "time": "2018-02-01T13:46:46+00:00"
  1600. },
  1601. {
  1602. "name": "sebastian/diff",
  1603. "version": "3.0.0",
  1604. "source": {
  1605. "type": "git",
  1606. "url": "https://github.com/sebastianbergmann/diff.git",
  1607. "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8"
  1608. },
  1609. "dist": {
  1610. "type": "zip",
  1611. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/e09160918c66281713f1c324c1f4c4c3037ba1e8",
  1612. "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8",
  1613. "shasum": ""
  1614. },
  1615. "require": {
  1616. "php": "^7.1"
  1617. },
  1618. "require-dev": {
  1619. "phpunit/phpunit": "^7.0",
  1620. "symfony/process": "^2 || ^3.3 || ^4"
  1621. },
  1622. "type": "library",
  1623. "extra": {
  1624. "branch-alias": {
  1625. "dev-master": "3.0-dev"
  1626. }
  1627. },
  1628. "autoload": {
  1629. "classmap": [
  1630. "src/"
  1631. ]
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "BSD-3-Clause"
  1636. ],
  1637. "authors": [
  1638. {
  1639. "name": "Kore Nordmann",
  1640. "email": "mail@kore-nordmann.de"
  1641. },
  1642. {
  1643. "name": "Sebastian Bergmann",
  1644. "email": "sebastian@phpunit.de"
  1645. }
  1646. ],
  1647. "description": "Diff implementation",
  1648. "homepage": "https://github.com/sebastianbergmann/diff",
  1649. "keywords": [
  1650. "diff",
  1651. "udiff",
  1652. "unidiff",
  1653. "unified diff"
  1654. ],
  1655. "time": "2018-02-01T13:45:15+00:00"
  1656. },
  1657. {
  1658. "name": "sebastian/environment",
  1659. "version": "3.1.0",
  1660. "source": {
  1661. "type": "git",
  1662. "url": "https://github.com/sebastianbergmann/environment.git",
  1663. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  1664. },
  1665. "dist": {
  1666. "type": "zip",
  1667. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1668. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1669. "shasum": ""
  1670. },
  1671. "require": {
  1672. "php": "^7.0"
  1673. },
  1674. "require-dev": {
  1675. "phpunit/phpunit": "^6.1"
  1676. },
  1677. "type": "library",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-master": "3.1.x-dev"
  1681. }
  1682. },
  1683. "autoload": {
  1684. "classmap": [
  1685. "src/"
  1686. ]
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "BSD-3-Clause"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Sebastian Bergmann",
  1695. "email": "sebastian@phpunit.de"
  1696. }
  1697. ],
  1698. "description": "Provides functionality to handle HHVM/PHP environments",
  1699. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1700. "keywords": [
  1701. "Xdebug",
  1702. "environment",
  1703. "hhvm"
  1704. ],
  1705. "time": "2017-07-01T08:51:00+00:00"
  1706. },
  1707. {
  1708. "name": "sebastian/exporter",
  1709. "version": "3.1.0",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/sebastianbergmann/exporter.git",
  1713. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  1718. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": "^7.0",
  1723. "sebastian/recursion-context": "^3.0"
  1724. },
  1725. "require-dev": {
  1726. "ext-mbstring": "*",
  1727. "phpunit/phpunit": "^6.0"
  1728. },
  1729. "type": "library",
  1730. "extra": {
  1731. "branch-alias": {
  1732. "dev-master": "3.1.x-dev"
  1733. }
  1734. },
  1735. "autoload": {
  1736. "classmap": [
  1737. "src/"
  1738. ]
  1739. },
  1740. "notification-url": "https://packagist.org/downloads/",
  1741. "license": [
  1742. "BSD-3-Clause"
  1743. ],
  1744. "authors": [
  1745. {
  1746. "name": "Jeff Welch",
  1747. "email": "whatthejeff@gmail.com"
  1748. },
  1749. {
  1750. "name": "Volker Dusch",
  1751. "email": "github@wallbash.com"
  1752. },
  1753. {
  1754. "name": "Bernhard Schussek",
  1755. "email": "bschussek@2bepublished.at"
  1756. },
  1757. {
  1758. "name": "Sebastian Bergmann",
  1759. "email": "sebastian@phpunit.de"
  1760. },
  1761. {
  1762. "name": "Adam Harvey",
  1763. "email": "aharvey@php.net"
  1764. }
  1765. ],
  1766. "description": "Provides the functionality to export PHP variables for visualization",
  1767. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1768. "keywords": [
  1769. "export",
  1770. "exporter"
  1771. ],
  1772. "time": "2017-04-03T13:19:02+00:00"
  1773. },
  1774. {
  1775. "name": "sebastian/global-state",
  1776. "version": "2.0.0",
  1777. "source": {
  1778. "type": "git",
  1779. "url": "https://github.com/sebastianbergmann/global-state.git",
  1780. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  1781. },
  1782. "dist": {
  1783. "type": "zip",
  1784. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1785. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1786. "shasum": ""
  1787. },
  1788. "require": {
  1789. "php": "^7.0"
  1790. },
  1791. "require-dev": {
  1792. "phpunit/phpunit": "^6.0"
  1793. },
  1794. "suggest": {
  1795. "ext-uopz": "*"
  1796. },
  1797. "type": "library",
  1798. "extra": {
  1799. "branch-alias": {
  1800. "dev-master": "2.0-dev"
  1801. }
  1802. },
  1803. "autoload": {
  1804. "classmap": [
  1805. "src/"
  1806. ]
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "BSD-3-Clause"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Sebastian Bergmann",
  1815. "email": "sebastian@phpunit.de"
  1816. }
  1817. ],
  1818. "description": "Snapshotting of global state",
  1819. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1820. "keywords": [
  1821. "global state"
  1822. ],
  1823. "time": "2017-04-27T15:39:26+00:00"
  1824. },
  1825. {
  1826. "name": "sebastian/object-enumerator",
  1827. "version": "3.0.3",
  1828. "source": {
  1829. "type": "git",
  1830. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1831. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  1832. },
  1833. "dist": {
  1834. "type": "zip",
  1835. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1836. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1837. "shasum": ""
  1838. },
  1839. "require": {
  1840. "php": "^7.0",
  1841. "sebastian/object-reflector": "^1.1.1",
  1842. "sebastian/recursion-context": "^3.0"
  1843. },
  1844. "require-dev": {
  1845. "phpunit/phpunit": "^6.0"
  1846. },
  1847. "type": "library",
  1848. "extra": {
  1849. "branch-alias": {
  1850. "dev-master": "3.0.x-dev"
  1851. }
  1852. },
  1853. "autoload": {
  1854. "classmap": [
  1855. "src/"
  1856. ]
  1857. },
  1858. "notification-url": "https://packagist.org/downloads/",
  1859. "license": [
  1860. "BSD-3-Clause"
  1861. ],
  1862. "authors": [
  1863. {
  1864. "name": "Sebastian Bergmann",
  1865. "email": "sebastian@phpunit.de"
  1866. }
  1867. ],
  1868. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1869. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1870. "time": "2017-08-03T12:35:26+00:00"
  1871. },
  1872. {
  1873. "name": "sebastian/object-reflector",
  1874. "version": "1.1.1",
  1875. "source": {
  1876. "type": "git",
  1877. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1878. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  1879. },
  1880. "dist": {
  1881. "type": "zip",
  1882. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  1883. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  1884. "shasum": ""
  1885. },
  1886. "require": {
  1887. "php": "^7.0"
  1888. },
  1889. "require-dev": {
  1890. "phpunit/phpunit": "^6.0"
  1891. },
  1892. "type": "library",
  1893. "extra": {
  1894. "branch-alias": {
  1895. "dev-master": "1.1-dev"
  1896. }
  1897. },
  1898. "autoload": {
  1899. "classmap": [
  1900. "src/"
  1901. ]
  1902. },
  1903. "notification-url": "https://packagist.org/downloads/",
  1904. "license": [
  1905. "BSD-3-Clause"
  1906. ],
  1907. "authors": [
  1908. {
  1909. "name": "Sebastian Bergmann",
  1910. "email": "sebastian@phpunit.de"
  1911. }
  1912. ],
  1913. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1914. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  1915. "time": "2017-03-29T09:07:27+00:00"
  1916. },
  1917. {
  1918. "name": "sebastian/recursion-context",
  1919. "version": "3.0.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1923. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1928. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": "^7.0"
  1933. },
  1934. "require-dev": {
  1935. "phpunit/phpunit": "^6.0"
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-master": "3.0.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "classmap": [
  1945. "src/"
  1946. ]
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "BSD-3-Clause"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Jeff Welch",
  1955. "email": "whatthejeff@gmail.com"
  1956. },
  1957. {
  1958. "name": "Sebastian Bergmann",
  1959. "email": "sebastian@phpunit.de"
  1960. },
  1961. {
  1962. "name": "Adam Harvey",
  1963. "email": "aharvey@php.net"
  1964. }
  1965. ],
  1966. "description": "Provides functionality to recursively process PHP variables",
  1967. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1968. "time": "2017-03-03T06:23:57+00:00"
  1969. },
  1970. {
  1971. "name": "sebastian/resource-operations",
  1972. "version": "1.0.0",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1976. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1981. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1982. "shasum": ""
  1983. },
  1984. "require": {
  1985. "php": ">=5.6.0"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "1.0.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "classmap": [
  1995. "src/"
  1996. ]
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "BSD-3-Clause"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Sebastian Bergmann",
  2005. "email": "sebastian@phpunit.de"
  2006. }
  2007. ],
  2008. "description": "Provides a list of PHP built-in functions that operate on resources",
  2009. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2010. "time": "2015-07-28T20:34:47+00:00"
  2011. },
  2012. {
  2013. "name": "sebastian/version",
  2014. "version": "2.0.1",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://github.com/sebastianbergmann/version.git",
  2018. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2023. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2024. "shasum": ""
  2025. },
  2026. "require": {
  2027. "php": ">=5.6"
  2028. },
  2029. "type": "library",
  2030. "extra": {
  2031. "branch-alias": {
  2032. "dev-master": "2.0.x-dev"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "classmap": [
  2037. "src/"
  2038. ]
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "BSD-3-Clause"
  2043. ],
  2044. "authors": [
  2045. {
  2046. "name": "Sebastian Bergmann",
  2047. "email": "sebastian@phpunit.de",
  2048. "role": "lead"
  2049. }
  2050. ],
  2051. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2052. "homepage": "https://github.com/sebastianbergmann/version",
  2053. "time": "2016-10-03T07:35:21+00:00"
  2054. },
  2055. {
  2056. "name": "seld/jsonlint",
  2057. "version": "1.7.1",
  2058. "source": {
  2059. "type": "git",
  2060. "url": "https://github.com/Seldaek/jsonlint.git",
  2061. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  2062. },
  2063. "dist": {
  2064. "type": "zip",
  2065. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  2066. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  2067. "shasum": ""
  2068. },
  2069. "require": {
  2070. "php": "^5.3 || ^7.0"
  2071. },
  2072. "require-dev": {
  2073. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2074. },
  2075. "bin": [
  2076. "bin/jsonlint"
  2077. ],
  2078. "type": "library",
  2079. "autoload": {
  2080. "psr-4": {
  2081. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Jordi Boggiano",
  2091. "email": "j.boggiano@seld.be",
  2092. "homepage": "http://seld.be"
  2093. }
  2094. ],
  2095. "description": "JSON Linter",
  2096. "keywords": [
  2097. "json",
  2098. "linter",
  2099. "parser",
  2100. "validator"
  2101. ],
  2102. "time": "2018-01-24T12:46:19+00:00"
  2103. },
  2104. {
  2105. "name": "slevomat/coding-standard",
  2106. "version": "4.8.2",
  2107. "source": {
  2108. "type": "git",
  2109. "url": "https://github.com/slevomat/coding-standard.git",
  2110. "reference": "5e878708a16a75ed11a7d9aa02f50c257065d4fe"
  2111. },
  2112. "dist": {
  2113. "type": "zip",
  2114. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/5e878708a16a75ed11a7d9aa02f50c257065d4fe",
  2115. "reference": "5e878708a16a75ed11a7d9aa02f50c257065d4fe",
  2116. "shasum": ""
  2117. },
  2118. "require": {
  2119. "php": "^7.1",
  2120. "squizlabs/php_codesniffer": "^3.3.0"
  2121. },
  2122. "require-dev": {
  2123. "jakub-onderka/php-parallel-lint": "1.0.0",
  2124. "phing/phing": "2.16.1",
  2125. "phpstan/phpstan": "0.9.2",
  2126. "phpstan/phpstan-phpunit": "0.9.4",
  2127. "phpstan/phpstan-strict-rules": "0.9",
  2128. "phpunit/phpunit": "7.3.5"
  2129. },
  2130. "type": "phpcodesniffer-standard",
  2131. "autoload": {
  2132. "psr-4": {
  2133. "SlevomatCodingStandard\\": "SlevomatCodingStandard"
  2134. }
  2135. },
  2136. "notification-url": "https://packagist.org/downloads/",
  2137. "license": [
  2138. "MIT"
  2139. ],
  2140. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  2141. "time": "2018-09-25T06:49:15+00:00"
  2142. },
  2143. {
  2144. "name": "squizlabs/php_codesniffer",
  2145. "version": "3.3.2",
  2146. "source": {
  2147. "type": "git",
  2148. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  2149. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e"
  2150. },
  2151. "dist": {
  2152. "type": "zip",
  2153. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  2154. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  2155. "shasum": ""
  2156. },
  2157. "require": {
  2158. "ext-simplexml": "*",
  2159. "ext-tokenizer": "*",
  2160. "ext-xmlwriter": "*",
  2161. "php": ">=5.4.0"
  2162. },
  2163. "require-dev": {
  2164. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2165. },
  2166. "bin": [
  2167. "bin/phpcs",
  2168. "bin/phpcbf"
  2169. ],
  2170. "type": "library",
  2171. "extra": {
  2172. "branch-alias": {
  2173. "dev-master": "3.x-dev"
  2174. }
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "BSD-3-Clause"
  2179. ],
  2180. "authors": [
  2181. {
  2182. "name": "Greg Sherwood",
  2183. "role": "lead"
  2184. }
  2185. ],
  2186. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  2187. "homepage": "http://www.squizlabs.com/php-codesniffer",
  2188. "keywords": [
  2189. "phpcs",
  2190. "standards"
  2191. ],
  2192. "time": "2018-09-23T23:08:17+00:00"
  2193. },
  2194. {
  2195. "name": "symfony/console",
  2196. "version": "v3.4.5",
  2197. "source": {
  2198. "type": "git",
  2199. "url": "https://github.com/symfony/console.git",
  2200. "reference": "067339e9b8ec30d5f19f5950208893ff026b94f7"
  2201. },
  2202. "dist": {
  2203. "type": "zip",
  2204. "url": "https://api.github.com/repos/symfony/console/zipball/067339e9b8ec30d5f19f5950208893ff026b94f7",
  2205. "reference": "067339e9b8ec30d5f19f5950208893ff026b94f7",
  2206. "shasum": ""
  2207. },
  2208. "require": {
  2209. "php": "^5.5.9|>=7.0.8",
  2210. "symfony/debug": "~2.8|~3.0|~4.0",
  2211. "symfony/polyfill-mbstring": "~1.0"
  2212. },
  2213. "conflict": {
  2214. "symfony/dependency-injection": "<3.4",
  2215. "symfony/process": "<3.3"
  2216. },
  2217. "require-dev": {
  2218. "psr/log": "~1.0",
  2219. "symfony/config": "~3.3|~4.0",
  2220. "symfony/dependency-injection": "~3.4|~4.0",
  2221. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2222. "symfony/lock": "~3.4|~4.0",
  2223. "symfony/process": "~3.3|~4.0"
  2224. },
  2225. "suggest": {
  2226. "psr/log": "For using the console logger",
  2227. "symfony/event-dispatcher": "",
  2228. "symfony/lock": "",
  2229. "symfony/process": ""
  2230. },
  2231. "type": "library",
  2232. "extra": {
  2233. "branch-alias": {
  2234. "dev-master": "3.4-dev"
  2235. }
  2236. },
  2237. "autoload": {
  2238. "psr-4": {
  2239. "Symfony\\Component\\Console\\": ""
  2240. },
  2241. "exclude-from-classmap": [
  2242. "/Tests/"
  2243. ]
  2244. },
  2245. "notification-url": "https://packagist.org/downloads/",
  2246. "license": [
  2247. "MIT"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "Fabien Potencier",
  2252. "email": "fabien@symfony.com"
  2253. },
  2254. {
  2255. "name": "Symfony Community",
  2256. "homepage": "https://symfony.com/contributors"
  2257. }
  2258. ],
  2259. "description": "Symfony Console Component",
  2260. "homepage": "https://symfony.com",
  2261. "time": "2018-02-26T15:46:28+00:00"
  2262. },
  2263. {
  2264. "name": "symfony/debug",
  2265. "version": "v3.4.5",
  2266. "source": {
  2267. "type": "git",
  2268. "url": "https://github.com/symfony/debug.git",
  2269. "reference": "9b1071f86e79e1999b3d3675d2e0e7684268b9bc"
  2270. },
  2271. "dist": {
  2272. "type": "zip",
  2273. "url": "https://api.github.com/repos/symfony/debug/zipball/9b1071f86e79e1999b3d3675d2e0e7684268b9bc",
  2274. "reference": "9b1071f86e79e1999b3d3675d2e0e7684268b9bc",
  2275. "shasum": ""
  2276. },
  2277. "require": {
  2278. "php": "^5.5.9|>=7.0.8",
  2279. "psr/log": "~1.0"
  2280. },
  2281. "conflict": {
  2282. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2283. },
  2284. "require-dev": {
  2285. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2286. },
  2287. "type": "library",
  2288. "extra": {
  2289. "branch-alias": {
  2290. "dev-master": "3.4-dev"
  2291. }
  2292. },
  2293. "autoload": {
  2294. "psr-4": {
  2295. "Symfony\\Component\\Debug\\": ""
  2296. },
  2297. "exclude-from-classmap": [
  2298. "/Tests/"
  2299. ]
  2300. },
  2301. "notification-url": "https://packagist.org/downloads/",
  2302. "license": [
  2303. "MIT"
  2304. ],
  2305. "authors": [
  2306. {
  2307. "name": "Fabien Potencier",
  2308. "email": "fabien@symfony.com"
  2309. },
  2310. {
  2311. "name": "Symfony Community",
  2312. "homepage": "https://symfony.com/contributors"
  2313. }
  2314. ],
  2315. "description": "Symfony Debug Component",
  2316. "homepage": "https://symfony.com",
  2317. "time": "2018-02-28T21:49:22+00:00"
  2318. },
  2319. {
  2320. "name": "symfony/filesystem",
  2321. "version": "v3.4.5",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/symfony/filesystem.git",
  2325. "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/symfony/filesystem/zipball/253a4490b528597aa14d2bf5aeded6f5e5e4a541",
  2330. "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541",
  2331. "shasum": ""
  2332. },
  2333. "require": {
  2334. "php": "^5.5.9|>=7.0.8"
  2335. },
  2336. "type": "library",
  2337. "extra": {
  2338. "branch-alias": {
  2339. "dev-master": "3.4-dev"
  2340. }
  2341. },
  2342. "autoload": {
  2343. "psr-4": {
  2344. "Symfony\\Component\\Filesystem\\": ""
  2345. },
  2346. "exclude-from-classmap": [
  2347. "/Tests/"
  2348. ]
  2349. },
  2350. "notification-url": "https://packagist.org/downloads/",
  2351. "license": [
  2352. "MIT"
  2353. ],
  2354. "authors": [
  2355. {
  2356. "name": "Fabien Potencier",
  2357. "email": "fabien@symfony.com"
  2358. },
  2359. {
  2360. "name": "Symfony Community",
  2361. "homepage": "https://symfony.com/contributors"
  2362. }
  2363. ],
  2364. "description": "Symfony Filesystem Component",
  2365. "homepage": "https://symfony.com",
  2366. "time": "2018-02-22T10:48:49+00:00"
  2367. },
  2368. {
  2369. "name": "symfony/finder",
  2370. "version": "v3.4.5",
  2371. "source": {
  2372. "type": "git",
  2373. "url": "https://github.com/symfony/finder.git",
  2374. "reference": "6a615613745cef820d807443f32076bb9f5d0a38"
  2375. },
  2376. "dist": {
  2377. "type": "zip",
  2378. "url": "https://api.github.com/repos/symfony/finder/zipball/6a615613745cef820d807443f32076bb9f5d0a38",
  2379. "reference": "6a615613745cef820d807443f32076bb9f5d0a38",
  2380. "shasum": ""
  2381. },
  2382. "require": {
  2383. "php": "^5.5.9|>=7.0.8"
  2384. },
  2385. "type": "library",
  2386. "extra": {
  2387. "branch-alias": {
  2388. "dev-master": "3.4-dev"
  2389. }
  2390. },
  2391. "autoload": {
  2392. "psr-4": {
  2393. "Symfony\\Component\\Finder\\": ""
  2394. },
  2395. "exclude-from-classmap": [
  2396. "/Tests/"
  2397. ]
  2398. },
  2399. "notification-url": "https://packagist.org/downloads/",
  2400. "license": [
  2401. "MIT"
  2402. ],
  2403. "authors": [
  2404. {
  2405. "name": "Fabien Potencier",
  2406. "email": "fabien@symfony.com"
  2407. },
  2408. {
  2409. "name": "Symfony Community",
  2410. "homepage": "https://symfony.com/contributors"
  2411. }
  2412. ],
  2413. "description": "Symfony Finder Component",
  2414. "homepage": "https://symfony.com",
  2415. "time": "2018-02-11T17:15:12+00:00"
  2416. },
  2417. {
  2418. "name": "symfony/options-resolver",
  2419. "version": "v3.4.5",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/symfony/options-resolver.git",
  2423. "reference": "f3109a6aedd20e35c3a33190e932c2b063b7b50e"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/f3109a6aedd20e35c3a33190e932c2b063b7b50e",
  2428. "reference": "f3109a6aedd20e35c3a33190e932c2b063b7b50e",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "php": "^5.5.9|>=7.0.8"
  2433. },
  2434. "type": "library",
  2435. "extra": {
  2436. "branch-alias": {
  2437. "dev-master": "3.4-dev"
  2438. }
  2439. },
  2440. "autoload": {
  2441. "psr-4": {
  2442. "Symfony\\Component\\OptionsResolver\\": ""
  2443. },
  2444. "exclude-from-classmap": [
  2445. "/Tests/"
  2446. ]
  2447. },
  2448. "notification-url": "https://packagist.org/downloads/",
  2449. "license": [
  2450. "MIT"
  2451. ],
  2452. "authors": [
  2453. {
  2454. "name": "Fabien Potencier",
  2455. "email": "fabien@symfony.com"
  2456. },
  2457. {
  2458. "name": "Symfony Community",
  2459. "homepage": "https://symfony.com/contributors"
  2460. }
  2461. ],
  2462. "description": "Symfony OptionsResolver Component",
  2463. "homepage": "https://symfony.com",
  2464. "keywords": [
  2465. "config",
  2466. "configuration",
  2467. "options"
  2468. ],
  2469. "time": "2018-01-11T07:56:07+00:00"
  2470. },
  2471. {
  2472. "name": "symfony/polyfill-mbstring",
  2473. "version": "v1.7.0",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2477. "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b",
  2482. "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b",
  2483. "shasum": ""
  2484. },
  2485. "require": {
  2486. "php": ">=5.3.3"
  2487. },
  2488. "suggest": {
  2489. "ext-mbstring": "For best performance"
  2490. },
  2491. "type": "library",
  2492. "extra": {
  2493. "branch-alias": {
  2494. "dev-master": "1.7-dev"
  2495. }
  2496. },
  2497. "autoload": {
  2498. "psr-4": {
  2499. "Symfony\\Polyfill\\Mbstring\\": ""
  2500. },
  2501. "files": [
  2502. "bootstrap.php"
  2503. ]
  2504. },
  2505. "notification-url": "https://packagist.org/downloads/",
  2506. "license": [
  2507. "MIT"
  2508. ],
  2509. "authors": [
  2510. {
  2511. "name": "Nicolas Grekas",
  2512. "email": "p@tchwork.com"
  2513. },
  2514. {
  2515. "name": "Symfony Community",
  2516. "homepage": "https://symfony.com/contributors"
  2517. }
  2518. ],
  2519. "description": "Symfony polyfill for the Mbstring extension",
  2520. "homepage": "https://symfony.com",
  2521. "keywords": [
  2522. "compatibility",
  2523. "mbstring",
  2524. "polyfill",
  2525. "portable",
  2526. "shim"
  2527. ],
  2528. "time": "2018-01-30T19:27:44+00:00"
  2529. },
  2530. {
  2531. "name": "symfony/process",
  2532. "version": "v3.4.5",
  2533. "source": {
  2534. "type": "git",
  2535. "url": "https://github.com/symfony/process.git",
  2536. "reference": "cc4aea21f619116aaf1c58016a944e4821c8e8af"
  2537. },
  2538. "dist": {
  2539. "type": "zip",
  2540. "url": "https://api.github.com/repos/symfony/process/zipball/cc4aea21f619116aaf1c58016a944e4821c8e8af",
  2541. "reference": "cc4aea21f619116aaf1c58016a944e4821c8e8af",
  2542. "shasum": ""
  2543. },
  2544. "require": {
  2545. "php": "^5.5.9|>=7.0.8"
  2546. },
  2547. "type": "library",
  2548. "extra": {
  2549. "branch-alias": {
  2550. "dev-master": "3.4-dev"
  2551. }
  2552. },
  2553. "autoload": {
  2554. "psr-4": {
  2555. "Symfony\\Component\\Process\\": ""
  2556. },
  2557. "exclude-from-classmap": [
  2558. "/Tests/"
  2559. ]
  2560. },
  2561. "notification-url": "https://packagist.org/downloads/",
  2562. "license": [
  2563. "MIT"
  2564. ],
  2565. "authors": [
  2566. {
  2567. "name": "Fabien Potencier",
  2568. "email": "fabien@symfony.com"
  2569. },
  2570. {
  2571. "name": "Symfony Community",
  2572. "homepage": "https://symfony.com/contributors"
  2573. }
  2574. ],
  2575. "description": "Symfony Process Component",
  2576. "homepage": "https://symfony.com",
  2577. "time": "2018-02-12T17:55:00+00:00"
  2578. },
  2579. {
  2580. "name": "theseer/tokenizer",
  2581. "version": "1.1.0",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/theseer/tokenizer.git",
  2585. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  2590. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  2591. "shasum": ""
  2592. },
  2593. "require": {
  2594. "ext-dom": "*",
  2595. "ext-tokenizer": "*",
  2596. "ext-xmlwriter": "*",
  2597. "php": "^7.0"
  2598. },
  2599. "type": "library",
  2600. "autoload": {
  2601. "classmap": [
  2602. "src/"
  2603. ]
  2604. },
  2605. "notification-url": "https://packagist.org/downloads/",
  2606. "license": [
  2607. "BSD-3-Clause"
  2608. ],
  2609. "authors": [
  2610. {
  2611. "name": "Arne Blankerts",
  2612. "email": "arne@blankerts.de",
  2613. "role": "Developer"
  2614. }
  2615. ],
  2616. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  2617. "time": "2017-04-07T12:08:54+00:00"
  2618. },
  2619. {
  2620. "name": "webmozart/assert",
  2621. "version": "1.3.0",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://github.com/webmozart/assert.git",
  2625. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  2630. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  2631. "shasum": ""
  2632. },
  2633. "require": {
  2634. "php": "^5.3.3 || ^7.0"
  2635. },
  2636. "require-dev": {
  2637. "phpunit/phpunit": "^4.6",
  2638. "sebastian/version": "^1.0.1"
  2639. },
  2640. "type": "library",
  2641. "extra": {
  2642. "branch-alias": {
  2643. "dev-master": "1.3-dev"
  2644. }
  2645. },
  2646. "autoload": {
  2647. "psr-4": {
  2648. "Webmozart\\Assert\\": "src/"
  2649. }
  2650. },
  2651. "notification-url": "https://packagist.org/downloads/",
  2652. "license": [
  2653. "MIT"
  2654. ],
  2655. "authors": [
  2656. {
  2657. "name": "Bernhard Schussek",
  2658. "email": "bschussek@gmail.com"
  2659. }
  2660. ],
  2661. "description": "Assertions to validate method input/output with nice error messages.",
  2662. "keywords": [
  2663. "assert",
  2664. "check",
  2665. "validate"
  2666. ],
  2667. "time": "2018-01-29T19:49:41+00:00"
  2668. }
  2669. ],
  2670. "aliases": [],
  2671. "minimum-stability": "stable",
  2672. "stability-flags": [],
  2673. "prefer-stable": false,
  2674. "prefer-lowest": false,
  2675. "platform": {
  2676. "php": "^7.1"
  2677. },
  2678. "platform-dev": {
  2679. "ext-phar": "*",
  2680. "ext-pdo": "*"
  2681. }
  2682. }