forked from alleyinteractive/wp-to-psr-4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 861 Bytes
/
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
{
"name": "alleyinteractive/wp-to-psr-4",
"description": "Migrate a WordPress-style code base to PSR-4 file structure.",
"license": "GPL-2.0-or-later",
"type": "project",
"authors": [
{
"name": "Sean Fisher",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"symfony/console": "^5.0",
"symfony/process": "^5.0",
"symfony/finder": "^6.3",
"illuminate/support": "^10.32",
"symfony/var-dumper": "^6.3"
},
"require-dev": {
"laravel/pint": "^1.13",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Alley\\WpToPsr4\\": "src/"
}
},
"scripts": {
"pint": "pint bin/wp-to-psr-4 src",
"test": ""
},
"bin": [
"bin/wp-to-psr-4"
]
}