summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-03-31 16:02:13 +0200
committerRemi Collet <remi@php.net>2022-03-31 16:02:13 +0200
commit89f3064041267f12d441bf4aa3605c6acef6a1bc (patch)
treef048c72ccd6d1986e04d5eb6e52b1f0cd0b20e28 /composer.json
dump v1
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..e49047c
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,46 @@
+{
+ "name": "composer/pcre",
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+ "type": "library",
+ "license": "MIT",
+ "keywords": [
+ "pcre",
+ "regex",
+ "preg",
+ "regular expression"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "require": {
+ "php": "^5.3.2 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "symfony/phpunit-bridge": "^4.2 || ^5",
+ "phpstan/phpstan": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.1"
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Pcre\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Composer\\Pcre\\": "tests"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "scripts": {
+ "test": "SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 vendor/bin/simple-phpunit",
+ "phpstan": "phpstan analyse"
+ }
+}