-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
54 lines (54 loc) · 1.32 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
{
"name": "fomo/framework",
"description": "The Base Fomo Framework",
"homepage": "https://fomo-framework.github.io/docs/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Amir",
"email": "[email protected]"
}
],
"require": {
"php" : ">=8.1",
"ext-redis": "*",
"ext-posix": "*",
"ext-pcntl": "*",
"symfony/console": "^7.1",
"phpmailer/phpmailer": "^6.9",
"illuminate/database": "^11.10",
"illuminate/pagination": "^11.10",
"elasticsearch/elasticsearch": "^8.4",
"guzzlehttp/guzzle": "^7.8",
"nikic/fast-route": "^1.3",
"vlucas/phpdotenv": "^5.6"
} ,
"autoload": {
"psr-4": {
"Fomo\\" : "src/"
} ,
"files": [
"src/Helper/fomo.php"
]
},
"autoload-dev": {
"psr-4": {
"Fomo\\Tests\\" : "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"phpunit/phpunit": "^11.4"
},
"scripts": {
"test": "[ -x \"$(command -v php8.3)\" ] && php8.3 vendor/bin/phpunit || php vendor/bin/phpunit",
"test-coverage": "[ -x \"$(command -v php8.3)\" ] && XDEBUG_MODE=coverage php8.3 vendor/bin/phpunit --coverage-html=coverage || XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-html=coverage"
}
}