forked from phpactor/class-to-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.38 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
{
"name": "phpactor/class-to-file",
"description": "Library to covert class names to file paths and vice-versa",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "daniel@dantleech.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/filesystem": "^4.2 || ^5.0 || ^6.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/var-dumper": "^6.0 || ^5.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
},
"autoload": {
"psr-4": {
"Phpactor\\ClassFileConverter\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Phpactor\\ClassFileConverter\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes",
"vendor/bin/phpstan analyse lib -c phpstan.neon",
"vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}