2020-10-20 18:05:12 +02:00
|
|
|
{
|
|
|
|
|
"name": "nojimage/twitter-text-php",
|
|
|
|
|
"description": "A library of PHP classes that provide auto-linking and extraction of usernames, lists, hashtags and URLs from tweets.",
|
|
|
|
|
"keywords": ["twitter", "text", "autolink", "extract"],
|
|
|
|
|
"homepage": "https://github.com/nojimage/twitter-text-php",
|
|
|
|
|
"type": "library",
|
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
|
"authors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Matt Sanford",
|
|
|
|
|
"email": "matt@mzsanford.com",
|
|
|
|
|
"homepage": "http://mzsanford.com"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Mike Cochrane",
|
|
|
|
|
"email": "mikec@mikenz.geek.nz",
|
|
|
|
|
"homepage": "http://mikenz.geek.nz"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Nick Pope",
|
|
|
|
|
"email": "git@nickpope.me.uk",
|
|
|
|
|
"homepage": "http://www.nickpope.me.uk"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Takashi Nojima",
|
|
|
|
|
"homepage": "http://php-tips.com"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"repositories": [
|
|
|
|
|
{
|
|
|
|
|
"type": "package",
|
|
|
|
|
"package": {
|
|
|
|
|
"name": "twitter/twitter-text",
|
|
|
|
|
"version": "3.1.0",
|
|
|
|
|
"source": {
|
|
|
|
|
"url": "https://github.com/twitter/twitter-text.git",
|
|
|
|
|
"type": "git",
|
|
|
|
|
"reference": "v3.1.0"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"require": {
|
|
|
|
|
"php": ">=5.3.3",
|
|
|
|
|
"ext-mbstring": "*",
|
|
|
|
|
"ext-intl": "*"
|
|
|
|
|
},
|
|
|
|
|
"require-dev": {
|
|
|
|
|
"ext-json": "*",
|
|
|
|
|
"symfony/yaml": "^2.6.0|^3.4.0|^4.4.0|^5.0.0",
|
|
|
|
|
"phpunit/phpunit": "4.8.*|5.7.*|6.5.*",
|
|
|
|
|
"twitter/twitter-text": "^3.0.0"
|
|
|
|
|
},
|
|
|
|
|
"autoload": {
|
|
|
|
|
"psr-0": {
|
|
|
|
|
"Twitter\\Text\\": "lib/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"Twitter\\Text\\TestCase\\": "tests/TestCase/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"check": [
|
|
|
|
|
"@cs",
|
|
|
|
|
"@test",
|
|
|
|
|
"@tld-test"
|
|
|
|
|
],
|
|
|
|
|
"test": "phpunit --exclude-group deprecated,tld",
|
|
|
|
|
"deprecated-test": "phpunit --group deprecated",
|
|
|
|
|
"tld-test": "phpunit --group tld",
|
2021-07-23 11:58:50 +02:00
|
|
|
"cs": "phpcs -psn --standard=PSR12 --extensions=php ./lib ./tests",
|
|
|
|
|
"cs-fixer": "phpcbf --standard=PSR12 ./lib ./tests"
|
2020-10-20 18:05:12 +02:00
|
|
|
}
|
|
|
|
|
}
|