Initial commit
parents
Showing
.DS_Store
0 → 100644
File added
README.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "bolt/bolt-extension-starter", | ||
"description": "", | ||
"type": "bolt-extension", | ||
"keywords": [ | ||
], | ||
"require": { | ||
"bolt/bolt": "^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.7" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "", | ||
"email": "you@example.com" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"autoload": { | ||
"psr-4": { | ||
"Bolt\\Extension\\YourName\\ExtensionName\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Bolt\\Extension\\YourName\\ExtensionName\\Tests\\": "tests", | ||
"Bolt\\Tests\\": "vendor/bolt/bolt/tests/phpunit/unit/" | ||
} | ||
}, | ||
"extra": { | ||
"bolt-assets": "web", | ||
"bolt-class": "Bolt\\Extension\\YourName\\ExtensionName\\ExtensionNameExtension" | ||
} | ||
} |
config/.gitignore
0 → 100644
phpunit.xml.dist
0 → 100644
src/ExtensionNameExtension.php
0 → 100644
templates/.gitignore
0 → 100644
tests/ExtensionTest.php
0 → 100644
tests/bootstrap.php
0 → 100644
web/.gitignore
0 → 100644
Please
register
or
sign in
to comment