-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
77 lines (77 loc) · 2.12 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
75
76
77
{
"name": "dbout/wp-orm",
"description": "WordPress ORM with Eloquent.",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Dimitri BOUTEILLE",
"email": "bonjour@dimitri-bouteille.fr",
"homepage": "https://github.com/dimitriBouteille",
"role": "Developer"
}
],
"keywords": ["wordpress", "wp", "orm", "database", "eloquent", "db", "sql", "migration"],
"homepage": "https://github.com/dimitriBouteille/wp-orm",
"support": {
"issues": "https://github.com/dimitriBouteille/wp-orm/issues",
"source": "https://github.com/dimitriBouteille/wp-orm/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"laravel/serializable-closure": ">=1.3",
"illuminate/database": "^11.0"
},
"suggest": {
"illuminate/events": "Add events to your models"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Dbout\\WpOrm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dbout\\WpOrm\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"yoast/phpunit-polyfills": "^3.0",
"rector/rector": "^2.0",
"phpstan/extension-installer": "^1.4",
"szepeviktor/phpstan-wordpress": "^2.0",
"friendsofphp/php-cs-fixer": "^3.68",
"phpstan/phpstan": "^2.0",
"roots/wordpress": "^6.7"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
},
"wordpress-install-dir": "web/wordpress"
},
"scripts": {
"rector": "vendor/bin/rector process src --dry-run",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"test:unit": "vendor/bin/phpunit --no-coverage",
"test:unit:coverage": "vendor/bin/phpunit",
"test:wordPress": "vendor/bin/phpunit -c phpunit-wp.xml --no-coverage",
"test:wordPress:coverage": "vendor/bin/phpunit -c phpunit-wp.xml",
"csFixer": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"fix:csFixer": "vendor/bin/php-cs-fixer fix"
}
}