-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.04 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.04 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
{
"name": "phenixphp/phenix",
"description": "Application skeleton of Phenix framework",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [{
"name": "Omar Barbosa",
"email": "contacto@omarbarbosa.com"
}],
"require": {
"php": "^8.2",
"ext-pcntl": "*",
"ext-sockets": "*",
"ext-sqlite3": "*",
"phenixphp/framework": "^0.8.5"
},
"require-dev": {
"amphp/phpunit-util": "^v3.0.0",
"fakerphp/faker": "^1.24",
"friendsofphp/php-cs-fixer": "^3.11",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^6.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5",
"spatie/file-system-watcher": "^1.2"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php phenix key:generate"
],
"test": "XDEBUG_MODE=off vendor/bin/phpunit",
"test:debug": "vendor/bin/phpunit",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer fix",
"analyze": "vendor/bin/phpstan --memory-limit=1G",
"dev": [
"Composer\\Config::disableProcessTimeout",
"@php server"
]
}
}