-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
98 lines (98 loc) · 3.18 KB
/
composer.json
File metadata and controls
98 lines (98 loc) · 3.18 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "phenixphp/framework",
"description": "Phenix framework based on Amphp",
"license": "MIT",
"autoload": {
"psr-4": {
"Phenix\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [{
"name": "Omar Barbosa",
"email": "contacto@omarbarbosa.com"
}],
"require": {
"php": "^8.2",
"ext-pcntl": "*",
"ext-sockets": "*",
"adbario/php-dot-notation": "^3.1",
"amphp/cache": "^2.0",
"amphp/cluster": "^2.0",
"amphp/file": "^v3.0.0",
"amphp/http-client": "^v5.0.1",
"amphp/http-server": "^v3.2.0",
"amphp/http-server-form-parser": "^2.0",
"amphp/http-server-router": "^v2.0.0",
"amphp/http-server-session": "^3.0",
"amphp/log": "^v2.0.0",
"amphp/mysql": "^v3.0.0",
"amphp/parallel": "^2.3",
"amphp/postgres": "v2.0.0",
"amphp/redis": "^2.0",
"amphp/socket": "^2.1.0",
"dragonmantank/cron-expression": "^3.6",
"egulias/email-validator": "^4.0",
"fakerphp/faker": "^1.23",
"kelunik/rate-limit": "^3.0",
"league/container": "^4.2",
"nesbot/carbon": "^3.0",
"phenixphp/http-cors": "^0.1.0",
"phenixphp/sqlite": "^0.1.1",
"ramsey/collection": "^2.0",
"resend/resend-php": "^0.16.0",
"robmorgan/phinx": "^0.15.2",
"symfony/amazon-mailer": "^7.2",
"symfony/console": "^6.1",
"symfony/mailer": "^7.2",
"symfony/resend-mailer": "^7.2",
"symfony/uid": "^7.1",
"symfony/var-dumper": "^7.2.0",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"amphp/phpunit-util": "^v3.0.0",
"friendsofphp/php-cs-fixer": "^3.11",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^6.3",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-global-assertions": "^1.0",
"pestphp/pest-plugin-parallel": "^1.2",
"phpmyadmin/sql-parser": "^5.7",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.2"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "XDEBUG_MODE=off vendor/bin/pest",
"test:debug": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage",
"test:parallel": "vendor/bin/pest --parallel",
"format": "vendor/bin/php-cs-fixer fix",
"analyze": "vendor/bin/phpstan --memory-limit=1G"
}
}