-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.08 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "bakome/regsem",
"description": "The easiest way to build robust and meaningful regex expressions in PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aleksandar Bako Markovski",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"php": "^8.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.6"
},
"autoload": {
"psr-4": {
"Bakome\\RegSem\\": "src/"
},
"files": [
"src/regex.php",
"src/edge.php",
"src/popular.php",
"src/evaluate.php",
"src/characters.php",
"src/repetition.php",
"src/group.php",
"src/digits.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Bakome\\RegSem\\": "tests/"
}
},
"scripts": {
"test": ["@phpunit", "@psalm"],
"phpunit": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm"
}
}