-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
74 lines (74 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "tareqas/psym",
"description": "A REPL for Symfony and PHP",
"type": "library",
"keywords": ["symfony", "repl", "console", "shell", "interactive", "psym", "psysh"],
"license": "MIT",
"authors": [
{
"name": "Tareq Ahamed",
"email": "[email protected]"
}
],
"bin": ["bin/psym"],
"autoload": {
"psr-4": {
"TareqAS\\Psym\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"TareqAS\\Psym\\Tests\\": "tests/"
},
"files": [
"tests/Fixtures/TabCompletion/functions.php"
]
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-tokenizer": "*",
"jetbrains/phpstorm-stubs": "@dev",
"phpstan/phpdoc-parser": "^1.30",
"psy/psysh": "^0.11"
},
"require-dev": {
"doctrine/orm": "^2.19",
"friendsofphp/php-cs-fixer": "^3.4",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.0",
"symfony/framework-bundle": "^5.4",
"symfony/runtime": "^5.4"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.2.99"
},
"allow-plugins": {
"symfony/runtime": false
}
},
"scripts": {
"cs-fixer": "@php vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fixer-run": "@php vendor/bin/php-cs-fixer fix",
"test": "@php vendor/bin/phpunit",
"post-install-cmd": [
"@php src/generate.php",
"@putenv COMPOSER=composer-sf.json",
"@composer install",
"@putenv COMPOSER=composer-sf7.json",
"@composer install"
],
"post-update-cmd": [
"@php src/generate.php",
"@putenv COMPOSER=composer-sf.json",
"@composer update",
"@putenv COMPOSER=composer-sf7.json",
"@composer update"
]
}
}