-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.82 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
55
56
57
58
59
60
61
62
63
{
"name": "ffi/work-directory",
"type": "library",
"description": "PHP library for interact with working directory",
"license": "MIT",
"keywords": ["ffi", "bin", "location", "cwd", "getcwd", "chdir", "utility"],
"support": {
"source": "https://github.com/php-ffi/work-directory",
"issues": "https://github.com/php-ffi/work-directory/issues",
"docs": "https://github.com/php-ffi/work-directory/blob/master/README.md"
},
"authors": [
{
"name": "Nesmeyanov Kirill",
"email": "[email protected]",
"homepage": "https://nesk.me",
"role": "maintainer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-ffi": "*",
"ext-mbstring": "*",
"ffi/env": "^1.0"
},
"autoload": {
"psr-4": {
"FFI\\WorkDirectory\\": "src"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.22",
"vimeo/psalm": "^5.14",
"phpunit/phpunit": "^9.6"
},
"autoload-dev": {
"psr-4": {
"FFI\\WorkDirectory\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"psalm": "@psalm:check",
"psalm:check": "psalm --no-cache",
"psalm:fix": "psalm --no-cache --alter",
"phpcs": "@phpcs:check",
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes",
"test": "@test:unit",
"test:unit": "phpunit --testdox"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev",
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}