-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.46 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
{
"name": "nikaia/php-python-bridge",
"description": "Call your NodeJS scripts from Php",
"keywords": [
"Nikaia",
"php-python-bridge"
],
"homepage": "https://github.com/nikaia/php-python-bridge",
"license": "MIT",
"authors": [
{
"name": "Nassif Bourguig",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"symfony/process": "^6.1|^5.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Nikaia\\PythonBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nikaia\\PythonBridge\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"scripts": {
"test": "vendor/bin/phpunit",
"release": "npx standard-version release --no-verify",
"release-dry": "npx standard-version release --no-verify --dry-run",
"release-patch": "npx standard-version --release-as patch --no-verify",
"release-minor": "npx standard-version --release-as minor --no-verify",
"release-major": "npx standard-version --release-as major --no-verify",
"release-first": "npx standard-version --first-release --no-verify"
}
}