-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.79 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "phpnomad/nativephp-integration",
"description": "Experimental PHPNomad integration for NativePHP — host adapter that lets a PHPNomad app run as the PHP guest inside an Electron desktop process, without Laravel.",
"type": "library",
"keywords": [
"phpnomad",
"nativephp",
"electron",
"desktop",
"integration"
],
"homepage": "https://github.com/phpnomad/nativephp-integration",
"license": "MIT",
"authors": [
{
"name": "Alex Standiford",
"email": "alex@standiford.us"
}
],
"require": {
"php": "^8.3",
"phpnomad/di": "^2.0",
"phpnomad/loader": "^1.0 || ^2.0",
"phpnomad/rest": "^2.0",
"phpnomad/console": "^1.0",
"phpnomad/event": "^1.0",
"phpnomad/fastroute-rest-integration": "^1.0",
"phpnomad/symfony-console-integration": "dev-main",
"phpnomad/symfony-event-dispatcher-integration": "^1.0",
"phpnomad/json-config-integration": "^1.0",
"phpnomad/datastore": "^2.0",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"phpnomad/di-container": "^1.0",
"phpnomad/tests": "^0.1.0 || ^0.3.0 || ^0.4.0",
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"PHPNomad\\NativePHP\\Integration\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"PHPNomad\\NativePHP\\Integration\\Tests\\": "tests/",
"SandboxApp\\": "sandbox/app/src/"
}
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}