-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.69 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.69 KB
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
{
"name": "itinerisltd/acorn-socials",
"type": "wordpress-plugin",
"description": "Social account and sharable social post links management via WordPress",
"license": "MIT",
"authors": [
{
"name": "Itineris Limited",
"email": "dev@itineris.co.uk",
"homepage": "https://itineris.co.uk/",
"role": "Company"
},
{
"name": "Muhammet DÜLGER",
"email": "dulgermuhammet@gmail.com",
"role": "Developer"
}
],
"homepage": "https://github.com/itinerisltd/acorn-socials/",
"support": {
"email": "dev@itineris.co.uk",
"issues": "https://github.com/ItinerisLtd/acorn-socials/issues",
"source": "https://github.com/ItinerisLtd/acorn-socials"
},
"repositories": {
"packagist.org": false,
"private-packagist": {
"type": "composer",
"url": "https://repo.packagist.com/itinerisltd/"
}
},
"autoload": {
"psr-4": {
"Itineris\\AcornSocials\\": "src/"
}
},
"require": {
"php": "^8.2"
},
"require-dev": {
"itinerisltd/itineris-wp-coding-standards": "^1.0",
"laravel/facade-documenter": "dev-main",
"roots/acorn": "^4.3",
"roots/wordpress": "^6.8",
"wpackagist-plugin/kirki": "^5.1"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"style:check": "phpcs",
"style:fix": "phpcbf",
"post-autoload-dump": [
"php -f vendor/bin/facade.php -- \"Itineris\\AcornSocials\\Facades\\AcornSocials\""
]
}
}