-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.36 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "piscibus/php-hashtag",
"description": "A simple php service for parsing hashtags from a string in any language.",
"type": "library",
"keywords": [
"hashtag",
"php",
"service",
"all languages",
"parse"
],
"homepage": "https://github.com/piscibus/php-hashtag",
"license": "MIT",
"authors": [
{
"name": "Mohamed Gamal",
"email": "mg.dev1992@gmail.com",
"role": "Maintainer"
},
{
"name": "Moemen Gaballa",
"email": "moemengaballa@gmail.com",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"Piscibus\\PhpHashtag\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Piscibus\\PhpHashtag\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"pestphp/pest": "^1.22",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.4"
},
"scripts": {
"psalm": "vendor/bin/psalm --show-info=true --no-cache",
"format": "vendor/bin/php-cs-fixer fix",
"check-format": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"test": "vendor/bin/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.1"
}
}
}